/* --------------------------
   🔥 BRAND ROOT SYSTEM
-------------------------- */

:root {
    /* Brand Colors */
    --primary: #2A2AFF;
    --secondary: #6A1B9A;
    --accent: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --dark: #1A1A1A;
    --text-dark: #1A1A1A;
    /* Gradients */
    --grad-main: linear-gradient(135deg, #2A2AFF, #6A1B9A, #8A2BE2, #D4AF37);
    /* Shadows */
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 26px 60px rgba(0, 0, 0, 0.28);
    --shadow: 0 14px 34px rgba(0, 0, 0, .14);
    --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);
    --shadow-dark: rgba(0, 0, 0, 0.55);
    /* Borders & Radius */
    --radius: 30px;
    --radius-xl: 38px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --border: rgba(255, 255, 255, .22);
    --stroke: rgba(255, 255, 255, 0.22);
    /* Glassmorphism */
    --glass: rgba(255, 255, 255, 0.10);
    --glass-2: rgba(255, 255, 255, 0.14);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-white: rgba(255, 255, 255, 0.55);
    /* Glow */
    --glow-b: 0 0 30px rgba(42, 42, 255, .28);
    --glow-v: 0 0 26px rgba(138, 43, 226, .22);
    /* Fonts */
    --font-main: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-h: 'Poppins', sans-serif;
    --font-b: 'Open Sans', sans-serif;
    --font-ui: 'Outfit', sans-serif;
    --font: 'Poppins', sans-serif;
    --top-bar-height: 72px;
}


/* ============================
   GLOBAL FIX (NO HORIZONTAL SCROLL) – host-safe
============================ */

html,
body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}
html.nav-open,
body.nav-open {
    overflow: hidden !important;
    height: 100%;
    position: fixed;
    left: 0;
    right: 0;
}

* {
    box-sizing: border-box;
}

/* ========== PREMIUM: Smooth image & video loading (easy load, smooth run) ========== */
img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.4s ease;
}
img.media-loaded {
    opacity: 1;
}
img:not(.media-loaded) {
    opacity: 0.92;
}
video {
    transition: opacity 0.4s ease;
}
video.media-loaded {
    opacity: 1;
}
video:not(.media-loaded) {
    opacity: 0.94;
}
/* Reduce layout shift: reserve space for lazy images */
.clean-img,
.industry-card__img-wrap img,
.services-strip__icon img {
    min-height: 1px;
}
/* Heavy sections: browser can skip off-screen paint for smoother scroll */
.service-clean-section,
.industry-strip,
.clients-section,
.fp-premium {
    content-visibility: auto;
    contain-intrinsic-size: auto 400px;
}

section {
    max-width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}


/* Owl Stage Fix */

.owl-stage-outer {
    overflow: hidden !important;
}


/* Arrows ko responsive overflow safe banane ke liye */

.im-slider-arrow.im-prev {
    left: 12px !important;
}

.im-slider-arrow.im-next {
    right: 12px !important;
}

@media(max-width:600px) {
    .im-slider-arrow {
        display: none !important;
    }
}


/* --------------------------
   🔥 GLOBAL BASE
-------------------------- */

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--black);
    margin: 0;
    padding: 0;
}

/* Pages with fixed header: content ko header ke niche rahe (home + sab pages) */
body.has-fixed-header {
    padding-top: var(--header-total-height, 140px);
}


/* =========================================================
   TEAM IMPECCABLE • TOP INFO BAR (MNC • PREMIUM • RESPONSIVE)
   - Blue background => ALL text/icons WHITE (your locked rule)
   - Desktop: single row
   - Tablet: wraps cleanly
   - Mobile: stacked + centered
========================================================= */


/* Removed duplicate :root block, variables merged above */


/* ============================================
   🔥 BRAND NAVBAR — PREMIUM VERSION
   Clean • Responsive • Animated • No Duplicates
===============================================*/


/* =====================================================
   BRAND VARIABLES (LOCKED)
===================================================== */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --black: #1A1A1A;
    --white: #ffffff;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    background: #fff;
    color: var(--black);
}


/* =====================================================
   MAIN HEADER
===================================================== */


/* .main-header{
  position:sticky;
  top:0;
  z-index:999;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
} */


/* .main-header .container{
  max-width:1440px;
  margin:auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
} */


/* ===================== BRAND TOKENS ===================== */


/* =====================
   BRAND ROOT COLORS
===================== */


/* Removed duplicate :root block, variables merged above */


/* =====================
   CONTAINER
===================== */

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}


/* =====================
   HERO SECTION — Full viewport BELOW navbar, 2026-style
===================== */

.hero-impeccable {
    position: relative;
    /* Viewport minus fixed header = exactly one screen below navbar */
    min-height: calc(100vh - var(--header-total-height, 140px));
    min-height: calc(100dvh - var(--header-total-height, 140px));
    padding: clamp(40px, 8vw, 80px) 0 clamp(32px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    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);
}


/* Animated gradient */

@keyframes heroGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Hero bg layer — absolute so content can flex full height */
.hero-impeccable .hero-bg-circles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* PARTICLES CANVAS (Below content) */

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* CONTENT ABOVE PARTICLES */

.hero-inner {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    gap: clamp(24px, 4vw, 48px);
    flex: 1;
}


/* =====================
   LEFT CONTENT
===================== */

.hero-content {
    flex: 1;
    min-width: 0;
    max-width: min(540px, 100%);
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease;
}

.hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.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;
}

.hero-content h1 {
    font-size: clamp(24px, 4.5vw, 44px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: clamp(10px, 1.5vw, 16px);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 16px;
}


/* Highlights */

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: clamp(13px, 2vw, 14px);
}

.hero-highlights i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =====================
   RIGHT FORM CARD
===================== */

.hero-card {
    flex: 1;
    min-width: 0;
    max-width: min(400px, 100%);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(15px);
    transition: 0.7s ease 0.2s;
}

.hero-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-card h3 {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 700;
}

.hero-card-sub {
    font-size: clamp(12px, 2vw, 14px);
    opacity: 0.85;
    margin-bottom: 16px;
}


/* FORM */

.form-group {
    margin-bottom: 14px;
}

.hero-booking-form label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    display: block;
}

.hero-booking-form select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #d6d6d6;
}


/* 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;
    opacity: 0.85;
}

/* Full-screen hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    animation: heroScrollBounce 2s ease-in-out infinite;
}
.hero-scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}
@keyframes heroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}


/* =====================
   RESPONSIVE HERO — all screens
===================== */

@media (max-width: 992px) {
    .hero-impeccable {
        min-height: calc(100vh - var(--header-total-height, 160px));
        min-height: calc(100dvh - var(--header-total-height, 160px));
        padding: clamp(48px, 10vw, 72px) 0 clamp(40px, 6vw, 56px);
    }
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 36px;
        justify-content: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-card {
        max-width: min(420px, 92vw);
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-impeccable {
        padding: 40px 0 48px;
        min-height: calc(100vh - var(--header-total-height, 170px));
        min-height: calc(100dvh - var(--header-total-height, 170px));
    }
    .hero-content h1 { font-size: clamp(22px, 5vw, 28px); }
    .hero-inner .container { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 576px) {
    .hero-impeccable {
        padding: 32px 0 40px;
        min-height: calc(100vh - var(--header-total-height, 165px));
        min-height: calc(100dvh - var(--header-total-height, 165px));
    }
    .hero-content h1 {
        font-size: clamp(20px, 5.5vw, 24px);
    }
    .hero-card {
        padding: 18px 16px;
    }
    .hero-eyebrow { font-size: 12px; padding: 5px 14px; }
    .hero-highlights li { font-size: 13px; }
}

@media (max-width: 380px) {
    .hero-impeccable {
        padding: 28px 0 36px;
        min-height: calc(100vh - var(--header-total-height, 155px));
        min-height: calc(100dvh - var(--header-total-height, 155px));
    }
    .hero-content h1 { font-size: 18px; }
}


/* ================= BRAND COLORS ================= */


/* Removed duplicate :root block, variables merged above */


/* ================= SECTION ================= */

.services-strip {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    font-family: "Poppins", sans-serif;
}


/* Background Glow */

.services-strip::before {
    content: "";
    position: absolute;
    inset: 40px 0 0;
    max-width: 980px;
    margin: auto;
    border-radius: 40px;
    background: radial-gradient(circle at 20% 0%, rgba(42, 42, 255, 0.18), #fff 40%, #f3f3ff 100%);
    box-shadow: 0 24px 70px rgba(42, 42, 255, 0.18);
    z-index: 1;
}


/* Fix stacking */

.services-strip>.container {
    position: relative;
    z-index: 5;
}


/* ================= TITLE ================= */

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 60px;
}

.section-title::after {
    content: "";
    width: 120px;
    height: 4px;
    margin: 10px auto;
    border-radius: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    display: block;
    box-shadow: 0 4px 14px rgba(42, 42, 255, 0.25);
}


/* ================= OWL ================= */

.owl-item {
    padding: 0 32px;
}

.owl-stage {
    display: flex;
    align-items: center;
}

.owl-stage-outer {
    overflow: visible !important;
}


/* Arrows */

.owl-nav button {
    width: 50px;
    height: 50px;
    background: var(--white) !important;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    transition: .3s;
}

.owl-nav button:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white !important;
    transform: scale(1.12);
    box-shadow: var(--shadow-strong);
}

.owl-nav button.owl-prev {
    left: -20px;
    position: absolute;
    top: 50%;
}

.owl-nav button.owl-next {
    right: -20px;
    position: absolute;
    top: 50%;
}


/* ================= CARD ================= */

.services-strip__item {
    width: 420px;
    height: 420px;
    border-radius: var(--radius);
    padding: 32px 28px 120px;
    background: linear-gradient(135deg, #ffffff, #fafaff);
    border: 1px solid rgba(42, 42, 255, 0.25);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: .35s;
}

.services-strip__item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}


/* Icon Box */

.services-strip__icon {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: radial-gradient(circle, var(--white), rgba(42, 42, 255, 0.25));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.services-strip__icon i {
    font-size: 52px;
    color: var(--primary);
    transition: .3s;
}

.services-strip__item:hover .services-strip__icon {
    transform: scale(1.07);
    background: radial-gradient(circle, var(--white), var(--accent));
}

.services-strip__item:hover .services-strip__icon i {
    transform: scale(1.12);
}


/* Title */

.services-strip__label {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    margin-top: 10px;
}


/* ================= DETAIL BOX ================= */

.services-strip__detail {
    position: absolute;
    bottom: 22px;
    left: 50%;
    width: calc(100% - 48px);
    transform: translateX(-50%) translateY(20px);
    padding: 18px;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(42, 42, 255, 0.25);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: .35s;
}

.services-strip__item:hover .services-strip__detail {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.services-strip__detail h3 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
}

.services-strip__detail p {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
}


/* Button */

.services-strip__btn {
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 700;
    border: none;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
    transition: .25s;
}

.services-strip__btn:hover {
    transform: translateY(-2px);
}


/* ============================================================
   🌟 IMPECCABLE PREMIUM SERVICES STRIP (Brand Color Upgrade)
   ✔ Blue (#2A2AFF)
   ✔ Purple (#6A1B9A)
   ✔ Violet (#8A2BE2)
   ✔ Gold (#D4AF37)
   ✔ Premium Glassmorphism + Glow
============================================================ */


/* Removed duplicate :root block, variables merged above */


/* SECTION */

.services-strip {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: visible;
    font-family: var(--font);
}


/* Ambient Glow Background */

.services-strip::before {
    content: "";
    position: absolute;
    inset: 40px 0 0;
    margin: 0 auto;
    max-width: 960px;
    border-radius: 40px;
    background: radial-gradient( circle at 20% 0%, rgba(138, 43, 226, 0.20), rgba(255, 255, 255, 1) 40%, rgba(240, 240, 255, 1) 100%);
    box-shadow: 0 24px 70px rgba(42, 42, 255, 0.18);
    opacity: 0.85;
    z-index: 1;
}

.services-strip>.container {
    position: relative;
    z-index: 3;
}


/* TITLE */

.section-title {
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--blue);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title::after {
    content: "";
    width: 110px;
    height: 5px;
    margin: 12px auto 0;
    display: block;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--violet));
    box-shadow: 0 8px 22px rgba(106, 27, 154, 0.35);
}


/* ================= OWL CAROUSEL ================= */

.owl-stage {
    display: flex;
    align-items: center;
}

.owl-stage-outer {
    overflow: visible !important;
}

.owl-item {
    padding: 0 32px;
}


/* NAV BUTTONS */

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--white) !important;
    border: 2px solid var(--purple);
    color: var(--purple) !important;
    font-size: 22px !important;
    box-shadow: 0 10px 26px rgba(106, 27, 154, 0.18);
    transition: 0.35s ease;
    z-index: 10;
}

.owl-nav button.owl-prev {
    left: -18px;
}

.owl-nav button.owl-next {
    right: -18px;
}

.owl-nav button:hover {
    background: linear-gradient(135deg, var(--blue), var(--violet)) !important;
    color: var(--white) !important;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 18px 48px rgba(42, 42, 255, 0.35);
}


/* ================= SERVICE CARD ================= */

.services-strip__item {
    list-style: none;
    text-align: center;
    width: 420px;
    height: 420px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    padding: 32px 28px 120px;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)), radial-gradient(circle at 0 0, rgba(138, 43, 226, 0.28), transparent 60%);
    border: 1px solid rgba(106, 27, 154, 0.28);
    box-shadow: 0 16px 38px rgba(42, 42, 255, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-strip__item:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 70px rgba(42, 42, 255, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}


/* ----------------- ICON BOX FIXED CENTER ----------------- */

.services-strip__icon {
    width: 120px;
    height: 120px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: radial-gradient(circle at 30% 0, #ffffff, rgba(106, 27, 154, 0.35));
    box-shadow: 0 12px 26px rgba(106, 27, 154, 0.18), inset 0 0 10px rgba(138, 43, 226, 0.20);
    transition: 0.35s ease;
}

.services-strip__icon i {
    font-size: 52px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    transition: 0.35s ease;
}

.services-strip__item:hover .services-strip__icon {
    transform: scale(1.1);
    background: radial-gradient(circle at 30% 0, #fff, var(--violet));
}

.services-strip__item:hover .services-strip__icon i {
    transform: scale(1.18);
    color: var(--gold);
}


/* LABEL */

.services-strip__label {
    font-size: 18px;
    font-weight: 700;
    color: var(--purple);
    margin-top: 8px;
}


/* DETAIL BOX */

.services-strip__detail {
    position: absolute;
    left: 50%;
    bottom: 22px;
    width: calc(100% - 48px);
    padding: 20px;
    border-radius: 26px;
    transform: translateX(-50%) translateY(25px);
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.90)), radial-gradient(circle at 0 0, rgba(138, 43, 226, 0.22), transparent 55%);
    border: 1px solid rgba(106, 27, 154, 0.32);
    box-shadow: 0 12px 30px rgba(106, 27, 154, 0.25);
    backdrop-filter: blur(20px);
    transition: 0.35s ease;
}

.services-strip__item:hover .services-strip__detail {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.services-strip__detail h3 {
    color: var(--blue);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.services-strip__detail p {
    color: #444;
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 14px;
}


/* BUTTON */

.services-strip__btn {
    background: linear-gradient(135deg, var(--blue), var(--purple), var(--violet));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(42, 42, 255, 0.25);
    transition: 0.3s ease;
}

.services-strip__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 52px rgba(42, 42, 255, 0.35);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .services-strip__item {
        width: 85vw;
        height: 85vw;
    }
}

@media (max-width: 480px) {
    .services-strip__item {
        width: 90vw;
        height: 90vw;
    }
}


/* ============================================================
   OUR FEATURED SERVICES — BRANDED, FULL, PREMIUM SLIDE
============================================================ */

.services-strip--featured {
    background: linear-gradient(180deg, #f8f9ff 0%, #f0f2ff 25%, #e8ecff 50%, #f0f2ff 75%, #f8f9ff 100%);
    padding: clamp(40px, 6vw, 64px) 0 clamp(48px, 8vw, 80px);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.services-strip--featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(42, 42, 255, 0.08), transparent 55%),
                radial-gradient(ellipse 60% 40% at 80% 100%, rgba(138, 43, 226, 0.06), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Premium card styling — featured section only */
.services-strip--featured .services-strip__item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.94));
    border: 1px solid rgba(42, 42, 255, 0.12);
    box-shadow: 0 20px 50px rgba(42, 42, 255, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border-radius: 28px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.services-strip--featured .services-strip__item:hover {
    transform: translateY(-14px);
    box-shadow: 0 36px 72px rgba(42, 42, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 1) inset,
                0 0 40px rgba(138, 43, 226, 0.08);
    border-color: rgba(42, 42, 255, 0.22);
}

.services-strip--featured .services-strip__icon {
    background: linear-gradient(145deg, #fff, rgba(248, 246, 255, 0.95));
    box-shadow: 0 14px 32px rgba(106, 27, 154, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(106, 27, 154, 0.12);
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.services-strip--featured .services-strip__item:hover .services-strip__icon {
    box-shadow: 0 18px 40px rgba(106, 27, 154, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.services-strip--featured .services-strip__label {
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.01em;
}

.services-strip--featured .services-strip__detail {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 255, 0.95));
    border: 1px solid rgba(42, 42, 255, 0.18);
    box-shadow: 0 16px 40px rgba(42, 42, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    padding: 22px 20px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, opacity 0.35s ease;
}

.services-strip--featured .services-strip__item:hover .services-strip__detail {
    box-shadow: 0 24px 48px rgba(42, 42, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.services-strip--featured .services-strip__detail h3 {
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 700;
    color: var(--blue);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.3;
}

.services-strip--featured .services-strip__detail p {
    font-size: 13px;
    line-height: 1.65;
    color: #444;
}

.services-strip--featured .services-strip__btn {
    background: linear-gradient(135deg, var(--blue), var(--violet));
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(42, 42, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    cursor: pointer;
}

.services-strip--featured a.services-strip__btn:hover {
    color: var(--white);
}

.services-strip--featured .services-strip__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(42, 42, 255, 0.45);
}

.services-strip--featured .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.services-strip--featured .services-strip__heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(40px, 6vw, 64px);
}

.services-strip--featured .services-strip__heading .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.services-strip--featured .services-strip__heading .section-title::after {
    display: block;
    width: 64px;
    height: 4px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, var(--blue), var(--violet));
    border-radius: 2px;
    content: "";
}

.services-strip--featured .services-strip__badge {
    display: inline-block;
    font-size: clamp(11px, 1.2vw, 12px);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(42, 42, 255, 0.1);
    border: 1px solid rgba(42, 42, 255, 0.25);
}

.services-strip--featured .services-strip__title {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.services-strip--featured .services-strip__tagline {
    font-size: clamp(14px, 1.6vw, 16px);
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.services-strip--featured .owl-stage-outer {
    padding: 12px 0 48px;
}

.services-strip--featured .owl-item {
    padding: 0 14px;
}

.services-strip--featured .owl-nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.services-strip--featured .owl-nav button {
    pointer-events: auto;
}

.services-strip--featured .owl-nav button.owl-prev,
.services-strip--featured .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff !important;
    border: 2px solid rgba(42, 42, 255, 0.35);
    color: var(--blue) !important;
    font-size: 20px !important;
    box-shadow: 0 8px 24px rgba(42, 42, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.services-strip--featured .owl-nav button.owl-prev { left: -8px; }
.services-strip--featured .owl-nav button.owl-next { right: -8px; }

.services-strip--featured .owl-nav button:hover {
    background: linear-gradient(135deg, var(--blue), var(--violet)) !important;
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(42, 42, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.services-strip--featured .owl-dots {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.services-strip--featured .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(42, 42, 255, 0.25) !important;
    transition: all 0.35s ease;
}

.services-strip--featured .owl-dots .owl-dot:hover {
    background: rgba(42, 42, 255, 0.5) !important;
    transform: scale(1.2);
}

.services-strip--featured .owl-dots .owl-dot.active {
    width: 32px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--blue), var(--violet)) !important;
    box-shadow: 0 4px 12px rgba(42, 42, 255, 0.4);
}

/* Detail box — always visible (no hover), same look as before */
.services-strip--featured .services-strip__detail {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.services-strip--featured .services-strip__item:hover .services-strip__detail {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


/* ============================================================
   ⭐ IMPECCABLE BRAND-LEVEL CLEANING SERVICES SECTION
   ✔ Blue (#2A2AFF)
   ✔ Purple (#6A1B9A)
   ✔ Violet (#8A2BE2)
   ✔ Gold (#D4AF37)
   ✔ Premium Glassmorphism + Glow + 3D Tilt
============================================================ */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --font: "Poppins", sans-serif;
}


/* MAIN SECTION */

.service-clean-section {
    background: linear-gradient(135deg, var(--blue), var(--violet));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


/* PARTICLES CANVAS */

#particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.35;
}


/* TITLE */

.clean-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
    margin-bottom: 60px;
    line-height: 1.3;
    font-family: var(--font);
    position: relative;
}

.clean-title span {
    background: linear-gradient(90deg, var(--gold), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.clean-title::after {
    content: "";
    width: 140px;
    height: 5px;
    margin: 15px auto 0;
    display: block;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--violet));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}


/* CARD WRAPPER */

.clean-card-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}


/* CARD BASE */

.clean-card {
    width: 380px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
    animation: float 4s infinite ease-in-out;
    transform-style: preserve-3d;
}


/* FLOAT EFFECT */

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}


/* SHINE EFFECT */

.shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 140%;
    height: 100%;
    background: linear-gradient( 120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    animation: shineMove 3s infinite;
    opacity: 0.4;
}

@keyframes shineMove {
    0% {
        left: -150%;
    }
    60% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}


/* IMAGE */

.clean-img {
    width: 100%;
    height: 230px;
    border-radius: 18px;
    object-fit: cover;
    transition: 0.45s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.clean-card:hover .clean-img {
    transform: scale(1.08);
}


/* HEADING */

.clean-heading {
    font-size: 26px;
    color: var(--white);
    margin: 18px 0 10px;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}


/* TEXT */

.clean-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.65;
}


/* BUTTON AREA */

.btn-area {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}


/* BUTTONS – Glassy pill 3D */

.btn-green,
.btn-black {
    flex-grow: 1;
    text-align: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
}

/* BOOK NOW – Glass pill (blue/violet tint) */

.btn-green {
    background: linear-gradient(135deg, rgba(42, 42, 255, 0.45), rgba(138, 43, 226, 0.45));
    color: var(--white);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35) inset,
        0 8px 20px rgba(42, 42, 255, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-green:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), rgba(138, 43, 226, 0.5));
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 14px 28px rgba(42, 42, 255, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-green:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow:
        0 2px 0 rgba(0, 0, 0, 0.15) inset,
        0 4px 12px rgba(42, 42, 255, 0.3);
}

/* CALL NOW – Glass pill (dark tint) */

.btn-black {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6), rgba(40, 40, 40, 0.5));
    color: var(--white);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.btn-black:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), rgba(180, 140, 30, 0.45));
    color: var(--black);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.45) inset,
        0 14px 28px rgba(212, 175, 55, 0.35),
        0 6px 12px rgba(0, 0, 0, 0.25);
}

.btn-black:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow:
        0 2px 0 rgba(0, 0, 0, 0.2) inset,
        0 4px 12px rgba(0, 0, 0, 0.35);
}


/* RESPONSIVE */

@media(max-width:768px) {
    .clean-card {
        width: 92%;
    }
}


/* ============================================================
   ⭐ IMPECCABLE BRAND-LEVEL IMAGE SLIDER (PREMIUM UPGRADE)
   ✔ Blue (#2A2AFF)
   ✔ Purple (#6A1B9A)
   ✔ Violet (#8A2BE2)
   ✔ Gold (#D4AF37)
   ✔ Premium overlay, gradients, arrows, dots
============================================================ */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --font: "Poppins", sans-serif;
}


/* =========================================================
   HERO SLIDER SECTION — FULL SCREEN (width + height), Apple-grade
========================================================= */

.im-slider-section {
    position: relative;
    z-index: 1;
    /* Full height: viewport minus fixed header */
    height: calc(100vh - var(--header-total-height, 140px));
    height: calc(100dvh - var(--header-total-height, 140px));
    min-height: calc(100vh - var(--header-total-height, 140px));
    min-height: calc(100dvh - var(--header-total-height, 140px));
    max-height: calc(100vh - var(--header-total-height, 140px));
    max-height: calc(100dvh - var(--header-total-height, 140px));
    /* Full width: edge to edge */
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #0a0a12;
    font-family: var(--font);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

body.home-page .im-slider-section {
    min-height: calc(100vh - var(--header-total-height, 140px));
    min-height: calc(100dvh - var(--header-total-height, 140px));
}


/* SLIDER WRAPPER */

.im-slider {
    position: relative;
    flex: 1;
    min-height: 0;
    width: 100%;
    overflow: hidden;
}

/* Track: horizontal row, slides move left one-by-one */
.im-slider-track {
    display: flex;
    width: calc(var(--im-slide-count, 10) * 100%);
    height: 100%;
    transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}


/* =========================================================
   SLIDE
========================================================= */

.im-slide {
    flex: 0 0 calc(100% / var(--im-slide-count, 10));
    width: calc(100% / var(--im-slide-count, 10));
    height: 100%;
    min-width: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    /* 🔥 4K HDR IMAGE BOOST */
    filter: brightness(1.18) contrast(1.12) saturate(1.25);
}

.im-slide.is-active {
    /* used for content animation; slide visibility is via track position */
}


/* =========================================================
   OVERLAY (SOFT – NOT DULL)
========================================================= */

.im-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 105deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.08) 65%, transparent 100%), radial-gradient( ellipse 80% 60% at 75% 35%, rgba(138, 43, 226, 0.12), transparent 55%);
    pointer-events: none;
}

.im-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 120deg, rgba(255, 255, 255, 0.08), transparent 40%, rgba(255, 255, 255, 0.03));
    pointer-events: none;
}


/* =========================================================
   INNER CONTENT
========================================================= */

.im-slide-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: clamp(20px, 6vw, 48px);
    padding-right: clamp(20px, 6vw, 48px);
}

.im-slide-content {
    max-width: min(560px, 92vw);
    padding: clamp(24px, 5vw, 48px) 0;
    color: var(--white);
    opacity: 0;
}

.im-slide.is-active .im-slide-content,
.im-slide.im-slide-just-shown .im-slide-content {
    animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* TAG */

.im-tag {
    display: inline-block;
    padding: clamp(6px, 1.2vw, 8px) clamp(14px, 2.5vw, 20px);
    border-radius: 999px;
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    color: var(--white);
    margin-bottom: clamp(12px, 2vw, 18px);
    box-shadow: 0 4px 20px rgba(42, 42, 255, 0.35);
}


.im-slide-content h2 {
    font-size: clamp(22px, 4.5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: clamp(10px, 1.5vw, 16px);
    color: var(--white);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}


.im-slide-content p {
    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: clamp(12px, 2vw, 20px);
}


/* LIST */

.im-slide-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 22px;
}

.im-slide-content li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.96);
}


/* =========================================================
   ARROWS
========================================================= */

.im-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
    transition: 0.35s ease;
}

.im-slider-arrow:hover {
    background: linear-gradient(145deg, var(--blue), var(--violet));
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75);
}

.im-prev {
    left: 28px;
}

.im-next {
    right: 28px;
}


/* =========================================================
   DOTS
========================================================= */

.im-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.im-slider-dots button {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: 0.25s ease;
}

.im-slider-dots button.is-active {
    width: 28px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
    .im-slider-section {
        min-height: calc(100vh - var(--header-total-height, 140px));
        min-height: calc(100dvh - var(--header-total-height, 140px));
    }
    .im-slide-content ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .im-slide-inner { padding-left: 20px; padding-right: 20px; }
    .im-slide-content { padding: 28px 0; }
    .im-slider-arrow { width: 40px; height: 40px; }
    .im-prev { left: 16px; }
    .im-next { right: 16px; }
}

@media (max-width: 600px) {
    .im-slider-section {
        min-height: calc(100vh - var(--header-total-height, 140px));
        min-height: calc(100dvh - var(--header-total-height, 140px));
    }
    .im-slide-content {
        max-width: 100%;
        padding: 20px 0;
    }
    .im-slide-content h2 {
        font-size: clamp(18px, 5.5vw, 24px);
    }
    .im-slide-content p {
        font-size: 14px;
    }
    .im-slider-arrow {
        display: none;
    }
    .im-slider-dots {
        bottom: clamp(12px, 3vw, 20px);
    }
    .im-slider-dots button {
        width: 8px;
        height: 8px;
    }
    .im-slider-dots button.is-active {
        width: 24px;
    }
}

@media (max-width: 380px) {
    .im-slider-section {
        min-height: calc(100vh - var(--header-total-height, 140px));
        min-height: calc(100dvh - var(--header-total-height, 140px));
    }
    .im-slide-content h2 { font-size: 18px; }
}


/* ============================================
   BRAND COLORS & FONTS
============================================ */


/* =================================================
   INDUSTRY EXPERTISE — MNC PREMIUM (FINAL FIX)
================================================= */


/* ===== SECTION BASE ===== */

.industry-expertise {
    background: #ffffff;
    padding: 120px 5vw;
    position: relative;
    overflow: hidden;
}


/* soft corporate depth */

.industry-expertise::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(42, 42, 255, 0.08), transparent 45%), radial-gradient(circle at 85% 80%, rgba(138, 43, 226, 0.08), transparent 50%);
    z-index: 0;
}


/* ===== HEADING (MANDATORY GRADIENT) ===== */

.industry-heading-wrapper {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.industry-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    letter-spacing: 2px;
    background: linear-gradient( 90deg, #2A2AFF, #6A1B9A, #8A2BE2);
    -webkit-background-clip: text;
    color: transparent;
}


/* ===== CARD ===== */

.industry-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.12);
    transition: 0.6s ease;
    position: relative;
}

.industry-card:hover {
    transform: translateY(-14px) scale(1.04);
    box-shadow: 0 45px 130px rgba(0, 0, 0, 0.22);
}


/* ===== IMAGE ===== */

.industry-card__img-wrap {
    position: relative;
}

.industry-card__img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.7s ease;
}

.industry-card:hover img {
    transform: scale(1.15);
    filter: brightness(0.55);
}


/* ===== OVERLAY (TEXT NEVER CUT) ===== */

.industry-card__overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    background: linear-gradient( 135deg, #2A2AFF, #6A1B9A, #8A2BE2);
    display: block;
    /* 🔑 flex removed */
    opacity: 0;
    transition: 0.5s ease;
    overflow: auto;
    /* 🔑 SAFE */
    color: #ffffff;
}

.industry-card:hover .industry-card__overlay {
    opacity: 1;
}


/* scrollbar minimal */

.industry-card__overlay::-webkit-scrollbar {
    width: 5px;
}

.industry-card__overlay::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}


/* ===== OVERLAY TEXT ===== */

.industry-card__overlay h4 {
    font-size: clamp(1.15rem, 2.6vw, 1.4rem);
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 12px;
}

.overlay-points {
    padding-left: 18px;
    margin-bottom: 14px;
}

.overlay-points li {
    font-size: clamp(0.9rem, 2.4vw, 1rem);
    line-height: 1.6;
    margin-bottom: 6px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.overlay-desc {
    font-size: clamp(0.9rem, 2.4vw, 1rem);
    line-height: 1.7;
    opacity: 0.95;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}


/* ===== BODY ===== */

.industry-card__body {
    padding: 28px 22px 34px;
    text-align: center;
}

.industry-card__body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 14px;
}


/* ===== BUTTON ===== */

.industry-card__btn {
    padding: 12px 36px;
    border: none;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient( 135deg, #2A2AFF, #8A2BE2);
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(42, 42, 255, 0.45);
    transition: 0.4s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

a.industry-card__btn:hover {
    color: #ffffff;
}

.industry-card__btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 30px 80px rgba(138, 43, 226, 0.75);
}


/* ===== RESPONSIVE ===== */

@media(max-width:992px) {
    .industry-expertise {
        padding: 90px 20px;
    }
    .industry-card__img-wrap img {
        height: 240px;
    }
}

@media(max-width:600px) {
    .industry-card__img-wrap img {
        height: 210px;
    }
    .industry-card__overlay {
        padding: 22px;
    }
}


/* Removed duplicate :root block, variables merged above */

.clients-section {
    width: 100%;
    padding: 90px 0;
    background: radial-gradient(circle at top, rgba(138, 43, 226, .18), transparent 60%), linear-gradient(180deg, #f8f9ff, #ffffff);
    overflow: hidden;
}


/* ===== HEADING FIX (MAIN ISSUE SOLVED) ===== */

.clients-heading-wrapper {
    padding: 0 16px;
    text-align: center;
}

.clients-heading {
    font-family: var(--font);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(1.8rem, 6vw, 3.6rem);
    line-height: 1.25;
    letter-spacing: .06em;
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
    margin: 0 auto 60px;
    color: var(--black);
}

.clients-heading .brush-word {
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ===== MARQUEE ===== */

.clients-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: marquee 28s linear infinite;
}


/* Pause on hover (premium touch) */

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}


/* ===== LOGO CARD ===== */

.client-logo {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .9);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 50px rgba(42, 42, 255, .22), inset 0 0 16px rgba(138, 43, 226, .18);
    backdrop-filter: blur(14px);
    transition: .35s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-logo:hover {
    transform: translateY(-12px) scale(1.08);
    box-shadow: 0 30px 80px rgba(42, 42, 255, .35), inset 0 0 20px rgba(138, 43, 226, .35);
}


/* ===== ANIMATION ===== */

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* ===== RESPONSIVE ===== */

@media(max-width:1024px) {
    .client-logo {
        width: 170px;
        height: 170px;
    }
}

@media(max-width:768px) {
    .client-logo {
        width: 150px;
        height: 150px;
    }
}

@media(max-width:520px) {
    .client-logo {
        width: 130px;
        height: 130px;
    }
    .clients-heading {
        letter-spacing: .03em;
    }
}


/* Removed duplicate :root block, variables merged above */


/* MAIN SECTION */

.welcome-impeccable {
    position: relative;
    padding: 150px 0;
    overflow: visible !important;
    background: linear-gradient(135deg, #F5F3FF, #EDE9FF, #E3E6FF);
    perspective: 1400px;
}


/* PARTICLE CANVAS */

#particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.45;
    z-index: 1 !important;
    pointer-events: none;
}


/* CONTENT AREA */

.welcome-wrapper {
    max-width: 1500px;
    margin: auto;
    padding: 0 60px;
    display: flex;
    gap: 90px;
    align-items: center;
    justify-content: space-between;
    z-index: 10 !important;
    position: relative;
}


/* LEFT SIDE */

.welcome-left {
    flex: 1.2;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1.2s ease forwards;
}


/* PILL */

.welcome-pill {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    color: var(--white);
    font-weight: 600;
    letter-spacing: .5px;
    box-shadow: 0 4px 18px rgba(42, 42, 255, 0.3);
}


/* TITLE */

.welcome-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin: 25px 0;
    color: var(--black);
}

.welcome-title span {
    color: var(--blue);
    text-shadow: 0 0 22px rgba(42, 42, 255, 0.45);
}


/* DESCRIPTION */

.welcome-lead {
    font-size: 20px;
    line-height: 1.7;
    max-width: 700px;
    color: var(--black);
    opacity: .9;
    margin-bottom: 45px;
}


/* LIST POINTS */

.welcome-points {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.w-point {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateX(-40px);
    animation: slideRight 1s ease forwards;
}

.w-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--purple), var(--blue));
    color: var(--white);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: .4s ease;
}

.w-icon:hover {
    transform: rotateY(20deg) scale(1.1);
}


/* RIGHT SIDE */

.welcome-right {
    flex: 1;
    position: relative;
    transform-style: preserve-3d;
    animation: floatImg 5s ease-in-out infinite alternate;
}


/* HERO IMAGE — FIXED ISSUE */

.right-hero {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 20 !important;
    background: transparent !important;
}


/* GLASS CARD */

.glass-card {
    position: absolute;
    bottom: 35px;
    right: 40px;
    width: 340px;
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    color: var(--white);
    transform: translateY(40px);
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
    z-index: 30;
}

.glass-card h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 10px;
}

.glass-card p {
    font-size: 15px;
    opacity: .9;
}


/* ANIMATIONS */

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatImg {
    0% {
        transform: translateY(0) rotateY(-10deg);
    }
    100% {
        transform: translateY(-15px) rotateY(-4deg);
    }
}


/* RESPONSIVE */

@media(max-width: 992px) {
    .welcome-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .glass-card {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 25px;
        width: 100%;
    }
}

@media(max-width: 600px) {
    .welcome-title {
        font-size: 42px;
    }
}


/* Removed duplicate :root block, variables merged above */


/* =============================
   WHY TRUST US — Premium Branded 3D 4K (same colors, full responsive)
============================= */

.guarantee-section {
    position: relative;
    padding: clamp(56px, 12vw, 140px) clamp(16px, 5vw, 32px);
    overflow: hidden;
    background: var(--grad-main);
    perspective: 2000px;
}

.guarantee-section .container {
    position: relative;
    z-index: 2;
}

#guaranteeParticles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

/* Premium 3D 4K card — same glass/gold colors */
.guarantee-card {
    position: relative;
    z-index: 5;
    max-width: min(1250px, 100%);
    margin: 0 auto;
    padding: clamp(36px, 6vw, 60px) clamp(24px, 5vw, 70px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: clamp(20px, 4vw, 28px);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), 0 48px 96px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 0 60px rgba(255, 255, 255, 0.06), 0 0 80px rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(32px, 5vw, 60px);
    transform-style: preserve-3d;
    animation: cardEnter 1.2s ease forwards;
    opacity: 0;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.guarantee-card:hover {
    transform: translateY(-6px) translateZ(10px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35), 0 56px 112px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 0 80px rgba(255, 255, 255, 0.08), 0 0 100px rgba(212, 175, 55, 0.45);
}

@keyframes cardEnter {
    0% {
        transform: translateY(40px) scale(0.96);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Pill — WHY TRUST US (branded, same colors) */
.guarantee-section .g-pill {
    display: inline-block;
    font-size: clamp(10px, 1.2vw, 12px);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    padding: clamp(6px, 1vw, 10px) clamp(14px, 2vw, 22px);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--glass-border);
    margin-bottom: clamp(12px, 2vw, 18px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.guarantee-text {
    flex: 1;
    min-width: 0;
}

.guarantee-title {
    font-size: clamp(1.75rem, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin: 0;
}

.guarantee-lead {
    color: #fefefe;
    font-size: clamp(15px, 1.8vw, 20px);
    line-height: 1.7;
    margin: clamp(12px, 2vw, 18px) 0 clamp(20px, 3vw, 30px);
    max-width: 650px;
    opacity: 0.92;
}

.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guarantee-list li {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--white);
    margin: clamp(8px, 1.2vw, 12px) 0;
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 14px);
    transform: translateX(-24px);
    opacity: 0;
    animation: slideIn 1s ease forwards;
}

.guarantee-list li:nth-child(1) { animation-delay: 0.25s; }
.guarantee-list li:nth-child(2) { animation-delay: 0.45s; }
.guarantee-list li:nth-child(3) { animation-delay: 0.65s; }

@keyframes slideIn {
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.guarantee-list i {
    color: var(--gold);
    font-size: clamp(20px, 2.2vw, 24px);
    flex-shrink: 0;
}

/* 3D 4K badge — same gold glow */
.guarantee-badge {
    position: relative;
    flex-shrink: 0;
    transform-style: preserve-3d;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.badge-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.guarantee-badge img {
    position: relative;
    width: clamp(140px, 18vw, 220px);
    height: auto;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.5));
    transform: translateZ(60px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.guarantee-card:hover .guarantee-badge img {
    transform: translateZ(90px) rotateY(0deg) scale(1.05);
}

@keyframes floatBadge {
    0% { transform: translateY(0) rotateY(-10deg); }
    100% { transform: translateY(-14px) rotateY(-4deg); }
}

/* ========== FULLY RESPONSIVE ========== */
@media (max-width: 992px) {
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: clamp(32px, 6vw, 48px) clamp(20px, 4vw, 40px);
    }
    .guarantee-lead {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .guarantee-list li {
        justify-content: center;
    }
    .guarantee-badge img {
        width: clamp(160px, 40vw, 200px);
    }
}

@media (max-width: 768px) {
    .guarantee-section {
        padding: clamp(40px, 10vw, 56px) clamp(16px, 4vw, 24px);
    }
    .guarantee-card {
        padding: 28px 20px 36px;
        gap: 28px;
    }
    .guarantee-badge {
        order: -1;
    }
    .guarantee-badge img {
        width: min(180px, 55vw);
    }
}

@media (max-width: 480px) {
    .guarantee-section {
        padding: 32px 16px 48px;
    }
    .guarantee-card {
        padding: 24px 16px 32px;
        border-radius: 20px;
    }
    .guarantee-section .g-pill {
        letter-spacing: 0.15em;
        padding: 8px 16px;
    }
    .guarantee-list li {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --white: #fff;
    --black: #0f0f14;
    --font: 'Poppins', sans-serif;
}


/* ============================================================
   LEAVING FOOTPRINTS TILL DATE — Branded Unique 3D Premium
============================================================ */

.fp-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(40px, 6vw, 80px);
    padding: clamp(56px, 10vw, 120px) clamp(20px, 5vw, 6%);
    background: #ffffff;
    overflow: hidden;
    position: relative;
    perspective: 1400px;
}

.fp-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 0% 50%, rgba(42, 42, 255, 0.06), transparent 55%), radial-gradient(ellipse 40% 35% at 100% 70%, rgba(138, 43, 226, 0.05), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.fp-stats {
    position: relative;
    z-index: 2;
    width: min(52%, 640px);
    flex-shrink: 0;
}

/* Unique branded title — white bg */
.fp-title {
    font-size: clamp(1.75rem, 3.8vw, 2.75rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: clamp(32px, 5vw, 60px);
    letter-spacing: -0.02em;
    color: #1a1a2e;
}

.fp-title span {
    display: block;
    background: linear-gradient(120deg, var(--blue), var(--violet), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 3D premium stats grid */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 32px);
}

.fp-card {
    position: relative;
    padding: clamp(20px, 2.5vw, 28px);
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    border-radius: clamp(16px, 2.5vw, 22px);
    border: 1px solid rgba(42, 42, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 16px 48px rgba(42, 42, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.fp-card:hover {
    transform: translateY(-8px) translateZ(16px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 24px 56px rgba(42, 42, 255, 0.15), 0 0 40px rgba(212, 175, 55, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.fp-card.wide {
    grid-column: 1 / -1;
}

.fp-num {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(42, 42, 255, 0.4));
}

.fp-card p {
    margin-top: clamp(6px, 1vw, 10px);
    font-size: clamp(13px, 1.4vw, 16px);
    color: #555;
    letter-spacing: 0.02em;
}

.fp-card::after {
    content: '';
    display: block;
    width: clamp(36px, 4vw, 48px);
    height: 3px;
    margin-top: clamp(10px, 1.5vw, 14px);
    background: linear-gradient(90deg, var(--blue), var(--gold));
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(42, 42, 255, 0.4);
}

/* Right video — 3D 4K premium: fully attractive container + video */
.fp-video-wrap {
    position: relative;
    z-index: 2;
    width: min(48%, 580px);
    height: clamp(340px, 42vw, 540px);
    min-height: 320px;
    border-radius: clamp(80px, 20vw, 300px) 0 0 clamp(80px, 20vw, 300px);
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(#0d0d14, #0d0d14) padding-box,
                linear-gradient(135deg, rgba(42, 42, 255, 0.9), rgba(138, 43, 226, 0.7), rgba(212, 175, 55, 0.5)) border-box;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.25),
        -24px 0 56px rgba(0, 0, 0, 0.22),
        -20px 0 72px rgba(42, 42, 255, 0.28),
        0 0 80px rgba(42, 42, 255, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -3px 12px rgba(0, 0, 0, 0.4);
    transform: perspective(1200px) rotateY(-2deg) translateZ(0);
    transform-style: preserve-3d;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s ease, border-color 0.3s ease;
    background-color: #0a0a10;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
}

.fp-video-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 3px;
    background: linear-gradient(160deg, rgba(255,255,255,0.35) 0%, transparent 35%, transparent 65%, rgba(138, 43, 226, 0.25) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.fp-video-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
    z-index: 1;
}

.fp-video-wrap:hover {
    transform: perspective(1200px) rotateY(0deg) translateY(-12px) translateZ(24px) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(138, 43, 226, 0.4),
        0 12px 32px rgba(0, 0, 0, 0.3),
        -28px 4px 72px rgba(0, 0, 0, 0.28),
        -24px 0 88px rgba(42, 42, 255, 0.35),
        0 0 100px rgba(42, 42, 255, 0.2),
        0 0 60px rgba(212, 175, 55, 0.12),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -3px 16px rgba(0, 0, 0, 0.35);
}

.fp-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: inherit;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: brightness(1.02) contrast(1.05) saturate(1.08);
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .fp-premium {
        flex-direction: column;
        padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 24px);
    }
    .fp-stats {
        width: 100%;
        max-width: 100%;
    }
    .fp-video-wrap {
        width: 100%;
        max-width: 100%;
        margin-top: clamp(40px, 6vw, 70px);
        height: clamp(300px, 58vw, 440px);
        border-radius: clamp(60px, 15vw, 120px);
        transform: none;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), 0 0 64px rgba(42, 42, 255, 0.22), inset 0 2px 0 rgba(255, 255, 255, 0.15);
    }
    .fp-video-wrap:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

@media (max-width: 600px) {
    .fp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .fp-video-wrap {
        height: clamp(280px, 75vw, 360px);
        border-radius: 44px;
        transform: none;
    }
    .fp-video-wrap:hover {
        transform: translateY(-6px) scale(1.02);
    }
}


/* ============================
   BRAND COLORS
============================ */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #000000;
}


/* ============================
   WHY IMPECCABLE — UNIQUE SECTION
============================ */

.why-impeccable {
    position: relative;
    padding: clamp(64px, 12vw, 120px) clamp(20px, 5vw, 40px);
    overflow: hidden;
    font-family: var(--font-main);
}

/* Dark premium background block */
.why-impeccable-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, #0f0e1a 0%, #1a1730 35%, #251f3d 70%, #1e1a2e 100%);
    z-index: 0;
}

#whyParticles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

/* Decorative shapes */
.why-impeccable-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
}

.why-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--blue);
    top: -120px;
    right: -80px;
    z-index: 1;
}

.why-shape-2 {
    width: 320px;
    height: 320px;
    background: var(--violet);
    bottom: -100px;
    left: -60px;
    z-index: 1;
}

/* Subtle grid overlay */
.why-impeccable-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 1;
}

.why-impeccable-inner {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Pill badge */
.why-impeccable-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
}

/* Split title */
.why-impeccable-title {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.why-title-light {
    color: rgba(255,255,255,0.75);
    font-weight: 700;
}

.why-title-accent {
    display: block;
    background: linear-gradient(135deg, #fff 0%, #e0dcff 40%, var(--violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(138, 43, 226, 0.4);
}

/* Tagline */
.why-impeccable-tagline {
    font-size: clamp(15px, 2vw, 17px);
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Cards grid */
.impeccable-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 32px);
    align-items: stretch;
    margin-bottom: 48px;
}

/* Card — glass on dark */
.impeccable-card {
    position: relative;
    padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 28px);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.impeccable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.18);
}

/* Card number */
.impeccable-card-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 14px;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.05em;
}

/* Colored accent bar (top) */
.impeccable-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.impeccable-card-1 .impeccable-card-accent {
    background: linear-gradient(90deg, var(--blue), var(--violet));
}

.impeccable-card-2 .impeccable-card-accent {
    background: linear-gradient(90deg, var(--gold), var(--violet));
}

.impeccable-card-3 .impeccable-card-accent {
    background: linear-gradient(90deg, var(--violet), var(--purple));
}

.impeccable-card:hover .impeccable-card-accent {
    height: 6px;
    opacity: 1;
}

/* Featured middle card */
.impeccable-card-featured {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.impeccable-card-featured:hover {
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.4);
}

.impeccable-card-badge {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.9;
}

/* Icon ring */
.why-impeccable .icon-box {
    width: clamp(72px, 12vw, 88px);
    height: clamp(72px, 12vw, 88px);
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: clamp(28px, 4vw, 36px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.impeccable-card:hover .icon-box {
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.why-impeccable .impeccable-card h3 {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.why-impeccable .impeccable-card p {
    font-size: clamp(14px, 1.5vw, 15px);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin: 0;
}

/* CTA strip */
.why-impeccable-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-impeccable-trust {
    font-size: clamp(14px, 1.8vw, 16px);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.why-impeccable-trust strong {
    color: var(--gold);
    font-weight: 700;
}

.why-impeccable-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #0f0e1a;
    background: linear-gradient(135deg, #fff, #e8e4ff);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-impeccable-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(138, 43, 226, 0.35);
}

/* Responsive */
@media (max-width: 992px) {
    .impeccable-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .impeccable-card-featured {
        order: 0;
    }
}

@media (max-width: 600px) {
    .why-impeccable {
        padding: 48px 16px 56px;
    }

    .why-impeccable-pill {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .why-impeccable-tagline {
        margin-bottom: 32px;
    }

    .impeccable-grid {
        margin-bottom: 36px;
    }

    .impeccable-card-badge {
        position: static;
        transform: none;
        display: block;
        margin-top: 12px;
    }

    .why-impeccable-cta {
        flex-direction: column;
        gap: 16px;
    }
}

/* Keep generic .section-title for other sections if used */
.section-title {
    font-size: 54px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 70px;
    position: relative;
    z-index: 5;
}

.section-title span {
    background: linear-gradient(90deg, var(--purple), var(--violet), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}


/* ============================================================
   WHY IMPECCABLE — 3D 4K ELECTRIC BLUE & GOLDEN
============================================================ */

.why-impeccable-2026 {
    --electric-blue: #00b8ff;
    --electric-blue-deep: #0066cc;
    --golden: #ffd700;
    --golden-soft: #d4af37;
    position: relative;
    padding: clamp(56px, 10vw, 100px) clamp(20px, 5vw, 48px);
    overflow: hidden;
    font-family: var(--font-main);
    perspective: 1200px;
}

.why-wipe-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-wipe-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 70% at 10% 10%, rgba(0, 184, 255, 0.25), transparent 45%),
        radial-gradient(ellipse 90% 60% at 90% 90%, rgba(255, 215, 0, 0.2), transparent 45%),
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0, 102, 204, 0.15), transparent 60%),
        linear-gradient(180deg, #0a1628 0%, #0d1f3c 40%, #0a1628 100%);
}

.why-wipe-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.why-impeccable-2026 #whyParticles {
    opacity: 0.35;
}

.why-wipe-wrap {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    transform-style: preserve-3d;
}

/* Header — electric blue & gold */
.why-wipe-header {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.why-wipe-label {
    font-size: clamp(11px, 1.2vw, 12px);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--electric-blue);
    margin: 0 0 10px;
    text-shadow: 0 0 20px rgba(0, 184, 255, 0.6);
}

.why-wipe-title {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.03em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.why-wipe-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--electric-blue) 0%, #00e5ff 50%, var(--golden) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 24px rgba(0, 184, 255, 0.5)) drop-shadow(0 0 48px rgba(255, 215, 0, 0.3));
}

.why-wipe-desc {
    font-size: clamp(15px, 1.8vw, 17px);
    color: rgba(255, 255, 255, 0.75);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.55;
}

/* Stats — 4K glass electric & gold */
.why-wipe-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(20px, 4vw, 40px);
    margin-bottom: clamp(28px, 4vw, 44px);
}

.why-wipe-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 28px;
    background: rgba(0, 184, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 184, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 40px rgba(0, 184, 255, 0.15);
    min-width: 110px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-wipe-stat:hover {
    transform: translateY(-4px) translateZ(10px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 60px rgba(0, 184, 255, 0.25), 0 0 80px rgba(255, 215, 0, 0.15);
}

.why-wipe-stat-num {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--electric-blue), var(--golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.why-wipe-stat-txt {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Bento grid — 3D 4K cards */
.why-wipe-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: clamp(16px, 2.5vw, 24px);
    margin-bottom: clamp(28px, 4vw, 40px);
    transform-style: preserve-3d;
}

.why-wipe-card {
    position: relative;
    padding: clamp(24px, 3.5vw, 36px);
    border-radius: 24px;
    background: rgba(0, 184, 255, 0.06);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 184, 255, 0.2);
    text-align: center;
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 0 1px rgba(0, 184, 255, 0.1);
}

.why-wipe-card:hover {
    transform: translateY(-12px) translateZ(20px) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 60px rgba(0, 184, 255, 0.35), 0 0 100px rgba(255, 215, 0, 0.2);
}

.why-wipe-card-no {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 13px;
    font-weight: 800;
    color: rgba(0, 184, 255, 0.35);
    letter-spacing: 0.02em;
    text-shadow: 0 0 15px rgba(0, 184, 255, 0.5);
}

/* Icon — 3D electric blue & gold */
.why-wipe-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transform: translateZ(8px);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    background: linear-gradient(145deg, rgba(0, 184, 255, 0.35), rgba(0, 102, 204, 0.25));
    border: 1px solid rgba(0, 184, 255, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px rgba(0, 184, 255, 0.4);
    color: #fff;
    font-size: 26px;
}

.why-wipe-card:hover .why-wipe-card-icon {
    transform: translateZ(16px) scale(1.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 0 28px rgba(255, 255, 255, 0.3), 0 0 50px rgba(0, 184, 255, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
}

.why-wipe-card-main .why-wipe-card-icon {
    width: 72px;
    height: 72px;
    font-size: 34px;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.35), rgba(0, 184, 255, 0.3));
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), inset 0 0 24px rgba(255, 255, 255, 0.25), 0 0 40px rgba(255, 215, 0, 0.4), 0 0 35px rgba(0, 184, 255, 0.3);
}

.why-wipe-card-main:hover .why-wipe-card-icon {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.35), 0 0 60px rgba(255, 215, 0, 0.5), 0 0 50px rgba(0, 184, 255, 0.4);
}

.why-wipe-card h3 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.why-wipe-card p {
    font-size: clamp(14px, 1.4vw, 15px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    margin: 0;
}

.why-wipe-card-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--golden);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Main card — 3D + gold accent */
.why-wipe-card-main {
    grid-row: 1 / -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(180deg, rgba(0, 184, 255, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(255, 215, 0, 0.2), 0 0 50px rgba(0, 184, 255, 0.2);
}

.why-wipe-card-main:hover {
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 0 1px rgba(255, 215, 0, 0.4), 0 0 80px rgba(0, 184, 255, 0.4), 0 0 60px rgba(255, 215, 0, 0.25);
}

/* Footer */
.why-wipe-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 184, 255, 0.2);
}

.why-wipe-trust {
    font-size: clamp(14px, 1.6vw, 15px);
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.why-wipe-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #0a1628;
    background: linear-gradient(135deg, var(--electric-blue), var(--golden));
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 40px rgba(0, 184, 255, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-wipe-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 60px rgba(0, 184, 255, 0.6), 0 0 50px rgba(255, 215, 0, 0.5);
}

.why-wipe-cta i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.why-wipe-cta:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .why-wipe-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .why-wipe-card-main {
        grid-row: auto;
        order: 0;
    }

    .why-wipe-card:hover {
        transform: translateY(-8px);
    }

    .why-wipe-card-a { order: 1; }
    .why-wipe-card-b { order: 2; }
}

@media (max-width: 480px) {
    .why-impeccable-2026 {
        padding: 40px 16px 56px;
    }

    .why-wipe-stats {
        gap: 12px;
    }

    .why-wipe-stat {
        padding: 12px 18px;
        min-width: 80px;
    }

    .why-wipe-card {
        padding: 22px 20px;
    }

    .why-wipe-cta {
        width: 100%;
        justify-content: center;
    }
}


/* -----------------------------------------------------
   HOW IT WORKS — PREMIUM 5 COLOR LIGHT GRADIENT SECTION
------------------------------------------------------ */

.how-it-works {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 1) 0%, rgba(42, 42, 255, 0.08) 20%, rgba(106, 27, 154, 0.10) 40%, rgba(138, 43, 226, 0.10) 60%, rgba(212, 175, 55, 0.12) 80%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(12px);
}


/* Section Title */

.section-title {
    text-align: center;
    font-size: 54px;
    font-weight: 800;
    color: #2A2AFF;
    margin-bottom: 10px;
}

.section-title span {
    background: linear-gradient(90deg, #6A1B9A, #8A2BE2, #D4AF37);
    -webkit-background-clip: text;
    color: transparent;
}


/* Subtitle */

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #555;
    margin-bottom: 60px;
    font-weight: 500;
}


/* -----------------------------------------------------
   GRID + CARD DESIGN (GLASS + 3D + PREMIUM)
------------------------------------------------------ */

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
}

.step-card {
    width: 330px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    text-align: center;
    box-shadow: 0 18px 45px rgba(42, 42, 255, 0.15), inset 0 0 12px rgba(255, 255, 255, 0.2);
    transition: 0.35s ease;
    transform: translateY(0);
}


/* 3D Hover */

.step-card:hover {
    transform: translateY(-14px) scale(1.04);
    box-shadow: 0 28px 75px rgba(42, 42, 255, 0.28), inset 0 0 20px rgba(255, 255, 255, 0.4);
}


/* -----------------------------------------------------
   STEP ICON (CIRCLE GLASS + FLOAT)
------------------------------------------------------ */

.step-icon {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    margin: 0 auto 20px;
    background: linear-gradient( 145deg, rgba(42, 42, 255, 0.20), rgba(138, 43, 226, 0.20));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(42, 42, 255, 0.22), inset 0 0 12px rgba(255, 255, 255, 0.25);
    overflow: hidden;
    transform: translateY(0);
    transition: 0.45s ease;
}


/* FLOAT ON HOVER */

.step-card:hover .step-icon {
    transform: translateY(-10px) scale(1.06);
    box-shadow: 0 25px 65px rgba(42, 42, 255, 0.35), inset 0 0 20px rgba(255, 255, 255, 0.35);
}

.step-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.step-card:hover .step-icon img {
    transform: scale(1.08);
}


/* -----------------------------------------------------
   TEXT
------------------------------------------------------ */

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2A2AFF;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.65;
}


/* -----------------------------------------------------
   RESPONSIVE
------------------------------------------------------ */

@media(max-width: 768px) {
    .section-title {
        font-size: 40px;
    }
    .step-card {
        width: 90%;
        padding: 28px;
    }
}

@media(max-width: 480px) {
    .section-title {
        font-size: 32px;
    }
    .step-icon {
        width: 100px;
        height: 100px;
    }
}


/* -----------------------------------------------------
   HOW IT WORKS — PREMIUM 5 COLOR LIGHT GRADIENT SECTION
------------------------------------------------------ */

.how-it-works {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 1) 0%, rgba(42, 42, 255, 0.08) 20%, rgba(106, 27, 154, 0.10) 40%, rgba(138, 43, 226, 0.10) 60%, rgba(212, 175, 55, 0.12) 80%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(12px);
}


/* Section Title */

.section-title {
    text-align: center;
    font-size: 54px;
    font-weight: 800;
    color: #2A2AFF;
    margin-bottom: 10px;
}

.section-title span {
    background: linear-gradient(90deg, #6A1B9A, #8A2BE2, #D4AF37);
    -webkit-background-clip: text;
    color: transparent;
}


/* Subtitle */

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #555;
    margin-bottom: 60px;
    font-weight: 500;
}


/* -----------------------------------------------------
   GRID + CARD DESIGN (GLASS + 3D + PREMIUM)
------------------------------------------------------ */

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
}

.step-card {
    width: 330px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    text-align: center;
    box-shadow: 0 18px 45px rgba(42, 42, 255, 0.15), inset 0 0 12px rgba(255, 255, 255, 0.2);
    transition: 0.35s ease;
    transform: translateY(0);
}


/* 3D Hover */

.step-card:hover {
    transform: translateY(-14px) scale(1.04);
    box-shadow: 0 28px 75px rgba(42, 42, 255, 0.28), inset 0 0 20px rgba(255, 255, 255, 0.4);
}


/* -----------------------------------------------------
   STEP ICON (CIRCLE GLASS + FLOAT)
------------------------------------------------------ */

.step-icon {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    margin: 0 auto 20px;
    background: linear-gradient( 145deg, rgba(42, 42, 255, 0.20), rgba(138, 43, 226, 0.20));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(42, 42, 255, 0.22), inset 0 0 12px rgba(255, 255, 255, 0.25);
    overflow: hidden;
    transform: translateY(0);
    transition: 0.45s ease;
}


/* FLOAT ON HOVER */

.step-card:hover .step-icon {
    transform: translateY(-10px) scale(1.06);
    box-shadow: 0 25px 65px rgba(42, 42, 255, 0.35), inset 0 0 20px rgba(255, 255, 255, 0.35);
}

.step-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.step-card:hover .step-icon img {
    transform: scale(1.08);
}


/* -----------------------------------------------------
   TEXT
------------------------------------------------------ */

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2A2AFF;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.65;
}


/* -----------------------------------------------------
   RESPONSIVE
------------------------------------------------------ */

@media(max-width: 768px) {
    .section-title {
        font-size: 40px;
    }
    .step-card {
        width: 90%;
        padding: 28px;
    }
}

@media(max-width: 480px) {
    .section-title {
        font-size: 32px;
    }
    .step-icon {
        width: 100px;
        height: 100px;
    }
}


/* ---------------------------------------------------------
   🌈 BRAND ROOT
--------------------------------------------------------- */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --glass-white: rgba(255, 255, 255, 0.55);
}


/* ---------------------------------------------------------
   HOW IT WORKS — Branded & Colorful
--------------------------------------------------------- */

.how-v2-section {
    position: relative;
    padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 40px);
    overflow: hidden;
}

.how-v2-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.how-v2-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 42, 255, 0.08) 0%,
        rgba(106, 27, 154, 0.1) 25%,
        rgba(138, 43, 226, 0.12) 50%,
        rgba(212, 175, 55, 0.1) 75%,
        rgba(42, 42, 255, 0.06) 100%
    );
}

#howV2Particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    z-index: 1;
}

.how-v2-container {
    position: relative;
    z-index: 5;
}

/* Badge */
.how-v2-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(42, 42, 255, 0.12);
    border: 1px solid rgba(42, 42, 255, 0.25);
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
}

/* Title */
.howV2-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.howV2-title span {
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--violet), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.howV2-subtitle {
    font-size: clamp(15px, 1.8vw, 17px);
    text-align: center;
    color: #555;
    font-weight: 500;
    margin: 0 0 clamp(40px, 6vw, 64px);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid + connector */
.howV2-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
}

.how-v2-connector {
    display: none;
}

@media (min-width: 769px) {
    .how-v2-connector {
        display: block;
        position: absolute;
        top: 140px;
        left: 16.66%;
        right: 16.66%;
        height: 4px;
        background: linear-gradient(90deg, var(--blue), var(--violet), var(--gold));
        border-radius: 4px;
        opacity: 0.4;
        z-index: 0;
    }
}

/* Cards — branded colorful */
.howV2-card {
    position: relative;
    z-index: 2;
    padding: clamp(28px, 3.5vw, 40px);
    border-radius: 24px;
    background: #fff;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.how-v2-card-1 {
    border-color: rgba(42, 42, 255, 0.2);
    box-shadow: 0 12px 40px rgba(42, 42, 255, 0.12);
}

.how-v2-card-2 {
    border-color: rgba(138, 43, 226, 0.2);
    box-shadow: 0 12px 40px rgba(138, 43, 226, 0.12);
}

.how-v2-card-3 {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.howV2-card:hover {
    transform: translateY(-8px);
}

.how-v2-card-1:hover {
    box-shadow: 0 24px 56px rgba(42, 42, 255, 0.22);
    border-color: rgba(42, 42, 255, 0.4);
}

.how-v2-card-2:hover {
    box-shadow: 0 24px 56px rgba(138, 43, 226, 0.22);
    border-color: rgba(138, 43, 226, 0.4);
}

.how-v2-card-3:hover {
    box-shadow: 0 24px 56px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5);
}

/* Step number circle */
.how-v2-step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    z-index: 3;
    line-height: 1;
}

.how-v2-card-1 .how-v2-step-num {
    background: linear-gradient(135deg, var(--blue), #4a4aff);
    box-shadow: 0 4px 16px rgba(42, 42, 255, 0.45);
}

.how-v2-card-2 .how-v2-step-num {
    background: linear-gradient(135deg, var(--purple), var(--violet));
    box-shadow: 0 4px 16px rgba(138, 43, 226, 0.45);
}

.how-v2-card-3 .how-v2-step-num {
    background: linear-gradient(135deg, var(--gold), #e8c547);
    color: #1a1a1a;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.5);
}

/* Icon — per-step color */
.howV2-icon {
    width: clamp(100px, 14vw, 130px);
    height: clamp(100px, 14vw, 130px);
    border-radius: 24px;
    margin: 24px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.how-v2-icon-1 {
    background: linear-gradient(145deg, rgba(42, 42, 255, 0.2), rgba(42, 42, 255, 0.08));
    border: 2px solid rgba(42, 42, 255, 0.3);
}

.how-v2-icon-2 {
    background: linear-gradient(145deg, rgba(138, 43, 226, 0.2), rgba(106, 27, 154, 0.08));
    border: 2px solid rgba(138, 43, 226, 0.3);
}

.how-v2-icon-3 {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.12));
    border: 2px solid rgba(212, 175, 55, 0.45);
}

.howV2-card:hover .howV2-icon {
    transform: scale(1.06);
}

.how-v2-card-1:hover .howV2-icon {
    box-shadow: 0 12px 32px rgba(42, 42, 255, 0.3);
}

.how-v2-card-2:hover .howV2-icon {
    box-shadow: 0 12px 32px rgba(138, 43, 226, 0.3);
}

.how-v2-card-3:hover .howV2-icon {
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
}

.howV2-icon img {
    width: 58%;
    height: auto;
    object-fit: contain;
}

/* Text */
.howV2-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}

.how-v2-card-1 h3 { color: var(--blue); }
.how-v2-card-2 h3 { color: var(--violet); }
.how-v2-card-3 h3 { color: #b8860b; }

.howV2-card p {
    font-size: clamp(14px, 1.4vw, 15px);
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .howV2-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .how-v2-connector {
        display: none;
    }
}

@media (max-width: 480px) {
    .how-v2-section {
        padding: 48px 16px 64px;
    }

    .howV2-card {
        padding: 24px 20px;
    }
}


/* Removed duplicate :root block, variables merged above */


/* ----------------------------------------------------
   WRAPPER
---------------------------------------------------- */

.brand-pills {
    display: flex;
    justify-content: center;
    gap: 55px;
    padding: 70px 20px;
    background: var(--white);
    position: relative;
    overflow: visible;
}


/* ----------------------------------------------------
   4K 3D BRAND PILL (ULTRA VERSION)
---------------------------------------------------- */

.brand-pill {
    position: relative;
    width: min(440px, 46vw);
    height: 130px;
    border-radius: 120px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    /* 4K Glass + Electric Blue Frame */
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.45);
    /* Multilayer 3D Shadows */
    box-shadow: 0 25px 55px var(--shadow-dark), 0 0 35px rgb(254, 254, 255), inset 0 0 25px rgba(255, 255, 255, 0.35), inset 0 0 40px rgb(243, 243, 245);
    transform-style: preserve-3d;
    transition: 0.45s ease;
}


/* ----------------------------------------------------
   TEXT
---------------------------------------------------- */

.brand-pill span {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    z-index: 2;
}


/* ----------------------------------------------------
   SUPER PREMIUM 4K HOVER EFFECT
---------------------------------------------------- */

.brand-pill:hover {
    transform: translateY(-14px) scale(1.08) rotateX(4deg);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.65), 0 0 55px rgba(42, 42, 255, 0.85), 0 0 88px rgba(138, 43, 226, 0.65), 0 0 110px rgba(212, 175, 55, 0.60), inset 0 0 35px rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.85);
    filter: brightness(1.2) saturate(1.35);
}

.brand-pill:hover span {
    color: #ffffff;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 0 0 45px rgba(255, 255, 255, 0.5);
}


/* ----------------------------------------------------
   BACKGROUND IMAGES
---------------------------------------------------- */

.brand-pill--corporate {
    background-image: url("images/coprate-communications.jpg");
}

.brand-pill--join {
    background-image: url("images/joinus.webp");
}


/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */

@media (max-width: 992px) {
    .brand-pills {
        gap: 35px;
    }
    .brand-pill {
        height: 115px;
        width: min(400px, 80vw);
    }
}

@media (max-width: 768px) {
    .brand-pills {
        flex-direction: column;
    }
    .brand-pill {
        width: 92%;
        height: 110px;
    }
}

@media (max-width: 500px) {
    .brand-pill {
        height: 100px;
    }
    .brand-pill span {
        font-size: 1.15rem;
    }
}


/* Removed duplicate :root block, variables merged above */


/* ------------------------------
   WRAPPER ROW
------------------------------ */

.brand-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    padding: 55px 20px 80px;
    background: var(--white);
    position: relative;
    z-index: 5;
}


/* ------------------------------
   BRAND PILL
------------------------------ */

.brand-pill {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(420px, 44vw);
    height: 115px;
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    filter: brightness(0.50) saturate(1.15);
    /* 3D + glass */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px var(--shadow-strong), inset 0 0 10px rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    transition: transform 0.32s ease, filter 0.38s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}


/* ------------------------------
   TEXT — WHITE
------------------------------ */

.brand-pill span {
    z-index: 2;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 16px rgba(0, 0, 0, 0.35);
    transition: 0.3s ease;
}


/* ------------------------------
   HOVER — SUPER PREMIUM BLUE GLOW
------------------------------ */

.brand-pill:hover {
    transform: translateY(-10px) scale(1.03);
    filter: brightness(1) saturate(1.25);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55), 0 0 35px rgba(255, 255, 255, 0.65), 0 0 65px rgba(42, 42, 255, 0.95), 0 0 85px rgba(42, 42, 255, 1), inset 0 0 22px rgba(42, 42, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.65);
}


/* Text on hover — white */

.brand-pill:hover span {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.7), 0 0 40px rgba(255, 255, 255, 0.4);
}


/* ------------------------------
   BACKGROUND IMAGES
------------------------------ */

.brand-pill--corporate {
    background-image: url("images/coprate-communications.jpg");
}

.brand-pill--join {
    background-image: url("images/joinus.webp");
}


/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 992px) {
    .brand-pills {
        gap: 28px;
    }
    .brand-pill {
        width: min(380px, 80vw);
        height: 105px;
    }
    .brand-pill span {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .brand-pills {
        flex-direction: column;
        gap: 22px;
    }
}

@media (max-width: 500px) {
    .brand-pill {
        width: 92%;
        height: 95px;
    }
    .brand-pill span {
        font-size: 1.1rem;
    }
}


/* Removed duplicate :root block, variables merged above */


/* =========================================================
   IMPECCABLE — 3D / 4K PREMIUM FOOTER (MNC GLASS)
   Keep same HTML | Only CSS upgrade
========================================================= */

: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 — Branded + Full Screen Fit (sare services me same)
========================= */

.imp-footer {
    margin-top: clamp(48px, 10vw, 120px);
    padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    /* full screen fit - viewport ke andar hi rahe */
    margin-left: 0;
    margin-right: 0;
    /* branded gradient */
    background: linear-gradient(165deg, #1a1a3e 0%, #252550 35%, #1e1e48 70%, #1a1a3e 100%);
    border-radius: clamp(24px, 5vw, 48px) clamp(24px, 5vw, 48px) 0 0;
    position: relative;
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.25), 0 0 80px rgba(42, 42, 255, 0.12), 0 0 60px rgba(138, 43, 226, 0.1);
}

.imp-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(42, 42, 255, 0.15), transparent 55%), radial-gradient(ellipse 60% 40% at 100% 100%, rgba(138, 43, 226, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.imp-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.5;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}


/* =========================
   LOGO AREA (3D GLASS)
========================= */

.footer-logo-wrapper {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: clamp(20px, 3vw, 40px);
    padding: 0 clamp(8px, 2vw, 16px);
    position: relative;
    z-index: 2;
}

.footer-logo-bg {
    width: clamp(120px, 18vw, 200px);
    height: clamp(120px, 18vw, 200px);
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.footer-logo {
    width: clamp(80px, 12vw, 140px);
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}


/* =========================
   GRID + GLASS PANELS (MNC)
========================= */

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 48px);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 clamp(8px, 2vw, 24px);
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-col {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: clamp(16px, 2.5vw, 24px);
    padding: clamp(16px, 2vw, 24px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    min-width: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.footer-col:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 24px rgba(42, 42, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.footer-heading {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: clamp(1rem, 2vw, 1.35rem);
    margin: 0 0 clamp(12px, 1.5vw, 18px);
    color: #ffffff;
    letter-spacing: 0.02em;
}


/* =========================
   TEXT / LINKS (READABLE + WRAP)
========================= */

.footer-col p,
.footer-col ul,
.footer-col li {
    font-family: var(--font-b);
    color: rgba(255, 255, 255, 0.92);
}

.footer-col p {
    margin: 0 0 10px;
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.6;
    word-break: break-word;
}

.footer-col ul {
    margin: 0;
    padding-left: clamp(14px, 2vw, 20px);
}

.footer-col ul li {
    margin: 0 0 8px;
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.55;
    word-break: break-word;
}


/* nicer bullets */

.footer-col ul li::marker {
    color: rgba(255, 255, 255, 0.55);
}


/* links */

.footer-col a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    position: relative;
    transition: transform .25s ease, color .25s ease, text-shadow .25s ease;
}

.footer-col a:hover {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(138, 43, 226, 0.55);
    transform: translateY(-1px);
}


/* subtle underline glow */

.footer-col a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(42, 42, 255, 0.0), rgba(255, 255, 255, 0.65), rgba(138, 43, 226, 0.0));
    opacity: 0;
    transform: translateY(4px);
    transition: .25s ease;
}

.footer-col a:hover::after {
    opacity: .9;
    transform: translateY(0);
}


/* labels */

.footer-col strong {
    font-family: var(--font-ui);
    font-weight: 800;
    color: #ffffff;
}


/* =========================
   SOCIAL ICONS (GLASS + 3D)
========================= */

.imp-footer .social-icons {
    display: flex;
    gap: clamp(8px, 1.5vw, 12px);
    margin-top: clamp(12px, 1.5vw, 18px);
    flex-wrap: wrap;
}

.imp-footer .social-icons a {
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: clamp(16px, 1.8vw, 18px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.imp-footer .social-icons a:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 8px 24px rgba(42, 42, 255, 0.35);
}

.footer-bottom {
    margin-top: clamp(16px, 2.5vw, 32px);
    padding: clamp(12px, 2vw, 18px) clamp(12px, 3vw, 24px);
    text-align: center;
    font-size: clamp(11px, 1.3vw, 13px);
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
    word-break: break-word;
}

/* ========== Footer responsive — screen fit ========== */
@media (max-width: 992px) {
    .imp-footer {
        padding: clamp(28px, 5vw, 48px) clamp(12px, 3vw, 24px);
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col ul {
        padding-left: 0;
        list-style: none;
    }
    .imp-footer .social-icons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .imp-footer {
        margin-top: 40px;
        padding: 24px 12px 32px;
        border-radius: 24px 24px 0 0;
    }
    .footer-container {
        padding: 0 8px;
    }
    .footer-logo-wrapper {
        margin-bottom: 20px;
    }
    .footer-logo-bg {
        width: clamp(100px, 28vw, 140px);
        height: clamp(100px, 28vw, 140px);
    }
    .footer-logo {
        width: clamp(64px, 18vw, 100px);
    }
    .imp-footer .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .footer-bottom {
        font-size: 11px;
        padding: 12px 8px;
    }
}


/* =========================================================
   BRAND VARIABLES
========================================================= */


/* Removed duplicate :root block, variables merged above */


/* =========================================================
   SECTION
========================================================= */

.why-choose-us {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
}


/* =========================================================
   CONTAINER
========================================================= */

.wcu-container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}


/* =========================================================
   LEFT IMAGE (STICKY DESKTOP)
========================================================= */

.wcu-image-wrap {
    flex: 1;
    position: sticky;
    top: 110px;
}

.wcu-image-wrap img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(42, 42, 255, 0.15), 0 0 30px rgba(138, 43, 226, 0.18);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.wcu-content {
    flex: 1.2;
}


/* =========================================================
   MAIN TITLE (GRADIENT)
========================================================= */

.wcu-title {
    font-family: var(--font);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* span inherit */

.wcu-title span {
    color: inherit;
}


/* =========================================================
   LIST
========================================================= */

.wcu-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}


/* =========================================================
   ITEM
========================================================= */

.wcu-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}


/* ICON */

.wcu-icon {
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    background: linear-gradient( 135deg, var(--blue), var(--violet));
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(42, 42, 255, 0.35);
}


/* =========================================================
   ITEM HEADING (GRADIENT)
========================================================= */

.wcu-item h4 {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    background: linear-gradient( 90deg, var(--blue), var(--purple), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* =========================================================
   ITEM TEXT
========================================================= */

.wcu-item p {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    max-width: 620px;
}


/* =========================================================
   FADE UP ANIMATION
========================================================= */

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE FIXES
========================================================= */


/* Tablet */

@media (max-width: 992px) {
    .wcu-container {
        flex-direction: column;
        gap: 40px;
    }
    .wcu-image-wrap {
        position: relative;
        top: 0;
    }
    .wcu-item p {
        max-width: 100%;
    }
}


/* Mobile */

@media (max-width: 600px) {
    .why-choose-us {
        padding: 60px 0;
    }
    .wcu-title {
        text-align: center;
    }
    .wcu-item {
        flex-direction: column;
        gap: 10px;
    }
    .wcu-icon {
        width: 38px;
        height: 38px;
    }
    .wcu-item h4 {
        font-size: 20px;
    }
    .wcu-item p {
        font-size: 15px;
    }
}

: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 WRAPPER — Apple-grade fixed: scroll pe top bar + navbar hamesha upar ================= */

:root {
    --header-total-height: 140px; /* top bar + navbar approx */
}

.header-sticky-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 10000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(42, 42, 255, 0.08);
    isolation: isolate;
    overflow: visible;
}

/* ================= PREMIUM TOP INFO BAR (fully responsive) ================= */

.top-info-bar {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f5f4ff 100%);
    color: #1a1a1a;
    position: relative;
    box-shadow: 0 2px 20px rgba(42, 42, 255, 0.08);
    border-bottom: 1px solid rgba(42, 42, 255, 0.12);
}

.top-info-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(10px, 2vw, 14px) clamp(12px, 3vw, 28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2.5vw, 24px);
    flex-wrap: wrap;
    min-width: 0;
    box-sizing: border-box;
}

.top-logo {
    flex-shrink: 0;
}

.top-logo img {
    height: clamp(48px, 10vw, 72px);
    width: auto;
    max-height: 72px;
    object-fit: contain;
    display: block;
}

.top-info-right {
    display: flex;
    gap: clamp(16px, 2.5vw, 28px);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 12px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
}

.info-item:hover {
    background: rgba(42, 42, 255, 0.08);
    color: var(--blue);
    transform: translateY(-1px);
}

.info-item-wa:hover {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.info-item img {
    width: clamp(22px, 4vw, 28px);
    height: clamp(22px, 4vw, 28px);
    object-fit: contain;
    flex-shrink: 0;
}

.info-text {
    letter-spacing: 0.02em;
}

/* Top bar responsive */
@media (max-width: 992px) {
    .top-info-inner { justify-content: center; }
    .info-item { padding: 6px 12px; }
}

@media (max-width: 768px) {
    .top-info-bar { border-bottom: none; }
    :root { --top-bar-height: 100px; --header-total-height: 160px; }
    .top-info-inner {
        flex-direction: column;
        text-align: center;
        padding: 12px 16px;
    }
    .top-info-right {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
    }
    .info-item { white-space: nowrap; }
}
@media (max-width: 768px) and (min-width: 481px) {
    :root { --header-total-height: 170px; }
}
@media (max-width: 480px) and (min-width: 381px) {
    :root { --header-total-height: 165px; }
}
@media (max-width: 380px) {
    :root { --header-total-height: 155px; }
}

@media (max-width: 480px) {
    .top-logo img { height: 44px; }
    .info-item { font-size: 11px; padding: 6px 10px; }
    .info-item img { width: 20px; height: 20px; }
    .info-text { max-width: 120px; overflow: hidden; text-overflow: ellipsis; }
}

/* Body padding under fixed header — responsive (home page par override nahi) */
@media (min-width: 901px) {
    body.has-fixed-header:not(.home-page) { padding-top: 140px; }
}
@media (max-width: 900px) and (min-width: 769px) {
    body.has-fixed-header:not(.home-page) { padding-top: 160px; }
}
@media (max-width: 768px) and (min-width: 481px) {
    body.has-fixed-header:not(.home-page) { padding-top: 170px; }
}
@media (max-width: 480px) and (min-width: 381px) {
    body.has-fixed-header:not(.home-page) { padding-top: 165px; }
}
@media (max-width: 380px) {
    body.has-fixed-header:not(.home-page) { padding-top: 155px; }
}


/* ================= PREMIUM FLOATING BUTTONS ================= */

.floating-actions {
    position: fixed;
    right: clamp(12px, 2vw, 24px);
    bottom: clamp(16px, 3vw, 28px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: clamp(12px, 2vw, 14px) clamp(16px, 3vw, 22px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(13px, 1.5vw, 15px);
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 8px 24px rgba(42, 42, 255, 0.4);
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fab:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(42, 42, 255, 0.5);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.fab-whatsapp:hover {
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.fab .label { display: none; }

@media (max-width: 992px) {
    .fab .label { display: inline; }
}

@media (max-width: 480px) {
    .floating-actions { right: 10px; bottom: 14px; gap: 10px; }
    .fab { padding: 12px 16px; }
}


/* ================= PREMIUM NAVBAR — static (wrapper ke andar, wrapper sticky) ================= */

.premium-navbar {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10001;
    background: linear-gradient(90deg, var(--blue) 0%, var(--purple) 45%, var(--violet) 100%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: visible;
}

/* Sticky hone se flow mein space lete hain, extra padding nahi chahiye */
.im-slider-section {
    box-sizing: border-box;
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(10px, 2vw, 16px) clamp(12px, 3vw, 28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2vw, 20px);
    min-width: 0;
    box-sizing: border-box;
}

/* HAMBURGER — premium (position relative so z-index works over mobile menu) */
.hamburger {
    display: none;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    z-index: 10002;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* NAV MENU — desktop */
.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(12px, 1.8vw, 28px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(14px, 1.4vw, 16px);
    letter-spacing: 0.02em;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}


/* DROPDOWN — premium */
.dropdown {
    position: relative;
    z-index: 1;
}
.dropdown:hover {
    z-index: 100002;
}

.dropdown-toggle .caret {
    margin-left: 4px;
    font-size: 10px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.dropdown:hover .caret {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    max-width: min(280px, 90vw);
    max-height: 70vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 99999;
}

.dropdown-content a {
    display: block;
    padding: 12px 18px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: linear-gradient(90deg, rgba(42, 42, 255, 0.08), transparent);
    color: var(--blue);
    padding-left: 22px;
}

@media (min-width: 901px) {
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* NAV SOCIAL ICONS — premium */
.premium-navbar .social-icons {
    display: flex;
    gap: 8px;
    margin: 0;
    flex-shrink: 0;
}

.premium-navbar .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.premium-navbar .social-icons a:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.premium-navbar .social-icons img,
.premium-navbar .social-icons .icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: invert(1);
}

.premium-navbar .social-icons a:hover img {
    filter: invert(0);
}


/* ================= NAVBAR MOBILE (full-screen overlay) ================= */

/* Tablet: slightly smaller nav gap so items fit */
@media (max-width: 1100px) {
    .nav-list { gap: clamp(10px, 1.5vw, 20px); }
    .nav-link { font-size: clamp(13px, 1.3vw, 15px); }
}

/* Mobile: full-screen menu */
@media (max-width: 900px) {
    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; }
    .premium-navbar .nav-container {
        padding: 12px 16px;
    }

    .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) 0%, var(--purple) 40%, var(--violet) 100%);
        box-shadow: none;
        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;
        justify-content: flex-start;
    }
    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        flex-wrap: nowrap;
    }

    .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);
    }

    .nav-link::after {
        display: none;
    }

    .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;
        min-width: auto;
        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;
    }

    .premium-navbar .social-icons {
        display: flex;
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .premium-navbar .social-icons a {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 600px) {
    .nav-menu {
        padding: clamp(72px, 16vw, 90px) 16px 32px;
    }

    .nav-link {
        font-size: 16px;
        padding: 14px 0;
    }

    .dropdown-content { margin-left: 12px; }
    .dropdown-content a { padding: 10px 16px; }
}

@media (max-width: 480px) {
    .premium-navbar .nav-container { padding: 10px 12px; }
    .nav-menu { padding: 70px 14px 28px; }
    .nav-link { font-size: 15px; padding: 12px 0; }
    .premium-navbar .social-icons a { width: 40px; height: 40px; }
}

@media (max-width: 380px) {
    .nav-container { padding: 8px 10px; }
    .hamburger { width: 40px; height: 40px; min-width: 40px; padding: 8px; }
    .nav-link { font-size: 14px; }
    .nav-menu { padding: 64px 12px 24px; }
}


/* =====================================================
   🔒 BRAND TOKENS (LOCKED)
===================================================== */

:root {
    --blue: #2A2AFF;
    --purple: #6A1B9A;
    --violet: #8A2BE2;
    --gold: #D4AF37;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, .16);
    --glass-soft: rgba(255, 255, 255, .10);
    --radius-xl: 42px;
    --radius-lg: 30px;
    --font-h: 'Poppins', sans-serif;
    --font-b: 'Open Sans', sans-serif;
}


/* =====================================================
   🌈 HERO SECTION WRAPPER
===================================================== */

.hero-experience-section {
    position: relative;
    padding: clamp(70px, 8vw, 140px) clamp(18px, 6vw, 90px);
    border-radius: 48px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(30px, 4vw, 70px);
    background: linear-gradient( 120deg, var(--blue), var(--purple), var(--violet));
    background-size: 300% 300%;
    animation: heroFlow 14s ease infinite;
}

@keyframes heroFlow {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}


/* PREMIUM AURA */

.hero-experience-section::before {
    content: "";
    position: absolute;
    inset: -120px;
    background: radial-gradient(600px 300px at 18% 20%, rgba(255, 255, 255, .28), transparent 65%), radial-gradient(520px 260px at 82% 30%, rgba(138, 43, 226, .40), transparent 70%);
    filter: blur(90px);
    opacity: .9;
    z-index: 0;
}


/* =====================================================
   🔠 SECTION HEADINGS
===================================================== */

.testi-title {
    grid-column: 1/-1;
    text-align: center;
    font-family: var(--font-h);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    z-index: 1;
}

.testi-title span {
    background: linear-gradient(90deg, var(--gold), #fff);
    -webkit-background-clip: text;
    color: transparent;
}

.testi-subtitle {
    grid-column: 1/-1;
    text-align: center;
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 8px;
    z-index: 1;
}

.testi-desc {
    grid-column: 1/-1;
    max-width: 860px;
    margin: 0 auto 40px;
    text-align: center;
    font-family: var(--font-b);
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .90);
    z-index: 1;
}


/* =====================================================
   ⭐ GOOGLE RATING (GLASS PILL)
===================================================== */

.google-rating-box {
    grid-column: 1/-1;
    margin: 0 auto 70px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 34px;
    background: linear-gradient( 145deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .12));
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .45);
    backdrop-filter: blur(22px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .55);
    z-index: 1;
}

.google-logo {
    width: 52px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .35));
}

.rating-score {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
}

.rating-stars {
    color: #FFD700;
    letter-spacing: 3px;
    text-shadow: 0 0 14px rgba(255, 215, 0, .9);
}

.rating-count {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
}


/* =====================================================
   🔮 NEON BORDER CARD
===================================================== */

.neon-border {
    position: relative;
    border-radius: var(--radius-xl);
    z-index: 1;
}

.neon-border::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: inherit;
    background: linear-gradient( 120deg, var(--blue), var(--purple), var(--violet), var(--blue));
    background-size: 400% 400%;
    animation: neonGlow 6s linear infinite;
    filter: blur(18px);
    z-index: -1;
}

@keyframes neonGlow {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}


/* =====================================================
   🧊 GLASS PANEL
===================================================== */

.hero-panel {
    padding: clamp(30px, 4vw, 48px);
    border-radius: var(--radius-lg);
    background: linear-gradient( 145deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .08));
    border: 1px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(22px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .45);
    transition: transform .9s cubic-bezier(.2, .8, .2, 1);
    transform-style: preserve-3d;
}

.hero-panel:hover {
    transform: perspective(1200px) rotateX(6deg) rotateY(-6deg) scale(1.04);
}


/* =====================================================
   📦 INNER BOX
===================================================== */

.inner-box {
    padding: clamp(22px, 3vw, 38px);
    border-radius: 22px;
    background: linear-gradient( 145deg, rgba(255, 255, 255, .30), rgba(255, 255, 255, .10));
    border: 1px solid rgba(255, 255, 255, .45);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .28), inset 0 0 22px rgba(255, 255, 255, .28);
}


/* =====================================================
   🔠 PANEL TITLES & TEXT
===================================================== */

.hero-title {
    font-family: var(--font-h);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    background: linear-gradient( 90deg, #ffffff, var(--gold), #ffffff);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.hero-text {
    font-family: var(--font-b);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, .95);
}

.hero-author {
    margin-top: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gold);
}


/* =====================================================
   🎞 SLIDER ANIMATION
===================================================== */

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
    animation: slideFade .9s ease;
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateY(14px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}


/* =====================================================
   📱 FULLY RESPONSIVE — INDEX (ALL SCREENS, FIT & CONSISTENT)
===================================================== */

/* ---- Global container & spacing (all viewports) ---- */
.container,
.container-clean {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(16px, 4vw, 24px);
    padding-right: clamp(16px, 4vw, 24px);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .container { max-width: 1170px; }
}

/* ---- Top info bar ---- */
@media (max-width: 992px) {
    .top-info-bar .top-info-inner { padding: 12px 16px; }
    .top-logo img { height: clamp(50px, 12vw, 80px); }
    .info-item { font-size: 13px; }
    .info-item img { width: 22px; }
}

@media (max-width: 768px) {
    .top-info-inner { flex-direction: column; text-align: center; gap: 12px; }
    .top-logo img { height: 56px; }
    .top-info-right { flex-direction: column; gap: 10px; }
    .info-item { font-size: 12px; }
}

@media (max-width: 480px) {
    .info-item { font-size: 11px; word-break: break-word; }
}

/* ---- Floating buttons (always visible, not overlapping) ---- */
@media (max-width: 600px) {
    .floating-actions { right: 12px; bottom: 16px; gap: 10px; }
    .fab { padding: 12px 16px; font-size: 14px; }
}

/* ---- Navbar ---- */
@media (max-width: 900px) {
    .nav-container { padding: 12px 16px; }
}

/* ========== HERO SLIDER — fit to screen, all devices ========== */
.im-slider-section {
    display: flex;
    flex-direction: column;
}

.im-slider { flex: 1; min-height: 0; position: relative; }

/* ========== SERVICES STRIP ========== */
.services-strip {
    padding: clamp(40px, 8vw, 80px) 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.services-strip .container { padding-left: clamp(12px, 3vw, 20px); padding-right: clamp(12px, 3vw, 20px); }

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    margin-bottom: clamp(24px, 4vw, 60px);
    padding: 0 10px;
}

@media (max-width: 768px) {
    .services-strip__item {
        width: min(90vw, 380px) !important;
        height: min(90vw, 380px) !important;
        margin: 0 auto;
    }
    .owl-item { padding: 0 12px; }
    .services-strip--featured .owl-nav button.owl-prev { left: 4px; }
    .services-strip--featured .owl-nav button.owl-next { right: 4px; }
}

@media (max-width: 480px) {
    .services-strip { padding: 32px 0 48px; }
    .services-strip__item {
        width: 88vw !important;
        height: 88vw !important;
        max-width: 340px;
        max-height: 340px;
    }
    .services-strip--featured { padding: 40px 0 56px; }
    .services-strip--featured .services-strip__tagline { padding: 0 8px; }
}

/* ========== HERO EXPERIENCE (Testimonials) ========== */
.hero-experience-section {
    padding: clamp(48px, 10vw, 140px) clamp(16px, 5vw, 90px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.testi-title { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.testi-subtitle { font-size: clamp(1rem, 2.5vw, 1.25rem); }
.testi-desc { font-size: clamp(14px, 2vw, 16px); max-width: 100%; padding: 0 8px; }

@media (max-width: 992px) {
    .hero-experience-section { grid-template-columns: 1fr; padding: 56px 18px; }
    .hero-panel { min-height: auto; }
}

@media (max-width: 600px) {
    .hero-experience-section { padding: 40px 16px; }
    .hero-title { font-size: 1.5rem; }
    .hero-text { font-size: 0.95rem; }
    .hero-author { font-size: 0.8rem; }
}


/* ============================================================
   TESTIMONIALS — Premium Eye-Catching 3D 4K
   Electric Blue + Purple + Golden (attractive, premium)
============================================================ */

.hero-experience-section.testimonials-apple {
    --testi-electric: #00d4ff;
    --testi-electric-dim: #0099cc;
    --testi-gold: #ffc107;
    --testi-gold-soft: #ffdb4d;
    --testi-violet: #a855f7;
    padding: clamp(36px, 6vw, 60px) clamp(18px, 4vw, 32px);
    background: linear-gradient(165deg, #0c1222 0%, #1a1a3e 25%, #151530 50%, #1a1a3e 75%, #0c1222 100%);
    border-radius: 28px;
    max-width: min(1120px, 96vw);
    margin: 0 auto;
    display: block;
    grid-template-columns: unset;
    gap: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 80px rgba(0, 212, 255, 0.15), 0 0 120px rgba(168, 85, 247, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-experience-section.testimonials-apple::before {
    content: "";
    position: absolute;
    inset: -100px;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 212, 255, 0.12), transparent 50%), radial-gradient(ellipse 60% 40% at 100% 100%, rgba(168, 85, 247, 0.1), transparent 45%), radial-gradient(ellipse 50% 30% at 0% 100%, rgba(255, 193, 7, 0.06), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-apple__wrap {
    position: relative;
    z-index: 1;
}

/* Pill: • CUSTOMER TESTIMONIALS • — premium badge */
.testimonials-apple__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 16px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.45);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--testi-electric);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.testimonials-apple__pill i {
    font-size: 12px;
    color: var(--testi-gold);
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.8));
}

.testimonials-apple__wrap > .testimonials-apple__pill {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

/* Heading: What Our [Customers Say] — premium gradient */
.testimonials-apple__title {
    font-size: clamp(1.6rem, 3.8vw, 2.15rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.98);
    text-align: center;
    margin: 0 0 6px;
    letter-spacing: -0.03em;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.testimonials-apple__title span {
    background: linear-gradient(120deg, var(--testi-electric) 0%, var(--testi-gold-soft) 50%, var(--testi-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    filter: drop-shadow(0 0 24px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 40px rgba(255, 193, 7, 0.3));
}

.testimonials-apple__title-line {
    width: 100px;
    height: 4px;
    margin: 0 auto 18px;
    background: linear-gradient(90deg, var(--testi-electric), var(--testi-violet), var(--testi-gold));
    background-size: 200% 100%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 40px rgba(255, 193, 7, 0.3);
}

.testimonials-apple__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    margin: 0 0 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

/* Two columns */
.testimonials-apple__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 100%;
    align-items: start;
}

.testimonials-apple__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Column header: ★ Client Experiences —— */
.testimonials-apple__col-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 4px;
}

.testimonials-apple__col-head i {
    color: var(--testi-gold);
    font-size: 15px;
    text-shadow: 0 0 18px rgba(255, 193, 7, 0.9), 0 0 30px rgba(255, 193, 7, 0.4);
}

.testimonials-apple__col-head .testimonials-apple__col-line {
    flex: 1;
    max-width: 56px;
    height: 2px;
    background: var(--testi-electric);
    opacity: 0.9;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.testimonials-apple__col-head .testimonials-apple__col-line:first-child {
    background: linear-gradient(90deg, transparent, var(--testi-electric));
}

.testimonials-apple__col-head .testimonials-apple__col-line:last-child {
    background: linear-gradient(90deg, var(--testi-gold), transparent);
}

/* Slider: one slide visible, slide-up transition */
.testimonials-apple__slider-wrap {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.testimonials-apple__slider {
    position: relative;
}

.testimonials-apple__slide {
    display: none;
    animation: testi-slide-in 0.6s ease;
}

.testimonials-apple__slide.active {
    display: block;
    animation: testi-slide-in 0.6s ease;
}

@keyframes testi-slide-in {
    from {
        opacity: 0;
        transform: translateY(24px) translateZ(-12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0) scale(1);
    }
}

/* Cards stack */
.testimonials-apple__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Single card — premium glass, eye-catching border & glow */
.testimonials-apple__card {
    padding: 22px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 212, 255, 0.06) 50%, rgba(168, 85, 247, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 40px rgba(0, 212, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
    transform: translateZ(0);
}

.testimonials-apple__card:hover {
    transform: translateY(-8px) translateZ(12px);
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 193, 7, 0.25), 0 0 60px rgba(0, 212, 255, 0.25), 0 0 40px rgba(255, 193, 7, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Card top row: avatar + name + stars */
.testimonials-apple__card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonials-apple__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--testi-electric), var(--testi-violet));
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 193, 7, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.testimonials-apple__name {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2px;
}

.testimonials-apple__service {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.testimonials-apple__card-top .testimonials-apple__stars {
    margin-left: auto;
    color: var(--testi-gold);
    font-size: 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.8), 0 0 25px rgba(255, 193, 7, 0.4);
}

.testimonials-apple__quote {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px;
}

.testimonials-apple__verified {
    font-size: 12px;
    font-weight: 700;
    color: var(--testi-electric);
    margin: 0;
    text-align: right;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    letter-spacing: 0.05em;
}

/* Achievement card (no avatar) — premium */
.testimonials-apple__ach-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--testi-gold);
    margin: 0 0 8px;
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

.testimonials-apple__ach-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--testi-electric), var(--testi-gold));
    margin-bottom: 14px;
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}

.testimonials-apple__card--ach .testimonials-apple__quote {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-experience-section.testimonials-apple {
        padding: 28px 16px 40px;
    }
    .testimonials-apple__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .testimonials-apple__pill {
        font-size: 10px;
        letter-spacing: 0.15em;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .testimonials-apple__card {
        padding: 16px 14px;
    }
    .testimonials-apple__avatar {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* ========== WHY CHOOSE US ========== */
.why-choose-us {
    padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 24px);
    width: 100%;
    max-width: 100%;
}

.wcu-container {
    width: 100%;
    max-width: min(1300px, 96vw);
    margin: 0 auto;
    padding: 0 clamp(12px, 3vw, 24px);
    gap: clamp(24px, 4vw, 60px);
}

@media (max-width: 768px) {
    .wcu-image-wrap img { max-height: 280px; object-fit: cover; }
}

@media (max-width: 600px) {
    .why-choose-us { padding: 40px 12px; }
    .wcu-title { font-size: clamp(1.4rem, 5vw, 1.75rem); text-align: center; }
    .wcu-item h4 { font-size: clamp(1rem, 4vw, 1.25rem); }
    .wcu-item p { font-size: 14px; }
}

/* ========== SERVICE CLEAN SECTION (cards) ========== */
.service-clean-section {
    padding: clamp(48px, 10vw, 100px) clamp(16px, 4vw, 24px);
    width: 100%;
    max-width: 100%;
}

.clean-title { font-size: clamp(1.5rem, 4.5vw, 2.5rem); margin-bottom: clamp(28px, 5vw, 60px); }
.clean-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: clamp(20px, 4vw, 40px);
    justify-content: center;
    padding: 0 8px;
}

.clean-card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    min-height: 320px;
}

@media (max-width: 768px) {
    .clean-card-wrapper { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .clean-card { max-width: 100%; }
}

@media (max-width: 480px) {
    .service-clean-section { padding: 36px 12px; }
    .clean-card { padding: 18px; min-height: 280px; }
    .clean-heading { font-size: 1.1rem; }
    .clean-text { font-size: 13px; }
    .btn-area { flex-wrap: wrap; gap: 8px; }
}

/* ========== WELCOME IMPECCABLE ========== */
.welcome-impeccable {
    padding: clamp(48px, 12vw, 150px) clamp(16px, 5vw, 60px);
    width: 100%;
    max-width: 100%;
}

.welcome-wrapper {
    max-width: 100%;
    padding: 0 clamp(16px, 5vw, 60px);
    gap: clamp(24px, 5vw, 90px);
}

.welcome-title { font-size: clamp(2rem, 6vw, 64px); }
.welcome-lead { font-size: clamp(15px, 2.2vw, 20px); max-width: 100%; }

@media (max-width: 992px) {
    .welcome-wrapper { flex-direction: column; text-align: center; }
    .welcome-lead { margin-left: auto; margin-right: auto; }
    .welcome-points { align-items: center; }
    .w-point { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 600px) {
    .welcome-impeccable { padding: 40px 16px; }
    .welcome-title { font-size: 1.75rem; }
    .welcome-right .right-hero { max-height: 280px; object-fit: cover; width: 100%; }
    .glass-card { padding: 16px; font-size: 14px; }
}

/* ========== HERO IMPECCABLE — consolidated (main rules above) ========== */
.hero-inner {
    padding: 0 clamp(16px, 5vw, 32px);
    flex-wrap: wrap;
}

/* ========== INDUSTRY EXPERTISE ========== */
.industry-expertise {
    padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 24px);
    width: 100%;
    max-width: 100%;
}

.industry-heading-wrapper { padding: 0 12px; }
.industry-card { max-width: 100%; }

@media (max-width: 768px) {
    .industry-strip .owl-item { padding: 0 8px; }
}

/* ========== CLIENTS SECTION ========== */
.clients-section {
    padding: clamp(40px, 8vw, 80px) 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.clients-heading-wrapper { padding: 0 clamp(16px, 4vw, 24px); }
.clients-heading { font-size: clamp(1.5rem, 4vw, 2.25rem); }

@media (max-width: 768px) {
    .client-logo { width: 140px; height: 140px; }
}

@media (max-width: 480px) {
    .client-logo { width: 120px; height: 120px; }
}

/* ========== GUARANTEE SECTION (global responsive tweaks) ========== */
.guarantee-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.guarantee-section .container {
    max-width: 100%;
    padding-left: clamp(12px, 3vw, 20px);
    padding-right: clamp(12px, 3vw, 20px);
}

/* ========== FOOTPRINTS (global width only) ========== */
.fp-premium {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* ========== WHY IMPECCABLE ========== */
/* .why-impeccable has its own unique block & responsive above */

/* ========== HOW IT WORKS ========== */
/* .how-v2-section has its own branded block above */

/* ========== BRAND PILLS ========== */
.brand-pills {
    padding: clamp(24px, 4vw, 48px) clamp(16px, 4vw, 24px);
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========== FOOTER — full screen fit (sare pages / services) ========== */
.imp-footer,
body .imp-footer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
.imp-footer .footer-container,
.imp-footer .footer-logo-wrapper,
.imp-footer .footer-bottom {
    max-width: 100%;
    box-sizing: border-box;
}

/* ---- Ensure no section overflows viewport ---- */
section {
    box-sizing: border-box;
}