
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #0066cc;
            --primary-dark: #004499;
            --primary-light: #0099ff;
            --dark: #222;
            --light: #fff;
            --gray: #666;
            --light-gray: #f5f5f5;
            --section-padding: 80px 0;
            --highlight-color: #0066cc;
        }

        /* Dark Mode Variables */
        body.dark-mode {
            --dark: #f0f0f0;
            --light: #121212;
            --gray: #b0b0b0;
            --light-gray: #1e1e1e;
            --primary: #4dabf7;
            --primary-dark: #339af0;
            --primary-light: #74c0fc;
            --highlight-color: #4dabf7;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        body.dark-mode .animated-bg {
            opacity: 0.1;
        }

        .bg-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.03;
            animation: float 20s infinite linear;
        }

        body.dark-mode .bg-shape {
            opacity: 0.02;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: var(--primary);
            top: 5%;
            left: 3%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 250px;
            height: 250px;
            background: var(--primary-light);
            top: 65%;
            left: 85%;
            animation-delay: 3s;
        }

        .shape-3 {
            width: 180px;
            height: 180px;
            background: var(--primary-dark);
            top: 15%;
            left: 75%;
            animation-delay: 6s;
        }

        .shape-4 {
            width: 300px;
            height: 300px;
            background: var(--primary);
            top: 75%;
            left: 8%;
            animation-delay: 9s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            33% {
                transform: translateY(-30px) rotate(120deg) scale(1.1);
            }
            66% {
                transform: translateY(20px) rotate(240deg) scale(0.9);
            }
            100% {
                transform: translateY(0) rotate(360deg) scale(1);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Desktop Header & Navigation */
        .desktop-header {
            display: block;
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        body.dark-mode .desktop-header {
            background: rgba(30, 30, 30, 0.95);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
        }

        .desktop-header.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 35px rgba(0, 0, 0, 0.12);
        }

        body.dark-mode .desktop-header.scrolled {
            box-shadow: 0 5px 35px rgba(0, 0, 0, 0.35);
        }

        .desktop-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .desktop-logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .desktop-logo span {
            color: var(--primary);
        }

        .desktop-nav-menu {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .desktop-nav-menu ul {
            display: flex;
            list-style: none;
            gap: 10px;
            margin: 0;
            padding: 0;
        }

        /* Desktop Navigation Icons Only */
        .desktop-nav-menu li {
            position: relative;
        }

        .desktop-nav-menu a {
            text-decoration: none;
            color: var(--gray);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            background: var(--light-gray);
            position: relative;
        }

        body.dark-mode .desktop-nav-menu a {
            background: rgba(255, 255, 255, 0.08);
            color: var(--gray);
        }

        /* Active navigation icon */
        .desktop-nav-menu a.active {
            color: white;
            background: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
        }

        body.dark-mode .desktop-nav-menu a.active {
            background: var(--primary);
            box-shadow: 0 5px 15px rgba(77, 171, 247, 0.4);
        }

        .desktop-nav-menu a:hover {
            color: white;
            background: var(--primary);
            transform: scale(1.05) rotate(5deg);
        }

        body.dark-mode .desktop-nav-menu a:hover {
            background: var(--primary);
        }

        .desktop-nav-menu a i {
            font-size: 1.1rem;
        }

        /* Connect Dropdown Styles - Desktop */
        .connect-dropdown {
            position: relative;
        }

        .connect-btn {
            background: var(--light-gray);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--dark);
            font-size: 1.1rem;
        }

        body.dark-mode .connect-btn {
            background: rgba(255, 255, 255, 0.08);
            color: var(--gray);
        }

        .connect-btn:hover {
            background: var(--primary);
            color: white;
            transform: rotate(15deg);
        }

        .connect-dropdown-content {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--light);
            min-width: 220px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 15px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
            margin-top: 10px;
        }

        body.dark-mode .connect-dropdown-content {
            background: var(--light-gray);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .connect-dropdown:hover .connect-dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .connect-dropdown-content a {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            text-decoration: none;
            color: var(--dark);
            border-radius: 8px;
            transition: all 0.3s ease;
            gap: 12px;
            font-size: 0.95rem;
            margin-bottom: 5px;
            width: 100%;
            height: auto;
            background: transparent;
            transform: none;
            justify-content: flex-start;
        }

        .connect-dropdown-content a:last-child {
            margin-bottom: 0;
        }

        .connect-dropdown-content a:hover {
            background: var(--light-gray);
            color: var(--primary);
            transform: translateX(5px);
        }

        body.dark-mode .connect-dropdown-content a:hover {
            background: rgba(77, 171, 247, 0.1);
        }

        .connect-dropdown-content a i {
            width: 20px;
            text-align: center;
            font-size: 1rem;
        }

        .connect-dropdown-content h4 {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 10px;
            padding: 0 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Dark Mode Toggle Button - Desktop */
        .dark-mode-toggle {
            background: var(--light-gray);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--dark);
            font-size: 1.1rem;
        }

        body.dark-mode .dark-mode-toggle {
            background: rgba(255, 255, 255, 0.08);
            color: var(--gray);
        }

        .dark-mode-toggle:hover {
            background: var(--primary);
            color: white;
            transform: rotate(15deg);
        }

        /* Main Content Sections */
        .section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: var(--section-padding);
            position: relative;
        }

        /* Hero Section */
        .hero {
            padding: 80px 0 60px;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto 40px;
            text-align: center;
        }

        /* Desktop Font Sizes */
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 15px;
            color: var(--dark);
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .hero h2 {
            font-size: 1.7rem;
            font-weight: 400;
            color: var(--gray);
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 15px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.4s forwards;
        }

        .hero .highlight {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--highlight-color);
            opacity: 0;
            animation: fadeInUp 1s ease 0.6s forwards;
            position: relative;
            display: inline-block;
            padding: 0 8px;
        }

        /* Profile Image Section */
        .profile-section {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
            opacity: 0;
            animation: fadeIn 1.5s ease 1.2s forwards;
            position: relative;
        }

        .profile-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .profile-image {
            width: min(420px, 90vw);
            height: min(520px, 110vw);
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 102, 204, 0.2);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            cursor: pointer;
        }

        body.dark-mode .profile-image {
            box-shadow: 0 30px 60px rgba(77, 171, 247, 0.3);
        }

        .profile-image:hover {
            transform: translateY(-15px);
            box-shadow: 0 40px 80px rgba(0, 102, 204, 0.3);
        }

        body.dark-mode .profile-image:hover {
            box-shadow: 0 40px 80px rgba(77, 171, 247, 0.4);
        }

        .profile-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 25px;
            transition: transform 0.5s ease;
        }

        .profile-image:hover .profile-photo {
            transform: scale(1.05);
        }

        .profile-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: clamp(20px, 4vw, 35px);
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            border-radius: 0 0 25px 25px;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        body.dark-mode .profile-overlay {
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: white;
        }

        .profile-image:hover .profile-overlay {
            transform: translateY(0);
        }

        .profile-overlay h3 {
            font-size: clamp(1.3rem, 3vw, 1.6rem);
            margin-bottom: 12px;
            color: white;
        }

        body.dark-mode .profile-overlay h3 {
            color: white;
        }

        .profile-overlay p {
            font-size: clamp(0.9rem, 2vw, 1.05rem);
            opacity: 0.9;
            line-height: 1.5;
            color: white;
        }

        body.dark-mode .profile-overlay p {
            color: white;
            opacity: 0.95;
        }

        /* Social Media Section */
        .social-section {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            opacity: 0;
            animation: fadeIn 1s ease 1.5s forwards;
        }

        .social-container {
            display: flex;
            gap: 15px;
            background: var(--light);
            padding: clamp(12px, 3vw, 15px) clamp(20px, 4vw, 25px);
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        body.dark-mode .social-container {
            background: var(--light-gray);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .social-icon {
            width: clamp(35px, 8vw, 45px);
            height: clamp(35px, 8vw, 45px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light-gray);
            color: var(--dark);
            font-size: clamp(0.9rem, 2.5vw, 1.1rem);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        body.dark-mode .social-icon:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        }

        .social-icon.facebook:hover {
            background: #3b5998;
            color: white;
        }

        .social-icon.twitter:hover {
            background: #1da1f2;
            color: white;
        }

        .social-icon.linkedin:hover {
            background: #0077b5;
            color: white;
        }

        .social-icon.instagram:hover {
            background: #e4405f;
            color: white;
        }

        .social-icon.github:hover {
            background: #333;
            color: white;
        }

        /* About Section */
        .about-section {
            background: var(--light-gray);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 15px;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray);
            text-align: center;
            max-width: 600px;
        }

        .about-text p {
            margin-bottom: 25px;
        }

        .about-text strong {
            color: var(--dark);
            font-weight: 600;
        }

        /* Education Section */
        .education-section {
            background: var(--light);
        }

        body.dark-mode .education-section {
            background: var(--light);
        }

        .education-timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .education-timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary-light);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 40px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.2s; }
        .timeline-item:nth-child(2) { animation-delay: 0.4s; }
        .timeline-item:nth-child(3) { animation-delay: 0.6s; }
        .timeline-item:nth-child(4) { animation-delay: 0.8s; }

        .timeline-date {
            min-width: 120px;
            padding: 10px 15px;
            background: var(--primary);
            color: var(--light);
            border-radius: 20px;
            text-align: center;
            font-weight: 600;
            margin-right: 30px;
            align-self: flex-start;
        }

        .timeline-content {
            flex: 1;
            padding: 25px;
            background: var(--light-gray);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        body.dark-mode .timeline-content {
            background: var(--light-gray);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .timeline-content h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .timeline-content h4 {
            font-size: 1.1rem;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .timeline-content p {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Skills Section - Stacked Boxes */
        .skills-section {
            background: var(--light-gray);
        }

        .skills-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .skill-box {
            padding: 35px;
            background: var(--light-gray);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        body.dark-mode .skill-box {
            background: var(--light-gray);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .skill-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        body.dark-mode .skill-box:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .skill-box:nth-child(1) { animation-delay: 0.2s; }
        .skill-box:nth-child(2) { animation-delay: 0.4s; }
        .skill-box:nth-child(3) { animation-delay: 0.6s; }
        .skill-box:nth-child(4) { animation-delay: 0.8s; }

        .skill-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            gap: 20px;
        }

        .skill-icon {
            width: 70px;
            height: 70px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .skill-title h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .skill-title p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .skills-items {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 15px;
        }

        .skill-item {
            background: var(--primary-light);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .skill-item:hover {
            background: var(--primary);
            transform: scale(1.05);
        }

        /* Experience Section */
        .experience-section {
            background: var(--light);
        }

        .experience-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .experience-card {
            background: var(--light-gray);
            border-radius: 15px;
            padding: 35px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        body.dark-mode .experience-card {
            background: var(--light-gray);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .experience-card:nth-child(1) { animation-delay: 0.2s; }
        .experience-card:nth-child(2) { animation-delay: 0.4s; }

        .experience-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .experience-title h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .experience-title h4 {
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 600;
        }

        .experience-date {
            background: var(--primary);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .experience-description {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .experience-highlights {
            list-style: none;
            padding-left: 20px;
        }

        .experience-highlights li {
            color: var(--gray);
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }

        .experience-highlights li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* Achievements Section */
        .achievements-section {
            background: var(--light-gray);
        }

        .achievements-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .achievement-card {
            background: var(--light-gray);
            border-radius: 15px;
            padding: 35px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        body.dark-mode .achievement-card {
            background: var(--light-gray);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .achievement-card:nth-child(1) { animation-delay: 0.2s; }
        .achievement-card:nth-child(2) { animation-delay: 0.4s; }
        .achievement-card:nth-child(3) { animation-delay: 0.6s; }

        .achievement-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            gap: 20px;
        }

        .achievement-icon {
            width: 70px;
            height: 70px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .achievement-title h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .achievement-date {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .achievement-description {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }

        body.dark-mode .footer {
            background: #000;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--primary-light);
        }

        .contact-details h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: white;
        }

        .contact-details p, .contact-details a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--primary-light);
        }

        .appointment-btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
        }

        .appointment-btn:hover {
            background: transparent;
            color: var(--primary);
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        /* Mobile Navigation Buttons - Only on Mobile */
        .mobile-nav-buttons {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: none;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            padding: 12px 20px;
            border-radius: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            z-index: 999;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.dark-mode .mobile-nav-buttons {
            background: rgba(30, 30, 30, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Mobile Nav Buttons - No color by default */
        .mobile-nav-btn {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--dark);
            border-radius: 50%;
            font-weight: 600;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        body.dark-mode .mobile-nav-btn {
            background: rgba(30, 30, 30, 0.2);
            color: var(--gray);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Add color on hover/active */
        .mobile-nav-btn:hover,
        .mobile-nav-btn.active {
            background: var(--primary);
            transform: translateY(-5px);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
        }

        body.dark-mode .mobile-nav-btn:hover,
        body.dark-mode .mobile-nav-btn.active {
            background: var(--primary);
            color: white;
            box-shadow: 0 10px 20px rgba(77, 171, 247, 0.3);
        }

        .mobile-nav-btn i {
            font-size: 1.2rem;
        }

        /* Connect Button for Mobile - No color by default */
        .mobile-connect-btn {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--dark);
            border-radius: 50%;
            font-weight: 600;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            border: none;
            position: relative;
        }

        body.dark-mode .mobile-connect-btn {
            background: rgba(30, 30, 30, 0.2);
            color: var(--gray);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Add color on hover/active */
        .mobile-connect-btn:hover,
        .mobile-connect-btn.active {
            background: var(--primary);
            transform: translateY(-5px);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
        }

        body.dark-mode .mobile-connect-btn:hover,
        body.dark-mode .mobile-connect-btn.active {
            background: var(--primary);
            color: white;
            box-shadow: 0 10px 20px rgba(77, 171, 247, 0.3);
        }

        /* Mobile Connect Dropdown */
        .mobile-connect-dropdown-content {
            position: absolute;
            bottom: 100%;
            right: 0;
            background: var(--light);
            min-width: 200px;
            border-radius: 12px;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
            padding: 15px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 1001;
            margin-bottom: 10px;
        }

        body.dark-mode .mobile-connect-dropdown-content {
            background: var(--light-gray);
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
        }

        .mobile-connect-dropdown.show .mobile-connect-dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mobile-connect-dropdown-content a {
            display: flex;
            align-items: center;
            padding: 10px 12px;
            text-decoration: none;
            color: var(--dark);
            border-radius: 8px;
            transition: all 0.3s ease;
            gap: 10px;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .mobile-connect-dropdown-content a:last-child {
            margin-bottom: 0;
        }

        .mobile-connect-dropdown-content a:hover {
            background: var(--light-gray);
            color: var(--primary);
        }

        body.dark-mode .mobile-connect-dropdown-content a:hover {
            background: rgba(77, 171, 247, 0.1);
        }

        .mobile-connect-dropdown-content a i {
            width: 18px;
            text-align: center;
            font-size: 0.95rem;
        }

        .mobile-connect-dropdown-content h4 {
            font-size: 0.8rem;
            color: var(--gray);
            margin-bottom: 8px;
            padding: 0 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Dark Mode Toggle Button - Mobile - No color by default */
        .mobile-dark-mode-toggle {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--dark);
            border-radius: 50%;
            font-weight: 600;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            border: none;
        }

        body.dark-mode .mobile-dark-mode-toggle {
            background: rgba(30, 30, 30, 0.2);
            color: var(--gray);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Add color on hover */
        .mobile-dark-mode-toggle:hover {
            background: var(--primary);
            transform: translateY(-5px);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
        }

        body.dark-mode .mobile-dark-mode-toggle:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 10px 20px rgba(77, 171, 247, 0.3);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            /* Hide Desktop Header on Mobile */
            .desktop-header {
                display: none;
            }

            /* Mobile Navigation Buttons - Visible on Mobile */
            .mobile-nav-buttons {
                display: flex;
            }

            /* Mobile zoom in effect */
            body {
                zoom: 1.02;
            }

            /* Hero Mobile */
            .hero {
                padding: 60px 0 30px;
            }
            
            .hero-content {
                margin: 0 auto 30px;
            }

            /* Mobile Font Sizes */
            .hero h1 {
                font-size: 2.2rem;
                margin-bottom: 12px;
            }

            .hero h2 {
                font-size: 1.3rem;
                margin-bottom: 8px;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 10px;
            }

            .hero .highlight {
                font-size: 1.5rem;
                padding: 0 6px;
            }

            /* Profile Mobile */
            .profile-section {
                margin-top: 20px;
            }

            .profile-image {
                width: 320px;
                height: 400px;
                border-radius: 15px;
            }

            .profile-photo {
                border-radius: 15px;
            }

            .profile-overlay {
                padding: 20px;
                border-radius: 0 0 15px 15px;
            }

            .profile-overlay h3 {
                font-size: 1.2rem;
            }

            .profile-overlay p {
                font-size: 0.85rem;
            }

            /* Social Mobile */
            .social-section {
                top: -20px;
            }

            .social-container {
                padding: 10px 16px;
                gap: 10px;
                border-radius: 40px;
            }

            .social-icon {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }

            /* Adjust mobile nav buttons for connect button */
            .mobile-nav-buttons {
                gap: 6px;
            }

            /* About Mobile - Adjust spacing */
            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .about-content {
                padding: 0 15px;
            }

            .about-text {
                text-align: left;
                padding-right: 20px;
                margin-right: 0;
            }

            /* Education Mobile */
            .education-timeline::before {
                left: 15px;
            }

            .timeline-item {
                flex-direction: column;
            }

            .timeline-date {
                margin-right: 0;
                margin-bottom: 15px;
                align-self: flex-start;
            }

            .timeline-content {
                padding: 20px;
            }

            /* Skills Mobile - Box Style */
            .skills-container {
                gap: 25px;
                padding: 0 15px;
            }

            .skill-box {
                padding: 25px;
            }

            .skill-header {
                gap: 15px;
            }

            .skill-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .skill-title h3 {
                font-size: 1.4rem;
            }

            /* Experience Mobile */
            .experience-card {
                padding: 20px;
            }

            .experience-header {
                flex-direction: column;
                gap: 15px;
            }

            .experience-date {
                align-self: flex-start;
            }

            /* Achievements Mobile */
            .achievement-card {
                padding: 20px;
            }

            .achievement-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            /* Footer Mobile */
            .footer {
                padding: 50px 0 20px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .contact-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 70px 0 40px;
            }
            
            .social-section {
                top: -25px;
            }
            
            .social-container {
                gap: 8px;
            }
            
            .mobile-nav-buttons {
                bottom: 15px;
                padding: 10px 15px;
                gap: 6px;
            }
            
            .mobile-nav-btn, .mobile-connect-btn, .mobile-dark-mode-toggle {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .mobile-nav-btn i, .mobile-connect-btn i, .mobile-dark-mode-toggle i {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 400px) {
            .hero {
                padding: 70px 0 20px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero h2 {
                font-size: 1.1rem;
            }
            
            .hero p {
                font-size: 0.9rem;
            }
            
            .hero .highlight {
                font-size: 1.3rem;
            }
            
            .profile-image {
                width: 280px;
                height: 350px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .mobile-nav-buttons {
                bottom: 10px;
                padding: 8px 12px;
                gap: 4px;
            }
            
            .mobile-nav-btn, .mobile-connect-btn, .mobile-dark-mode-toggle {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .mobile-nav-btn i, .mobile-connect-btn i, .mobile-dark-mode-toggle i {
                font-size: 1rem;
            }
            
            /* Skills Mobile */
            .skill-box {
                padding: 20px;
            }
            
            .skill-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .skill-title h3 {
                font-size: 1.2rem;
            }
        }
