/* --------------------------- PREMIUM THEME V3 ---------------------------- */
:root {
    --primary: #0a0f1f; /* Deep Luxury Navy */
    --primary-light: #1a2238; /* Clean modern navy */
    --gold: #e4b34f; /* Elegant Gold */
    --gold-light: #f7dfa7; /* Soft pastel gold */
    --white: #ffffff;
    --bg: #f4f6fa; /* Modern Clean BG */
    --text: #1c1f27;
    --muted: #6b7280;
    --card: #ffffff;
    --glass: rgba(255, 255, 255, 0.72);
    --shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.08);
    --brand: #0a0f1f;
    --accent: #e4b34f;
    --muted: #6b6f7a;
}

body {
    font-family: "Poppins", "Inter", sans-serif;
}

.mainNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 14px 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 999;

    transform: translateY(0);
    transition: transform 0.2s ease;
}

/* scroll start pe hide */
.mainNav.nav-hide {
    transform: translateY(-100%);
}

/* drop state */
.mainNav.nav-show {
    transform: translateY(0);
}

/* LOGO */
.nav-logo {
    width: 34px;
    height: 34px;
}
.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #0a155a;
}

/* NAV MENU — COMPACT */
.navMenu .nav-link {
    font-weight: 600;
    font-size: 14px; /* SMALLER FONT */
    margin-left: 14px; /* SMALLER GAP */
    color: #0a155a;
    transition: 0.2s ease;
    padding: 6px 2px !important; /* TIGHT PADDING */
}

/* HOVER EFFECT */
.navMenu .nav-link:hover {
    color: #e4b34f;
    transform: translateY(-1px);
}

/* MOBILE MENU */
@media (max-width: 991px) {
    .navMenu .nav-link {
        margin-left: 0;
        padding: 10px 0 !important;
        border-bottom: 1px solid #eee;
    }
}

.hero {
    position: relative;
    padding: 110px 0 70px;
    height: 80vh;
    margin-top: 80px;
}

.carousel-content {
    position: absolute;
    top: 20%;
    left: 15%;
    transform: translateY(-50%);
    max-width: 520px !important;
}

@media (max-width: 992px) {
    .hero {
        height: 70vh;
    }

    .carousel-content {
        top: 15%;
        text-align: center;
    }
}

.brand-badge {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #1a1a1a;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.mhero-title {
    font-size: clamp(34px, 5vw, 65px);
    font-weight: 800;
    line-height: 1.15;
    /* margin-top:18px; */
}

.mhero-lead {
    font-size: clamp(15px, 1.4vw, 20px);
    margin-top: 14px;
    opacity: 0.9;
    color: rgb(245, 245, 245);
}

/* --------------------------- CTA BUTTONS ---------------------------- */
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    color: #1b1b1b;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(228, 179, 79, 0.35);
    transition: 0.25s;
}
.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-dark-outline {
    border: 2px solid var(--gold);
    color: var(--gold-light);
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 12px;
    transition: 0.3s;
}
.btn-dark-outline:hover {
    background: var(--gold);
    color: #1a1a1a;
}

/* --------------------------- CTA SMALL CARDS ---------------------------- */
.cta-card {
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    padding: 22px;
    backdrop-filter: blur(22px);

    color: white;
    transition: 0.3s;
}
.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.4);
}

.price-badge {
    background: rgba(255, 255, 255, 0.18);
    padding: 0.55rem 1rem;
    border-radius: 10px;
    font-weight: 800;
}

/* --------------------------- SEARCH BOX ---------------------------- */
.hero-search {
    background: white;
    border-radius: 16px;
    padding: 14px;
    box-shadow: var(--shadow-lg);
}

/* --------------------------- RESPONSIVE ---------------------------- */
@media (max-width: 767px) {
    .hero {
        padding-top: 80px;
    }
}

/* <!-- =========================
     UPDATED USP + PACKAGES
     ========================= --> */

/* ---------- USP SECTION ---------- */
.usp-section {
    background: #ffffff;
    padding: 4.5rem 0;
}
.usp-container {
    max-width: 1100px;
    margin: 0 auto;
}
.usp-headline {
    text-align: center;
    margin-bottom: 2.25rem;
}
.usp-title {
    font-weight: 800;
    font-size: 2.25rem;
    color: #0a0f1f;
}
.usp-sub {
    color: #6b7280;
    margin-top: 0.35rem;
    font-size: 1rem;
}

/* USP cards */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.usp-card {
    background: #f8fafc;
    border: 1px solid #e6e9ee;
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.28s ease, box-shadow 0.28s ease,
        border-color 0.28s ease;
}
.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(10, 18, 35, 0.06);
    border-color: rgba(228, 179, 79, 0.25);
}
.usp-icon {
    min-width: 48px;
    min-height: 48px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #fff6e6, #fff2d5);
    color: #e4b34f;
    font-size: 1.4rem;
    box-shadow: 0 6px 18px rgba(228, 179, 79, 0.15);
}
.usp-body {
    flex: 1;
}
.usp-title-sm {
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: #0a0f1f;
}
.usp-text {
    margin: 0;
    color: #56606b;
    font-size: 0.94rem;
}

/* SECTION BACKGROUND */
.category-section {
    background: #e0e9f8;
}

/* Heading */
.section-title {
    font-weight: 800;
    font-size: 40px;
    color: #0a0f1f;
}
.section-subtitle {
    color: #6b7280;
    font-size: 17px;
}

/* Cards */
.category-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    transition: 0.35s ease;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
    border-color: #e4b34f;
}

/* Icon Box */
.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(228, 179, 79, 0.35);
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 18px;
}

/* Text */
.category-title {
    font-weight: 700;
    font-size: 18px;
    color: #1a1f25;
}
.category-text {
    font-size: 14px;
    color: #6b7280;
}

/* CTA */
.cta-btn {
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 12px;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(228, 179, 79, 0.35);
}

/* ---------- PACKAGES SECTION ---------- */
.packages-section {
    padding: 4.5rem 0;
    position: relative;
    overflow: visible;
    /* background: linear-gradient(180deg,#fbfbfd,#ffffff); */
}

/* decorative illustration (uses uploaded image path) */
.packages-illustration {
    position: absolute;
    right: 2%;
    top: -30px;
    width: 420px;
    height: 280px;
    background-image: url("/mnt/data/6216ad03-8c26-49a2-b3f8-5758a6ce4680.png");
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
    filter: blur(2px);
    transform: translateZ(0);
}

/* header */
.packages-head {
    text-align: center;
    margin-bottom: 2.25rem;
}
.packages-title {
    font-weight: 800;
    font-size: 2.25rem;
    color: #0a0f1f;
}
.packages-sub {
    color: #6b7280;
    margin-top: 0.35rem;
    font-size: 1rem;
}

/* card grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
.packages-gridx {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

/* card base */
.package-card {
    border-radius: 16px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 360px;
    transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.3, 1),
        box-shadow 0.32s ease, border-color 0.32s ease;
    border: 1px solid rgba(10, 10, 10, 0.04);
    background: linear-gradient(180deg, #fff, #fff);
    box-shadow: 0 10px 30px rgba(10, 18, 35, 0.04);
}

/* highlighted center card */
.package-card.recommended {
    background: linear-gradient(135deg, #fff7e6 0%, #fff3d4 100%);
    border: 1px solid rgba(228, 179, 79, 0.45);
    box-shadow: 0 28px 60px rgba(228, 179, 79, 0.14);
    transform: translateY(0);
}
.package-card:hover.recommended {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 40px 90px rgba(228, 179, 79, 0.16);
}

/* hover for normals */
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 18, 35, 0.08);
    border-color: rgba(228, 179, 79, 0.12);
}

/* header inside card */
.package-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0a0f1f;
    margin: 0;
}
.package-price {
    font-weight: 800;
    color: #e4b34f;
    font-size: 1.25rem;
}

/* features list */
.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: #3f4147;
    flex: 1;
}
.package-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.84rem;
}
.package-features li .tick {
    color: #e4b34f;
    font-size: 1.06rem;
}

/* CTA container - kept at bottom */
.package-cta {
    margin-top: auto;
}

/* CTA button */
.package-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e4b34f 0%, #f7dfa7 100%);
    color: #111;
    font-weight: 700;
    padding: 0.65rem 1.4rem;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.package-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(228, 179, 79, 0.32);
}

/* small responsive tweaks */
@media (max-width: 991px) {
    .packages-illustration {
        display: none;
    }
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .usp-grid {
        grid-template-columns: 1fr;
    }
    .packages-head .packages-title,
    .usp-title {
        font-size: 1.5rem;
    }
    .package-card {
        min-height: auto;
    }
}

/* india presence  */
.pan-india-section {
    background: #f8fafd;
}

.map-container {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    width: 100%;
    height: 480px;
    border: 0;
    border-radius: 22px;
}

/* Right Side */
.pan-title {
    font-weight: 800;
    color: #0a0f1f;
    margin-bottom: 0.5rem;
}

.pan-sub {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.pan-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.pan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.pan-number {
    font-weight: 800;
    font-size: 1.7rem;
    color: #0a0f1f;
}

.pan-label {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Buttons */
.pan-btn-primary {
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    color: #1a1a1a;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.pan-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(228, 179, 79, 0.35);
}

.pan-btn-outline {
    border: 2px solid #e4b34f;
    color: #e4b34f;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.pan-btn-outline:hover {
    background: #e4b34f;
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* GOLD GLOW BG */
.gold-blur {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(
        circle,
        rgba(228, 179, 79, 0.4),
        transparent 70%
    );
    top: -40px;
    right: 0;
    filter: blur(30px);
    z-index: 0;
}

/* Tabs */
.t-tab {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}
.t-tab.active,
.t-tab:hover {
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    color: #1a1a1a;
}

/* Content panes */
.t-pane {
    display: none;
}
.t-pane.active {
    display: block;
}

/* Video Card */
.t-video-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}
.t-video-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.t-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: 0.3s;
    cursor: pointer;
}
.t-video-overlay i {
    font-size: 70px;
    color: #e4b34f;
}
.t-video-card:hover .t-video-overlay {
    opacity: 1;
}

/* Review Card */
.t-review-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 18px;
    backdrop-filter: blur(15px);
    color: #ffffff;
    transition: 0.3s;
}
.t-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(228, 179, 79, 0.2);
}
.review-icon {
    font-size: 28px;
    color: #e4b34f;
    margin-bottom: 10px;
}

.brands-section {
    background: #f8fafd;
    padding: 80px 0;
}

/* Slider wrapper */
.brand-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Track */
.brand-track {
    display: flex;
    gap: 35px;
    animation: slide 18s linear infinite;
}

/* Cards */
.brand-card2 {
    background: white;
    min-width: 160px;
    height: 110px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.brand-card2 img {
    max-height: 65px;
    object-fit: contain;
}

/* Infinite Scroll Animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Featured */
.featured-brand-box {
    background: white;
    border-radius: 22px;
    padding: 45px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    margin-top: 70px;
}
.featured-brand-img {
    max-height: 140px;
}
.featured-brand-title {
    font-size: 30px;
    font-weight: 800;
    color: #0a0f1f;
}
.featured-brand-text {
    margin-top: 12px;
    font-size: 17px;
    color: #6b7280;
}
.featured-btn {
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: bold;
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    color: #111;
    text-decoration: none;
    transition: 0.3s;
}
.featured-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(228, 179, 79, 0.3);
}

.promo-section {
    background: #e0e9f8;
    padding: 80px 0;
}

.promo-heading {
    font-size: 40px;
    font-weight: 800;
    color: #0a0f1f;
}

.promo-subheading {
    color: #6b7280;
    font-size: 17px;
    margin-bottom: 40px;
}

/* Featured Banner */
.promo-featured {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    height: 360px;
}

.promo-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-featured-overlay {
    position: absolute;
    inset: 0;
    padding: 40px;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 31, 0.5),
        rgba(10, 15, 31, 0.75)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.promo-badge {
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    font-weight: 700;
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 10px;
    color: #111;
    display: inline-block;
    margin-bottom: 10px;
}

.promo-featured-title {
    font-size: 32px;
    font-weight: 800;
}

.promo-featured-text {
    font-size: 15px;
    opacity: 0.95;
    margin-top: 5px;
}

/* Small Cards */
.promo-small-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 40px;
}

.promo-small-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    transition: 0.35s ease;
}

.promo-small-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.promo-small-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-small-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 15, 31, 0.3),
        rgba(10, 15, 31, 0.75)
    );
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.promo-small-title {
    font-size: 20px;
    font-weight: 700;
}

.promo-small-text {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .promo-small-grid {
        grid-template-columns: 1fr;
    }
    .promo-featured {
        height: 260px;
    }
}

.advertise-unique {
    padding: 80px 0;
    background: #f8fafd;
}

.ad-unique-title {
    font-size: 32px;
    font-weight: 800;
    color: #0a0f1f;
}

.ad-unique-sub {
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 40px;
}

/* GRID WRAPPER */
.ad-unique-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
}

.ad-unique-grid1 {
    display: grid;
    grid-template-columns:1fr;
    gap: 30px;
}

/* LEFT BIG SPONSORED */
.ad-big {
    position: relative;
    height: 430px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}
.ad-big:hover {
    transform: translateY(-6px);
}

.ad-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-big-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 31, 0.3),
        rgba(10, 15, 31, 0.5)
    );
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
}
.ad-big-overlay1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 31, 0.3),
        rgba(10, 15, 31, 0.5)
    );
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}



.ad-tag {
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    padding: 8px 20px;
    border-radius: 12px;
    color: #111;
    font-weight: 700;
    margin-bottom: 10px;
}


.ad-small-grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
}


.ad-small {
    position: relative;
    border-radius: 20px;
    height: 200px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: 0.35s;
}


.ad-small:hover {
    transform: translateY(-6px);
}

.ad-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-small-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 31, 0.3),
        rgba(10, 15, 31, 0.6)
    );
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ad-small-title {
    font-size: 20px;
    font-weight: 700;
}

.ad-small-desc {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .ad-unique-grid {
        grid-template-columns: 1fr;
    }
    .ad-big {
        height: 300px;
    }
    .ad-small {
        height: 180px;
    }
}


.footer-premium {
    background: #0c0f19;
    padding: 80px 0 40px;
    color: #d1d5db;
    /* margin-top: 80px; */
    border-top: 3px solid #e4b34f;
}

.f-logo {
    width: 42px;
    height: 42px;
}


.f-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #bfc5d1;
}


.f-title {
    margin-bottom: 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    position: relative;
}

.f-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 40px;
    height: 3px;
    background: #e4b34f;
    border-radius: 10px;
}

/* Links */
.f-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-links li {
    margin-bottom: 8px;
}

.f-links a {
    color: #bfc5d1;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
    position: relative;
}

.f-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.f-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #e4b34f;
    transition: 0.3s ease;
}

.f-links a:hover::after {
    width: 100%;
}

/* Social Icons */
.f-social a {
    font-size: 22px;
    color: #d1d5db;
    margin-right: 12px;
    transition: 0.3s;
}

.f-social a:hover {
    color: #e4b34f;
    transform: translateY(-3px) scale(1.1);
}

/* Bottom Text */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #1f2737;
    color: #9ca3af;
    font-size: 15px;
}

.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(
            135deg,
            rgba(10, 15, 31, 0.75),
            rgba(10, 15, 31, 0.65)
        ),
        url("https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1600")
            center/cover;
    color: white;
    text-align: center;
}
.about-badge {
    display: inline-block;
    background: #e4b34f;
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
}
.about-hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}
.about-hero-sub {
    max-width: 780px;
    margin: 16px auto 0;
    font-size: 17px;
    opacity: 0.9;
}

/* =============================
   WHO WE ARE
============================= */
.abt-heading {
    font-size: 32px;
    font-weight: 800;
    color: #0a0f1f;
}
.abt-text {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}
.abt-img-box img {
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* =============================
    MISSION & VISION
============================= */
.mission-vision {
    background: #f8fafd;
}
.mv-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
.mv-card:hover {
    transform: translateY(-6px);
    border-color: #e4b34f;
}
.mv-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0f1f;
}
.mv-title i {
    color: #e4b34f;
}
.mv-text {
    font-size: 15px;
    color: #6b7280;
    margin-top: 8px;
}

/* =============================
      WHAT WE DO
============================= */
.ww-card {
    background: white;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #ececec;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
.ww-card:hover {
    transform: translateY(-6px);
    border-color: #e4b34f;
}
.ww-icon {
    font-size: 36px;
    color: #e4b34f;
    margin-bottom: 10px;
}
.ww-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a0f1f;
}
.ww-text {
    color: #6b7280;
    margin-top: 6px;
    font-size: 15px;
}

/* ===================================
       CATEGORY HERO
=================================== */
.cat-hero {
    padding: 110px 80px;
    background: linear-gradient(
            135deg,
            rgba(10, 15, 31, 0.8),
            rgba(10, 15, 31, 0.65)
        ),
        url("https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1600")
            center/cover;
    text-align: center;
    color: white;
}
.cat-badge {
    display: inline-block;
    background: #e4b34f;
    color: #111;
    padding: 6px 22px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.cat-hero-title {
    font-size: 42px;
    font-weight: 800;
}
.cat-hero-sub {
    font-size: 17px;
    opacity: 0.95;
    max-width: 720px;
    margin: 12px auto 0;
}

/* ---------- ZigZag Timeline (centered) ---------- */
.timeline-zig {
    position: relative;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* center vertical line */
.timeline-zig::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    bottom: 20px;
    width: 6px;
    background: linear-gradient(
        180deg,
        rgba(228, 179, 79, 0.95),
        rgba(247, 223, 167, 0.95)
    );
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(228, 179, 79, 0.12);
    z-index: 1;
}

/* individual item container */
.timeline-item {
    position: relative;
    width: calc(50% - 60px);
    padding: 18px 24px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid #eef2f6;
    z-index: 2;
    margin: 28px 0;
}

/* connector dot */
.timeline-item::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #e4b34f;
    box-shadow: 0 0 0 8px rgba(228, 179, 79, 0.12);
    top: 26px;
}

/* left items (even flow index) */
.timeline-item.left {
    margin-right: calc(50%);
    text-align: left;
}
.timeline-item.left::before {
    right: -70px;
}

/* right items */
.timeline-item.right {
    margin-left: calc(50% + 30px);
    text-align: left;
}
.timeline-item.right::before {
    left: -40px;
}

/* title + icon */
.timeline-item .step-head {
    display: flex;
    align-items: center;
    gap: 12px;
}
.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff7e6, #fff3d4);
    display: grid;
    place-items: center;
    font-size: 18px;
    color: #e4b34f;
    box-shadow: 0 8px 20px rgba(228, 179, 79, 0.12);
}

/* headings and text */
.step-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin: 6px 0 0;
}
.step-desc {
    color: var(--muted);
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.6;
}

/* subtle step number on the card (top-left) */
.step-number {
    position: absolute;
    top: -12px;
    font-weight: 800;
    color: #0a0f1f;
    left: 18px;
    background: transparent;
    font-size: 14px;
}

/* final CTA row below timeline */
.timeline-cta {
    margin-top: 30px;
    text-align: center;
}

/* responsive: stack on mobile */
@media (max-width: 991px) {
    .timeline-zig::before {
        left: 18px;
        transform: none;
    }
    .timeline-item {
        width: calc(100% - 100px);
        margin: 18px 0 18px 60px;
    }
    .timeline-item.left {
        margin: 18px 0 18px 50px;
        text-align: left;
    }
    .timeline-item.right {
        margin: 18px 0 18px 50px;
        text-align: left;
    }
    .timeline-item::before {
        left: -40px;
        right: auto;
        top: 20px;
    }
    .step-number {
        left: 8px;
    }
    .timeline-item.left::before {
        right: 100px;
    }
    /*  .timeline-item.right::before { left: -40px; } */
}

/* onboard page  */
a {
    text-decoration: none;
}

/* HERO */
.hero-onboard {
    padding: 56px 0;
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 28px;
    align-items: start;
}
.hero-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.85)
    );
    border-radius: 14px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(10, 10, 10, 0.04);
}
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #111;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 8px 30px rgba(228, 179, 79, 0.12);
}
.hero-title {
    font-size: clamp(22px, 3.6vw, 28px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 14px;
    color: var(--primary);
}
.hero-sub {
    color: var(--muted);
    margin-bottom: 18px;
}
.price-pill {
    display: inline-block;
    background: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(10, 18, 35, 0.06);
    color: var(--primary);
    margin-right: 12px;
    border: 1px solid rgba(10, 10, 10, 0.04);
}
.hero-visual {
    border-radius: 14px;
    overflow: hidden;
    /* height: 100%; */
    width:100%;
    /* min-height: 300px; */
    background: linear-gradient(
        135deg,
        rgba(10, 15, 31, 0.12),
        rgba(26, 34, 56, 0.06)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.03) saturate(1.02);
}

/* HIGHLIGHT STRIPS */
.strip-row {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.strip {
    flex: 1;
    min-width: 180px;
    background: linear-gradient(
        135deg,
        rgba(228, 179, 79, 0.12),
        rgba(247, 223, 167, 0.06)
    );
    border-radius: 12px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(228, 179, 79, 0.08);
}
.strip .icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #fff7e6, #fff3d4);
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(228, 179, 79, 0.12);
}
.strip h6 {
    margin: 0;
    font-weight: 700;
    font-size: 15px;
}
.strip p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

/* FEATURES GRID */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}
.feat-card {
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(10, 10, 10, 0.04);
    box-shadow: 0 10px 30px rgba(10, 18, 35, 0.04);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(10, 18, 35, 0.07);
}
.feat-icon {
    min-width: 56px;
    min-height: 56px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #111;
    box-shadow: 0 8px 20px rgba(228, 179, 79, 0.12);
}
.feat-title {
    font-weight: 800;
    margin: 0;
    font-size: 15px;
    color: var(--primary);
}
.feat-desc {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
}

/* EXPLAINER */
.explainer {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 24px;
    align-items: center;
}
.explainer .why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.why-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.why-dot {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 6px 16px rgba(228, 179, 79, 0.12);
}

/* PACKAGES + FORM */
.onboard-wrap {
    margin-top: 38px;
    display: grid;
    grid-template-columns:1fr;
    gap: 24px;
    align-items: start;
}
.packages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.pack-card {
    border-radius: 12px;
    padding: 14px;
    background: linear-gradient(180deg, #fff, #fff);
    border: 1px solid rgba(10, 10, 10, 0.04);
    box-shadow: 0 10px 30px rgba(10, 18, 35, 0.04);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.pack-card.selected {
    border: 2px solid var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 18px 60px rgba(228, 179, 79, 0.12);
}
.pack-name {
    font-weight: 800;
    font-size: 16px;
}
.pack-price {
    color: var(--gold);
    font-weight: 800;
    margin-top: 8px;
}

.form-card {
    padding: 18px;
    border-radius: 12px;
    background: var(--card);
    border: 1px solid rgba(10, 10, 10, 0.04);
    box-shadow: 0 10px 30px rgba(10, 18, 35, 0.04);
}
.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

/* CTA BAND */
.cta-band {
    margin-top: 28px;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(
        135deg,
        rgba(228, 179, 79, 0.12),
        rgba(247, 223, 167, 0.06)
    );
    border: 1px solid rgba(228, 179, 79, 0.08);
}
.cta-band .cta-left {
    display: flex;
    gap: 12px;
    align-items: center;
}
.final-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #111;
    border: none;
    font-weight: 800;
    padding: 12px 20px;
    border-radius: 10px;
}

/* Footer small */
.muted-note {
    color: var(--muted);
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hero-onboard {
        grid-template-columns: 1fr;
        padding: 36px 0;
    }
    .hero-visual {
        order: -1;
        min-height: 220px;
    }
    .explainer {
        grid-template-columns: 1fr;
    }
    .onboard-wrap {
        grid-template-columns: 1fr;
    }
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .features {
        grid-template-columns: 1fr;
    }
    .strip-row {
        gap: 10px;
    }
    
    .cat-hero{
        margin-top:85px;
    }
}

/* small helpers */
.small {
    font-size: 13px;
    color: var(--muted);
}

/* brand page  */
/* FILTER BAR */
.filter-bar3 {
    background: #fff;
    padding: 16px 22px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

/* BRANDS GRID */
.brand-card3 {
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f6;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.brand-card3:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.brand-logo3 {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #f2f2f2;
}

.verified-badge3 {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: #fff;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brand-img3 {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    object-fit: cover;
    margin-top: 10px;
}

.brand-category3 {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
}

.brand-desc3 {
    color: var(--muted);
    font-size: 15px;
    margin-top: 10px;
    min-height: 48px; /* 2 lines */
    max-height: 60px; /* avoid overflow */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.view-btn3 {
    background: var(--gold);
    color: #000;
    padding: 9px 20px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
}
.view-btn3:hover {
    background: var(--gold);
    color: #fff;
}

/* ---------------------------------------------
    PAN INDIA PAGE — SAFE UNIQUE CSS (NO CONFLICT)
---------------------------------------------- */

/* MAP */
.pan-map-box {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pan-map-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* COUNT CARDS */
.pan-counter-card {
    background: #0a0f1f;
    color: white;
    padding: 22px;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 18px;
    transition: 0.3s;
}

.pan-counter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.pan-counter-number {
    font-size: 34px;
    font-weight: 800;
    color: #e4b34f;
}

/* STATE CARDS */
.pan-state-card {
    background: white;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 14px;
    align-items: start;
    transition: 0.3s;
    cursor: pointer;
}

.pan-state-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.pan-state-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

/* MODAL */
.state-modal-img {
    border-radius: 12px;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* SAFE IMAGE FIX */
.blog-imgB,
.featured-imgB,
.split-imgB {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    background: #f1f1f1;
}

/* FEATURED CARD */
.blog-featuredB {
    background: white;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

/* BADGE */
.blog-badgeB {
    background: #e4b34f;
    color: #111;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
}

/* SAFE IMAGE FIX */
.featured-imgB-details {
    height: 350px;
}

@media (max-width: 768px) {
    /* SAFE IMAGE FIX */
    .featured-imgB-details {
        height: 250px;
    }
}

/* SUB-TAG */
.sub-tagB {
    background: #fff3d4;
    color: #9a6a00;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* GRID CARDS */
.blog-cardB {
    background: white;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    transition: 0.3s;
}
.blog-cardB:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* SIDEBAR */
.sidebar-boxB {
    background: white;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.blog-cardB {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-bodyB {
    flex: 1;
}

.blog-titleB {
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

/* testimonial page  */

/* Shared card */
.test-card {
    background: var(--card);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(10, 18, 35, 0.06);
    border: 1px solid rgba(10, 10, 10, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease,
        border-color 0.35s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.test-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 60px rgba(10, 18, 35, 0.1);
    border-color: rgba(228, 179, 79, 0.25);
}

.test-top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.test-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    transition: transform 0.35s ease;
}
.test-card:hover .test-img {
    transform: scale(1.06) rotate(3deg);
}

.test-name {
    font-weight: 700;
    margin: 0;
    font-size: 16px;
    color: var(--primary);
}
.test-role {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.test-text {
    margin-top: 8px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

/* Manufacturer slider container tweak */
.manufacturer .test-card {
    padding: 18px;
    text-align: left;
}

/* Retailer overlay card */
.retailer-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 220px;
    background: linear-gradient(180deg, #fff, #fff);
    transition: transform 0.35s ease;
    box-shadow: 0 10px 30px rgba(10, 18, 35, 0.05);
}
.retailer-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}
.retailer-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px;
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.3, 1);
    transform: translateY(60%);
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(10, 15, 31, 0.45) 40%,
        rgba(10, 15, 31, 0.6) 100%
    );
    color: white;
}
.retailer-card:hover .retailer-overlay {
    transform: translateY(0%);
}
.retailer-caption {
    text-align: center;
}

/* Video box style */
.video-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 18, 35, 0.08);
    background: #000;
    cursor: pointer;
}
.video-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    filter: brightness(0.6);
    transition: transform 0.35s ease;
}
.video-thumb:hover img {
    transform: scale(1.03);
}
.play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--gold);
    opacity: 1;
    transition: opacity 0.25s;
}
.video-label {
    padding: 12px 10px;
    background: white;
    text-align: left;
    font-weight: 700;
    color: var(--primary);
}

/* Swiper specifics */
.swiper {
    padding-bottom: 18px;
}
.swiper .test-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

/* Pagination override */
.swiper-pagination-bullet {
    background: var(--gold);
    opacity: 0.9;
}

/* Section headings */
.section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
}
.section-subtitle {
    color: var(--muted);
    margin-top: 6px;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .cat-hero {
        padding: 56px 0 36px;
    }
    .video-frame {
        height: 200px !important;
    }
}

/* contact page  */

/* HERO */
.contact-hero {
    padding: 130px 0 110px;
    text-align: center;
    color: white;
    background: linear-gradient(
            135deg,
            rgba(10, 15, 31, 0.8),
            rgba(10, 15, 31, 0.65)
        ),
        url("https://images.unsplash.com/photo-1581090700227-1e37b190418e?q=80&w=1600")
            center/cover;
    position: relative;
}
.contact-hero .badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 10px 24px;
    border-radius: 30px;
    color: #111;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(228, 179, 79, 0.25);
}
.contact-title {
    font-size: 48px;
    font-weight: 800;
    margin-top: 20px;
}
.contact-sub {
    max-width: 680px;
    margin: 12px auto 0;
    font-size: 18px;
    opacity: 0.95;
}

/* MAIN AREA */
.contact-section {
    padding: 80px 0;
    background: var(--bg);
}

/* LEFT INFO BOXES */
.info-box {
    background: white;
    padding: 26px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: 0.3s;
}
.info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}
.info-icon {
    width: 66px;
    height: 66px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    font-size: 32px;
    color: #111;
    box-shadow: 0 12px 25px rgba(228, 179, 79, 0.25);
}

/* FORM */
.contact-form {
    background: white;
    padding: 38px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}
.form-control {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(228, 179, 79, 0.25);
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    color: #111;
    width: 100%;
    box-shadow: 0 10px 25px rgba(228, 179, 79, 0.35);
    transition: 0.3s;
}
.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(228, 179, 79, 0.45);
}

/* MAP */
.map-box {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25d366;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
    z-index: 999;
}
.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.05);
}

/* ===============================
   MANUFACTURER ONBOARDING HERO
   =============================== */

.mo-hero-wrap {
    padding: 120px 0 90px;
    background: linear-gradient(
            135deg,
            rgba(10, 15, 31, 0.82),
            rgba(10, 15, 31, 0.65)
        ),
        url("https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1600")
            center/cover;
    color: #fff;
}

.mo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    color: #111;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(228, 179, 79, 0.35);
}

.mo-hero-title {
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
}
.mo-hero-title span {
    color: #f7dfa7;
}

.mo-hero-sub {
    font-size: 18px;
    margin-top: 16px;
    opacity: 0.95;
    max-width: 620px;
}

.mo-btn-primary {
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    color: #111;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(228, 179, 79, 0.35);
    transition: 0.3s;
}
.mo-btn-primary:hover {
    transform: translateY(-4px);
}

.mo-btn-outline {
    border: 2px solid #f7dfa7;
    color: #f7dfa7;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 14px;
    transition: 0.3s;
}
.mo-btn-outline:hover {
    background: #f7dfa7;
    color: #111;
}

.mo-highlight {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(12px);
    font-weight: 600;
}
.mo-highlight i {
    font-size: 20px;
    color: #e4b34f;
}

/* RIGHT CARD */
.mo-hero-card {
    background: rgba(255, 255, 255, 0.95);
    color: #0a0f1f;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.mo-hero-card h5 {
    font-weight: 700;
    color: #555;
}

.mo-price {
    font-size: 42px;
    font-weight: 800;
    color: #e4b34f;
    margin: 8px 0;
}

.mo-hero-card p {
    color: #555;
    font-size: 15px;
}

.mo-mini-list {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}
.mo-mini-list li {
    margin-bottom: 8px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .mo-hero-wrap {
        padding: 80px 0 60px;
    }
}

/* =========================================
   MANUFACTURER PROBLEM – PREMIUM SECTION
   ========================================= */

.mo-problem-v2 {
    padding: 100px 0;
    background: #f8fafd;
}

.mo-problem-v2-title {
    font-size: clamp(34px, 4.2vw, 48px);
    font-weight: 800;
    color: #0a0f1f;
}
.mo-problem-v2-title span {
    color: #e4b34f;
}

.mo-problem-v2-sub {
    font-size: 17px;
    color: #6b7280;
    margin-top: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.mo-problem-v2-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px;
    height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.mo-problem-v2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
    border-color: #e4b34f;
}

.mo-problem-v2-icon {
    font-size: 26px;
    color: #ef4444;
    margin-bottom: 12px;
}

.mo-problem-v2-card h5 {
    font-weight: 700;
    font-size: 19px;
    color: #0a0f1f;
    margin-bottom: 10px;
}

.mo-problem-v2-card p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.65;
}

/* Impact Card */
.mo-problem-v2-impact {
    background: linear-gradient(135deg, #0a0f1f, #1a2238);
    color: #ffffff;
    border: none;
}

.mo-problem-v2-impact h5 {
    color: #f7dfa7;
}

.mo-problem-v2-impact p {
    color: #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
    .mo-problem-v2 {
        padding: 70px 0;
    }
}

/* =========================================
   OUR SOLUTION – BLOCK LEVEL NETWORK
   ========================================= */

.mo-solution-wrap {
    padding: 100px 0;
    background: #ffffff;
}

.mo-solution-title {
    font-size: clamp(34px, 4.2vw, 48px);
    font-weight: 800;
    color: #0a0f1f;
}
.mo-solution-title span {
    color: #e4b34f;
}

.mo-solution-sub {
    font-size: 17px;
    color: #6b7280;
    margin-top: 12px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.mo-solution-card {
    background: #f9fafb;
    border-radius: 22px;
    padding: 30px;
    height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
}

.mo-solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
    border-color: #e4b34f;
}

.mo-solution-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #111;
    margin-bottom: 14px;
    box-shadow: 0 10px 25px rgba(228, 179, 79, 0.35);
}

.mo-solution-card h5 {
    font-weight: 700;
    font-size: 19px;
    color: #0a0f1f;
    margin-bottom: 10px;
}

.mo-solution-card p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.65;
}

/* Highlight Promise */
.mo-solution-highlight {
    background: linear-gradient(135deg, #0a0f1f, #1a2238);
    color: #ffffff;
    border: none;
}

.mo-solution-highlight h5 {
    color: #f7dfa7;
}

.mo-solution-highlight p {
    color: #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
    .mo-solution-wrap {
        padding: 70px 0;
    }
}

/* ===============================
   MANUFACTURER BENEFITS SECTION
================================ */
.manu-benefits-section {
    background: #ffffff;
}

.manu-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    color: #111;
}

.manu-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0f1f;
}

.manu-sub {
    max-width: 720px;
    margin: 10px auto 0;
    color: #6b7280;
    font-size: 17px;
}

.manu-card {
    background: #fff;
    border-radius: 18px;
    padding: 26px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
}

.manu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #e4b34f;
}

.manu-card.highlight {
    background: linear-gradient(135deg, #fff7e6, #fff3d4);
    border: 1px solid rgba(228, 179, 79, 0.5);
}

.manu-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #111;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(228, 179, 79, 0.35);
}

.manu-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a0f1f;
}

.manu-card-text {
    font-size: 15px;
    color: #6b7280;
    margin-top: 8px;
}

/* USP FAQ SECTION */
.usp-accordion .accordion-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    margin-bottom: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.usp-accordion .accordion-button {
    font-weight: 700;
    font-size: 16px;
    padding: 18px 22px;
    background: #ffffff;
    color: #0a0f1f;
}

.usp-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #fff7e6, #fff3d4);
    color: #0a0f1f;
}

.usp-accordion .accordion-body {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    padding: 20px 22px;
}

/* SUCCESS STORIES */
.success-section {
    background: #ffffff;
}

.success-chip {
    background: #fff3d4;
    color: #9a6a00;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}

.success-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0f1f;
}
.success-title span {
    color: #e4b34f;
}

.success-sub {
    max-width: 720px;
    margin: 10px auto 0;
    color: #6b7280;
    font-size: 16px;
}

/* Story Row */
.success-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    background: #f8fafd;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.success-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.success-row.highlight {
    background: linear-gradient(135deg, #fff7e6, #fff3d4);
    border-color: #e4b34f;
}

.success-left h4 {
    font-weight: 800;
    color: #0a0f1f;
    margin-top: 10px;
}

.success-left p {
    color: #6b7280;
    font-size: 15px;
    margin-top: 8px;
}

.badge-type {
    background: #e4b34f;
    color: #111;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
}

.success-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-right li {
    font-size: 15px;
    color: #374151;
    padding: 6px 0;
    border-bottom: 1px dashed #d1d5db;
}

.success-right li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .success-row {
        grid-template-columns: 1fr;
    }
}

/* =========================
   WHO CAN JOIN SECTION
========================= */

.join-section {
    background: #f8fafd;
}

/* CHIP */
.join-chip {
    background: #fff3d4;
    color: #9a6a00;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}

/* TITLE */
.join-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0f1f;
}
.join-title span {
    color: #e4b34f;
}

/* SUB TEXT */
.join-sub {
    font-size: 16px;
    color: #6b7280;
    margin-top: 10px;
    max-width: 520px;
}

/* HIGHLIGHT BOX */
.join-highlight {
    margin-top: 18px;
    background: linear-gradient(135deg, #fff7e6, #fff3d4);
    padding: 18px 22px;
    border-radius: 16px;
    font-weight: 700;
    color: #0a0f1f;
    border: 1px solid rgba(228, 179, 79, 0.35);
    box-shadow: 0 10px 25px rgba(228, 179, 79, 0.15);
}

/* RIGHT GRID */
.join-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* ITEM */
.join-item {
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* DOT */
.join-item::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #e4b34f;
    border-radius: 50%;
    flex-shrink: 0;
}

/* HIGHLIGHT ITEM */
.join-item.highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    color: #111;
    font-weight: 800;
    justify-content: center;
}
.join-item.highlight::before {
    display: none;
}

/* DIVIDER */
.join-divider {
    width: 120px;
    height: 5px;
    margin: 0 auto;
    border-radius: 10px;
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
}

/* PUNCH LINE */
.join-punch {
    font-size: 26px;
    font-weight: 800;
    color: #0a0f1f;
}
.join-punch span {
    color: #e4b34f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .join-list {
        grid-template-columns: 1fr;
    }
    .join-item.highlight {
        grid-column: span 1;
    }
}

/* =========================
   PRICING SECTION
========================= */

.pricing-section {
    background: #ffffff;
}

/* CHIP */
.price-chip {
    background: #fff3d4;
    color: #9a6a00;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}

/* TITLE */
.price-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0f1f;
}
.price-title span {
    color: #e4b34f;
}

/* SUBTEXT */
.price-sub {
    font-size: 16px;
    color: #6b7280;
    max-width: 520px;
    margin: 10px auto 0;
}

/* PRICE BOX */
.price-box {
    background: linear-gradient(180deg, #ffffff, #fffdf8);
    border-radius: 22px;
    padding: 36px 32px;
    border: 1px solid rgba(228, 179, 79, 0.35);
    box-shadow: 0 20px 55px rgba(228, 179, 79, 0.18);
}

/* HEADER */
.price-header {
    border-bottom: 1px dashed rgba(228, 179, 79, 0.4);
    padding-bottom: 20px;
    margin-bottom: 24px;
}
.price-amount {
    font-size: 48px;
    font-weight: 900;
    color: #0a0f1f;
}
.price-label {
    color: #6b7280;
    font-weight: 600;
}

/* FEATURES */
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.price-features li {
    font-size: 15px;
    color: #1f2937;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f1f1f1;
}
.price-features li:last-child {
    border-bottom: none;
}
.price-features li::before {
    content: "✔";
    color: #e4b34f;
    font-weight: 800;
}

/* CTA */
.price-cta .btn {
    border-radius: 14px;
}

/* NOTE */
.price-note {
    font-size: 14px;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .price-title {
        font-size: 30px;
    }
    .price-amount {
        font-size: 40px;
    }
}

/* =========================
   FINAL SELLING PUNCH
========================= */

.final-punch-section {
    background: linear-gradient(135deg, #0a0f1f, #1a2238);
}

/* BOX */
.final-punch-box {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.04)
    );
    border-radius: 26px;
    padding: 60px 40px;
    border: 1px solid rgba(228, 179, 79, 0.35);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    color: #ffffff;
}

/* CHIP */
.final-chip {
    background: linear-gradient(135deg, #e4b34f, #f7dfa7);
    color: #111;
    padding: 8px 20px;
    border-radius: 24px;
    font-weight: 800;
    font-size: 14px;
}

/* TITLE */
.final-title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.2;
}
.final-title span {
    color: #e4b34f;
}

/* SUBTEXT */
.final-sub {
    font-size: 18px;
    color: #e5e7eb;
    max-width: 760px;
    margin: 16px auto 0;
}

/* CTA */
.final-cta .btn {
    border-radius: 14px;
}

/* NOTE */
.final-note {
    font-size: 15px;
    color: #d1d5db;
}
.final-note strong {
    color: #e4b34f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .final-title {
        font-size: 32px;
    }
    .final-punch-box {
        padding: 44px 24px;
    }
}
