/* ------------------------------
   🎨 BRAND COLOR VARIABLES
-------------------------------- */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #1A1A1A;
}

html, body {
    overflow-x: clip;
    max-width: 100%;
}

/* ------------------------------
   🔤 BRAND TYPOGRAPHY SCALE
-------------------------------- */

:root {
    --fontH: 'Poppins', sans-serif;
    --fontB: 'Open Sans', sans-serif;
    --h1: clamp(2.6rem, 4vw, 3.6rem);
    --h2: clamp(2.2rem, 3.5vw, 3rem);
    --h3: clamp(1.8rem, 3vw, 2.4rem);
    --h4: clamp(1.4rem, 2.2vw, 1.8rem);
    --body: clamp(1rem, 1.1vw, 1.15rem);
    --small: 0.9rem;
}


/* ================================
   🔒 HEADING COLOR LOCK (NO BLACK)
================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--blue);
    /* default */
}


/* White background headings */

.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6 {
    color: var(--blue);
}


/* Section title system */

.section-title {
    color: var(--blue);
}

.section-title span {
    background: linear-gradient(90deg, var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}


/* Dark background headings */

.bg-blue h1,
.bg-blue h2,
.bg-blue h3,
.bg-blue h4,
.bg-blue h5,
.bg-blue h6,
.bg-purple h1,
.bg-purple h2,
.bg-purple h3,
.bg-purple h4,
.bg-purple h5,
.bg-purple h6,
.bg-violet h1,
.bg-violet h2,
.bg-violet h3,
.bg-violet h4,
.bg-violet h5,
.bg-violet h6 {
    color: var(--white);
}

video {
    will-change: transform;
    transform: translateZ(0);
}


/* ------------------------------
   🌐 GLOBAL RESET
-------------------------------- */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fontB);
    font-size: var(--body);
    line-height: 1.75;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}


/* ------------------------------
   📝 TYPOGRAPHY RULES
-------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--fontH);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: var(--h1);
    color: var(--blue);
}

h2 {
    font-size: var(--h2);
    color: var(--purple);
}

h3 {
    font-size: var(--h3);
    color: var(--violet);
}

h4 {
    font-size: var(--h4);
    color: var(--purple);
}

p {
    color: var(--black);
    font-weight: 400;
}


/* ------------------------------
   ⚪ WHITE BACKGROUND RULE
-------------------------------- */

.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4 {
    color: inherit;
}


/* ------------------------------
   🔵 DARK BACKGROUND RULE
-------------------------------- */

.bg-blue,
.bg-purple,
.bg-violet {
    color: var(--white);
}

.bg-blue *,
.bg-purple *,
.bg-violet * {
    color: var(--white);
}


/* ------------------------------
   🔘 BUTTONS (BRANDED)
-------------------------------- */

.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--fontH);
    font-weight: 600;
    border-radius: 50px;
    background: var(--blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 18px 40px rgba(42, 42, 255, 0.25);
}

.btn-brand:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.45);
}


/* ------------------------------
   📦 BRAND CARDS
-------------------------------- */

.card-brand {
    background: var(--purple);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.card-brand:hover {
    transform: translateY(-10px);
    background: linear-gradient( 135deg, var(--purple), var(--violet));
}


/* ------------------------------
   ⭐ PREMIUM BADGES
-------------------------------- */

.badge-gold {
    background: linear-gradient(135deg, var(--gold), #f5e6a8);
    color: #000;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}


/* ------------------------------
   🎞 SMOOTH TRANSITIONS
-------------------------------- */

a,
button,
.card-brand {
    transition: all 0.35s ease;
}


/* ------------------------------
   📱 RESPONSIVE ADJUSTMENTS
-------------------------------- */

@media (max-width: 991px) {
    .card-brand {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.9rem;
    }
    .btn-brand {
        padding: 12px 28px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
}

.service-intro {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.service-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #ffffff;
}


/* =========================
   SECTION
========================= */

.premium-service {
    padding: clamp(70px, 8vw, 120px) 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}


/* =========================
   CONTAINER
========================= */

.premium-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}


/* =========================
   IMAGE – RESPONSIVE 3D GLASS
========================= */

.premium-image-wrap {
    perspective: 1600px;
    width: 100%;
}

.premium-glass {
    width: 100%;
    padding: clamp(12px, 2vw, 16px);
    border-radius: 34px;
    background: linear-gradient( 145deg, rgba(42, 42, 255, 0.25), rgba(138, 43, 226, 0.18));
    box-shadow: 0 40px 100px rgba(42, 42, 255, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    transform-style: preserve-3d;
    animation: floatPremium 12s ease-in-out infinite;
}


/* 🔥 IMAGE FIX */

.premium-glass img {
    width: 100%;
    aspect-ratio: 16 / 10;
    /* KEY FIX */
    height: auto;
    object-fit: cover;
    border-radius: 26px;
    filter: saturate(1.15) contrast(1.1) brightness(1.05);
    transform: translateZ(30px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}


/* FLOAT EFFECT */

@keyframes floatPremium {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
    100% {
        transform: translateY(0);
    }
}


/* =========================
   CONTENT
========================= */

.premium-badge {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.premium-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}

.premium-title span {
    background: linear-gradient( 90deg, var(--purple), var(--gold), var(--blue));
    -webkit-background-clip: text;
    color: transparent;
}

.premium-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 18px;
    color: #333;
}


/* =========================
   VIDEO ROW – RESPONSIVE FIX
========================= */

.nano-video-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 3vw, 24px);
    margin-top: clamp(40px, 6vw, 64px);
    padding: 0 clamp(16px, 3vw, 24px);
    max-width: 100%;
}

.nano-video-card {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: clamp(16px, 2.5vw, 22px);
    overflow: hidden;
    background: #0a0a12;
    position: relative;
    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;
}

.nano-video-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nano-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(42, 42, 255, 0.22);
}


/* =========================
   RESPONSIVE BREAKPOINTS
========================= */


/* Tablet */

@media (max-width: 992px) {
    .premium-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .nano-video-row {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile */

@media (max-width: 600px) {
    .nano-video-row {
        grid-template-columns: 1fr;
    }
    .premium-title {
        font-size: 2rem;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #ffffff;
}


/* SECTION */

.sofa-video-section {
    padding: clamp(56px, 8vw, 80px) clamp(20px, 4vw, 40px);
    background: #f8f9fc;
    font-family: var(--fontB);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.sofa-video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px, 3vw, 24px);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 5vw, 64px);
    align-items: center;
}


/* BADGE */

.sofa-badge {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--purple));
}


/* TITLE */

.sofa-title {
    font-family: var(--fontH);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sofa-title span {
    background: linear-gradient( 90deg, var(--purple), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}


/* SUBTITLE */

.sofa-subtitle {
    font-size: 1.05rem;
    margin-bottom: 26px;
    background: linear-gradient(90deg, #3b3bff, #6a1b9a);
    -webkit-background-clip: text;
    color: transparent;
}


/* POINTS */

.sofa-points {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.sofa-points li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    color: transparent;
}

.sofa-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}


/* BUTTONS */

.sofa-buttons {
    display: flex;
    gap: 16px;
}

.btn-dark {
    padding: 14px 26px;
    border-radius: 12px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    padding: 14px 26px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    background: linear-gradient( 135deg, var(--blue), var(--purple));
    box-shadow: 0 15px 40px rgba(42, 42, 255, 0.35);
}


/* ===============================
   VIDEO – 2026 premium, viewport-friendly
================================ */

.sofa-video-wrap {
    width: 100%;
    max-width: 100%;
}

.sofa-video-wrap .video-glass {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    padding: clamp(12px, 1.5vw, 16px);
    border-radius: clamp(18px, 2.5vw, 24px);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(42, 42, 255, 0.12), rgba(138, 43, 226, 0.1));
    box-shadow: 0 24px 56px rgba(42, 42, 255, 0.2), 0 0 0 1px rgba(255,255,255,0.06) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sofa-video-wrap .video-glass video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    transform: none;
    box-shadow: none;
}

.sofa-video-wrap .video-glass:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(42, 42, 255, 0.25);
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .sofa-video-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .sofa-title,
    .sofa-subtitle {
        text-align: center;
    }
    .sofa-buttons {
        justify-content: center;
    }
}

:root {
    --blue: #2A2AFF;
    /* Electric Blue */
    --gold: #D4AF37;
    /* Premium Gold */
    --white: #ffffff;
}


/* ===============================
   SECTION
================================ */

.benefits-premium {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.benefits-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 18px;
}


/* ===============================
   HEADER
================================ */

.benefits-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 90px;
}

.benefits-badge {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient( 90deg, var(--blue), var(--gold));
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.55);
}

.benefits-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient( 90deg, var(--blue), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}

.benefits-head p {
    font-size: 1.05rem;
    color: #555;
}


/* ===============================
   GRID
================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}


/* ===============================
   BENEFIT CARD (MAIN DIV)
================================ */

.benefit-card {
    background: linear-gradient( 135deg, #2A2AFF 0%, #3f3fff 40%, #D4AF37 100%);
    border-radius: 28px;
    padding: 28px;
    text-align: center;
    color: var(--white);
    /* ✅ ALL TEXT WHITE */
    box-shadow: 0 30px 80px rgba(42, 42, 255, 0.55), 0 0 60px rgba(212, 175, 55, 0.65);
    transition: 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 50px 120px rgba(42, 42, 255, 0.75), 0 0 90px rgba(212, 175, 55, 0.85);
}


/* ===============================
   IMAGE
================================ */

.benefit-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(212, 175, 55, 0.45);
}

.benefit-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.benefit-card:hover img {
    transform: scale(1.12);
}


/* ===============================
   TEXT (FORCE WHITE)
================================ */

.benefit-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.95;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefits-head h2 {
        font-size: 2.2rem;
    }
}

:root {
    --electric-blue: #2A2AFF;
    --electric-blue-2: #3C3CFF;
    /* bright mix */
    --gold: #D4AF37;
    --white: #ffffff;
}


/* ===============================
  SECTION
================================ */

.services-premium {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.services-container {
    max-width: 1250px;
    margin: auto;
    padding: 0 20px;
}


/* ===============================
  HEADER
================================ */

.services-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 90px;
}

.services-badge {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--electric-blue), var(--gold));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 14px 40px rgba(42, 42, 255, 0.25);
}

.services-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(90deg, var(--electric-blue), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}

.services-head p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}


/* ===============================
  GRID
================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}


/* ===============================
  CARD (BRIGHT ELECTRIC BLUE)
================================ */

.service-card {
    position: relative;
    padding: 26px;
    border-radius: 30px;
    color: var(--white);
    background: linear-gradient(145deg, var(--electric-blue), var(--electric-blue-2));
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 35px 90px rgba(42, 42, 255, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    transition: all .7s cubic-bezier(.4, 0, .2, 1);
    transform-style: preserve-3d;
    will-change: transform;
    overflow: hidden;
}


/* premium shine layer */

.service-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(900px 280px at 20% 10%, rgba(255, 255, 255, 0.22), transparent 55%), radial-gradient(800px 280px at 80% 0%, rgba(212, 175, 55, 0.22), transparent 50%);
    pointer-events: none;
    z-index: 0;
}


/* gold edge glow */

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 0 70px rgba(212, 175, 55, 0.0);
    transition: .6s ease;
}

.service-card:hover {
    transform: translateY(-18px) rotateX(6deg);
    box-shadow: 0 60px 140px rgba(42, 42, 255, 0.75), 0 0 70px rgba(212, 175, 55, 0.55);
}

.service-card:hover::after {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, 0 0 90px rgba(212, 175, 55, 0.5);
}


/* ===============================
  IMAGE (GLASS LOOK WITHOUT BLUR)
================================ */

.service-image {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 22px;
    /* frame + depth */
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.40);
    transform: translateZ(0);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transform: scale(1.06);
    transition: transform .6s ease, filter .6s ease;
    filter: saturate(1.12) contrast(1.06);
    /* crisp */
}


/* ✅ IMPORTANT: NO BACKDROP BLUR HERE */

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* glass highlight only (no blur) */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)), radial-gradient(450px 220px at 25% 20%, rgba(255, 255, 255, 0.22), transparent 60%);
}


/* glossy streak */

.service-image::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 70%;
    height: 160%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.26), transparent);
    transform: rotate(12deg);
    opacity: .0;
    transition: .7s ease;
    pointer-events: none;
}

.service-card:hover .service-image img {
    transform: scale(1.14);
    filter: saturate(1.18) contrast(1.08);
}

.service-card:hover .service-image::before {
    opacity: .9;
    left: 45%;
}


/* ===============================
  TEXT (WHITE INSIDE DIV)
================================ */

.service-card h3,
.service-card p {
    position: relative;
    z-index: 1;
    color: #fff;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.service-card p {
    font-size: .95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}


/* ===============================
  BUTTONS
================================ */

.service-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.btn-primary {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--gold), #ffd966);
    color: #111;
    font-weight: 800;
    text-decoration: none;
    transition: .4s;
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    text-decoration: none;
    transition: .4s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 55px rgba(212, 175, 55, 0.55);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
}


/* ===============================
  RESPONSIVE
================================ */

@media (max-width:1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-image img {
        height: 220px;
    }
}

:root {
    --blue: #2A2AFF;
    --blue-light: #3F3FFF;
    --gold: #D4AF37;
    --white: #ffffff;
}


/* SECTION */

.packages-section {
    padding: 120px 0;
    background: #f9fbff;
    font-family: 'Open Sans', sans-serif;
}

.packages-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


/* TITLE */

.packages-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 70px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}

.packages-title span {
    background: linear-gradient(90deg, var(--gold), var(--blue));
    -webkit-background-clip: text;
    color: transparent;
}


/* GRID */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-content: center;
}


/* CARD */

.package-card {
    background: linear-gradient(145deg, var(--blue), var(--blue-light));
    border-radius: 28px;
    padding: 40px 34px 48px;
    color: #fff;
    box-shadow: 0 40px 100px rgba(42, 42, 255, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    transition: .6s ease;
}

.package-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 55px 140px rgba(42, 42, 255, 0.75), 0 0 70px rgba(212, 175, 55, 0.5);
}


/* GOLD EDGE */

.package-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 70px solid var(--gold);
    border-left: 70px solid transparent;
    border-radius: 0 28px 0 0;
}


/* HEADER */

.package-header {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 28px;
}


/* LIST */

.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 38px;
}

.package-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    line-height: 1.6;
    color: #fff;
}

.package-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 900;
}


/* BUTTON */

.package-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-radius: 14px;
    border: none;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    background: linear-gradient(90deg, var(--gold), #ffd966);
    color: #111;
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.45);
    transition: .4s ease;
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.65);
}


/* RESPONSIVE */

@media(max-width:900px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --electric-blue: #2A2AFF;
    --gold: #D4AF37;
}


/* SECTION */

.process-premium {
    padding: clamp(80px, 10vw, 140px) 0;
    background: radial-gradient(900px 400px at 10% 10%, rgba(42, 42, 255, .18), transparent 60%), radial-gradient(700px 380px at 90% 20%, rgba(212, 175, 55, .18), transparent 60%), linear-gradient(135deg, #eef2ff, #f8faff, #fff6dc);
}


/* CONTAINER */

.process-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}


/* HEADING */

.process-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 34px;
    background: linear-gradient(90deg, var(--electric-blue), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}


/* LIST */

.process-list {
    list-style: none;
    padding: 0;
}

.process-list li {
    position: relative;
    padding-left: 52px;
    margin-bottom: 22px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.process-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 4px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--electric-blue), var(--gold));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}


/* VIDEO CARD */

.process-video-card {
    display: flex;
    justify-content: center;
}

.process-video-card .video-glass,
.video-glass {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    padding: clamp(12px, 1.5vw, 16px);
    border-radius: clamp(18px, 2.5vw, 24px);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(42, 42, 255, .15), rgba(138, 43, 226, .12));
    box-shadow: 0 24px 56px rgba(42, 42, 255, .2), 0 0 0 1px rgba(255,255,255,0.06) inset;
    transition: transform .35s ease, box-shadow .35s ease;
}

.video-glass video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.video-glass:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(42, 42, 255, .25);
}


/* RESPONSIVE */

@media(max-width:992px) {
    .process-container {
        grid-template-columns: 1fr;
    }
    .video-glass {
        max-width: 100%;
    }
}


/* =========================
   ROOT VARIABLES
========================= */

:root {
    --blue: #2A2AFF;
    --blue-light: #4d5bff;
    --gold: #D4AF37;
    --white: #ffffff;
    --dark: #111111;
}


/* =========================
   SECTION (WHITE BACKGROUND)
========================= */

.why-brand {
    padding: 120px 0;
    background: var(--white);
    /* ✅ section white */
    font-family: 'Open Sans', sans-serif;
}


/* =========================
   WRAPPER
========================= */

.why-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


/* =========================
   HEADER
========================= */


/* MAIN HEADING – GRADIENT + SPACING */

.why-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.3rem);
    font-weight: 800;
    letter-spacing: 0.6px;
    /* 🔥 Electric Blue + Purple Gradient */
    background: linear-gradient( -130deg, #2A2AFF, #D4AF37, #9700f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* 🔽 Heading ko thoda niche lane ke liye */
    margin-top: 10px;
    margin-bottom: 10px;
}

.why-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.3rem);
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin-bottom: 14px;
}

.why-header p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #555;
}


/* =========================
   GRID
========================= */

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 72px;
    /* 🔥 premium spacing */
    align-items: center;
}


/* =========================
   COLUMNS
========================= */

.why-col {
    display: flex;
    flex-direction: column;
    gap: 34px;
    /* 🔥 brand spacing */
}


/* =========================
   BOX (ELECTRIC BLUE DIVS)
========================= */

.why-box {
    padding: 34px 32px;
    border-radius: 22px;
    background: linear-gradient( 135deg, var(--blue), var(--blue-light));
    box-shadow: 0 22px 55px rgba(42, 42, 255, 0.35);
    transition: 0.45s ease;
}

.why-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 90px rgba(42, 42, 255, 0.45);
}


/* =========================
   TEXT (WHITE)
========================= */

.why-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--white);
    margin-bottom: 12px;
}

.why-box p {
    font-size: 0.96rem;
    line-height: 1.75;
    letter-spacing: 0.15px;
    color: rgba(255, 255, 255, 0.92);
}


/* =========================
   IMAGE (CENTER)
========================= */

.why-image {
    transform: scale(1.08);
}

.why-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .why-image {
        transform: scale(1);
        order: -1;
    }
    .why-image img {
        height: auto;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --white: #ffffff;
}


/* SECTION */

.faq-section {
    padding: 120px 20px;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}


/* CONTAINER */

.faq-container {
    max-width: 1100px;
    margin: auto;
}


/* HEADER */

.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    color: transparent;
}


/* GRID */

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}


/* FAQ CARD (DIV COLOR HERE) */

.faq-item {
    background: linear-gradient( 135deg, #2A2AFF, #6A1B9A);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 25px 60px rgba(42, 42, 255, 0.35);
    transition: 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-8px);
}


/* QUESTION */

.faq-question {
    width: 100%;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    text-align: left;
}


/* ICON */

.icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}


/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 42px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
    transition: max-height 0.4s ease, padding 0.4s ease;
}


/* ACTIVE */

.faq-item.active {
    box-shadow: 0 35px 90px rgba(42, 42, 255, 0.6);
}

.faq-item.active .faq-answer {
    max-height: 240px;
    padding: 16px 42px 0;
}


/* RESPONSIVE */

@media(max-width:768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #1A1A1A;
}


/* MASTER SECTION */

.testimonial-master {
    padding: 70px 40px;
    max-width: 1400px;
    margin: auto;
}


/* MAIN HEADING */

.testi-main-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 40px;
}


/* VIDEO WRAPPER */

.testi-videos {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.testi-video-box {
    width: 100%;
    max-width: 360px;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    padding: 12px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.25);
}

.testi-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}


/* HEADING BLOCK BELOW VIDEOS */

.testi-heading-wrap {
    margin-top: 60px;
    text-align: left;
}

.testi-badge {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 1px;
}

.testi-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-top: 10px;
    color: var(--black);
}

.testi-title .highlight {
    color: var(--gold);
}

.testi-subtitle {
    margin-top: 15px;
    font-size: 1.05rem;
    color: #444;
}


/* AUTO SLIDER BOX */

.testimonial-slider {
    margin-top: 50px;
    padding: 45px;
    border-radius: 12px;
    background: var(--blue);
    color: var(--white);
    position: relative;
    box-shadow: 0 20px 40px rgba(42, 42, 255, 0.25);
    overflow: hidden;
}

.testi-slide {
    opacity: 0;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    transition: opacity 1s ease;
}

.testi-slide.active {
    opacity: 1;
    position: relative;
}


/* TEXT */

.testi-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--white);
}

.testi-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}


/* RESPONSIVE */

@media (max-width:800px) {
    .testi-video-box {
        width: 100%;
    }
    .testimonial-slider {
        padding: 30px;
    }
    .testi-text {
        font-size: 1.15rem;
    }
}


/* ---------------------------------
   ⭐ STATS SECTION (BRAND LEVEL)
----------------------------------*/

/* ================= STATS — 2026 upgraded ================= */

.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, var(--blue) 0%, var(--purple) 50%, var(--violet) 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;
    line-height: 1.2;
    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); }
}


/* ============================================
   ULTRA BRIGHT FOOTER (NEON GLASSMORPHIC)
============================================ */

: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 */

: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 */
    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: 'Poppins', sans-serif;
    color: var(--white);
    /* 🔥 ALL TEXT WHITE */
}


/* Animated gradient */

@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-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}


/* Paragraph */

.hero-content p {
    font-size: clamp(14px, 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: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}


/* SUB TEXT */

.hero-stats-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    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
================================ */

.hero-impeccable {
    position: relative;
    /* ❌ fixed height hatao */
    height: auto;
    /* ✅ full screen cover + flexible */
    min-height: 100vh;
    /* ✅ niche content ke liye space */
    padding-bottom: 100px;
    /* ✅ cut problem fix */
    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: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.hero-stats-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 6px;
}

.hero-form-image {
    margin-top: 22px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.hero-form-image img {
    width: 100%;
    height: 140px;
    /* 🔥 horizontal look */
    object-fit: cover;
    border-radius: 16px;
}


/* ===============================
   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
===================== */

.hero-card {
    flex: 1;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease 0.2s;
    color: #ffffff;
}

.hero-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-card h3 {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 700;
    color: #ffffff;
}

.hero-card-sub {
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}


/* FORM */

.form-group {
    margin-bottom: 14px;
}

.hero-booking-form label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    display: block;
    color: #ffffff;
}

.hero-booking-form select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #d6d6d6;
    color: #111;
    /* readable */
    background: #ffffff;
}


/* BUTTON */

.hero-submit {
    width: 100%;
    padding: 11px;
    border-radius: 999px;
    background: var(--white);
    color: var(--purple);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

.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;
    }
    .hero-card {
        max-width: 420px;
        width: 100%;
    }
}


/* MOBILE */

@media (max-width: 576px) {
    .hero-impeccable {
        padding: 60px 0;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-card {
        padding: 18px 18px;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #ffffff;
}


/* SECTION */

.cleaning-covers-section {
    padding: clamp(56px, 8vw, 80px) clamp(20px, 4vw, 40px);
    background: #fff;
    font-family: var(--fontB);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* CONTAINER */

.cleaning-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 32px);
}


/* HEADING */

.cleaning-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.3rem);
    font-weight: 800;
    margin-bottom: 80px;
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    color: transparent;
}


/* GRID */

.cleaning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}


/* CARD */

.cleaning-card {
    background: linear-gradient(135deg, var(--blue), #1f1fd8, var(--gold));
    border-radius: 26px;
    padding: 26px;
    color: var(--white);
    box-shadow: 0 35px 90px rgba(42, 42, 255, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    transition: 0.6s ease;
    transform-style: preserve-3d;
}

.cleaning-card:hover {
    transform: translateY(-18px) scale(1.02);
    box-shadow: 0 50px 120px rgba(42, 42, 255, 0.7), 0 0 70px rgba(212, 175, 55, 0.55);
}


/* GLASS IMAGE */

.glass-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 22px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.glass-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: 0.6s ease;
}

.glass-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.cleaning-card:hover .glass-image img {
    transform: scale(1.12);
}


/* TEXT */

.cleaning-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
}

.cleaning-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cleaning-card ul li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.cleaning-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .cleaning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cleaning-grid {
        grid-template-columns: 1fr;
    }
}


/* ===============================
   CTA SECTION
================================ */

.cta-cleaning {
    padding: 120px 0;
    background: linear-gradient( 135deg, #2A2AFF 0%, #6A1B9A 50%, #8A2BE2 100%);
    font-family: 'Open Sans', sans-serif;
}


/* CONTAINER */

.cta-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}


/* GLASS CARD */

.cta-glass-card {
    max-width: 880px;
    width: 100%;
    padding: 70px 60px;
    text-align: center;
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(18px);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.45), 0 0 80px rgba(212, 175, 55, 0.45);
    transition: 0.6s ease;
}

.cta-glass-card:hover {
    transform: translateY(-12px) scale(1.02);
}


/* ===============================
   HEADING – WHITE + GOLD HARD GRADIENT
================================ */

.cta-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 22px;
    background: linear-gradient( 90deg, #ffffff 0%, #fff4c2 25%, #D4AF37 55%, #FFD700 75%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.6px;
    /* HARD & BRIGHT SHINE */
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.45), 0 0 25px rgba(212, 175, 55, 0.65);
}


/* TEXT */

.cta-subtext {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 42px;
}


/* BUTTONS */

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* PRIMARY BUTTON */

.cta-btn.primary {
    background: linear-gradient( 135deg, #D4AF37, #FFD700);
    color: #1a1a1a;
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.55);
}

.cta-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 65px rgba(212, 175, 55, 0.75);
}


/* SECONDARY BUTTON */

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-btn.secondary:hover {
    background: #ffffff;
    color: #2A2AFF;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .cta-glass-card {
        padding: 50px 26px;
    }
    .cta-heading {
        font-size: 2.2rem;
    }
}

: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;
} */


/* ================= TOP INFO BAR ================= */

.top-info-bar {
    background: #fff;
    color: rgb(63, 6, 251)2f6;
    position: relative;
    z-index: 1000;
}

.top-info-inner {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-logo img {
    height: 100px;
}

.top-info-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.info-item {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: rgb(41, 4, 252)4fa;
    font-size: 14px;
}

.info-item img {
    width: 28px;
}

@media(max-width:768px) {
    .top-info-inner {
        flex-direction: column;
        text-align: center;
    }
    .top-info-right {
        flex-direction: column;
        gap: 12px;
    }
}


/* ================= FLOATING BUTTONS ================= */

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.fab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 10px 30px rgba(42, 42, 255, .45);
}

.fab-whatsapp {
    background: linear-gradient(135deg, var(--purple), var(--violet));
}

.fab .label {
    display: none;
}

@media(max-width:992px) {
    .fab .label {
        display: inline;
    }
}


/* ================= NAVBAR ================= */

.premium-navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* HAMBURGER */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 32px;
    height: 3px;
    background: #fff;
    transition: .3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* MENU */

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.nav-link:hover::after {
    width: 100%;
}


/* DROPDOWN */

.dropdown {
    position: relative;
}

.caret {
    margin-left: 6px;
    font-weight: 700;
}

.dropdown-content {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 260px;
    background: linear-gradient( 135deg, #6A1B9A 0%, #8A2BE2 45%, #D4AF37 100%);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .35s;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 14px 18px;
    color: #fff;
    text-decoration: none;
}

.dropdown-content a:hover {
    background: #f800e7;
}

@media(min-width:901px) {
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* SOCIAL ICONS */

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons img {
    width: 20px;
    filter: invert(1);
}


/* ==============================
   🌐 SOCIAL ICONS
============================== */

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .1));
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
    transition: .35s;
}

.social-icons a:hover {
    transform: translateY(-8px) scale(1.1);
    background: linear-gradient(135deg, var(--blue), var(--violet));
}


/* ================= 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;
    }
}