
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        :root {
            --primary: #6c63ff;
            --secondary: #4a42e8;
            --dark: #0f172a;
            --light: #f8fafc;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: var(--light);
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        /* Floating Glassmorphism Navigation */
        #main-nav {
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            margin: 20px auto;
            width: calc(100% - 40px);
            max-width: 1200px;
        }

        /* Navigation Links */
        .nav-link {
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 16px;
            border-radius: 8px;
        }

        .nav-link:hover {
            color: white;
            background: rgba(108, 99, 255, 0.2);
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: white;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 2px;
            background: linear-gradient(90deg, rgba(108, 99, 255, 0), #6c63ff, rgba(108, 99, 255, 0));
            border-radius: 2px;
            animation: underlineGrow 0.3s ease-out;
        }

        @keyframes underlineGrow {
            from { width: 0; opacity: 0; }
            to { width: 60%; opacity: 1; }
        }

       /* Mobile Menu Base State */
#mobile-menu {
  position: fixed;
  top: 70px;
  right: 20px;
  width: 260px;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(15, 23, 42, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
}

/* Show state */
#mobile-menu.show {
  transform: translateX(0);
}

/* Links hidden by default */
#mobile-menu a {
  display: block;           /* stack vertically */
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

/* Animate in when menu is open */
#mobile-menu.show a {
  transform: translateY(0);
  opacity: 1;
  transition-delay: var(--delay, 0s);
  padding: 12px 24px;
  border-radius: 8px;
  margin: 6px 0;
}

/* Hover effect */
#mobile-menu.show a:hover {
  background: rgba(108, 99, 255, 0.2);
}

        /* Hamburger to X Animation */
        #menu-toggle {
            transition: all 0.3s ease;
        }

        #menu-toggle:hover {
            transform: scale(1.1);
        }

        #menu-toggle.active #bar1 {
            transform: translateY(8px) rotate(45deg);
            background: #6c63ff;
        }

        #menu-toggle.active #bar2 {
            opacity: 0;
            transform: scale(0);
        }

        #menu-toggle.active #bar3 {
            transform: translateY(-8px) rotate(-45deg);
            background: #6c63ff;
        }

        /* Nav Indicator Animation */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-visible {
            opacity: 1;
            transform: translateY(0);
            animation: fadeInDown 0.5s ease-out;
        }
        
        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
            border: 1px solid rgba(108, 99, 255, 0.3);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(108, 99, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(108, 99, 255, 0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hero Section Animations */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(108, 99, 255, 0.1), rgba(74, 66, 232, 0.1));
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 60px;
            height: 60px;
            top: 20%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        .shape-4 {
            width: 70px;
            height: 70px;
            bottom: 10%;
            right: 10%;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        .animate-float {
            animation: float 4s ease-in-out infinite;
        }

        .animate-float-delayed {
            animation: float 4s ease-in-out infinite;
            animation-delay: 1s;
        }

        .animate-gradient {
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        .typing-cursor::after {
            content: '|';
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% {
                opacity: 1;
            }
            51%, 100% {
                opacity: 0;
            }
        }
        
        .device-mockup {
            position: relative;
            max-width: 100%;
        }
        
        .laptop-mockup {
            width: 600px;
            height: 400px;
            background: #222;
            border-radius: 20px;
            padding: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            position: relative;
            margin: 0 auto;
        }
        
        .laptop-screen {
            width: 100%;
            height: 100%;
            background: #111;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }
        
        .laptop-screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(108, 99, 255, 0.3));
            z-index: 1;
        }
        
        .phone-mockup {
            width: 150px;
            height: 280px;
            background: #222;
            border-radius: 25px;
            padding: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: absolute;
            bottom: -50px;
            right: 50px;
        }
        
        .phone-screen {
            width: 100%;
            height: 100%;
            background: #111;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }
        
        .phone-screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(108, 99, 255, 0.3));
            z-index: 1;
        }
        
        .mockup-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1e293b, #0f172a);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .feature-card {
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .feature-card:hover {
            transform: scale(1.05);
        }
        
        .feature-card.expanded {
            transform: scale(1.1);
            z-index: 10;
        }
        
        .chatbot {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .chatbot-bubble {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(108, 99, 255, 0.5);
            transition: all 0.3s ease;
        }
        
        .chatbot-bubble:hover {
            transform: scale(1.1);
        }
        
        .chatbot-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 300px;
            max-height: 400px;
            overflow-y: auto;
            border-radius: 15px;
            transform: scale(0);
            transform-origin: bottom right;
            transition: all 0.3s ease;
            opacity: 0;
        }
        
        .chatbot-window.active {
            transform: scale(1);
            opacity: 1;
        }
        
        .chat-message {
            margin: 10px;
            padding: 10px 15px;
            border-radius: 15px;
            max-width: 80%;
        }
        
        .bot-message {
            background: rgba(255, 255, 255, 0.1);
            border-top-left-radius: 5px;
            align-self: flex-start;
        }
        
        .user-message {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-bottom-right-radius: 5px;
            align-self: flex-end;
        }
        
        .faq-item {
            margin: 5px 0;
            padding: 10px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .carousel {
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
        }
        
        /* Projects Section Styles */
        .project-card {
            position: absolute;
            width: 200px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            overflow: hidden;
            transform-style: preserve-3d;
            will-change: transform;
            cursor: pointer;
        }

        .project-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(108, 99, 255, 0.3));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover {
            transform: translateX(-50%) translateY(-20px) scale(1.05);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.3);
            z-index: 10;
        }

        .project-card:hover::before {
            opacity: 1;
        }
        
        .project-card.expanded {
            transform: translateX(-50%) translateY(-50%) scale(1.2) !important;
            z-index: 100 !important;
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.5);
        }
        
        .project-card.expanded:hover {
            transform: translateX(-50%) translateY(-50%) scale(1.2) !important;
        }
        
        .project-card.expanded::before {
            opacity: 1;
        }

        .project-card:hover .project-details {
            opacity: 1;
            transform: translateY(0);
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .project-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            z-index: 2;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        }

        .project-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .project-tagline {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .project-details {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 20px;
            background: rgba(15, 23, 42, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 3;
        }

        .project-description {
            margin-bottom: 1rem;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .tech-tag {
            background: rgba(108, 99, 255, 0.2);
            color: #6c63ff;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
        }

        .project-link {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            text-align: center;
            margin-top: auto;
        }

        @media (max-width: 768px) {
            .projects-carousel {
                height: 400px;
            }

            .project-card {
                width: 120px;
                height: 180px;
            }

            .project-card.expanded {
                width: 200px;
                height: 300px;
            }

            .project-title {
                font-size: 1rem;
            }
        }
            .laptop-mockup {
                width: 90%;
                height: 250px;
            }
            
            .phone-mockup {
                width: 100px;
                height: 180px;
                bottom: -30px;
                right: 20px;
            }
            
            .chatbot-window {
                width: 280px;
            }
        
    