* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        .header {
            position: fixed;
            width: 100%;
            top: 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: #333;
            font-weight: bold;
        }

        .logo img {
            height: 40px;
        }

        .nav-menu{
            display: flex;
            list-style: none;
            gap: 2rem;
            transition: all 0.3s ease;
        }
        .nav-links {
            list-style: none;
            gap: 2rem;
        }
        .nav-links li {
            display: inline-block;
            margin: 0 1rem;
        }
        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #3498db;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #3498db;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .login-btn {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
        }

        .login-btn:hover {
            color: #3498db;
        }

        .join-btn {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
        }

        .join-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1000;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 120px 0 80px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .head-content h1 {
            font-size: 3.5rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
       
        .head-content h3{
            text-align: center;
        }
        .head-content .highlight-blue {
            color: #3498db;
        }

        .head-content .highlight-green {
            color: #2ecc71;
        }

        .head-content p {
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            text-align: center;
        }

        .get-started-btn {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            text-decoration: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
            align-items: center;
        }

        .get-started-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
        }

        .hero-illustration {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .illustration-bg .img {
            height: -100px;
            width: -100px;
        }

        
        /* Learning Section */
        .learning-section {
            padding: 80px 0;
            background: white;
        }

        .learning-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .section-title .highlight {
            color: #3498db;
            position: relative;
        }

        .section-title .highlight::before {
            content: '<';
            color: #e74c3c;
        }

        .section-title .highlight::after {
            content: '/>';
            color: #2ecc71;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .course-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #e9ecef;
            position: relative;
            overflow: hidden;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .course-card:hover::before {
            left: 100%;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .course-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .course-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .course-card:hover .course-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .python-icon { background: linear-gradient(135deg, #3776ab, #ffd43b); }
        .sql-icon { background: linear-gradient(135deg, #336791, #4fa8d8); }
        .c-icon { background: linear-gradient(135deg, #00599c, #004482); }
        .java-icon { background: linear-gradient(135deg, #ed8b00, #f89820); }
        .unix-icon { background: linear-gradient(135deg, #000000, #333333); }
        .os-icon { background: linear-gradient(135deg, #0078d4, #106ebe); }
        .ml-icon { background: linear-gradient(135deg, #ff6b6b, #ee5a24); }
        .network-icon { background: linear-gradient(135deg, #00d2d3, #54a0ff); }

        .course-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
        }

        .course-description {
            color: #7f8c8d;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
        }
        .footer {
    border-radius: 24px 24px 0 0; /* Top left & right corners rounded */
    overflow: hidden; /* Ensures child elements follow the radius */
    box-shadow: 0 -2px 16px rgba(0,0,0,0.08); /* Optional: subtle shadow */
}

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .footer-section h3 {
            color: #bdc3c7;
            font-size: 1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #3498db;
        }

        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: #95a5a6;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #3498db;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

@media screen and (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        background: white;
        padding: 1.5rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-links {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .nav-links li {
        display: block;
        margin: 0.8rem 0;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem;
        font-size: 1.1rem;
    }

    .auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        padding-top: 1rem;
        border-top: 1px solid #eee;
    }

    .auth-buttons .join-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        padding: 0.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo img {
        height: 38px;
    }

    /* Adjust main content to account for fixed header */
    main {
        margin-top: 70px;
    }

    /* Ensure proper z-index layering */
    .header {
        z-index: 1001;
    }
}

        @media (max-width: 480px) {
            .nav-container {
                padding: 1rem;
            }

            .hero-container,
            .learning-container,
            .footer-container {
                padding: 0 1rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .course-card {
                padding: 1.5rem;
            }
        }
         .topper {
            max-width: 800px;
            padding-bottom: 100px;
            margin: 0 auto;
        }

        h1 {
            text-align: center;
            color: rgb(7, 0, 42);
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 60px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 2px;
            animation: fadeInDown 1s ease-out;
        }

        .toppers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            justify-items: center;
        }

        .topper-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 20px 10px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            max-width: 550px;
            width: 100%;
            animation: fadeInUp 1s ease-out;
        }

        .topper-card:nth-child(1) { animation-delay: 0.2s; }
        .topper-card:nth-child(2) { animation-delay: 0.4s; }
        .topper-card:nth-child(3) { animation-delay: 0.6s; }

        .topper-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .topper-card:hover:before {
            left: 100%;
        }

        .topper-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .profile-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 25px;
            border: 5px solid #667eea;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .topper-card:hover .profile-image {
            border-color: #764ba2;
            transform: scale(1.1);
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .topper-card:hover .profile-image img {
            transform: scale(1.1);
        }

        .name {
            font-size: 2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .role {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .company {
            font-weight: bold;
            color: #444;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            transform: rotate(15deg);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tablet/iPad Responsive Styles (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        background: white;
        padding: 1.5rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-links {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .nav-links li {
        display: block;
        margin: 0.8rem 0;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem;
        font-size: 1.1rem;
    }

    .auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        padding-top: 1rem;
        border-top: 1px solid #eee;
    }

    .auth-buttons .join-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        padding: 0.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo img {
        height: 38px;
    }

    /* Adjust main content to account for fixed header */
    main {
        margin-top: 70px;
    }

    /* Ensure proper z-index layering */
    .header {
        z-index: 1001;
    }
}

/* Banner Section Responsive */
@media screen and (max-width: 768px) {
    .banner-section {
        padding: 2rem 1rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}

/* Common Section Responsive */
@media screen and (max-width: 768px) {
    .section {
        padding: 2rem 1rem;
    }

    .container {
        width: 100%;
        padding: 0 1rem;
    }
}

/* Grid Layouts Responsive */
@media screen and (max-width: 768px) {
    .features-grid,
    .contact-grid,
    .headquarters-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Footer Responsive */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    /* Hero Section */
    .hero {
        padding: 7rem 1rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .head-content {
        padding: 1rem;
        width: 100%;
    }

    .head-content h1 {
        font-size: 2rem;
    }

    .head-content h3 {
        font-size: 1.2rem;
    }

    .head-content p {
        font-size: 1rem;
        padding: 0;
    }

    /* Hero Illustration */
    .hero-illustration {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto;
    }

    .illustration-bg img {
        width: 100%;
        height: auto;
    }

    /* Learning Section */
    .learning-section {
        padding: 2rem 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .course-card {
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
    }

    .course-header {
        flex-direction: column;
        text-align: center;
    }

    .course-icon {
        margin: 0 auto 1rem;
    }

    .course-title {
        font-size: 1.2rem;
    }
}

/* Tablet Responsive Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        padding: 2rem;
    }

    .head-content {
        padding-right: 2rem;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }
}

/* Small Mobile Specific Fixes */
@media screen and (max-width: 480px) {
    .head-content h1 {
        font-size: 1.8rem;
    }

    .head-content h3 {
        font-size: 1.1rem;
    }

    .hero-illustration {
        max-width: 250px;
    }

    .course-card {
        padding: 1.5rem;
    }

    .course-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }
}
         .topper {
            max-width: 800px;
            padding-bottom: 100px;
            margin: 0 auto;
        }

        h1 {
            text-align: center;
            color: rgb(7, 0, 42);
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 60px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 2px;
            animation: fadeInDown 1s ease-out;
        }

        .toppers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            justify-items: center;
        }

        .topper-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 20px 10px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            max-width: 550px;
            width: 100%;
            animation: fadeInUp 1s ease-out;
        }

        .topper-card:nth-child(1) { animation-delay: 0.2s; }
        .topper-card:nth-child(2) { animation-delay: 0.4s; }
        .topper-card:nth-child(3) { animation-delay: 0.6s; }

        .topper-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .topper-card:hover:before {
            left: 100%;
        }

        .topper-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .profile-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 25px;
            border: 5px solid #667eea;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .topper-card:hover .profile-image {
            border-color: #764ba2;
            transform: scale(1.1);
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .topper-card:hover .profile-image img {
            transform: scale(1.1);
        }

        .name {
            font-size: 2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .role {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .company {
            font-weight: bold;
            color: #444;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            transform: rotate(15deg);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tablet/iPad Footer Responsive Styles (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-container {
        max-width: 90%;
        padding: 0 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 2.5rem;
    }

    .footer-section {
        margin-bottom: 1rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-section ul li {
        margin-bottom: 0.8rem;
    }

    .footer-section ul li a {
        font-size: 0.95rem;
    }

    .footer-brand {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .social-links {
        gap: 1.2rem;
    }

    .social-links a {
        font-size: 1.1rem;
    }

    .copyright {
        font-size: 0.9rem;
    }
}
.user-name {
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    background: #f5f5f5;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 0.9rem;
}

.logout-btn {
    background-color: #dc3545 !important;
}

.logout-btn:hover {
    background-color: #c82333 !important;
}

@media (max-width: 768px) {
    .user-name {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}
