        /* Color Palette - Consistent Rolex Green Theme */
        :root {
            /* Light mode - Rolex Green inspired */
            --rolex-green: #1F482D;
            /* Primary Rolex Green */
            --rolex-green-light: #3A7D4E;
            --rolex-green-lighter: #4c9b63;
            --rolex-green-lightest: #70b885;
            --rolex-green-pale: #a1d4b0;
            --rolex-green-very-pale: #cbe7d3;
            --rolex-green-extra-pale: #e4f4e9;
            --rolex-green-ultra-pale: #f3faf5;

            /* Supporting colors */
            --secondary: #2C3E50;
            --white: #ffffff;
            --black: #000000;
            --dark-gray: #383C3D;
            --medium-gray: #6c757d;
            --light-gray: #f8f9fa;
            --lighter-gray: #e9ecef;

            /* Theme variables - Light mode */
            --background: var(--white);
            --surface: var(--rolex-green-ultra-pale);
            --text-primary: #171717;
            --text-secondary: var(--dark-gray);
            --card-bg: var(--white);
            --header-bg: rgba(255, 255, 255, 0.97);
            --shadow-color: rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
            --border-radius: 8px;

            /* Footer colors - Always light mode */
            --footer-bg: #1F482D;
            --footer-text: #ffffff;
            --footer-link-hover: #a1d4b0;
            --footer-icon: #70b885;
        }

        /* Dark mode - Adjusted Rolex Green theme */
        [data-theme="dark"] {
            --rolex-green: #70b885;
            /* Lighter Rolex Green for dark mode */
            --rolex-green-light: #4c9b63;
            --rolex-green-lighter: #3A7D4E;
            --rolex-green-lightest: #1F482D;
            --rolex-green-pale: #316440;
            --rolex-green-very-pale: #2b5036;
            --rolex-green-extra-pale: #24432e;
            --rolex-green-ultra-pale: #102317;

            /* Supporting colors for dark mode */
            --secondary: #a1d4b0;
            --white: #121212;
            --black: #ffffff;
            --dark-gray: #e9ecef;
            --medium-gray: #cbe7d3;
            --light-gray: #1e1e1e;
            --lighter-gray: #2b2b2b;

            /* Theme variables - Dark mode */
            --background: #121212;
            --surface: var(--rolex-green-ultra-pale);
            --text-primary: #ffffff;
            --text-secondary: #e4f4e9;
            --card-bg: #1a1a1a;
            --header-bg: rgba(18, 18, 18, 0.97);
            --shadow-color: rgba(0, 0, 0, 0.3);
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.4);

            /* Footer colors - STAY SAME AS LIGHT MODE */
            /* No changes here - footer keeps light mode colors */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-secondary);
            background-color: var(--background);
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style-position: inside;
            margin-left: 15px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            font-size: 2.2rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--rolex-green);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--rolex-green);
            color: var(--white);
            border-radius: var(--border-radius);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }

        .btn:hover {
            background-color: var(--rolex-green-light);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--rolex-green);
            border: 2px solid var(--rolex-green);
        }

        .btn-secondary:hover {
            background-color: rgba(31, 72, 45, 0.1);
            color: var(--rolex-green);
        }

        /* Theme Toggle Button - UPDATED POSITION */
        .theme-toggle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--rolex-green);
            color: var(--white);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: var(--transition);
            flex-shrink: 0;
            margin-left: 15px;
        }

        .theme-toggle:hover {
            transform: scale(1.1);
            background-color: var(--rolex-green-light);
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--rolex-green);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background-color: var(--rolex-green-light);
            transform: translateY(-5px);
        }

        /* Header & Navigation - IMPROVED RESPONSIVENESS */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--header-bg);
            box-shadow: 0 2px 10px var(--shadow-color);
            transition: var(--transition);
            padding: 15px 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--rolex-green);
            z-index: 1002;
        }

        /* NAVIGATION CONTAINER UPDATED */
        .nav-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            font-weight: 500;
            position: relative;
            color: var(--text-primary);
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: var(--rolex-green);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--rolex-green);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* MENU TOGGLE - IMPROVED */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--rolex-green);
            transition: var(--transition);
            background: none;
            border: none;
            padding: 5px;
            z-index: 1002;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
        }

        .menu-toggle:hover {
            background-color: rgba(31, 72, 45, 0.1);
            color: var(--rolex-green-light);
        }

        /* Hero Section */
        .hero {
            padding-top: 150px;
            padding-bottom: 100px;
            background: linear-gradient(135deg, var(--rolex-green-extra-pale) 0%, var(--surface) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .hero-text {
            flex: 1;
            min-width: 300px;
        }

        .hero-text h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text h1 span {
            color: var(--rolex-green);
            display: block;
            font-size: 2.5rem;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-secondary);
        }

        .hero-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .hero-visual {
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, var(--rolex-green-light) 0%, var(--rolex-green) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            box-shadow: var(--shadow-hover);
        }

        .hero-visual i {
            font-size: 8rem;
            color: white;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* About Section */
        .about-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
        }

        .about-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 40px;
            justify-content: center;
        }

        .stat {
            text-align: center;
            flex: 1;
            min-width: 120px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--rolex-green);
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-top: 5px;
            display: block;
        }

        /* Services Section */
        .services {
            background-color: var(--surface);
        }

        .services-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            font-size: 1.1rem;
            color: var(--text-secondary);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .service-card {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--rolex-green);
            margin-bottom: 20px;
        }

        .service-card h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
            color: var(--text-primary);
        }

        .service-card p {
            color: var(--text-secondary);
        }

        /* Unique Selling Points */
        .usp-section {
            margin-top: 60px;
        }

        .usp-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .usp-card {
            background-color: var(--card-bg);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border-left: 4px solid var(--rolex-green);
        }

        .usp-card h4 {
            color: var(--rolex-green);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .usp-card p {
            color: var(--text-secondary);
        }

        /* Delivery Section */
        .delivery-section {
            margin-top: 60px;
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .delivery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .delivery-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .delivery-item i {
            color: var(--rolex-green);
            font-size: 1.2rem;
            margin-top: 3px;
        }

        .delivery-item h4 {
            color: var(--text-primary);
            margin-bottom: 5px;
        }

        .delivery-item p {
            color: var(--text-secondary);
        }

        /* Projects Section */
        .project-card {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        @media (min-width: 768px) {
            .project-card {
                flex-direction: row;
            }
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .project-image {
            flex: 1;
            min-height: 250px;
            background-color: var(--lighter-gray);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .project-content {
            flex: 2;
            padding: 30px;
        }

        .project-content h3 {
            color: var(--rolex-green);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .project-content h3 img {
            width: 32px;
            height: 24px;
            border-radius: 3px;
            border: 1px solid var(--medium-gray);
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }

        .tech-tag {
            background-color: rgba(31, 72, 45, 0.1);
            color: var(--rolex-green);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .project-highlights {
            margin-top: 20px;
            padding: 15px;
            background-color: rgba(31, 72, 45, 0.05);
            border-radius: var(--border-radius);
        }

        .project-highlights p {
            color: var(--text-primary);
            font-weight: 600;
        }

        .project-highlights ul {
            margin-top: 10px;
        }

        .project-highlights li {
            margin-bottom: 8px;
            line-height: 1.5;
            color: var(--text-secondary);
        }

        /* Skills Section */
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .skill-category {
            background-color: var(--card-bg);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }

        .skill-category h3 {
            color: var(--rolex-green);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(31, 72, 45, 0.2);
        }

        .skill-item {
            margin-bottom: 20px;
        }

        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-primary);
        }

        .skill-bar {
            height: 8px;
            background-color: rgba(31, 72, 45, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background-color: var(--rolex-green);
            border-radius: 4px;
            width: 0;
            transition: width 1.5s ease;
        }

        /* Experience & Education */
        .timeline {
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline-item {
            background-color: var(--card-bg);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            border-left: 4px solid var(--rolex-green);
        }

        .timeline-date {
            color: var(--rolex-green);
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        .timeline-content h3 {
            color: var(--text-primary);
        }

        .timeline-content p {
            color: var(--text-secondary);
        }

        /* Contact Section - Improved Spacing */
        .contact {
            background-color: var(--surface);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            align-items: start;
        }

        .contact-info {
            background-color: var(--card-bg);
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-info h3 {
            color: var(--rolex-green);
            margin-bottom: 10px;
            font-size: 1.6rem;
        }

        .contact-info p {
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 0;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-top: 0;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(31, 72, 45, 0.1);
            color: var(--rolex-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        .contact-detail h4 {
            margin-bottom: 8px;
            font-size: 1.1rem;
            color: var(--text-primary);
        }

        .contact-detail p {
            margin-bottom: 0;
            line-height: 1.5;
            color: var(--text-secondary);
        }

        .contact-detail a {
            color: var(--rolex-green);
            transition: var(--transition);
        }

        .contact-detail a:hover {
            color: var(--rolex-green-light);
            text-decoration: underline;
        }

        .contact-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }

        .contactButton {
            color: white;
            background-color: var(--rolex-green);
            padding: 12px 25px;
            border-radius: var(--border-radius);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            transition: var(--transition);
        }

        .contactButton:hover {
            transform: translateY(-3px);
            background-color: var(--rolex-green-light);
            box-shadow: var(--shadow-hover);
            color: white;
        }

        /* Footer - IMPROVED STYLING */
        footer {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding: 60px 0 30px;
            text-align: center;
        }

        footer h2 {
            color: var(--footer-text);
            margin-bottom: 20px;
            font-size: 2rem;
        }

        footer>.container>p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--footer-text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 1.2rem;
            position: relative;
        }

        .social-link:hover {
            background-color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: #000;
        }

        /* Improve text-based social links */
        .social-link span {
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Improve image-based social links */
        .social-link img {
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
            width: 24px;
            height: 24px;
        }

        .social-link:hover img {
            filter: brightness(0) invert(0);
        }

        .contact-info-footer {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0;
            padding: 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
            transition: transform 0.3s ease;
            color: var(--footer-text);
        }

        .contact-item:hover {
            transform: translateY(-3px);
        }

        .contact-item a {
            color: var(--footer-text);
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--footer-link-hover);
            text-decoration: underline;
        }

        .contact-item i {
            color: var(--footer-icon);
            font-size: 1.3rem;
            width: 24px;
            text-align: center;
        }

        .copyright {
            margin-top: 30px;
            font-size: 0.9rem;
            opacity: 0.7;
            letter-spacing: 0.5px;
        }

        /* Responsive Styles - IMPROVED FOR MOBILE NAVIGATION */
        @media (max-width: 992px) {
            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text h1 span {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.9rem;
            }

            .contact-container {
                gap: 40px;
            }
        }

        /* UPDATED FOR BETTER MOBILE NAVIGATION */
        @media (max-width: 768px) {
            .navbar {
                padding: 10px 0;
            }

            /* Menu toggle and theme toggle positioning */
            .menu-toggle {
                display: flex;
                order: 3;
                /* Menu button on the right */
            }

            .theme-toggle {
                order: 2;
                /* Theme toggle in the middle */
                margin-left: 10px;
            }

            /* Hide navigation links by default on mobile */
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background-color: var(--header-bg);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 10px 20px var(--shadow-color);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 1001;
                border-top: 1px solid rgba(31, 72, 45, 0.1);
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-links li {
                margin: 0;
                width: 100%;
                text-align: center;
            }

            .nav-links a {
                display: block;
                padding: 15px 20px;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(31, 72, 45, 0.1);
            }

            .nav-links li:last-child a {
                border-bottom: none;
            }

            .hero {
                padding-top: 130px;
            }

            .hero-text,
            .hero-image {
                text-align: center;
            }

            .cta-buttons {
                justify-content: center;
            }

            section {
                padding: 60px 0;
            }

            .project-card {
                flex-direction: column;
            }

            .project-image {
                min-height: 200px;
            }

            .social-links {
                gap: 12px;
            }

            .social-link {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .social-link span {
                font-size: 0.8rem;
            }

            .contact-info-footer {
                flex-direction: column;
                gap: 20px;
                align-items: center;
                padding: 25px 20px;
            }

            .contact-detail {
                gap: 15px;
            }

            .contact-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text h1 span {
                font-size: 1.6rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.95rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .hero-visual {
                width: 280px;
                height: 280px;
            }

            .hero-visual i {
                font-size: 6rem;
            }

            .about-stats {
                gap: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .social-link {
                width: 42px;
                height: 42px;
                border-radius: 50%;
                font-size: 1rem;
            }

            .social-link span {
                font-size: 0.75rem;
            }

            footer {
                padding: 50px 0 25px;
            }

            .contact-item {
                font-size: 1rem;
            }

            .contact-item i {
                font-size: 1.2rem;
            }

            .contact-info {
                padding: 30px 20px;
            }

            .contact-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .logo {
                font-size: 1.6rem;
            }

            .theme-toggle {
                width: 38px;
                height: 38px;
                font-size: 0.9rem;
                margin-left: 8px;
            }

            .menu-toggle {
                width: 38px;
                height: 38px;
                font-size: 1.3rem;
            }

            /* Adjust mobile menu position */
            .nav-links {
                top: 65px;
            }
        }

        @media (max-width: 400px) {
            .social-links {
                gap: 10px;
            }

            .social-link {
                width: 40px;
                height: 40px;
            }

            .social-link span {
                font-size: 0.7rem;
            }

            .logo {
                font-size: 1.5rem;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }