:root {
    --bg-dark: #030712;
    --midnight-blue: rgba(6, 18, 46, 0.92);
    --brand-blue: #0052cc;
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    height: 100vh;
}

/* 3D Perspective Environment */
#viewport-3d {
    perspective: 1200px;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

#page-content {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* Background Canvas */
.webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 40px;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--brand-blue);
}

/* Luxury Hamburger Trigger */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 101;
    padding: 10px;
}

.menu-toggle .bar {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-light);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), background-color 0.3s;
}

/* Hero Section */
.section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* FIXED LOGO BACKDROP VISIBILITY */
.hero-bg-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;          
    max-width: 420px;    
    height: auto;
    aspect-ratio: 1 / 1; 
    background-image: url('bb.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(3px);   /* Clean, recognizable reduction from 25px */
    z-index: 2;
    opacity: 0.75;       /* Increased visibility output */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(3, 7, 18, 0.1) 0%, #030712 95%);
    z-index: 3;
}

.content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 20px;
    margin-top: auto;
}

.content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, var(--brand-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HIGH-READABILITY SUBTITLE TEXT */
.brand-sub {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    background: linear-gradient(to right, #38bdf8, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid var(--brand-blue);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    background: rgba(0, 82, 204, 0.08);
    box-shadow: 0 0 15px rgba(0, 82, 204, 0.3);
    transition: all 0.3s ease;
}

/* Typing Layout */
.home-typing-box {
    position: relative;
    z-index: 4;
    margin-top: auto;
    margin-bottom: 40px;
    text-align: center;
}

.static-prompt {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.typing-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.cursor-blink {
    color: var(--brand-blue);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Full-Screen 3D Overlay Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--midnight-blue);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(0, 82, 204, 0.15);
    visibility: hidden;
    pointer-events: none;
}

.menu-wrapper {
    width: 100%;
    max-width: 600px;
    padding: 0 50px;
}

.menu-overlay .nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.link-overflow {
    overflow: hidden;
}

.menu-overlay .nav-links a {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-light);
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
    transform: translateY(105%);
}

.menu-overlay .nav-links a:hover,
.menu-overlay .nav-links a.active {
    color: var(--brand-blue);
    transform: skewX(-6deg);
    text-shadow: 0 0 20px rgba(0, 82, 204, 0.4);
}

/* --- ADVANCED MEDIA QUERIES FOR PERFECT RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .content h1 { font-size: 3.8rem; }
    .menu-overlay .nav-links a { font-size: 3rem; }
}

@media (max-width: 768px) {
    .navbar { padding: 20px 25px; }
    .logo { height: 40px; width: 40px; }
    
    .content h1 { 
        font-size: 2.6rem; 
        line-height: 1.2;
    }
    
    .brand-sub { 
        font-size: 0.95rem; 
        letter-spacing: 1px;
        margin-bottom: 30px;
    }
    
    .hero-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .menu-overlay .nav-links a { font-size: 2.3rem; }
    .menu-wrapper { padding: 0 30px; }
    
    .typing-text { font-size: 1.15rem; }
    .static-prompt { font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .content h1 { font-size: 2.2rem; }
    .menu-overlay .nav-links a { font-size: 2rem; }
    .menu-overlay .nav-links { gap: 15px; }
}







/* 5. Production Footer Setup */
.main-footer {
    width: 100%;
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
    .slideshow-container { height: 40vh; }
    .slideshow-content h2 { font-size: 1.5rem; }
    .modal-body { grid-template-columns: 1fr; }
    .modal-text-area { padding: 25px 20px; }
    .modal-card { max-width: 400px; }
}














/* ==========================================================================
   UPDATED WORKS PAGE EXTENSIONS (PASTE AT BOTTOM)
   ========================================================================== */

.works-page {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* 1. Cinematic Auto-Changing Slideshow Styling */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    margin-top: 80px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
    z-index: 1;
}

.slide.active-slide {
    opacity: 0.45;
    transform: scale(1);
    z-index: 2;
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, var(--bg-dark));
    z-index: 3;
}

.slideshow-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 4;
    padding: 0 20px;
}

.slideshow-content h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

/* HIGH VISIBILITY UPDATE FOR SHOWCASE SUBTITLE */
.slideshow-sub {
    font-size: 1rem;
    color: #38bdf8 !important; /* Bright vivid sky blue for crisp reading */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9); /* Strong dark outline contrast */
}

/* 2. Category Filter Pills Styling */
.filters-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.filter-pills {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pill {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pill.active-pill, .pill:hover {
    background: var(--brand-blue);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(0, 82, 204, 0.4);
}

/* 3. Selected Works Premium Grid Styling */
.grid-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
}

.project-card {
    background: rgba(10, 16, 32, 0.6); /* Dark background matching base flow */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-blue);
}

/* FIXED BOX CLIPPING: Uses aspect ratio and containment to secure full poster images */
.card-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #040814; /* Clean contrast backing layer */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* FIXED: Displays 100% of your design elements perfectly */
    transition: transform 0.6s ease;
}

.project-card:hover .card-img-wrapper img {
    transform: scale(1.02);
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.card-info p {
    font-size: 0.85rem;
    color: var(--brand-blue);
    font-weight: 700;
}

/* 4. Luxury Pop-Up Modal Layout Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}

.modal-overlay.active-modal {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: rgba(6, 18, 46, 0.98);
    border: 1px solid rgba(0, 82, 204, 0.2);
    width: 100%;
    max-width: 700px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active-modal .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--brand-blue);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.modal-img-area {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #02050d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img-area img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* FIXED: Modal image will stay perfectly whole as well */
}

.modal-text-area {
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-text-area h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.modal-text-area p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 30px;
}

.modal-whatsapp-btn {
    display: inline-block;
    text-align: center;
    background: var(--brand-blue);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 82, 204, 0.4);
    transition: background 0.3s;
}

.modal-whatsapp-btn:hover {
    background: #0044aa;
}

/* 5. Production Footer Setup */
.main-footer {
    width: 100%;
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .slideshow-container { height: 35vh; }
    .slideshow-content h2 { font-size: 1.4rem; }
    .modal-body { grid-template-columns: 1fr; }
    .modal-text-area { padding: 25px 20px; }
    .modal-card { max-width: 380px; }
}
/* ==========================================================================
   SERVICES PAGE PREMIUM STYLING SYSTEM
   ========================================================================== */

.services-page {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.services-hero {
    width: 100%;
    padding: 120px 20px 40px 20px;
    text-align: center;
}

.services-hero h2 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    background: linear-gradient(to right, #ffffff, #88b0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Packages Grid System Layout */
.packages-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    align-items: start;
}

/* Premium Card Profiles */
.package-card {
    background: rgba(6, 18, 46, 0.65);
    border: 1px solid rgba(0, 82, 204, 0.15);
    border-radius: 24px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-blue);
    box-shadow: 0 15px 35px rgba(0, 82, 204, 0.15);
}

/* Featured Visual Enhancements for Tier 2 */
.package-card.featured-card {
    border: 1px solid rgba(0, 82, 204, 0.4);
    background: rgba(8, 24, 61, 0.75);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.package-card.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), #38bdf8);
}

.package-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.package-card.featured-card .package-badge {
    color: #38bdf8;
}

/* Premium Image Icon Layouts */
.package-icon-holder {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-card-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.package-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4px;
}

.package-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 20px;
}

.package-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 25px;
}

/* Bullet Features Listing */
.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.package-features li {
    font-size: 0.88rem;
    color: #e2e8f0;
    position: relative;
    padding-left: 24px;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-weight: 900;
}

.package-card.featured-card .package-features li::before {
    color: #00f0ff;
}

/* Card Button Elements */
.package-cta-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.package-card:hover .package-cta-btn {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    box-shadow: 0 0 15px rgba(0, 82, 204, 0.4);
}

.package-card.featured-card .package-cta-btn {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
}

.package-card.featured-card:hover .package-cta-btn {
    background: #0044aa;
}

/* Service Modal Structural Extensions */
.full-width-modal {
    grid-column: span 2;
    padding: 35px;
}

.modal-tier-indicator {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #38bdf8;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.modal-next-steps {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.modal-next-steps h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.modal-next-steps p {
    font-size: 0.85rem !important;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .services-hero h2 { font-size: 1.7rem; }
    .packages-grid { grid-template-columns: 1fr; }
    .full-width-modal { padding: 30px 20px; }
}
/* ==========================================================================
   SERVICES EXTENSIONS: BANNER, PIPELINE, & FAQ ACCORDION STYLING
   ========================================================================== */

/* 1. Global Section Shared Header Alignment */
.section-title-area {
    width: 100%;
    text-align: center;
    padding: 60px 20px 30px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.section-title-area h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #88b0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title-area p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 2. Trust & Social Proof Banner Styling */
.trust-banner-section {
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(180deg, rgba(6, 18, 46, 0.3) 0%, rgba(3, 7, 18, 0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-blue);
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.trust-brands-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-brand-tag {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.trust-brand-tag:hover {
    border-color: rgba(0, 82, 204, 0.4);
    background: rgba(0, 82, 204, 0.05);
    color: #ffffff;
}

/* 3. How We Work: Engineering Pipeline Grid */
.process-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.process-timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    width: 100%;
    margin-top: 15px;
}

.process-step {
    background: rgba(6, 18, 46, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 204, 0.25);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-blue), #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1;
}

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 4. Frequently Asked Questions Accordion Layout */
.faq-section {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px 20px 80px 20px;
    width: 100%;
}

.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.faq-item {
    background: var(--midnight-blue);
    border: 1px solid rgba(0, 82, 204, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 82, 204, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 22px 25px;
    text-align: left;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: #38bdf8;
    transition: transform 0.3s ease;
    font-weight: 400;
}

/* Target class toggled by JS logic for opened states */
.faq-item.active-faq .faq-question::after {
    transform: rotate(45deg);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    padding: 0 25px;
}

/* Simple target class logic block mapping when open */
.faq-item.active-faq .faq-answer {
    max-height: 200px; /* Safe bounds space for text paragraph length */
    padding-bottom: 22px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 5. URL Image Filter Engine */
/* Automatically forces incoming Flaticon black graphics to display as pristine custom white vectors */
.service-card-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1) brightness(2); 
}

/* --- LIGHTWEIGHT MOBILE FIXES FOR NEW SECTIONS --- */
@media (max-width: 768px) {
    .section-title-area { padding: 40px 15px 20px 15px; }
    .section-title-area h2 { font-size: 1.6rem; }
    .trust-brands-row { gap: 10px; }
    .trust-brand-tag { padding: 8px 18px; font-size: 0.8rem; }
    .process-timeline-grid { grid-template-columns: 1fr; gap: 15px; }
    .process-step { padding: 25px 20px; }
    .faq-question { padding: 18px 20px; font-size: 0.92rem; }
    .faq-item.active-faq .faq-answer { padding: 0 20px 18px 20px; }
}
/* ==========================================================================
   DESKTOP NAVIGATION & ACCESSIBILITY EXTENSIONS
   ========================================================================== */

/* Add Desktop Navigation Links (Hidden on mobile by default) */
.desktop-nav {
    display: none;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.desktop-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--brand-blue);
    text-shadow: 0 0 15px rgba(0, 82, 204, 0.4);
}

/* --- RESPONSIVE MEDIA QUERIES FOR COHESIVE SYSTEM RUNTIME --- */

/* Laptop / Desktop Screens (Min-width 1025px) */
@media (min-width: 1025px) {
    /* Hide the hamburger trigger completely on laptop */
    .menu-toggle {
        display: none !important;
    }
    
    /* Reveal the clean inline desktop links */
    .desktop-nav {
        display: flex;
    }
    
    /* Secure overlay safety bounds */
    .menu-overlay {
        display: none !important;
    }
}

/* Mobile Tweak for Perfectly Fitting 5 Links without Screen Overlap */
@media (max-width: 480px) {
    .menu-overlay .nav-links { 
        gap: 12px !important; 
    }
    .menu-overlay .nav-links a { 
        font-size: 2.2rem !important; 
    }
}
/* ==========================================
   ABOUT PAGE SPECIFIC STYLING 
   ========================================== */

/* Page Layout Container */
.about-page {
    position: relative;
    z-index: 2;
    padding: 140px 24px 80px;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* 1. Hero Profile Structure */
.about-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
}

/* Premium Profile Photo Frame with Gold Glowing Aura */
.ceo-profile-frame {
    position: relative;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    margin-bottom: 25px;
    padding: 4px;
    background: linear-gradient(135deg, #d4af37, #aa7c11, #f3e5ab);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.ceo-profile-frame:hover {
    transform: scale(1.04);
    box-shadow: 0 0 45px rgba(212, 175, 55, 0.55);
}

.ceo-profile-frame img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #030b1e; /* Matches deep midnight blue backdrop */
    display: block;
}

.about-hero h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin: 0 0 10px 0;
    color: #f8fafc;
}

.brand-sub {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 2. Story Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 20px;
}

/* Glassmorphic Luxury Content Cards */
.story-card {
    background: rgba(3, 11, 30, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.story-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
}

.story-card h3 {
    color: #d4af37; /* Clean Gold Branding */
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: -0.3px;
}

.story-card p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0 0 20px 0;
}

.story-card p:last-child {
    margin-bottom: 0;
}

/* Spans across both columns on desktop layouts */
.full-width-column {
    grid-column: 1 / -1;
}

/* 3. The CEO Pull-Quote Element */
.quote-block {
    position: relative;
    border-left: 3px solid #d4af37;
    padding: 5px 0 5px 24px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #f1f5f9;
    font-weight: 400;
}

/* 4. Responsive Queries for Desktop Workflow */
@media (min-width: 768px) {
    .about-page {
        padding: 16px 40px 100px;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .about-hero h2 {
        font-size: 3.5rem;
    }
    
    .ceo-profile-frame {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding-top: 110px;
    }
    
    .story-card {
        padding: 25px 20px;
    }
    
    .about-hero h2 {
        font-size: 2rem;
    }
}


.select-wrapper {
    position: relative;
    width: 100%;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(212, 175, 55, 0.6);
    pointer-events: none;
    font-size: 0.85rem;
}

/* Inputs Active States */
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.input-group textarea {
    resize: none;
}

/* Input Placeholders custom styling */
::placeholder {
    color: #475569;
    opacity: 1;
}

/* Luxury Form Submit Button */
.submit-btn-luxury {
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #aa7c11);
    color: #030b1e; /* Deep Midnight Blue Text Contrast */
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.35);
}

.submit-btn-luxury:active {
    transform: translateY(0);
}

/* 5. Mobile Adjustments */
@media (max-width: 576px) {
    .contact-page {
        padding-top: 110px;
    }
    
    .contact-hero h2 {
        font-size: 2rem;
    }
    
    .glass-form-container {
        padding: 25px 20px;
    }
    
    .vip-card {
        padding: 16px;
    }
    
    .vip-card .card-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        margin-right: 14px;
    }
}
/* ==========================================================================
   GLOBAL HEADER & NAVBAR STRUCTURAL FIX (UPDATED)
   ========================================================================== */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 30px;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    z-index: 100; /* Sits above standard content */
    box-sizing: border-box;
}

/* Force Logo to stay on a single line */
.main-header .logo {
    white-space: nowrap !important;
    display: inline-block !important;
}

.main-header .logo a {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    letter-spacing: -0.5px;
}

/* Master Menu Toggle - Layered over everything so it stays clickable */
.menu-toggle {
    background: none !important;
    border: none !important;
    cursor: pointer;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px;
    z-index: 9999 !important; /* Force this ABOVE the open menu overlay grid */
    padding: 10px;
}

.menu-toggle .bar {
    width: 28px;
    height: 2px;
    background-color: #ffffff !important;
    transition: all 0.3s ease;
}

/* Mobile responsive padding safety */
@media (max-width: 576px) {
    .main-header {
        padding: 20px 20px !important;
    }
}
/* ==========================================================================
   CONTACT PAGE STYLING (GLASSMORPHIC & GOLD LUXURY LAYOUT)
   ========================================================================== */

.contact-page {
    position: relative;
    z-index: 2;
    padding: 130px 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* 1. Contact Hero Layout */
.contact-hero {
    text-align: center;
    margin-bottom: 50px;
}

.contact-hero h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f8fafc;
    margin: 10px 0;
    letter-spacing: -1px;
}

.hero-desc {
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* 2. Main Two-Column Structure */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
    }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37; /* Premium Gold Accent */
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

/* 3. Left Column: VIP Cards Stack */
.channel-note {
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.channels-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Base VIP Luxury Glass Card Design */
.vip-card {
    display: flex;
    align-items: center;
    background: rgba(3, 11, 30, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.vip-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.vip-card .card-info h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.vip-card .card-info p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.95rem;
}

.vip-card .arrow-indicator {
    margin-left: auto;
    color: rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Specific VIP Channel Colors & Hover Responses */
.whatsapp-card .card-icon { background: rgba(37, 211, 102, 0.15); color: #25d366; }
.email-card .card-icon { background: rgba(0, 82, 204, 0.15); color: #38bdf8; }
.tiktok-card .card-icon { background: rgba(255, 255, 255, 0.1); color: #ffffff; }

.vip-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.vip-card:hover .card-icon {
    transform: scale(1.05);
}

.vip-card:hover .arrow-indicator {
    color: #d4af37;
    transform: translateX(4px);
}

/* Checklist Prep Box Layout */
.prep-box {
    background: rgba(0, 82, 204, 0.05);
    border: 1px solid rgba(0, 82, 204, 0.2);
    padding: 25px;
    border-radius: 16px;
    margin-top: 30px;
}

.prep-box h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.prep-box ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: square;
}

.prep-box ul li {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.prep-box ul li:last-child {
    margin-bottom: 0;
}

/* 4. Right Column: Premium Briefing Form Styling */
.glass-form-container {
    background: rgba(3, 11, 30, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 35px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Form Elements */
.input-group input,
.input-group textarea,
.input-group select {
    background: rgba(3, 11, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f8fafc;
    padding: 14px 16px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Elegant Dropdown Setup Override */
.input-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(212, 175, 55, 0.6);
    pointer-events: none;
    font-size: 0.85rem;
}

/* Inputs Active States */
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.input-group textarea {
    resize: none;
}

/* Input Placeholders custom styling */
::placeholder {
    color: #475569;
    opacity: 1;
}

/* Luxury Form Submit Button */
.submit-btn-luxury {
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #aa7c11);
    color: #030b1e; /* Deep Midnight Blue Text Contrast */
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.35);
}

.submit-btn-luxury:active {
    transform: translateY(0);
}

/* 5. Mobile Adjustments */
@media (max-width: 576px) {
    .contact-page {
        padding-top: 110px;
    }
    
    .contact-hero h2 {
        font-size: 2rem;
    }
    
    .glass-form-container {
        padding: 25px 20px;
    }
    
    .vip-card {
        padding: 16px;
    }
    
    .vip-card .card-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        margin-right: 14px;
    }
}

/* ==========================================================================
   GLOBAL HEADER, INTERACTIVE MENU OVERLAY & ACTIVE COMPONENT FIXES
   ========================================================================== */

.main-header {
    position: fixed; /* or absolute, depending on your preferred scrolling workflow */
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 30px;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    z-index: 1000 !important; /* Forces the header layer above the WebGL particle canvas */
    box-sizing: border-box;
}

/* Force Logo to stay clean on a single line layout across mobile devices */
.main-header .logo,
.menu-header-bar .logo {
    white-space: nowrap !important;
    display: inline-block !important;
}

.main-header .logo a,
.menu-header-bar .logo a {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    letter-spacing: -0.5px;
}

/* Gold Branding Text Contrast Configuration */
.gold-text {
    color: #d4af37 !important;
}

/* Navigation Links Active Styling Config */
.nav-links a.active-nav {
    color: #0052cc !important; /* Premium Midnight Brand Blue Indicator */
    text-shadow: 0 0 15px rgba(0, 82, 204, 0.4);
    font-weight: 800;
}

/* Menu Overlay Close Trigger Layout */
.menu-close-btn {
    transition: transform 0.3s ease, color 0.2s ease;
}

.menu-close-btn:hover {
    transform: scale(1.1) rotate(90deg);
    color: #d4af37;
}

/* Master Hamburger Button Settings */
.menu-toggle {
    background: none !important;
    border: none !important;
    cursor: pointer;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px;
    z-index: 999;
    padding: 10px;
}

.menu-toggle .bar {
    width: 28px;
    height: 2px;
    background-color: #ffffff !important;
    transition: all 0.3s ease;
}

/* Mobile responsive navigation safety overrides */
@media (max-width: 576px) {
    .main-header,
    .menu-header-bar {
        padding: 20px 20px !important;
    }
}
/* 1. Force the WebGL canvas to sit firmly in the background background */
.webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1 !important; /* Drops the particle grid to the lowest structural level */
    pointer-events: none; /* Allows clicks to pass through seamlessly to your links */
}

/* 2. Elevate your main header layout structure above everything */
.main-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999 !important; /* Maximum surface layer priority */
    background: transparent;
}

/* 3. Ensure the inner layout container assets inherit full visibility */
.main-header .logo {
    position: relative !important;
    z-index: 10000 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.main-header .logo a {
    display: inline-block !important;
    color: #ffffff !important;
}
