:root {
  --cloud-white: #ffffff;
  --nimbus-blue: #1e3a8a;
  --sky-gradient-start: #0f172a;
  --sky-gradient-end: #1e40af;
  --accent-gold: #fbbf24;
  --text-light: #e2e8f0;
  --text-dark: #1e293b;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.nav-logo, .footer-logo, .section-label, .marker,
.hero-title, .section-heading, .passion-quote {
  font-family: 'Space Grotesk', sans-serif;
}

.highlight {
  color: var(--accent-gold);
}

/* ===== index.html ===== */
body.page-index *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root{
            --cloud-white: #ffffff;
            --nimbus-blue: #1e3a8a;
            --sky-gradient-start: #0f172a;
            --sky-gradient-end: #1e40af;
            --accent-gold: #fbbf24;
            --text-light: #e2e8f0;
            --text-dark: #1e293b;
        }

        body.page-index h1, body.page-index h2, body.page-index h3, body.page-index h4, body.page-index h5, body.page-index h6, body.page-index .nav-logo, body.page-index .footer-logo, body.page-index .section-label, body.page-index .marker, body.page-index .hero-title, body.page-index .section-heading, body.page-index .passion-quote{
            font-family: 'Space Grotesk', sans-serif;
        }

        body.page-index{
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        body.page-index .hero{
                min-height: 100vh;
                background:
                    linear-gradient(to bottom, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(10, 15, 30, 0.85) 100%),
                    url("images/planet-bg1.jpg") center center / cover no-repeat;
                position: relative;
                display: flex;
                align-items: stretch;
                justify-content: center;
                text-align: center;
                padding: 2rem;
                padding-top: 8rem;
                padding-bottom: 4rem;
                overflow: hidden;
            }

        body.page-index .hero::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(147, 197, 253, 0.15) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float{
            0%, 100%{ transform: translateY(0px); }
            50%{ transform: translateY(-20px); }
        }

        body.page-index .hero-content{
            position: relative;
            z-index: 1;
            width: min(1380px, 100%);
            min-height: calc(100vh - 7rem);
            display: grid;
            grid-template-rows: repeat(4, minmax(0, 1fr));
            align-items: center;
            gap: clamp(0.5rem, 1.5vh, 1.25rem);
            animation: fadeInUp 1s ease-out;
        }

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

        body.page-index .logo{
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0;
        }

        body.page-index .hero-logo-img{
            width: clamp(340px, 28vw, 480px);
            max-width: 90vw;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
        }

        body.page-index .headline{
            font-size: 2.5rem;
            color: var(--cloud-white);
            margin-bottom: 1.5rem;
            font-weight: 300;
            font-style: italic;
        }

        body.page-index .tagline{
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        body.page-index .hero-tagline{
            font-size: 2.2rem;
            color: var(--text-light);
            opacity: 0.85;
            margin: 0;
            letter-spacing: 0.5px;
            font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
            min-height: 1.6em;
            width: 100vw;
            max-width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            line-height: 1.6;
            align-self: center;
            white-space: nowrap;
            overflow-x: hidden;
            overflow-y: hidden;
            box-sizing: border-box;
            padding: 0 clamp(1rem, 3vw, 2.5rem);
            scrollbar-width: none;
            transform: translateY(0);
        }

        @media (max-width: 768px){
            body.page-index .hero-tagline{
                min-height: 1.6em;
                transform: translateY(0);
            }
        }

        body.page-index .hero-tagline::-webkit-scrollbar{
            display: none;
        }

        body.page-index .hero-tagline .cursor{
            display: inline-block;
            width: 2px;
            height: 1.1em;
            background: var(--accent-gold);
            margin-left: 2px;
            animation: blink 0.7s infinite;
            vertical-align: text-bottom;
        }

        @keyframes blink{
            0%, 50%{ opacity: 1; }
            51%, 100%{ opacity: 0; }
        }

        body.page-index .cta-buttons{
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin: -0.35rem 0 0;
            align-self: start;
        }

        body.page-index .hero-services{
            width: 100vw;
            position: relative;
            left: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            transform: none;
            margin-top: 0;
            margin-bottom: 0;
            align-self: stretch;
            display: flex;
            align-items: center;
            min-height: 0;
        }

        body.page-index .hero .services-track-wrapper{
            width: 100vw;
            max-width: 100vw;
        }

        body.page-index .hero .services-track{
            padding: 0.75rem 1rem;
            gap: 1rem;
        }

        body.page-index .hero .service-panel{
            flex: 0 0 clamp(210px, 16vw, 250px);
            height: clamp(220px, 28vh, 280px);
        }

        body.page-index .btn{
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
        }

        body.page-index .btn-primary{
            background: var(--accent-gold);
            color: var(--sky-gradient-start);
        }

        body.page-index .btn-primary:hover{
            background: #fcd34d;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
        }

        body.page-index .btn-secondary{
            background: transparent;
            color: var(--cloud-white);
            border: 2px solid var(--cloud-white);
        }

        body.page-index .btn-secondary:hover{
            background: var(--cloud-white);
            color: var(--nimbus-blue);
            transform: translateY(-3px);
        }

        
        body.page-index .btn-deploy{
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        body.page-index .btn-deploy::before{
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        body.page-index .btn-deploy:hover{
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
            color: white;
        }

        body.page-index .btn-deploy:hover::before{
            left: 100%;
        }

        
        body.page-index .btn-login{
            background: transparent;
            color: var(--cloud-white);
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 1rem 2rem;
            border-radius: 12px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        body.page-index .btn-login:hover{
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.6);
            color: white;
            transform: translateY(-2px);
        }

        
        body.page-index .mobile-only{
            display: none;
        }

        body.page-index .desktop-only{
            display: flex;
        }

        
        @media (max-width: 768px){
            body.page-index .mobile-only{
                display: flex;
            }

            body.page-index .desktop-only{
                display: none;
            }

            body.page-index .cta-buttons{
                gap: 1rem;
                margin-top: 0.35rem;
                margin-bottom: 1.25rem;
                padding: 0 1rem;
            }

            body.page-index .cta-buttons.mobile-only{
                margin-top: 0.5rem;
                margin-bottom: 4.25rem;
            }

            body.page-index .btn-deploy{
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        
        body.page-index .services-track-wrapper.collapsing{
            overflow: visible !important;
        }

        body.page-index .services-track-wrapper.collapsing::before, body.page-index .services-track-wrapper.collapsing::after{
            display: none !important;
        }

        body.page-index .cards-collapsing{
            position: relative;
        }

        body.page-index .cards-collapsing .service-panel{
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
            position: absolute !important;
            opacity: 1 !important;
        }

        body.page-index .rocket-container{
            position: fixed;
            bottom: -300px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10010;
            pointer-events: none;
            transition: bottom 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        body.page-index .rocket-container.launching{
            bottom: 120%;
        }

        body.page-index .rocket{
            font-size: 120px;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
            animation: rocketShake 0.1s infinite;
        }

        @keyframes rocketShake{
            0%, 100%{ transform: translateX(0); }
            25%{ transform: translateX(-2px); }
            75%{ transform: translateX(2px); }
        }

        body.page-index .rocket-smoke{
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        body.page-index .smoke-particle{
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(200, 200, 200, 0.6) 50%, transparent 70%);
            border-radius: 50%;
            animation: smokeRise 0.8s ease-out infinite;
        }

        body.page-index .smoke-particle:nth-child(2){ animation-delay: 0.1s; width: 50px; height: 50px; }
        body.page-index .smoke-particle:nth-child(3){ animation-delay: 0.2s; width: 60px; height: 60px; }
        body.page-index .smoke-particle:nth-child(4){ animation-delay: 0.3s; width: 70px; height: 70px; }
        body.page-index .smoke-particle:nth-child(5){ animation-delay: 0.4s; width: 80px; height: 80px; }

        @keyframes smokeRise{
            0%{
                opacity: 1;
                transform: translateX(-50%) translateY(0) scale(1);
            }
            100%{
                opacity: 0;
                transform: translateX(-50%) translateY(100px) scale(2);
            }
        }

        body.page-index .launch-overlay{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0);
            z-index: 9998;
            pointer-events: none;
            transition: background 0.5s ease;
        }

        body.page-index .launch-overlay.active{
            background: rgba(15, 23, 42, 0.8);
        }

        body.page-index .launch-spinner{
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        body.page-index .launch-spinner.visible{
            opacity: 1;
        }

        body.page-index .launch-spinner .spinner{
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.2);
            border-top-color: var(--accent-gold);
            border-radius: 50%;
            animation: spinnerRotate 0.8s linear infinite;
        }

        @keyframes spinnerRotate{
            to{ transform: rotate(360deg); }
        }

        
        body.page-index .section-divider{
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.4), transparent);
            margin: 0;
            border: none;
        }

        body.page-index .section-divider.light{
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        }

        body.page-index .section-divider.thick{
            height: 2px;
        }

        
        body.page-index section{
            padding: 5rem 2rem;
        }

        body.page-index .container{
            max-width: 1200px;
            margin: 0 auto;
        }

        body.page-index h2{
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--nimbus-blue);
        }

        
        body.page-index .footer-cta{
            background: var(--sky-gradient-start);
            color: var(--cloud-white);
            text-align: center;
            padding: 4rem 2rem;
        }

        body.page-index .footer-cta h2{
            color: var(--cloud-white);
            margin-bottom: 1rem;
        }

        body.page-index .footer-cta p{
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        
        body.page-index .contact-btn{
            background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
            color: var(--sky-gradient-start);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
            transition: all 0.3s ease;
        }

        body.page-index .contact-btn:hover{
            background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
            color: var(--sky-gradient-start);
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 0 25px rgba(251, 191, 36, 0.8);
        }

        

        
        body.page-index .story-section{
            background:
                linear-gradient(180deg, rgba(10, 15, 30, 0.8) 0%, rgba(30, 58, 138, 0.85) 100%),
                url("images/about-bg.png") center center / cover no-repeat;
            background-attachment: fixed;
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
        }

        body.page-index .story-section::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        body.page-index .story-container{
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        
        body.page-index .fade-in-up{
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        body.page-index .fade-in-up.visible{
            opacity: 1;
            transform: translateY(0);
        }

        body.page-index .fade-in-left{
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        body.page-index .fade-in-left.visible{
            opacity: 1;
            transform: translateX(0);
        }

        body.page-index .fade-in-right{
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        body.page-index .fade-in-right.visible{
            opacity: 1;
            transform: translateX(0);
        }

        
        body.page-index .about-header{
            text-align: center;
            margin-bottom: 5rem;
        }

        body.page-index .about-header .section-label{
            display: inline-block;
            color: var(--accent-gold);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 1.5rem;
            padding: 0.5rem 1.5rem;
            border: 1px solid rgba(251, 191, 36, 0.3);
            border-radius: 50px;
        }

        body.page-index .about-header h2{
            font-size: 3rem;
            color: var(--cloud-white);
            font-weight: 300;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        body.page-index .about-header h2 .highlight{
            color: var(--accent-gold);
            font-weight: 600;
        }

        body.page-index .about-header .subtitle{
            font-size: 1.2rem;
            color: var(--text-light);
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        
        body.page-index .founder-section{
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        body.page-index .founder-image{
            position: relative;
        }

        body.page-index .founder-image .image-frame{
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }

        body.page-index .founder-image .image-frame::before{
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid rgba(251, 191, 36, 0.3);
            border-radius: 20px;
            pointer-events: none;
            z-index: 2;
        }

        body.page-index .founder-image img{
            width: 100%;
            height: auto;
            display: block;
        }

        body.page-index .founder-image .experience-badge{
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
            color: var(--sky-gradient-start);
            padding: 1.5rem;
            border-radius: 50%;
            width: 120px;
            height: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
            z-index: 3;
        }

        body.page-index .experience-badge .years{
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
        }

        body.page-index .experience-badge .label{
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            font-weight: 600;
        }

        body.page-index .founder-content h3{
            font-size: 2rem;
            color: var(--cloud-white);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        body.page-index .founder-content .role{
            color: var(--accent-gold);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
        }

        body.page-index .founder-content p{
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        body.page-index .founder-content .passion-quote{
            font-style: italic;
            color: var(--accent-gold);
            font-size: 1.2rem;
            padding-left: 1.5rem;
            border-left: 3px solid var(--accent-gold);
            margin: 2rem 0;
        }

        
        body.page-index .founder-section.founder-centered{
            display: block;
            max-width: 800px;
            margin: 0 auto 5rem;
            text-align: center;
        }

        body.page-index .founder-centered .founder-content{
            text-align: center;
        }

        body.page-index .founder-centered .founder-content .passion-quote{
            border-left: none;
            padding-left: 0;
            border-top: 2px solid var(--accent-gold);
            border-bottom: 2px solid var(--accent-gold);
            padding: 1.5rem 2rem;
            display: inline-block;
        }

        
        body.page-index .team-section{
            margin-bottom: 5rem;
        }

        body.page-index .team-intro{
            text-align: center;
            margin-bottom: 3rem;
        }

        body.page-index .team-intro h3{
            font-size: 2.2rem;
            color: var(--cloud-white);
            margin-bottom: 1rem;
        }

        body.page-index .team-intro h3 .highlight{
            color: var(--accent-gold);
            font-weight: 600;
        }

        body.page-index .team-intro p{
            font-size: 1.15rem;
            color: var(--text-light);
            opacity: 0.85;
            max-width: 700px;
            margin: 0 auto;
        }

        body.page-index .team-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        body.page-index .team-card{
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        body.page-index .team-card:hover{
            transform: translateY(-8px);
            border-color: rgba(251, 191, 36, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        body.page-index .team-card .icon{
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(251, 191, 36, 0.2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }

        body.page-index .team-card h4{
            color: var(--cloud-white);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        body.page-index .team-card p{
            color: var(--text-light);
            font-size: 0.95rem;
            opacity: 0.8;
            line-height: 1.6;
        }

        
        body.page-index .mission-statement{
            text-align: center;
            padding: 4rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        body.page-index .mission-statement::before{
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 60%);
            animation: pulse-glow 4s ease-in-out infinite;
        }

        @keyframes pulse-glow{
            0%, 100%{ opacity: 0.5; transform: scale(1); }
            50%{ opacity: 1; transform: scale(1.1); }
        }

        body.page-index .mission-statement .inner{
            position: relative;
            z-index: 1;
        }

        body.page-index .mission-statement .marker{
            display: inline-block;
            color: var(--accent-gold);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 5px;
            margin-bottom: 2rem;
            padding: 0.5rem 1.5rem;
            border: 1px solid rgba(251, 191, 36, 0.3);
            border-radius: 50px;
        }

        body.page-index .mission-statement blockquote{
            font-size: 2.5rem;
            color: var(--cloud-white);
            font-weight: 300;
            line-height: 1.4;
            margin: 0 0 1.5rem;
        }

        body.page-index .mission-statement blockquote .highlight{
            color: var(--accent-gold);
            font-weight: 600;
        }

        body.page-index .mission-statement .subtext{
            color: var(--text-light);
            font-size: 1.1rem;
            opacity: 0.7;
        }

        
        @media (max-width: 992px){
            body.page-index .founder-section{
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            body.page-index .founder-image{
                max-width: 400px;
                margin: 0 auto;
            }

            body.page-index .founder-image .experience-badge{
                width: 100px;
                height: 100px;
                bottom: -15px;
                right: -10px;
            }

            body.page-index .experience-badge .years{
                font-size: 2rem;
            }

            body.page-index .team-grid{
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px){
            body.page-index .story-section{
                padding: 4rem 1.5rem;
            }

            body.page-index .about-header h2{
                font-size: 2rem;
            }

            body.page-index .founder-content h3{
                font-size: 1.6rem;
            }

            body.page-index .founder-content p{
                font-size: 1rem;
            }

            body.page-index .team-intro h3{
                font-size: 1.6rem;
            }

            body.page-index .mission-statement{
                padding: 2.5rem 1.5rem;
            }

            body.page-index .mission-statement blockquote{
                font-size: 1.6rem;
            }
        }

        body.page-index .services-track-wrapper{
            max-width: 100%;
            overflow: hidden;
            position: relative;
        }

        body.page-index .services-track-wrapper::before, body.page-index .services-track-wrapper::after{
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 250px;
            z-index: 10;
            pointer-events: none;
        }

        body.page-index .services-track-wrapper::before{
            left: 0;
            background: linear-gradient(to right, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0) 100%);
        }

        body.page-index .services-track-wrapper::after{
            right: 0;
            background: linear-gradient(to left, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0) 100%);
        }

        body.page-index .hero .services-track-wrapper::before{
            background: linear-gradient(to right, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
        }

        body.page-index .hero .services-track-wrapper::after{
            background: linear-gradient(to left, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
        }

        body.page-index .services-track{
            display: flex;
            gap: 1.5rem;
            padding: 2rem;
            width: max-content;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            
            will-change: transform;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            transform: translate3d(0, 0, 0);
            -webkit-transform: translate3d(0, 0, 0);
        }

        body.page-index .services-track *{
            user-select: none;
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
            pointer-events: none;
        }

        body.page-index .service-panel{
            pointer-events: auto;
        }

        

        body.page-index .service-panel{
            flex: 0 0 280px;
            height: 320px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            scroll-snap-align: start;
            cursor: pointer;
            transition: opacity 0.5s ease, box-shadow 0.5s ease;
            opacity: 0.92;
            
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            transform: translate3d(0, 0, 0);
        }

        body.page-index .service-panel:hover, body.page-index .service-panel.selected{
            opacity: 1;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }

        body.page-index .service-panel.selected{
            outline: 3px solid var(--accent-gold);
            outline-offset: -1px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.3);
        }

        body.page-index .service-panel:hover .panel-content, body.page-index .service-panel.selected .panel-content{
            transform: translateY(0);
            opacity: 1;
        }

        body.page-index .service-panel:hover .panel-content p, body.page-index .service-panel.selected .panel-content p{
            opacity: 1;
            transform: translateY(0);
        }

        body.page-index .service-panel:hover .panel-bg, body.page-index .service-panel.selected .panel-bg{
            transform: scale(1.1);
        }

        
        body.page-index .service-panel.deselecting{
            transition: all 0.4s ease-out !important;
        }

        body.page-index .service-panel.deselecting .panel-content, body.page-index .service-panel.deselecting .panel-content p, body.page-index .service-panel.deselecting .panel-bg{
            transition: all 0.4s ease-out !important;
        }

        body.page-index .panel-bg{
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: all 0.5s ease;
        }

        body.page-index .service-panel:hover .panel-bg{
            transform: scale(1.1);
        }

        body.page-index .service-panel[data-service="webdev"] .panel-bg{
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.7) 0%, rgba(59, 130, 246, 0.7) 100%), url('images/web-app-dev.png') center/cover no-repeat;
        }
        body.page-index .service-panel[data-service="ecommerce"] .panel-bg{
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.7) 0%, rgba(16, 185, 129, 0.7) 100%), url('images/product-ecommerce.png') center/cover no-repeat;
        }
        body.page-index .service-panel[data-service="affiliate"] .panel-bg{
            background: linear-gradient(135deg, rgba(217, 119, 6, 0.7) 0%, rgba(245, 158, 11, 0.7) 100%), url('images/campaigns-growth.png') center/cover no-repeat;
        }
        body.page-index .service-panel[data-service="ai"] .panel-bg{
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.7) 0%, rgba(167, 139, 250, 0.7) 100%), url('images/ai-automation.png') center/cover no-repeat;
        }
        body.page-index .service-panel[data-service="programming"] .panel-bg{
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.7) 0%, rgba(248, 113, 113, 0.7) 100%), url('images/product-webapp.png') center/cover no-repeat;
        }
        body.page-index .service-panel[data-service="hosting"] .panel-bg{
            background: linear-gradient(135deg, rgba(8, 145, 178, 0.7) 0%, rgba(34, 211, 238, 0.7) 100%), url('images/product-enterprise-hosting.png') center/cover no-repeat;
        }
        body.page-index .service-panel[data-service="seo"] .panel-bg{
            background: linear-gradient(135deg, rgba(234, 88, 12, 0.7) 0%, rgba(251, 146, 60, 0.7) 100%), url('images/product-full-seo.png') center/cover no-repeat;
        }
        body.page-index .service-panel[data-service="marketing"] .panel-bg{
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.7) 0%, rgba(52, 211, 153, 0.7) 100%), url('images/limitless-innovation.png') center/cover no-repeat;
        }
        body.page-index .service-panel[data-service="design"] .panel-bg{
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.7) 0%, rgba(244, 114, 182, 0.7) 100%), url('images/design-mastery.png') center/cover no-repeat;
        }
        body.page-index .service-panel[data-service="content"] .panel-bg{
            background: linear-gradient(135deg, rgba(2, 132, 199, 0.7) 0%, rgba(56, 189, 248, 0.7) 100%), url('images/product-cms-training.png') center/cover no-repeat;
        }

        body.page-index .service-panel::before{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
            z-index: 1;
        }

        body.page-index .panel-content{
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            z-index: 2;
            transform: translateY(30px);
            opacity: 0.9;
            transition: all 0.5s ease;
        }

        body.page-index .service-panel:hover .panel-content{
            transform: translateY(0);
            opacity: 1;
        }

        body.page-index .panel-number{
            display: none;
        }

        body.page-index .panel-content h3{
            color: var(--cloud-white);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        body.page-index .panel-content p{
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease 0.1s;
        }

        body.page-index .service-panel:hover .panel-content p{
            opacity: 1;
            transform: translateY(0);
        }

        body.page-index .section-heading{
            color: var(--cloud-white);
            font-size: 2rem;
            text-align: center;
            margin-bottom: 2.5rem;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        
        
        body.page-index .portfolio-section{
            background:
                linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(10, 15, 30, 0.9) 100%),
                url("images/portfolio-bg.png") center center / cover no-repeat;
            background-attachment: fixed;
            padding: 6rem 2rem;
        }

        body.page-index .portfolio-header{
            text-align: center;
            margin-bottom: 3rem;
        }

        body.page-index .portfolio-header h2{
            color: var(--cloud-white);
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        body.page-index .portfolio-subtitle{
            color: var(--cloud-white);
            font-size: 1.2rem;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
            font-weight: 400;
            letter-spacing: 0.5px;
            position: relative;
        }

        body.page-index .portfolio-subtitle .typewriter-placeholder{
            visibility: hidden;
        }

        body.page-index .portfolio-subtitle .typewriter-text{
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
        }

        body.page-index .portfolio-subtitle .typing-cursor{
            display: inline-block;
            width: 2px;
            height: 1.2em;
            background: var(--accent-gold);
            margin-left: 2px;
            animation: blink 0.7s infinite;
            vertical-align: text-bottom;
        }

        body.page-index .portfolio-showcase{
            max-width: 1200px;
            margin: 0 auto;
        }

        
        body.page-index .portfolio-featured{
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 2rem;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all 0.4s ease;
        }

        body.page-index .portfolio-featured:hover{
            border-color: var(--accent-gold);
            box-shadow: 0 0 40px rgba(251, 191, 36, 0.2);
        }

        body.page-index .portfolio-featured-inner{
            display: flex;
            align-items: stretch;
            height: 450px;
        }

        body.page-index .portfolio-featured-image{
            flex: 0 0 60%;
            position: relative;
            overflow: hidden;
        }

        body.page-index .portfolio-featured-image img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        body.page-index .portfolio-featured:hover .portfolio-featured-image img{
            transform: scale(1.05);
        }

        body.page-index .portfolio-featured-content{
            flex: 1;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(15, 23, 42, 0.9) 100%);
            overflow: hidden;
        }

        body.page-index .portfolio-featured-label{
            display: inline-block;
            background: var(--accent-gold);
            color: var(--sky-gradient-start);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            width: fit-content;
        }

        body.page-index .portfolio-featured h3{
            color: var(--cloud-white);
            font-size: 2rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        body.page-index .portfolio-featured p{
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            opacity: 0.9;
            flex: 1;
            overflow-y: auto;
            max-height: 150px;
        }

        body.page-index .portfolio-featured-tags{
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        body.page-index .portfolio-featured-tags span{
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        body.page-index .portfolio-visit-btn{
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: fit-content;
            text-decoration: none;
        }

        body.page-index .portfolio-visit-btn:hover{
            background: var(--accent-gold);
            color: var(--sky-gradient-start);
            transform: translateX(5px);
        }

        body.page-index .portfolio-visit-btn::after{
            content: '→';
            transition: transform 0.3s ease;
        }

        body.page-index .portfolio-visit-btn:hover::after{
            transform: translateX(5px);
        }

        
        body.page-index .portfolio-thumbs{
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        body.page-index .portfolio-thumb{
            width: 180px;
            height: 100px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            opacity: 0.6;
        }

        body.page-index .portfolio-thumb::after{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
        }

        body.page-index .portfolio-thumb img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        body.page-index .portfolio-thumb-title{
            position: absolute;
            bottom: 8px;
            left: 10px;
            right: 10px;
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            z-index: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        body.page-index .portfolio-thumb:hover, body.page-index .portfolio-thumb.active{
            opacity: 1;
            border-color: var(--accent-gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
        }

        body.page-index .portfolio-loading{
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 400px;
        }

        body.page-index .portfolio-loading, body.page-index .testimonials-loading{
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 200px;
            grid-column: 1 / -1;
        }

        body.page-index .loading-pulse{
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent-gold);
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse{
            0%, 100%{ transform: scale(0.8); opacity: 0.5; }
            50%{ transform: scale(1.2); opacity: 1; }
        }

        
        body.page-index .testimonials-section{
            background:
                linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.88) 100%),
                url("images/testimonials-bg.png") center center / cover no-repeat;
            background-attachment: fixed;
            padding: 5rem 2rem;
        }

        body.page-index .testimonials-container{
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        body.page-index .testimonials-subtitle{
            color: var(--cloud-white);
            font-size: 1.1rem;
            margin-bottom: 3rem;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        body.page-index .testimonials-subtitle .typewriter-placeholder{
            visibility: hidden;
        }

        body.page-index .testimonials-subtitle .typewriter-text{
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
        }

        body.page-index .testimonials-subtitle .typing-cursor{
            display: inline-block;
            width: 2px;
            height: 1.1em;
            background: var(--accent-gold);
            margin-left: 2px;
            animation: blink 0.7s infinite;
            vertical-align: text-bottom;
        }

        body.page-index .testimonials-slider{
            position: relative;
            overflow: hidden;
        }

        body.page-index .testimonial-item{
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            text-align: left;
            transition: all 0.5s ease;
        }

        body.page-index .testimonial-item::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-gold), #f59e0b, var(--accent-gold));
            border-radius: 24px 24px 0 0;
        }

        body.page-index .testimonial-stars{
            color: var(--accent-gold);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
        }

        body.page-index .testimonial-text{
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 2rem;
            font-style: italic;
            position: relative;
        }

        body.page-index .testimonial-text::before{
            content: '"';
            position: absolute;
            top: -20px;
            left: -10px;
            font-size: 4rem;
            font-family: Georgia, serif;
            color: var(--accent-gold);
            opacity: 0.2;
            line-height: 1;
        }

        body.page-index .testimonial-author{
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-index .author-avatar{
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--nimbus-blue), var(--accent-gold));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            border: 2px solid rgba(251, 191, 36, 0.3);
        }

        body.page-index .author-info h4{
            color: var(--cloud-white);
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            font-weight: 600;
        }

        body.page-index .author-info p{
            color: var(--accent-gold);
            font-size: 0.85rem;
            opacity: 0.9;
        }

        body.page-index .testimonials-nav{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        body.page-index .testimonial-dot{
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.page-index .testimonial-dot:hover{
            background: rgba(251, 191, 36, 0.5);
        }

        body.page-index .testimonial-dot.active{
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            transform: scale(1.2);
        }

        body.page-index .testimonial-arrow{
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        body.page-index .testimonial-arrow:hover{
            background: rgba(251, 191, 36, 0.2);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            transform: scale(1.1);
        }

        body.page-index .testimonials-nav .dots-container{
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        
        @media (max-width: 768px){
            
            body.page-index .hero{
                padding-top: 5rem;
                padding-bottom: 1rem;
            }

            body.page-index .hero-content{
                min-height: auto;
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            body.page-index .hero-services{
                margin-top: 1.5rem;
            }

            body.page-index .services-track{ gap: 1rem; padding: 1rem; padding-bottom: 0.5rem; }
            body.page-index .service-panel{ flex: 0 0 250px; height: 280px; }
            body.page-index .service-panel:hover{ transform: none; }
            body.page-index .panel-content{ padding: 1.5rem; padding-bottom: 2.5rem; }

            
            body.page-index .services-track-wrapper::before, body.page-index .services-track-wrapper::after{
                display: none;
            }

            
            body.page-index section{
                padding: 3rem 1.5rem;
            }

            body.page-index .story-section{ padding: 3.5rem 1.5rem; }
            body.page-index .story-intro{ flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
            body.page-index .intro-line{ display: none; }
            body.page-index .spotlight-name{ font-size: 2.5rem; }
            body.page-index .spotlight-text{ font-size: 1.1rem; }
            body.page-index .philosophy-statement{ padding: 2rem; margin-top: 2rem; }
            body.page-index .philosophy-statement blockquote{ font-size: 1.5rem; }

            body.page-index .section-heading{ font-size: 1.75rem; margin-bottom: 1.5rem; }

            
            body.page-index .testimonial-item{ padding: 2rem 1.5rem; }
            body.page-index .testimonial-text{ font-size: 1rem; }
            body.page-index .testimonial-text::before{ font-size: 3rem; top: -15px; left: -5px; }

            body.page-index .portfolio-featured-inner{ flex-direction: column; height: auto; }
            body.page-index .portfolio-featured-image{ flex: none; height: 250px; }
            body.page-index .portfolio-featured-content{ padding: 1.5rem; height: 280px; }
            body.page-index .portfolio-featured p{ max-height: 100px; }
            body.page-index .portfolio-featured h3{ font-size: 1.5rem; }
            body.page-index .portfolio-thumbs{ gap: 0.75rem; }
            body.page-index .portfolio-thumb{ width: 140px; height: 80px; }

            
            body.page-index .contact-section{
                padding: 3rem 1.5rem;
            }

            
            body.page-index .footer-cta{
                padding: 3rem 1.5rem;
            }

            
            body.page-index .section-divider{
                margin: 0;
            }
        }

        
        body.page-index .contact-section{
            background:
                linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(10, 15, 30, 0.92) 100%),
                url("images/contact-bg.png") center center / cover no-repeat;
            background-attachment: fixed;
            padding: 5rem 2rem;
        }

        body.page-index .contact-section h2{
            color: var(--cloud-white) !important;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        body.page-index .contact-section > .container > p{
            color: var(--text-light) !important;
        }

        body.page-index .contact-form-container{
            max-width: 700px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        body.page-index .contact-form .form-row{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        body.page-index .contact-form .form-group{
            display: flex;
            flex-direction: column;
        }

        body.page-index .contact-form .form-group.full-width{
            margin-bottom: 1.5rem;
        }

        body.page-index .contact-form label{
            font-weight: 600;
            color: var(--nimbus-blue);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        body.page-index .contact-form input, body.page-index .contact-form textarea{
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: white;
        }

        body.page-index .contact-form input:focus, body.page-index .contact-form textarea:focus{
            outline: none;
            border-color: var(--nimbus-blue);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
        }

        body.page-index .contact-form textarea{
            resize: vertical;
            min-height: 120px;
        }

        body.page-index .contact-form .form-message{
            margin-bottom: 1rem;
            padding: 1rem;
            border-radius: 10px;
            display: none;
        }

        body.page-index .contact-form .form-message.success{
            display: block;
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #10b981;
        }

        body.page-index .contact-form .form-message.error{
            display: block;
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #ef4444;
        }

        body.page-index .contact-form button{
            width: 100%;
            margin-top: 1rem;
        }

        body.page-index .contact-form button:disabled{
            opacity: 0.7;
            cursor: not-allowed;
        }

        @media (max-width: 600px){
            body.page-index .contact-form .form-row{
                grid-template-columns: 1fr;
            }

            body.page-index .contact-form-container{
                padding: 2rem 1.5rem;
            }
        }

        
        body.page-index .contact-wrapper{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        body.page-index .contact-info{
            color: var(--cloud-white);
        }

        body.page-index .contact-info h3{
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        body.page-index .office-card{
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        body.page-index .office-card:hover{
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }

        body.page-index .office-card h4{
            color: var(--cloud-white);
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        body.page-index .office-card h4 i{
            color: var(--accent-gold);
        }

        body.page-index .office-card p{
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        body.page-index .office-card .office-type{
            display: inline-block;
            background: rgba(251, 191, 36, 0.2);
            color: var(--accent-gold);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        body.page-index .incorporated-note{
            margin-top: 2rem;
            padding: 1rem;
            background: rgba(30, 58, 138, 0.3);
            border-left: 3px solid var(--accent-gold);
            border-radius: 0 8px 8px 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
        }

        @media (max-width: 900px){
            body.page-index .contact-wrapper{
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            body.page-index .contact-info{
                order: 2;
            }

            body.page-index .contact-form-container{
                order: 1;
            }
        }

        
        body.page-index .site-footer{
            background: rgba(15, 23, 42, 0.98);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 3rem 2rem;
        }

        body.page-index .footer-content{
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
        }

        body.page-index .footer-section h4{
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        body.page-index .footer-section a{
            display: block;
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        body.page-index .footer-section a:hover{
            color: var(--accent-gold);
        }

        body.page-index .footer-bottom{
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-size: 0.9rem;
        }

        body.page-index .footer-logo{
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--cloud-white);
            margin-bottom: 0.5rem;
        }

        body.page-index .footer-logo span{
            color: var(--accent-gold);
        }

        @media (max-width: 768px){
            body.page-index .footer-content{
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        
        @media (max-width: 768px){
            body.page-index .headline{
                font-size: 1.8rem;
            }

            body.page-index .tagline{
                font-size: 1rem;
            }

            body.page-index .hero-logo-img{
                width: min(400px, 85vw);
                height: auto;
            }

            body.page-index h2{
                font-size: 2rem;
            }

            body.page-index .stat-number{
                font-size: 2rem;
            }

            body.page-index .tech-grid{
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }
        }

        
        body.page-index .navbar{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        body.page-index .navbar--hidden{
            transform: none;
        }

        body.page-index .nav-logo{
            display: inline-block;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--cloud-white);
            text-decoration: none;
        }

        body.page-index .nav-logo .highlight{
            color: var(--accent-gold);
        }

        body.page-index .nav-links{
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        body.page-index .nav-links a{
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        body.page-index .nav-links a:hover{
            color: var(--accent-gold);
        }

        body.page-index .nav-links .nav-cta{
            background: var(--accent-gold);
            color: var(--sky-gradient-start);
            padding: 0.5rem 1rem;
            border-radius: 12px;
            font-weight: 600;
        }

        body.page-index .nav-links .nav-cta:hover{
            background: #fcd34d;
            color: var(--sky-gradient-start);
        }

        
        body.page-index .nav-toggle{
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        body.page-index .nav-toggle span{
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        body.page-index .nav-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(6px, 6px);
        }

        body.page-index .nav-toggle.active span:nth-child(2){
            opacity: 0;
        }

        body.page-index .nav-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(6px, -6px);
        }

        
        body.page-index .hero{
            padding-top: 5rem;
        }

        @media (max-width: 768px){
            body.page-index .nav-toggle{
                display: flex;
            }

            body.page-index .nav-links{
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 300px;
                height: 100vh;
                background: rgba(15, 23, 42, 0.98);
                flex-direction: column;
                padding: 80px 30px 30px;
                gap: 0;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
            }

            body.page-index .nav-links.active{
                right: 0;
            }

            body.page-index .nav-links li{
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            body.page-index .nav-links a{
                display: block;
                padding: 15px 0;
                font-size: 1.1rem;
            }

            body.page-index .nav-links .nav-cta{
                margin-top: 20px;
                text-align: center;
                padding: 12px 20px;
            }

            body.page-index .nav-logo{
                font-size: 1.2rem;
            }

            body.page-index .navbar{
                padding: 1rem 1.5rem;
            }
        }

/* ===== login.html ===== */
body.page-login *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.page-login{
  height: 100%;
  overflow: hidden;
}

:root{
  --cloud-white: #ffffff;
  --nimbus-blue: #1e3a8a;
  --sky-gradient-start: #0f172a;
  --sky-gradient-end: #1e40af;
  --accent-gold: #fbbf24;
  --text-light: #e2e8f0;
  --text-dark: #1e293b;
  --error-red: #ef4444;
  --success-green: #10b981;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.2);
}

body.page-login h1, body.page-login h2, body.page-login h3, body.page-login h4, body.page-login h5, body.page-login h6, body.page-login .nav-logo{
  font-family: 'Space Grotesk', sans-serif;
}

body.page-login{
  font-family: 'Inter', sans-serif;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 64, 175, 0.65)),
    url('images/earth-bg.jpg') center center / cover no-repeat fixed;
  height: 100vh;
  line-height: 1.6;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-top: 80px;
  overflow: hidden;
  position: relative;
}

body.page-login::before{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.25), transparent 70%);
  top: -150px;
  right: -150px;
  filter: blur(140px);
  animation: floatGlow 14s ease-in-out infinite alternate;
}

body.page-login::after{
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
  bottom: -100px;
  left: -100px;
  filter: blur(120px);
  animation: floatGlow 16s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow{
  0%{ transform: translateY(0) scale(1); }
  100%{ transform: translateY(60px) scale(1.25); }
}


body.page-login .navbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

body.page-login .navbar--hidden{
  transform: none;
}

body.page-login .nav-logo{
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cloud-white);
  text-decoration: none;
}

body.page-login .nav-logo .highlight{
  color: var(--accent-gold);
}

body.page-login .nav-links{
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.page-login .nav-links a{
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

body.page-login .nav-links a:hover{
  color: var(--accent-gold);
}

body.page-login .nav-links .nav-cta{
  background: var(--accent-gold);
  color: var(--sky-gradient-start);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-weight: 600;
}

body.page-login .nav-links .nav-cta:hover{
  background: #fcd34d;
  color: var(--sky-gradient-start);
}

body.page-login .nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

body.page-login .nav-toggle span{
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

body.page-login .nav-toggle.active span:nth-child(1){
  transform: rotate(45deg) translate(6px, 6px);
}

body.page-login .nav-toggle.active span:nth-child(2){
  opacity: 0;
}

body.page-login .nav-toggle.active span:nth-child(3){
  transform: rotate(-45deg) translate(6px, -6px);
}


body.page-login .container{
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow:
    0 0 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(251, 191, 36, 0.1),
    inset 0 0 60px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 430px;
  width: 100%;
  overflow: hidden;
  animation: fadeInUp 1.2s ease forwards;
  position: relative;
  z-index: 10;
}

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


body.page-login .header{
  background: linear-gradient(135deg,
    rgba(30, 58, 138, 0.4),
    rgba(30, 64, 175, 0.3));
  color: var(--cloud-white);
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-login .header::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
  opacity: 0.6;
}

body.page-login .logo-img{
  width: 240px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.4));
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

body.page-login .header h1{
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

body.page-login .header h1 .highlight{
  color: var(--accent-gold);
}

body.page-login .header p{
  opacity: 0.85;
  font-size: 1rem;
  margin-top: 0.3rem;
}


body.page-login .form-container{
  padding: 2.5rem 2rem;
  background: rgba(15, 23, 42, 0.2);
}

body.page-login .form-group{
  position: relative;
  margin-bottom: 1.8rem;
}

body.page-login .form-group input{
  width: 100%;
  padding: 1.1rem 1rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
  font-size: 1rem;
  transition: all 0.3s ease;
}

body.page-login .form-group input:focus{
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 20px rgba(251, 191, 36, 0.2),
    inset 0 0 20px rgba(251, 191, 36, 0.05);
  outline: none;
}

body.page-login .form-group input::placeholder{
  color: transparent !important;
}

body.page-login .form-group label{
  position: absolute;
  top: 1.1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.3s ease;
  background: transparent;
  padding: 0 0.3rem;
}

body.page-login .form-group input:focus + label, body.page-login .form-group input:not(:placeholder-shown) + label, body.page-login .form-group input:-webkit-autofill + label{
  top: -0.65rem;
  left: 0.9rem;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.1rem 0.5rem;
  font-size: 0.8rem;
  color: var(--accent-gold);
  border-radius: 6px;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

body.page-login .form-group small{
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}


body.page-login .two-fa-section{
  display: none;
}

body.page-login .two-fa-section.show{
  display: block;
}


body.page-login input:-webkit-autofill, body.page-login input:-webkit-autofill:hover, body.page-login input:-webkit-autofill:focus, body.page-login input:-webkit-autofill:active{
  -webkit-box-shadow: 0 0 0 1000px rgba(15, 23, 42, 0.5) inset !important;
  -webkit-text-fill-color: #f8fafc !important;
  caret-color: #f8fafc !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px;
  transition: background-color 9999s ease-in-out 0s !important;
}


body.page-login .btn{
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--accent-gold), #fcd34d);
  color: var(--sky-gradient-start);
  font-weight: 700;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 0 30px rgba(251, 191, 36, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

body.page-login .btn:hover{
  transform: translateY(-3px);
  box-shadow:
    0 0 40px rgba(251, 191, 36, 0.5),
    0 6px 20px rgba(0, 0, 0, 0.4);
}

body.page-login .btn:active{
  transform: translateY(-1px);
}

body.page-login .btn:disabled{
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

body.page-login .spinner{
  width: 18px;
  height: 18px;
  border: 2px solid var(--sky-gradient-start);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

body.page-login .btn:disabled .spinner{
  display: block;
}

@keyframes spin{
  to{ transform: rotate(360deg); }
}


body.page-login .message{
  display: none;
  text-align: center;
  border-radius: 10px;
  padding: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.page-login .message.show{
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn{
  from{ opacity: 0; transform: translateY(-8px); }
  to{ opacity: 1; transform: translateY(0); }
}

body.page-login .message.error{
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.5);
}

body.page-login .message.success{
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.5);
}

body.page-login .message.info{
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.5);
}

body.page-login .message.warning{
  background: rgba(251, 191, 36, 0.2);
  color: #fde68a;
  border: 1px solid rgba(251, 191, 36, 0.5);
}

body.page-login .message a{
  color: inherit;
  text-decoration: underline;
}


body.page-login .auth-links{
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

body.page-login .auth-links p{
  margin: 0.75rem 0;
  color: rgba(255, 255, 255, 0.7);
}

body.page-login .auth-links a{
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

body.page-login .auth-links a:hover{
  color: #fde68a;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}


@media (max-width: 768px){
  body.page-login{
    padding: 1rem;
    padding-top: 80px;
  }

  body.page-login .container{
    margin-top: 1vh;
    border-radius: 20px;
  }

  body.page-login .header{
    padding: 2rem 1.5rem;
  }

  body.page-login .logo-img{
    width: 200px;
  }

  body.page-login .nav-toggle{
    display: flex;
  }

  body.page-login .nav-links{
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  body.page-login .nav-links.active{
    right: 0;
  }

  body.page-login .nav-links li{
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.page-login .nav-links a{
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
  }

  body.page-login .nav-links .nav-cta{
    margin-top: 20px;
    text-align: center;
    padding: 12px 20px;
  }

  body.page-login .nav-logo{
    font-size: 1.2rem;
  }

  body.page-login .navbar{
    padding: 1rem 1.5rem;
  }
}

/* ===== project-timelines.html ===== */
:root{
            --nimbus-blue: #1e3a8a;
            --accent-gold: #fbbf24;
            --cloud-white: #ffffff;
            --sky-gradient-start: #0f172a;
            --sky-gradient-end: #1e40af;
            --text-dark: #1e293b;
            --text-light: #e2e8f0;
            --heading-h1-size: clamp(2rem, 4vw, 2.6rem);
        }

        body.page-project-timelines *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body.page-project-timelines h1, body.page-project-timelines h2, body.page-project-timelines h3, body.page-project-timelines h4, body.page-project-timelines h5, body.page-project-timelines h6, body.page-project-timelines .nav-logo, body.page-project-timelines .footer-logo{
            font-family: 'Space Grotesk', sans-serif;
        }

        body.page-project-timelines{
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--sky-gradient-start) 0%, var(--sky-gradient-end) 100%);
            min-height: 100vh;
            color: var(--cloud-white);
            line-height: 1.6;
        }

        body.page-project-timelines .navbar{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        body.page-project-timelines .navbar--hidden{
            transform: none;
        }

        body.page-project-timelines .nav-logo{
            display: inline-block;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--cloud-white);
            text-decoration: none;
        }

        body.page-project-timelines .nav-logo .highlight{
            color: var(--accent-gold);
        }

        body.page-project-timelines .nav-links{
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        body.page-project-timelines .nav-links a{
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        body.page-project-timelines .nav-links a:hover{
            color: var(--accent-gold);
        }

        body.page-project-timelines .nav-links .nav-cta{
            background: var(--accent-gold);
            color: var(--sky-gradient-start);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: 600;
        }

        body.page-project-timelines .nav-links .nav-cta:hover{
            background: #fcd34d;
            color: var(--sky-gradient-start);
        }

        body.page-project-timelines .nav-toggle{
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        body.page-project-timelines .nav-toggle span{
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        body.page-project-timelines .nav-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(6px, 6px);
        }

        body.page-project-timelines .nav-toggle.active span:nth-child(2){
            opacity: 0;
        }

        body.page-project-timelines .nav-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(6px, -6px);
        }

        body.page-project-timelines .content-wrapper{
            max-width: 900px;
            margin: 0 auto;
            padding: 7rem 2rem 4rem;
        }

        body.page-project-timelines .page-header{
            text-align: center;
            margin-bottom: 3rem;
        }

        body.page-project-timelines .page-header h1{
            font-size: var(--heading-h1-size);
            margin-bottom: 1rem;
            color: var(--cloud-white);
        }

        body.page-project-timelines .page-header .subtitle{
            color: var(--text-light);
            font-size: 1.1rem;
        }

        body.page-project-timelines .timeline-card{
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            position: relative;
        }

        body.page-project-timelines .timeline-card::before{
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--accent-gold), var(--nimbus-blue));
            border-radius: 4px 0 0 4px;
        }

        body.page-project-timelines .timeline-card h2{
            color: var(--accent-gold);
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }

        body.page-project-timelines .timeline-duration{
            display: inline-block;
            background: rgba(251, 191, 36, 0.2);
            color: var(--accent-gold);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        body.page-project-timelines .timeline-card p{
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 1rem;
        }

        body.page-project-timelines .timeline-card ul{
            margin-left: 1.5rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.85);
        }

        body.page-project-timelines .timeline-card li{
            margin-bottom: 0.5rem;
        }

        body.page-project-timelines .phase-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        body.page-project-timelines .phase-item{
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
        }

        body.page-project-timelines .phase-item h4{
            color: var(--accent-gold);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        body.page-project-timelines .phase-item p{
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            margin: 0;
        }

        body.page-project-timelines .highlight-box{
            background: rgba(251, 191, 36, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }

        body.page-project-timelines .highlight-box p{
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-project-timelines .process-steps{
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }

        body.page-project-timelines .step{
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        body.page-project-timelines .step-number{
            background: var(--accent-gold);
            color: var(--sky-gradient-start);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        body.page-project-timelines .step-content h4{
            color: var(--cloud-white);
            margin-bottom: 0.25rem;
        }

        body.page-project-timelines .step-content p{
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
        }

        body.page-project-timelines .footer{
            background: rgba(15, 23, 42, 0.98);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 3rem 2rem;
            margin-top: 4rem;
        }

        body.page-project-timelines .footer-content{
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
        }

        body.page-project-timelines .footer-section h4{
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        body.page-project-timelines .footer-section a{
            display: block;
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        body.page-project-timelines .footer-section a:hover{
            color: var(--accent-gold);
        }

        body.page-project-timelines .footer-bottom{
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-size: 0.9rem;
        }

        body.page-project-timelines .footer-logo{
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--cloud-white);
            margin-bottom: 0.5rem;
        }

        body.page-project-timelines .footer-logo span{
            color: var(--accent-gold);
        }

        @media (max-width: 768px){
            body.page-project-timelines .nav-toggle{
                display: flex;
            }

            body.page-project-timelines .nav-links{
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 300px;
                height: 100vh;
                background: rgba(15, 23, 42, 0.98);
                flex-direction: column;
                padding: 80px 30px 30px;
                gap: 0;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
            }

            body.page-project-timelines .nav-links.active{
                right: 0;
            }

            body.page-project-timelines .nav-links li{
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            body.page-project-timelines .nav-links a{
                display: block;
                padding: 15px 0;
                font-size: 1.1rem;
            }

            body.page-project-timelines .nav-links .nav-cta{
                margin-top: 20px;
                text-align: center;
                padding: 12px 20px;
            }

            body.page-project-timelines .nav-logo{
                font-size: 1.2rem;
            }

            body.page-project-timelines .navbar{
                padding: 1rem 1.5rem;
            }

            body.page-project-timelines .content-wrapper{
                padding: 6rem 1rem 2rem;
            }

            body.page-project-timelines .timeline-card{
                padding: 1.5rem;
            }

            body.page-project-timelines .footer-content{
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

/* ===== refund-policy.html ===== */
:root{
            --nimbus-blue: #1e3a8a;
            --accent-gold: #fbbf24;
            --cloud-white: #ffffff;
            --sky-gradient-start: #0f172a;
            --sky-gradient-end: #1e40af;
            --text-dark: #1e293b;
            --text-light: #e2e8f0;
            --heading-h1-size: clamp(2rem, 4vw, 2.6rem);
        }

        body.page-refund-policy *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body.page-refund-policy h1, body.page-refund-policy h2, body.page-refund-policy h3, body.page-refund-policy h4, body.page-refund-policy h5, body.page-refund-policy h6, body.page-refund-policy .nav-logo, body.page-refund-policy .footer-logo{
            font-family: 'Space Grotesk', sans-serif;
        }

        body.page-refund-policy{
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--sky-gradient-start) 0%, var(--sky-gradient-end) 100%);
            min-height: 100vh;
            color: var(--cloud-white);
            line-height: 1.6;
        }

        body.page-refund-policy .navbar{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        body.page-refund-policy .navbar--hidden{
            transform: none;
        }

        body.page-refund-policy .nav-logo{
            display: inline-block;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--cloud-white);
            text-decoration: none;
        }

        body.page-refund-policy .nav-logo .highlight{
            color: var(--accent-gold);
        }

        body.page-refund-policy .nav-links{
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        body.page-refund-policy .nav-links a{
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        body.page-refund-policy .nav-links a:hover{
            color: var(--accent-gold);
        }

        body.page-refund-policy .nav-links .nav-cta{
            background: var(--accent-gold);
            color: var(--sky-gradient-start);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: 600;
        }

        body.page-refund-policy .nav-links .nav-cta:hover{
            background: #fcd34d;
            color: var(--sky-gradient-start);
        }

        body.page-refund-policy .nav-toggle{
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        body.page-refund-policy .nav-toggle span{
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        body.page-refund-policy .nav-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(6px, 6px);
        }

        body.page-refund-policy .nav-toggle.active span:nth-child(2){
            opacity: 0;
        }

        body.page-refund-policy .nav-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(6px, -6px);
        }

        body.page-refund-policy .content-wrapper{
            max-width: 900px;
            margin: 0 auto;
            padding: 7rem 2rem 4rem;
        }

        body.page-refund-policy .page-header{
            text-align: center;
            margin-bottom: 3rem;
        }

        body.page-refund-policy .page-header h1{
            font-size: var(--heading-h1-size);
            margin-bottom: 1rem;
            color: var(--cloud-white);
        }

        body.page-refund-policy .page-header .subtitle{
            color: var(--text-light);
            font-size: 1.1rem;
        }

        body.page-refund-policy .last-updated{
            text-align: center;
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        body.page-refund-policy .policy-card{
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        body.page-refund-policy .policy-card h2{
            color: var(--accent-gold);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        body.page-refund-policy .policy-card p{
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 1rem;
        }

        body.page-refund-policy .policy-card ul{
            margin-left: 1.5rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.85);
        }

        body.page-refund-policy .policy-card li{
            margin-bottom: 0.5rem;
        }

        body.page-refund-policy .highlight-box{
            background: rgba(251, 191, 36, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }

        body.page-refund-policy .highlight-box p{
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-refund-policy .footer{
            background: rgba(15, 23, 42, 0.98);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 3rem 2rem;
            margin-top: 4rem;
        }

        body.page-refund-policy .footer-content{
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
        }

        body.page-refund-policy .footer-section h4{
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        body.page-refund-policy .footer-section a{
            display: block;
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        body.page-refund-policy .footer-section a:hover{
            color: var(--accent-gold);
        }

        body.page-refund-policy .footer-bottom{
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-size: 0.9rem;
        }

        body.page-refund-policy .footer-logo{
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--cloud-white);
            margin-bottom: 0.5rem;
        }

        body.page-refund-policy .footer-logo span{
            color: var(--accent-gold);
        }

        @media (max-width: 768px){
            body.page-refund-policy .nav-toggle{
                display: flex;
            }

            body.page-refund-policy .nav-links{
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 300px;
                height: 100vh;
                background: rgba(15, 23, 42, 0.98);
                flex-direction: column;
                padding: 80px 30px 30px;
                gap: 0;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
            }

            body.page-refund-policy .nav-links.active{
                right: 0;
            }

            body.page-refund-policy .nav-links li{
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            body.page-refund-policy .nav-links a{
                display: block;
                padding: 15px 0;
                font-size: 1.1rem;
            }

            body.page-refund-policy .nav-links .nav-cta{
                margin-top: 20px;
                text-align: center;
                padding: 12px 20px;
            }

            body.page-refund-policy .nav-logo{
                font-size: 1.2rem;
            }

            body.page-refund-policy .navbar{
                padding: 1rem 1.5rem;
            }

            body.page-refund-policy .content-wrapper{
                padding: 6rem 1rem 2rem;
            }

            body.page-refund-policy .policy-card{
                padding: 1.5rem;
            }

            body.page-refund-policy .footer-content{
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

/* ===== terms-privacy.html ===== */
:root{
            --nimbus-blue: #1e3a8a;
            --accent-gold: #fbbf24;
            --cloud-white: #ffffff;
            --sky-gradient-start: #0f172a;
            --sky-gradient-end: #1e40af;
            --text-dark: #1e293b;
            --text-light: #e2e8f0;
            --heading-h1-size: clamp(2rem, 4vw, 2.6rem);
        }

        body.page-terms-privacy *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body.page-terms-privacy h1, body.page-terms-privacy h2, body.page-terms-privacy h3, body.page-terms-privacy h4, body.page-terms-privacy h5, body.page-terms-privacy h6, body.page-terms-privacy .nav-logo, body.page-terms-privacy .footer-logo{
            font-family: 'Space Grotesk', sans-serif;
        }

        body.page-terms-privacy{
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--sky-gradient-start) 0%, var(--sky-gradient-end) 100%);
            min-height: 100vh;
            color: var(--cloud-white);
            line-height: 1.6;
        }

        body.page-terms-privacy .navbar{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        body.page-terms-privacy .navbar--hidden{
            transform: none;
        }

        body.page-terms-privacy .nav-logo{
            display: inline-block;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--cloud-white);
            text-decoration: none;
        }

        body.page-terms-privacy .nav-logo .highlight{
            color: var(--accent-gold);
        }

        body.page-terms-privacy .nav-links{
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        body.page-terms-privacy .nav-links a{
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        body.page-terms-privacy .nav-links a:hover{
            color: var(--accent-gold);
        }

        body.page-terms-privacy .nav-links .nav-cta{
            background: var(--accent-gold);
            color: var(--sky-gradient-start);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: 600;
        }

        body.page-terms-privacy .nav-links .nav-cta:hover{
            background: #fcd34d;
            color: var(--sky-gradient-start);
        }

        body.page-terms-privacy .nav-toggle{
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        body.page-terms-privacy .nav-toggle span{
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        body.page-terms-privacy .nav-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(6px, 6px);
        }

        body.page-terms-privacy .nav-toggle.active span:nth-child(2){
            opacity: 0;
        }

        body.page-terms-privacy .nav-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(6px, -6px);
        }

        body.page-terms-privacy .content-wrapper{
            max-width: 900px;
            margin: 0 auto;
            padding: 7rem 2rem 4rem;
        }

        body.page-terms-privacy .page-header{
            text-align: center;
            margin-bottom: 3rem;
        }

        body.page-terms-privacy .page-header h1{
            font-size: var(--heading-h1-size);
            margin-bottom: 1rem;
            color: var(--cloud-white);
        }

        body.page-terms-privacy .page-header .subtitle{
            color: var(--text-light);
            font-size: 1.1rem;
        }

        body.page-terms-privacy .last-updated{
            text-align: center;
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        body.page-terms-privacy .section-divider{
            display: flex;
            align-items: center;
            margin: 3rem 0;
        }

        body.page-terms-privacy .section-divider::before, body.page-terms-privacy .section-divider::after{
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-terms-privacy .section-divider h2{
            padding: 0 1.5rem;
            color: var(--accent-gold);
            font-size: 1.8rem;
        }

        body.page-terms-privacy .policy-card{
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        body.page-terms-privacy .policy-card h3{
            color: var(--accent-gold);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        body.page-terms-privacy .policy-card p{
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 1rem;
        }

        body.page-terms-privacy .policy-card ul{
            margin-left: 1.5rem;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.85);
        }

        body.page-terms-privacy .policy-card li{
            margin-bottom: 0.5rem;
        }

        body.page-terms-privacy .policy-card a{
            color: var(--accent-gold);
            text-decoration: none;
        }

        body.page-terms-privacy .policy-card a:hover{
            text-decoration: underline;
        }

        body.page-terms-privacy .highlight-box{
            background: rgba(251, 191, 36, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }

        body.page-terms-privacy .highlight-box p{
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-terms-privacy .footer{
            background: rgba(15, 23, 42, 0.98);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 3rem 2rem;
            margin-top: 4rem;
        }

        body.page-terms-privacy .footer-content{
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
        }

        body.page-terms-privacy .footer-section h4{
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        body.page-terms-privacy .footer-section a{
            display: block;
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        body.page-terms-privacy .footer-section a:hover{
            color: var(--accent-gold);
        }

        body.page-terms-privacy .footer-bottom{
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-size: 0.9rem;
        }

        body.page-terms-privacy .footer-logo{
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--cloud-white);
            margin-bottom: 0.5rem;
        }

        body.page-terms-privacy .footer-logo span{
            color: var(--accent-gold);
        }

        @media (max-width: 768px){
            body.page-terms-privacy .nav-toggle{
                display: flex;
            }

            body.page-terms-privacy .nav-links{
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 300px;
                height: 100vh;
                background: rgba(15, 23, 42, 0.98);
                flex-direction: column;
                padding: 80px 30px 30px;
                gap: 0;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
            }

            body.page-terms-privacy .nav-links.active{
                right: 0;
            }

            body.page-terms-privacy .nav-links li{
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            body.page-terms-privacy .nav-links a{
                display: block;
                padding: 15px 0;
                font-size: 1.1rem;
            }

            body.page-terms-privacy .nav-links .nav-cta{
                margin-top: 20px;
                text-align: center;
                padding: 12px 20px;
            }

            body.page-terms-privacy .nav-logo{
                font-size: 1.2rem;
            }

            body.page-terms-privacy .navbar{
                padding: 1rem 1.5rem;
            }

            body.page-terms-privacy .content-wrapper{
                padding: 6rem 1rem 2rem;
            }

            body.page-terms-privacy .policy-card{
                padding: 1.5rem;
            }

            body.page-terms-privacy .section-divider h2{
                font-size: 1.4rem;
            }

            body.page-terms-privacy .footer-content{
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
