@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ========== FUTURISTIC CUSTOM CURSOR ========== */
        .custom-cursor {
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 99999;
            mix-blend-mode: screen;
        }

        /* Main cursor - geometric diamond shape */
        .cursor-main {
            width: 24px;
            height: 24px;
            position: absolute;
            transform: translate(-50%, -50%) rotate(45deg);
            transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .cursor-diamond {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ff6b35 0%, #ff4500 50%, #dc143c 100%);
            box-shadow: 
                0 0 20px rgba(255, 107, 53, 0.6),
                0 0 40px rgba(255, 69, 0, 0.4),
                inset 0 0 10px rgba(255, 255, 255, 0.3);
            animation: cursorBreathing 3s ease-in-out infinite;
            border-radius: 2px;
        }

        @keyframes cursorBreathing {
            0%, 100% { 
                box-shadow: 
                    0 0 20px rgba(255, 107, 53, 0.6),
                    0 0 40px rgba(255, 69, 0, 0.4),
                    inset 0 0 10px rgba(255, 255, 255, 0.3);
            }
            50% { 
                box-shadow: 
                    0 0 30px rgba(255, 107, 53, 0.8),
                    0 0 60px rgba(255, 69, 0, 0.6),
                    inset 0 0 15px rgba(255, 255, 255, 0.5);
            }
        }

        /* Trailing follower cursor */
        .cursor-follower {
            width: 40px;
            height: 40px;
            position: absolute;
            transform: translate(-50%, -50%) rotate(45deg);
            border: 2px solid rgba(255, 107, 53, 0.3);
            border-radius: 3px;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
        }

        /* Orbiting particles */
        .cursor-orbit {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #ff6b35;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
            animation: orbit 2s linear infinite;
            opacity: 0.8;
        }

        .cursor-orbit:nth-child(2) { animation-delay: -0.5s; }
        .cursor-orbit:nth-child(3) { animation-delay: -1s; }
        .cursor-orbit:nth-child(4) { animation-delay: -1.5s; }

        @keyframes orbit {
            0% { 
                transform: translate(-50%, -50%) rotate(0deg) translateX(30px) rotate(0deg); 
            }
            100% { 
                transform: translate(-50%, -50%) rotate(360deg) translateX(30px) rotate(-360deg); 
            }
        }

        /* Hover state - expand and glow */
        .cursor-hover .cursor-main {
            width: 32px;
            height: 32px;
        }

        .cursor-hover .cursor-diamond {
            background: linear-gradient(135deg, #ff8c42 0%, #ff4500 50%, #ff1744 100%);
            box-shadow: 
                0 0 30px rgba(255, 140, 66, 0.8),
                0 0 60px rgba(255, 69, 0, 0.6),
                inset 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .cursor-hover .cursor-follower {
            width: 60px;
            height: 60px;
            border-color: rgba(255, 140, 66, 0.5);
            background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
        }

        /* Click state - pulse ripple */
        .cursor-clicking .cursor-main {
            width: 20px;
            height: 20px;
        }

        .cursor-clicking .cursor-follower {
            width: 50px;
            height: 50px;
        }

        /* Click ripple effect */
        .cursor-ripple {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 107, 53, 0.8);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99998;
            animation: rippleEffect 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes rippleEffect {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(3);
                opacity: 0;
            }
        }

        /* Text/Link hover - color shift to deeper red */
        .cursor-text .cursor-diamond {
            background: linear-gradient(135deg, #ff3c00 0%, #e91e63 50%, #c62828 100%);
            box-shadow: 
                0 0 30px rgba(255, 60, 0, 0.8),
                0 0 60px rgba(233, 30, 99, 0.6),
                inset 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .cursor-text .cursor-follower {
            border-color: rgba(255, 60, 0, 0.5);
            background: radial-gradient(circle, rgba(255, 60, 0, 0.15) 0%, transparent 70%);
        }

        /* Mobile - hide custom cursor */
        @media (max-width: 768px), (hover: none) {
            .custom-cursor {
                display: none !important;
            }
        }

        html {
            scroll-behavior: smooth;
            height: -webkit-fill-available;
        }

        body {
            background: #000000;
            background-attachment: fixed;
            min-height: 100vh;
            min-height: -webkit-fill-available;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            padding-top: 0;
            touch-action: pan-y;
            -webkit-tap-highlight-color: rgba(139, 92, 246, 0.2);
        }

        html, body {
            max-width: 100vw;
            overflow-x: hidden;
            position: relative;
            width: 100%;
        }

        a, button, .social-link, input, textarea {
            -webkit-tap-highlight-color: rgba(139, 92, 246, 0.3);
            touch-action: manipulation;
        }

        /* ========== GLASS MORPHISM NAVBAR ========== */
        .glass-navbar {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 15px 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            animation: navSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 0;
            animation-fill-mode: forwards;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-style: normal;
        }

        @keyframes navSlideDown {
            0% {
                opacity: 0;
                transform: translateX(-50%) translateY(-30px) scale(0.95);
                filter: blur(10px);
            }
            100% {
                opacity: 1;
                transform: translateX(-50%) translateY(0) scale(1);
                filter: blur(0);
            }
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .navbar-logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            animation: logoRotate 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
        }

        @keyframes logoRotate {
            0% {
                transform: scale(0) rotate(-180deg);
                opacity: 0;
            }
            60% {
                transform: scale(1.1) rotate(10deg);
            }
            100% {
                transform: scale(1) rotate(0);
                opacity: 1;
            }
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

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

        .navbar-menu li {
            margin: 0;
            opacity: 0;
            animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .navbar-menu li:nth-child(1) { animation-delay: 0.3s; }
        .navbar-menu li:nth-child(2) { animation-delay: 0.4s; }
        .navbar-menu li:nth-child(3) { animation-delay: 0.5s; }
        .navbar-menu li:nth-child(4) { animation-delay: 0.6s; }
        .navbar-menu li:nth-child(5) { animation-delay: 0.7s; }
        .navbar-menu li:nth-child(6) { animation-delay: 0.8s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .navbar-menu a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 12px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: block;
            position: relative;
        }

        .navbar-menu a:hover {
            color: white;
            background: rgba(139, 92, 246, 0.2);
            transform: translateY(-2px);
        }

        .navbar-menu a.active {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
            color: white;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }

        .navbar-cta {
            display: flex;
            gap: 10px;
            opacity: 0;
            animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .nav-btn {
            padding: 10px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
        }

        .nav-btn-outline {
            color: white;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .nav-btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }

        .nav-btn-primary {
            background: linear-gradient(135deg, #8B5CF6, #3B82F6);
            color: white;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }

        .nav-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
        }

        .navbar-toggle {
            display: none;
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid rgba(139, 92, 246, 0.4);
            border-radius: 12px;
            padding: 10px 14px;
            color: white;
            font-size: 1.4rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
        }

        .navbar-toggle:hover {
            background: rgba(139, 92, 246, 0.3);
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
        }

        .navbar-toggle:active {
            transform: scale(0.95);
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            body {
                padding-top: 0;
            }

            .glass-navbar {
                top: 10px;
                width: 95%;
                padding: 12px 20px;
                border-radius: 18px;
            }

            .navbar-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                animation: fadeInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
            }

            @keyframes fadeInRight {
                from {
                    opacity: 0;
                    transform: translateX(20px) scale(0.8);
                }
                to {
                    opacity: 1;
                    transform: translateX(0) scale(1);
                }
            }

            .navbar-menu {
                position: absolute;
                top: calc(100% + 15px);
                left: 0;
                right: 0;
                flex-direction: column;
                background: rgba(26, 21, 53, 0.95);
                backdrop-filter: blur(30px);
                -webkit-backdrop-filter: blur(30px);
                border: 1px solid rgba(139, 92, 246, 0.3);
                border-radius: 18px;
                padding: 20px;
                gap: 8px;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transform: translateY(-20px);
                transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                            opacity 0.4s ease, 
                            transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
            }

            .navbar-menu.active {
                max-height: 600px;
                opacity: 1;
                transform: translateY(0);
            }

            .navbar-menu li {
                opacity: 0;
                transform: translateX(-20px);
                animation: none;
            }

            .navbar-menu.active li {
                animation: slideInLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }

            .navbar-menu.active li:nth-child(1) { animation-delay: 0.05s; }
            .navbar-menu.active li:nth-child(2) { animation-delay: 0.1s; }
            .navbar-menu.active li:nth-child(3) { animation-delay: 0.15s; }
            .navbar-menu.active li:nth-child(4) { animation-delay: 0.2s; }
            .navbar-menu.active li:nth-child(5) { animation-delay: 0.25s; }
            .navbar-menu.active li:nth-child(6) { animation-delay: 0.3s; }

            @keyframes slideInLeft {
                from {
                    opacity: 0;
                    transform: translateX(-20px);
                }
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }

            .navbar-menu a {
                padding: 14px 18px;
                text-align: left;
                font-size: 1rem;
                border-radius: 12px;
                background: rgba(139, 92, 246, 0.05);
                border: 1px solid rgba(139, 92, 246, 0.1);
            }

            .navbar-menu a:hover {
                background: rgba(139, 92, 246, 0.2);
                border-color: rgba(139, 92, 246, 0.3);
                transform: translateX(5px);
            }

            .navbar-menu a.active {
                background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
                border-color: rgba(139, 92, 246, 0.5);
            }

            .navbar-cta {
                flex-direction: column;
                margin-top: 10px;
                padding-top: 15px;
                border-top: 1px solid rgba(139, 92, 246, 0.2);
                gap: 10px;
                opacity: 1;
                animation: none;
            }

            .nav-btn {
                text-align: center;
                width: 100%;
                padding: 14px 24px;
                font-size: 1rem;
                border-radius: 12px;
            }

            .nav-btn-primary {
                background: linear-gradient(135deg, #8B5CF6, #3B82F6);
                box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
            }

            .nav-btn-outline {
                background: rgba(139, 92, 246, 0.15);
                border: 1.5px solid rgba(139, 92, 246, 0.4);
            }

            .logo-icon {
                width: 35px;
                height: 35px;
            }

            .navbar-logo {
                font-size: 1.3rem;
            }

            .navbar-logo span {
                background: linear-gradient(135deg, #8B5CF6, #3B82F6);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                font-weight: 800;
            }
        }

        @media (max-width: 480px) {
            .glass-navbar {
                padding: 10px 15px;
                width: 96%;
                border-radius: 16px;
            }

            .navbar-logo {
                font-size: 1.15rem;
                gap: 8px;
            }

            .logo-icon {
                width: 32px;
                height: 32px;
                border-radius: 8px;
            }

            .navbar-toggle {
                padding: 8px 12px;
                font-size: 1.3rem;
            }

            .navbar-menu {
                padding: 16px;
                border-radius: 16px;
                top: calc(100% + 12px);
            }

            .navbar-menu a {
                padding: 12px 16px;
                font-size: 0.95rem;
            }

            .nav-btn {
                padding: 12px 20px;
                font-size: 0.95rem;
            }
        }

        /* Animated Background Orbs */
        .bg-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            pointer-events: none;
            z-index: 0;
        }

        .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
            top: -250px;
            left: -250px;
            animation: floatOrb1 20s ease-in-out infinite;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent);
            top: 50%;
            right: -200px;
            animation: floatOrb2 25s ease-in-out infinite;
        }

        .orb-3 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
            bottom: -300px;
            left: 30%;
            animation: floatOrb3 30s ease-in-out infinite;
        }

        .orb-4 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.5), transparent);
            top: 20%;
            right: 20%;
            animation: floatOrb4 22s ease-in-out infinite;
        }

        @keyframes floatOrb1 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(100px, 150px) scale(1.2);
            }
            66% {
                transform: translate(-80px, 100px) scale(0.9);
            }
        }

        @keyframes floatOrb2 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(-120px, -100px) scale(1.1);
            }
            66% {
                transform: translate(80px, 120px) scale(0.95);
            }
        }

        @keyframes floatOrb3 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(-150px, -80px) scale(1.15);
            }
            66% {
                transform: translate(100px, -120px) scale(0.9);
            }
        }

        @keyframes floatOrb4 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(90px, 110px) scale(1.25);
            }
            66% {
                transform: translate(-100px, -90px) scale(0.85);
            }
        }

        /* Animated Grid Lines */
        .grid-lines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 50px 50px;
            }
        }

        /* Floating Dots */
        .floating-dots {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(139, 92, 246, 0.6);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
        }

        /* Connect Section */
        .connect-section {
            position: relative;
            z-index: 1;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 150px 50px 100px;
            overflow: hidden;
        }

        .connect-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
            z-index: 0;
            animation: heroGlow 8s ease-in-out infinite;
        }

        @keyframes heroGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .connect-container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            animation: fadeInUp 1s ease-out forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .connect-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .connect-label {
            display: inline-block;
            font-size: 0.9rem;
            color: #8B5CF6;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            padding: 10px 25px;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 30px;
            border: 1px solid rgba(139, 92, 246, 0.3);
            width: fit-content;
        }

        .connect-info h1 {
            font-size: 4rem;
            font-weight: 900;
            color: white;
            margin-bottom: 30px;
            line-height: 1.1;
            background: linear-gradient(135deg, #fff, #8B5CF6, #3B82F6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .connect-info p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(139, 92, 246, 0.05);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(139, 92, 246, 0.1);
            border-color: rgba(139, 92, 246, 0.4);
            transform: translateX(10px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #8B5CF6, #3B82F6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-details h3 {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contact-details a,
        .contact-details p {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: #8B5CF6;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #8B5CF6;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: linear-gradient(135deg, #8B5CF6, #3B82F6);
            border-color: transparent;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
        }

        /* Contact Form */
        .contact-form {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 30px;
            padding: 50px 40px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            color: white;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            background: rgba(26, 21, 53, 0.5);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8B5CF6;
            background: rgba(26, 21, 53, 0.7);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 15px 30px;
            background: linear-gradient(135deg, #8B5CF6, #3B82F6);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            * {
                -webkit-tap-highlight-color: rgba(139, 92, 246, 0.15);
            }

            .connect-section {
                padding: 120px max(20px, env(safe-area-inset-right)) 80px max(20px, env(safe-area-inset-left));
            }

            .connect-container {
                grid-template-columns: 1fr;
                gap: 50px;
                max-width: 100%;
            }

            .connect-info {
                text-align: center;
                align-items: center;
            }

            .connect-label {
                font-size: 0.85rem;
                padding: 10px 22px;
                letter-spacing: 2.5px;
                margin: 0 auto 20px;
            }

            .connect-info h1 {
                font-size: 2.5rem;
                line-height: 1.2;
                margin-bottom: 25px;
                text-align: center;
            }

            .connect-info p {
                font-size: 1.1rem;
                line-height: 1.7;
                text-align: center;
                max-width: 600px;
                margin: 0 auto 40px;
            }

            .contact-methods {
                display: flex;
                flex-direction: column;
                gap: 20px;
                margin-bottom: 35px;
                width: 100%;
                max-width: 500px;
            }

            .contact-item {
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: 15px;
                padding: 20px;
                background: rgba(139, 92, 246, 0.08);
                border: 1.5px solid rgba(139, 92, 246, 0.25);
                border-radius: 16px;
                transition: all 0.3s ease;
            }

            .contact-item:active {
                transform: scale(0.98);
                background: rgba(139, 92, 246, 0.12);
            }

            .contact-icon {
                width: 50px;
                height: 50px;
                min-width: 50px;
            }

            .contact-details {
                text-align: left;
            }

            .contact-details h3 {
                font-size: 1.1rem;
                margin-bottom: 8px;
            }

            .contact-details a {
                font-size: 1rem;
                word-break: break-word;
            }

            .social-links {
                justify-content: center;
                gap: 15px;
                flex-wrap: wrap;
                margin-bottom: 40px;
            }

            .social-link {
                width: 54px;
                height: 54px;
                background: rgba(139, 92, 246, 0.08);
                border: 1.5px solid rgba(139, 92, 246, 0.25);
                transition: all 0.3s ease;
            }

            .social-link:active {
                transform: scale(0.95);
            }

            .contact-form {
                padding: 40px 28px;
                border-radius: 24px;
                max-width: 100%;
            }

            .form-group {
                margin-bottom: 25px;
            }

            .form-group label {
                font-size: 1rem;
                margin-bottom: 10px;
                display: block;
            }

            .form-group input,
            .form-group textarea {
                padding: 16px 18px;
                font-size: 16px; /* Prevents iOS zoom */
                border-radius: 14px;
                width: 100%;
            }

            .form-group textarea {
                min-height: 150px;
            }

            .submit-btn {
                padding: 16px 35px;
                font-size: 1.1rem;
                min-height: 54px;
            width: 100%;
            border-radius: 14px;
        }

        .bg-orb {
            opacity: 0.3 !important;
            filter: blur(80px) !important;
            animation-duration: 30s !important;
            display: block !important;
        }
        
        .grid-lines {
            opacity: 0.8 !important;
            background-size: 40px 40px !important;
            animation-duration: 30s !important;
            background-image:
                linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px) !important;
            display: block !important;
        }
        
        .floating-dots {
            opacity: 0.6 !important;
            display: block !important;
        }
    }        @media (max-width: 480px) {
            .connect-section {
                padding: 100px 15px 60px;
            }

            .connect-label {
                font-size: 0.75rem;
                padding: 8px 18px;
                letter-spacing: 2px;
            }

            .connect-info h1 {
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 20px;
            }

            .connect-info p {
                font-size: 1rem;
                line-height: 1.65;
                margin-bottom: 35px;
            }

            .contact-methods {
                max-width: 100%;
            }

            .contact-item {
                padding: 18px 15px;
                gap: 12px;
            }

            .contact-icon {
                width: 48px;
                height: 48px;
                min-width: 48px;
            }

            .contact-details h3 {
                font-size: 1rem;
                margin-bottom: 6px;
            }

            .contact-details a {
                font-size: 0.95rem;
            }

            .social-links {
                gap: 12px;
                margin-bottom: 35px;
            }

            .social-link {
                width: 50px;
                height: 50px;
            }

            .contact-form {
                padding: 30px 20px;
                border-radius: 20px;
            }

            .form-group {
                margin-bottom: 22px;
            }

            .form-group label {
                font-size: 0.95rem;
                margin-bottom: 8px;
            }

            .form-group input,
            .form-group textarea {
                padding: 14px 16px;
                font-size: 16px; /* Prevents iOS zoom */
                border-radius: 12px;
            }

            .form-group textarea {
                min-height: 130px;
            }

            .submit-btn {
                padding: 16px 30px;
                font-size: 1rem;
                min-height: 52px;
                border-radius: 12px;
            }
        }

        /* ========== TOAST NOTIFICATION ========== */
        .toast-notification {
            position: fixed;
            top: 100px;
            right: -400px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(59, 130, 246, 0.95));
            color: white;
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5);
            z-index: 10000;
            display: flex;
            align-items: center;
            gap: 15px;
            min-width: 320px;
            max-width: 400px;
            transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .toast-notification.show {
            right: 30px;
        }

        .toast-notification.success {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95));
            box-shadow: 0 10px 40px rgba(16, 185, 129, 0.5);
        }

        .toast-notification.error {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.95), rgba(220, 38, 38, 0.95));
            box-shadow: 0 10px 40px rgba(239, 68, 68, 0.5);
        }

        .toast-icon {
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .toast-content {
            flex: 1;
        }

        .toast-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .toast-message {
            font-size: 0.9rem;
            opacity: 0.95;
            line-height: 1.4;
        }

        .toast-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .toast-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        /* ========== FOOTER SECTION ========== */
        .footer {
            position: relative;
            width: 100%;
            background: linear-gradient(180deg, rgba(15, 12, 41, 0.98), #0a0814);
            padding: 80px 50px 30px;
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            margin-top: 100px;
        }

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

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        .footer-brand {
            max-width: 350px;
        }

        .footer-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #8B5CF6, #3B82F6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }

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

        .footer-social .social-link {
            width: 45px;
            height: 45px;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #8B5CF6;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social .social-link:hover {
            background: linear-gradient(135deg, #8B5CF6, #3B82F6);
            border-color: transparent;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
        }

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

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #8B5CF6, #3B82F6);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #8B5CF6;
            transform: translateX(5px);
        }

        .footer-newsletter {
            margin-top: 20px;
        }

        .newsletter-input {
            width: 100%;
            padding: 15px 20px;
            background: rgba(139, 92, 246, 0.05);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 30px;
            color: white;
            font-size: 0.95rem;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #8B5CF6;
            background: rgba(139, 92, 246, 0.1);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-btn {
            width: 100%;
            padding: 15px 30px;
            background: linear-gradient(135deg, #8B5CF6, #3B82F6);
            border: none;
            border-radius: 30px;
            color: white;
            font-size: 1rem;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
        }

        .newsletter-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .newsletter-message {
            margin-top: 12px;
            padding: 12px 18px;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .newsletter-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        .newsletter-message.success {
            background: rgba(34, 197, 94, 0.15);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #4ade80;
        }

        .newsletter-message.error {
            background: rgba(239, 68, 68, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #f87171;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        .footer-links-bottom {
            display: flex;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links-bottom a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-links-bottom a:hover {
            color: #8B5CF6;
        }

        @media (max-width: 968px) {
            .footer {
                padding: 60px 25px 30px !important;
                background: linear-gradient(180deg, rgba(15, 12, 41, 0.98), #050309);
            }

            .footer-container {
                padding: 0 !important;
            }

            .footer-top {
                grid-template-columns: 1fr !important;
                gap: 45px !important;
                margin-bottom: 40px !important;
                padding-bottom: 40px !important;
                border-bottom: 1px solid rgba(139, 92, 246, 0.15);
            }

            .footer-brand {
                max-width: 100% !important;
                text-align: center !important;
                padding: 0 10px;
            }

            .footer-logo {
                font-size: 2.5rem !important;
                text-align: center !important;
                display: block !important;
                margin-bottom: 18px !important;
                background: linear-gradient(135deg, #a78bfa, #60a5fa);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
            }

            .footer-brand p {
                font-size: 1rem !important;
                text-align: center !important;
                line-height: 1.8 !important;
                color: rgba(255, 255, 255, 0.75) !important;
                max-width: 500px;
                margin: 0 auto 25px !important;
            }

            .footer-social {
                justify-content: center !important;
                gap: 12px !important;
                flex-wrap: wrap;
            }

            .footer-social .social-link {
                width: 52px !important;
                height: 52px !important;
                font-size: 1.4rem !important;
                background: rgba(139, 92, 246, 0.08) !important;
                border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
                backdrop-filter: blur(10px);
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            }

            .footer-social .social-link:hover {
                transform: translateY(-5px) scale(1.05) !important;
                box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4) !important;
            }

            .footer-column {
                text-align: center !important;
                padding: 20px 15px;
                background: rgba(139, 92, 246, 0.03);
                border-radius: 16px;
                border: 1px solid rgba(139, 92, 246, 0.1);
            }

            .footer-column h3 {
                font-size: 1.2rem !important;
                text-align: center !important;
                margin-bottom: 22px !important;
                letter-spacing: 0.5px;
            }

            .footer-column h3::after {
                left: 50% !important;
                transform: translateX(-50%);
                width: 50px !important;
                height: 3px !important;
            }

            .footer-links {
                align-items: center !important;
            }

            .footer-links li {
                margin-bottom: 12px !important;
            }

            .footer-links a {
                font-size: 1rem !important;
                padding: 10px 0 !important;
                display: inline-block !important;
                color: rgba(255, 255, 255, 0.75) !important;
                position: relative;
            }

            .footer-links a::after {
                content: '';
                position: absolute;
                bottom: 5px;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 2px;
                background: linear-gradient(90deg, #8B5CF6, #3B82F6);
                transition: width 0.3s ease;
            }

            .footer-links a:hover::after {
                width: 80%;
            }

            .footer-newsletter {
                max-width: 100% !important;
                margin-top: 0 !important;
            }

            .newsletter-input {
                padding: 16px 20px !important;
                font-size: 16px !important;
                background: rgba(139, 92, 246, 0.08) !important;
                border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
                margin-bottom: 12px !important;
            }

            .newsletter-input:focus {
                background: rgba(139, 92, 246, 0.12) !important;
                box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
            }

            .newsletter-btn {
                padding: 16px 30px !important;
                font-size: 1rem !important;
                font-weight: 700 !important;
                background: linear-gradient(135deg, #8B5CF6, #3B82F6);
                box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
                min-height: 50px !important;
            }

            .newsletter-btn:hover {
                box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5) !important;
            }

            .footer-bottom {
                flex-direction: column !important;
                text-align: center !important;
                gap: 18px !important;
                padding-top: 30px !important;
                border-top: 1px solid rgba(139, 92, 246, 0.1);
            }

            .footer-copyright {
                font-size: 0.95rem !important;
                order: 2 !important;
                color: rgba(255, 255, 255, 0.65) !important;
                letter-spacing: 0.3px;
            }

            .footer-links-bottom {
                gap: 15px !important;
                justify-content: center !important;
                flex-wrap: wrap !important;
                order: 1 !important;
                flex-direction: row !important;
            }

            .footer-links-bottom a {
                font-size: 0.95rem !important;
                padding: 8px 12px !important;
                color: rgba(255, 255, 255, 0.7) !important;
                border-radius: 8px;
                transition: all 0.3s ease !important;
            }

            .footer-links-bottom a:hover {
                background: rgba(139, 92, 246, 0.1);
                color: #a78bfa !important;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 50px 15px 25px !important;
            }

            .footer-top {
                gap: 35px !important;
            }

            .footer-logo {
                font-size: 2.2rem !important;
            }

            .footer-brand p {
                font-size: 0.95rem !important;
            }

            .footer-social .social-link {
                width: 48px !important;
                height: 48px !important;
                font-size: 1.3rem !important;
            }

            .footer-column {
                padding: 15px 10px !important;
            }

            .footer-column h3 {
                font-size: 1.1rem !important;
            }

            .footer-links a {
                font-size: 0.95rem !important;
            }

            .newsletter-input,
            .newsletter-btn {
                padding: 14px 18px !important;
                font-size: 16px !important;
            }

            .footer-copyright,
            .footer-links-bottom a {
                font-size: 0.9rem !important;
            }
        }