/* ================= BRAND TOKENS ================= */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #ffffff;
    --black: #1A1A1A;
    --fontH: 'Poppins', sans-serif;
    --fontB: 'Open Sans', sans-serif;
}


/* ================= GLOBAL RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: var(--fontB);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


/* ================= GLASS SCRATCH SECTION ================= */

.glass-scratch-section {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.glass-scratch-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}


/* ================= TEXT ================= */


/* 🔒 RULE: Heading gradient */

.glass-scratch-content h2 {
    font-family: var(--fontH);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

video {
    will-change: transform;
    transform: translateZ(0);
}

.glass-scratch-tagline {
    font-family: var(--fontH);
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 500;
    margin-bottom: 28px;
    color: #6A1B9A;
}

.glass-scratch-content p {
    font-family: var(--fontB);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.75;
    color: #333;
    margin-bottom: 18px;
}


/* ================= IMAGE (GLASSMORPHISM + 3D) ================= */


/* ================= GLASS SCRATCH VIDEO ================= */

.video-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 240px;
    border-radius: clamp(16px, 2.5vw, 22px);
    overflow: hidden;
    background: #0a0a12;
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.18), 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.video-box video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .glass-scratch-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}


/* ================= GLASS SCRATCH TYPES ================= */

.glass-scratch-types {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: #ffffff;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}


/* ================= HEADER ================= */


/* 🔒 Gradient heading */

.glass-scratch-header h2 {
    font-family: var(--fontH);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-scratch-header p {
    font-family: var(--fontB);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.7;
    color: #444;
    max-width: 760px;
    margin-bottom: 60px;
}


/* ================= LIST ================= */

.glass-scratch-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.glass-scratch-list li {
    position: relative;
    padding-left: 34px;
    font-family: var(--fontH);
    font-size: clamp(15px, 1.1vw, 17px);
    font-weight: 500;
    color: #1A1A1A;
}


/* Premium check icon */

.glass-scratch-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2A2AFF;
    font-weight: 700;
}


/* ================= NOTE ================= */

.glass-scratch-note {
    padding: 26px 28px;
    border-left: 4px solid #2A2AFF;
    background: #f7f8ff;
    border-radius: 6px;
}

.glass-scratch-note p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15.5px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.glass-scratch-note strong {
    font-weight: 600;
    color: #1A1A1A;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .glass-scratch-header p {
        font-size: 16.5px;
    }
    .glass-scratch-list li {
        font-size: 16px;
    }
}


/* ================= GLASS COVERAGE SECTION ================= */


/* ================= GLASS COVERAGE SECTION ================= */

.glass-coverage-section {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* ================= HEADER ================= */

.glass-coverage-header {
    max-width: 900px;
    margin-bottom: 90px;
}

.glass-coverage-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 4.8vw, 54px);
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-coverage-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.75;
    color: #444;
}


/* ================= GRID (5 CARDS – ONE ROW) ================= */

.glass-coverage-grid {
    max-width: 1500px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 🔒 ONE ROW */
    gap: 32px;
}


/* ================= CARD ================= */

.glass-coverage-card {
    padding: 26px 22px 30px;
    border-radius: 26px;
    /* 🔒 ELECTRIC BLUE ONLY */
    background: #2A2AFF;
    box-shadow: 0 35px 120px rgba(42, 42, 255, 0.55);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-coverage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 55px 170px rgba(42, 42, 255, 0.7);
}


/* ================= IMAGE (3D + GLASSMORPHISM) ================= */

.glass-coverage-image {
    position: relative;
    padding: 14px;
    border-radius: 22px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.glass-coverage-image::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.18);
    z-index: -1;
}

.glass-coverage-image img {
    width: 100%;
    height: 180px;
    /* compact for 5-card row */
    object-fit: cover;
    border-radius: 16px;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(22px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}


/* ================= TEXT ================= */

.glass-coverage-card h3 {
    font-family: var(--fontH);
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 600;
    margin-bottom: 14px;
    color: #ffffff;
}

.glass-coverage-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.glass-coverage-card li {
    font-family: var(--fontB);
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.55;
    color: #ffffff;
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
}

.glass-coverage-card li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #ffffff;
}


/* ================= RESPONSIVE ================= */


/* Tablet → 3 cards */

@media (max-width: 1200px) {
    .glass-coverage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Mobile → 1 card */

@media (max-width: 768px) {
    .glass-coverage-grid {
        grid-template-columns: 1fr;
    }
    .glass-coverage-header {
        margin-bottom: 60px;
    }
    .glass-coverage-header p {
        font-size: 16.5px;
    }
}


/* ================= MASTER PROCESS SECTION ================= */

.glass-process-master {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
}


/* ================= BLOCK ================= */

.glass-process-block h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 700;
    margin-bottom: 28px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================= CHECKLIST ================= */

.glass-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.glass-checklist li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16.5px;
    line-height: 1.6;
    color: #222;
}


/* Premium check icon */

.glass-checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #2A2AFF;
}


/* ================= NOTE ================= */

.glass-note {
    font-family: 'Open Sans', sans-serif;
    font-size: 15.5px;
    line-height: 1.6;
    color: #444;
    padding-left: 18px;
    border-left: 3px solid #2A2AFF;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .glass-process-master {
        gap: 60px;
    }
    .glass-checklist li {
        font-size: 15.5px;
    }
}


/* ================= CENTER CTA LOGIC ================= */

.glass-process-center {
    position: relative;
}


/* CTA perfectly centered */

.glass-process-cta-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}


/* CTA Button */

.glass-cta-btn {
    display: inline-block;
    padding: 18px 48px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16.5px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    box-shadow: 0 22px 70px rgba(42, 42, 255, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 100px rgba(42, 42, 255, 0.75);
}


/* ================= RESPONSIVE ================= */


/* Mobile pe CTA niche aa jaye (UX safe) */

@media (max-width: 768px) {
    .glass-process-cta-center {
        position: static;
        transform: none;
        margin-top: 60px;
    }
}


/* ================= SUITABLE SECTION ================= */

.suitable-section {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* ================= HEADER ================= */

.suitable-header {
    max-width: 900px;
    margin-bottom: 90px;
}

.suitable-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 4.8vw, 54px);
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.suitable-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.75;
    color: #444;
}


/* ================= GRID ================= */

.suitable-grid {
    max-width: 1500px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 34px;
}


/* ================= CARD ================= */

.suitable-card {
    padding: 22px;
    border-radius: 28px;
    background: #2A2AFF;
    box-shadow: 0 40px 140px rgba(42, 42, 255, 0.55);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.suitable-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 60px 180px rgba(42, 42, 255, 0.75);
}


/* ================= IMAGE (3D GLASSMORPHISM) ================= */

.suitable-image {
    position: relative;
    padding: 14px;
    border-radius: 22px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.suitable-image::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.18);
    z-index: -1;
}

.suitable-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 16px;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(22px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}


/* ================= TEXT ================= */

.suitable-card h3 {
    font-family: var(--fontH);
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 600;
    text-align: center;
    color: #ffffff;
}


/* ================= RESPONSIVE ================= */


/* Tablet */

@media (max-width: 1200px) {
    .suitable-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Mobile */

@media (max-width: 768px) {
    .suitable-grid {
        grid-template-columns: 1fr;
    }
    .suitable-header {
        margin-bottom: 60px;
    }
}


/* ================= FINAL CTA SECTION — website-style ================= */

.glass-final-cta {
    padding: clamp(48px, 8vw, 72px) clamp(20px, 4vw, 40px);
    background: #f8f9fc;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.glass-final-cta-inner {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding: clamp(40px, 5vw, 56px) clamp(28px, 4vw, 48px);
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, #2A2AFF 0%, #6A1B9A 50%, #8A2BE2 100%);
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.glass-final-cta-inner::after {
    content: "";
    position: absolute;
    inset: 50% 20% 10% 20%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.glass-final-title {
    position: relative;
    z-index: 2;
    font-family: var(--fontH);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
    line-height: 1.25;
}

.glass-final-desc {
    position: relative;
    z-index: 2;
    font-family: var(--fontB);
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    margin: 0 auto 24px;
}

.glass-final-points {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    justify-content: center;
    gap: clamp(20px, 3vw, 32px);
    flex-wrap: wrap;
}

.glass-final-points li {
    font-family: var(--fontB);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding-left: 22px;
}

.glass-final-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.glass-final-actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.glass-final-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--fontH);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

.glass-final-btn.primary {
    background: #ffffff;
    color: #2A2AFF;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.glass-final-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.glass-final-btn.secondary {
    color: #ffffff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.glass-final-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .glass-final-cta-inner {
        padding: 36px 24px;
        border-radius: 18px;
    }
    .glass-final-desc {
        margin-bottom: 20px;
    }
    .glass-final-points {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
    }
    .glass-final-actions {
        flex-direction: column;
        gap: 12px;
    }
    .glass-final-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --radius-xl: 38px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --glass: rgba(255, 255, 255, 0.10);
    --glass-2: rgba(255, 255, 255, 0.14);
    --stroke: rgba(255, 255, 255, 0.22);
    --shadow-1: 0 18px 55px rgba(0, 0, 0, 0.22);
    --shadow-2: 0 32px 90px rgba(0, 0, 0, 0.30);
    --shadow-in: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    --font-h: "Poppins", sans-serif;
    --font-b: "Open Sans", sans-serif;
    --font-ui: "Outfit", sans-serif;
}


/* Footer: same as index (home) — uses new.css .imp-footer styles */

/* ---------------------------------
   ⭐ STATS SECTION (BRAND LEVEL)
----------------------------------*/

/* ================= STATS — 2026 BRANDED ================= */

.stats-simple-section {
    padding: clamp(48px, 6vw, 64px) clamp(20px, 4vw, 40px);
    background: #f8f9fc;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.stats-simple-box {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2A2AFF 0%, #6A1B9A 50%, #8A2BE2 100%);
    border-radius: 24px;
    padding: clamp(36px, 4vw, 48px) clamp(28px, 3vw, 40px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: clamp(20px, 2.5vw, 32px);
    flex-wrap: wrap;
    box-shadow: 0 24px 56px rgba(42, 42, 255, 0.22), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.stat-simple-item {
    text-align: center;
    flex: 1 1 140px;
    min-width: 0;
}

.stat-simple-item h2 {
    font-family: var(--fontH);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    color: #fff;
}

.stat-simple-item p {
    font-family: var(--fontB);
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

@media (max-width: 992px) {
    .stats-simple-box { gap: 28px; padding: 40px 28px; }
    .stat-simple-item { flex: 1 1 45%; }
}

@media (max-width: 480px) {
    .stats-simple-box { padding: 32px 24px; border-radius: 20px; gap: 24px; }
    .stat-simple-item { flex: 1 1 100%; }
    .stat-simple-item h2 { font-size: clamp(26px, 8vw, 34px); }
}


/* ================= TESTIMONIAL MASTER ================= */

.testimonial-master {
    padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 40px);
    background: radial-gradient(circle at top, rgba(42, 42, 255, 0.1), #ffffff 55%);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}


/* Soft brand glow */

.testimonial-master::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient( circle, rgba(42, 42, 255, 0.18), transparent 65%);
    filter: blur(120px);
    z-index: 0;
}


/* ================= TOP TITLE ================= */

.testi-main-title {
    position: relative;
    z-index: 2;
    font-family: var(--fontH);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    margin-bottom: clamp(40px, 5vw, 70px);
    background: linear-gradient(90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ================= VIDEOS ================= */

.testi-videos {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testi-video-box {
    position: relative;
    width: 100%;
    max-width: 360px;
    border-radius: 20px;
    padding: 12px;
    background: linear-gradient(135deg, #2A2AFF, #8A2BE2);
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.25);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.testi-video-box video {
    position: absolute;
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    object-fit: cover;
    display: block;
    border-radius: 14px;
    background: #000;
}


/* ================= HEADING BLOCK ================= */

.testi-heading-wrap {
    max-width: 820px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 2;
}

.testi-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    border-radius: 50px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    box-shadow: 0 10px 25px rgba(42, 42, 255, 0.4);
}

.testi-title {
    font-family: var(--fontH);
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.testi-title .highlight {
    background: linear-gradient(90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testi-subtitle {
    font-family: var(--fontB);
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.7;
    color: #555;
}


/* ================= SLIDER ================= */

.testimonial-slider {
    position: relative;
    max-width: 820px;
    margin: auto;
    min-height: 220px;
    z-index: 2;
}


/* SLIDE CARD */

.testi-slide {
    position: absolute;
    inset: 0;
    padding: 46px 44px;
    border-radius: 30px;
    background: linear-gradient( 135deg, #2A2AFF, #D4AF37);
    color: #ffffff;
    box-shadow: 0 40px 90px rgba(42, 42, 255, 0.45);
    opacity: 0;
    transform: translateY(30px);
}


/* TEXT */

.testi-text {
    font-family: var(--fontB);
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.75;
    margin-bottom: 26px;
    color: #ffffff;
}


/* NAME */

.testi-name {
    font-family: var(--fontH);
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .testi-videos {
        gap: 28px;
    }
    .testi-video-box {
        width: 100%;
    }
    .testimonial-slider {
        min-height: 260px;
    }
    .testi-slide {
        padding: 36px 28px;
    }
}

@media (max-width: 480px) {
    .testi-main-title {
        margin-bottom: 50px;
    }
    .testi-slide {
        padding: 30px 22px;
    }
    .testi-text {
        font-size: 15px;
    }
}

:root {
    --blue: #2A2AFF;
    /* Electric Blue */
    --purple: #6A1B9A;
    /* Purple */
    --violet: #8A2BE2;
    /* Violet */
    --white: #ffffff;
    --dark: #111;
}


/* =====================
   CONTAINER
===================== */

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}


/* =====================
   HERO SECTION
===================== */

.hero-impeccable {
    position: relative;
    height: 520px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* BRAND GRADIENT (violet 30%, blue 30%, purple 30%) */
    background: linear-gradient(135deg, var(--violet) 0%, var(--violet) 30%, var(--blue) 30%, var(--blue) 60%, var(--purple) 60%, var(--purple) 100%);
    background-size: 200% 200%;
    animation: heroGradient 10s ease-in-out infinite;
    font-family: var(--fontH);
    color: var(--white);
}

@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* PARTICLES */

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* CONTENT WRAPPER */

.hero-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 30px;
}


/* =====================
   LEFT CONTENT
===================== */

.hero-content {
    flex: 1;
    max-width: 540px;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease;
}

.hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Eyebrow */

.hero-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    margin-bottom: 14px;
    color: #ffffff;
}


/* Heading */

.hero-content h1 {
    font-family: var(--fontH);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}


/* Paragraph */

.hero-content p {
    font-family: var(--fontB);
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}


/* ===============================
   HERO STATS – PREMIUM DARK GLASS
================================ */

.hero-stats-wrapper {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}


/* STAT BOX */

.hero-stats-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 34px;
    border-radius: 4px;
    /* DARK GLASS OVER IMAGE */
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 14px 40px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
}


/* HOVER – VERY SUBTLE (LIKE IMAGE) */

.hero-stats-box:hover {
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.68));
    transform: translateY(-3px);
}


/* ICON */

.hero-stats-box i {
    font-size: 42px;
    color: #ffffff;
    opacity: 0.95;
}


/* TEXT WRAPPER */

.hero-stats-text {
    display: flex;
    flex-direction: column;
}


/* TITLE */

.hero-stats-text h3 {
    font-family: var(--fontH);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}


/* SUB TEXT */

.hero-stats-text p {
    font-family: var(--fontB);
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 500;
    color: #ffffff;
    margin-top: 6px;
    opacity: 0.96;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .hero-stats-wrapper {
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .hero-stats-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-stats-box {
        padding: 24px 26px;
    }
    .hero-stats-text h3 {
        font-size: 23px;
    }
    .hero-stats-text p {
        font-size: 20px;
    }
}


/* HERO SECTION – HEIGHT FIX (pahle jaise) */
.hero-impeccable {
    position: relative;
    height: auto;
    min-height: 100vh;
    padding-bottom: 100px;
    overflow: visible;
}


/* ===============================
   HERO INNER SPACING
================================ */

.hero-inner {
    align-items: flex-start;
    padding-top: 80px;
}


/* ===============================
   HERO STATS – PREMIUM DARK GLASS
================================ */

.hero-stats-wrapper {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.hero-stats-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 34px;
    border-radius: 4px;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 14px 40px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
}

.hero-stats-box:hover {
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.68));
    transform: translateY(-3px);
}

.hero-stats-box i {
    font-size: 42px;
    color: #ffffff;
}

.hero-stats-text h3 {
    font-family: var(--fontH);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.hero-stats-text p {
    font-family: var(--fontB);
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 500;
    color: #ffffff;
    margin-top: 6px;
}


/* ===============================
   RESPONSIVE FIX
================================ */

@media (max-width: 992px) {
    .hero-inner {
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    .hero-impeccable {
        padding-bottom: 130px;
    }
    .hero-stats-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-stats-box {
        padding: 24px 26px;
    }
    .hero-stats-text h3 {
        font-size: 23px;
    }
    .hero-stats-text p {
        font-size: 20px;
    }
}


/* =====================
   RIGHT FORM CARD — website-style (not poster)
===================== */

.hero-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 22px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(15px);
    transition: 0.5s ease 0.15s;
    color: #ffffff;
}

.hero-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-card h3 {
    font-family: var(--fontH);
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.hero-card-sub {
    font-family: var(--fontB);
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.88);
}


/* FORM */

.form-group {
    margin-bottom: 12px;
}

.hero-booking-form label {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-booking-form select,
.hero-booking-form input[type="text"],
.hero-booking-form input[type="tel"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--fontB);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #111;
    background: rgba(255, 255, 255, 0.96);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-booking-form input[type="text"]:focus,
.hero-booking-form input[type="tel"]:focus,
.hero-booking-form select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 2px rgba(106, 27, 154, 0.15);
}


/* BUTTON */

.hero-submit {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--white);
    color: var(--purple);
    font-family: var(--fontH);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-top: 4px;
}

.hero-submit:hover {
    background: var(--violet);
    color: var(--white);
}

.hero-small-note {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
}


/* =====================
   RESPONSIVE
===================== */


/* TABLET */

@media (max-width: 992px) {
    .hero-impeccable {
        height: auto;
        padding: 40px 0;
    }
    .hero-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .hero-card {
        max-width: min(360px, 92vw);
        width: 100%;
        margin: 0 auto;
    }
}


/* MOBILE */

@media (max-width: 576px) {
    .hero-impeccable {
        padding: 60px 0;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-card {
        max-width: 100%;
        padding: 18px 20px;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --white: #ffffff;
    --text: #f5f5f5;
    --font: 'Poppins', sans-serif;
}


/* RESET */

*/
/* {margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:var(--font);
  
  color:#fff;
} */


/* Header / navbar / top bar / floating: use new.css. Mobile menu below. */


/* ================= MOBILE ================= */

@media (max-width: 900px) {
    html.nav-open, body.nav-open {
        overflow: hidden !important;
        height: 100%;
        position: fixed;
        left: 0;
        right: 0;
    }
    body.nav-open .header-sticky-wrapper,
    body.nav-open .premium-navbar,
    body.nav-open .nav-container { overflow: visible !important; }
    .premium-navbar { overflow: visible; }
    .nav-container { overflow: visible; }
    .hamburger {
        display: flex;
        position: relative;
        z-index: 100002;
    }
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100%;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh;
        min-height: 100dvh;
        margin: 0 !important;
        padding: clamp(80px, 18vw, 100px) clamp(20px, 5vw, 24px) 40px;
        background: linear-gradient(180deg, var(--blue), var(--purple), var(--violet));
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100001;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }
    .nav-list > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: clamp(16px, 4vw, 17px);
    }
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .dropdown.active .dropdown-toggle .caret {
        transform: rotate(180deg);
    }
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: linear-gradient(180deg, #6A1B9A 0%, #8A2BE2 45%, #D4AF37 100%);
        border-radius: 14px;
        margin: 8px 0 12px 16px;
        padding: 8px 0;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .dropdown.active .dropdown-content {
        display: block;
    }
    .dropdown-content a {
        color: #fff;
        padding: 12px 20px;
        font-weight: 600;
        font-size: clamp(14px, 3.5vw, 15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        padding-left: 24px;
    }
    .social-icons {
        display: none;
    }
}


/* ================= ARTICLE VIDEO (BRANDED + GLASS) ================= */

.glass-article-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    overflow: hidden;
    border-radius: clamp(16px, 2.5vw, 24px);
    background: #0a0a12;
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.18), 0 0 0 1px rgba(255,255,255,0.06) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.glass-article-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.glass-article-video:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(42, 42, 255, 0.22);
}

@media (max-width: 768px) {
    .glass-article-video { min-height: 180px; border-radius: 18px; }
}