:root {
    --hero-h: 76vh;
    --overlay: rgba(6, 12, 24, 0.45);
    --btn-radius: 8px;
    --dot-size: 12px;
    --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    --font-serif: "Merriweather", serif;
    --hero-fit: contain;
    --accent: #5a2ee8;
}

html,
body {
    background: #ffffff;
    color: #000000;
    font-family: var(--font-sans);
}

h2,
h3,
h4 {
    color: #115bb0;
    font-weight: 600;
    font-family: var(--font-serif);
}

h2 {
    font-size: clamp(1.5rem, 2.6vw, 2.6rem);
    color: #012a48;

}

.clean-navbar {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 900;
}

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px 0px 0px 50px;
    height: 70px;
    background-color: #ffffff;
    /* background: linear-gradient(135deg, #fffbe9, #ecda64); */
    /* background: linear-gradient(135deg, #e9efff, #70b3f0); */
    box-sizing: border-box;
}

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    object-fit: contain;
    /* background-color: white; */
}

.nav-menu {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 55px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #012a48;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.2s;
}

.nav-menu a:hover {
    background-color: #012a48;
    color: white;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-right: 50px;
    /* background: linear-gradient(135deg, #4540a4, #012a48); */
    background: linear-gradient(50deg, #012a48, #0d4872, #012a48);
    border-radius: 1000px 0px 10px 1000px;
    box-sizing: border-box;
}

.signin-btn {
    background: linear-gradient(135deg, #e5c97b, #ffb300);
    border: none;
    padding: 10px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: 0.18s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: white;
}

.signin-btn:hover {
    opacity: 0.92;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    font-size: 25px;
    color: #042571;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width:992px) {

    /* Keep the menu in DOM (flex) so we can animate children.
       We control visibility with opacity/transform/pointer-events. */
    .nav-menu {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgb(19, 68, 110);
        z-index: 9999;
        flex-direction: column;
        align-items: center;
        /*center items horizontally */
        padding: 8px 0 18px;
        /* vertical padding for touch area */
        box-sizing: border-box;
        gap: 0;
        height: 100vh;
        width: 80%;
        /* start closed */
        opacity: 0;
        transform: translateX(-6%);
        pointer-events: none;
        transition: opacity 360ms cubic-bezier(.2, .9, .25, 1), transform 360ms cubic-bezier(.2, .9, .25, 1);
    }

    /* visually nicer links on mobile */
    .nav-menu a {
        color: white;
        display: block;
        width: 100%;
        text-align: center;
        padding: 40px 20px;
    }

    /* each li stretches full width */
    .nav-menu li {
        width: 100%;
        list-style: none;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        box-sizing: border-box;
        /* starting position for per-item slide animation */
        transform: translateX(-18px);
        opacity: 0;
        /* transition uses per-item delay var --delay set by JS */
        transition: transform 360ms cubic-bezier(.2, .9, .25, 1) var(--delay, 0ms),
            opacity 360ms cubic-bezier(.2, .9, .25, 1) var(--delay, 0ms);
    }

    /* toggle shows the menu and enables pointer-events */
    .nav-menu.open {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        box-shadow: 0 24px 60px rgba(2, 8, 20, 0.14);
        padding-bottom: 200px;
    }

    /* each item when menu open becomes visible and slides to 0 */
    .nav-menu.open li {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-toggle {
        display: block;
        margin-right: 20px;
    }

    .logo {
        width: 110px;
    }

    .nav-right {
        display: none;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Brochure Dropdown */
.brochure-dropdown {
    position: relative;
}

.brochure-dropdown > a {
    cursor: pointer;
    text-decoration: none;
    color: #012a48;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
}

/* Dropdown box */
.brochure-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 999;
}

/* Dropdown items */
.brochure-menu li a {
    display: block;
    padding: 10px 18px;
    color: #012a48;
    text-decoration: none;
    font-size: 14px;
}

.brochure-menu li a:hover {
    background: #012a48;
    color: white;
}

/* Hover open (Desktop) */
@media (min-width: 993px) {
    .brochure-dropdown:hover .brochure-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .brochure-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: 0.3s ease;
    }

    .brochure-menu.show {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }

    .brochure-menu li a {
        color: white;
        padding: 16px 20px;
    }

    .brochure-menu li a:hover {
        background: rgba(255,255,255,0.15);
    }
    .brochure-dropdown > a {
        color: white !important;
    }

    .brochure-dropdown {
        border-bottom: none !important;  /* Mobile में border-bottom हटाओ */
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* Brochure dropdown ke li ko fixed height do */
    .brochure-dropdown {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Dropdown OPEN hone par parent ki height collapse nahi hogi */
    .brochure-dropdown.open {
        height: auto !important;
    }
}

@media (max-width: 768px){
    .brochure-dropdown > a {
        color: white !important;
    }
}

/* PRODUCT DROPDOWN */
.product-dropdown {
    position: relative;
}

.product-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 999;
}

/* show main dropdown */
@media (min-width: 993px) {
    .product-dropdown:hover .product-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* submenu */
.sub-dropdown {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    width: 250px;
    padding: 8px 0;
    border-radius: 8px;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: 0.25s ease;
}

/* show subdropdown */
.sub-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* links */
.product-menu li a,
.sub-menu li a {
    display: block;
    padding: 10px 18px;
    color: #012a48;
    text-decoration: none;
}

.product-menu li a:hover,
.sub-menu li a:hover {
    background: #012a48;
    color: white;
}

@media (max-width: 992px) {
    .product-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
    }

    .product-menu.show {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .sub-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
    }

    .sub-menu.show {
        max-height: 500px;
    }

    .product-menu li a,
    .sub-menu li a {
        color: white;
    }
}

/* =========================================== */
.breadcrumb{
    width:100%;
    padding:15px 40px;
    font-size:14px;
    background:#f8fafc;
}

.breadcrumb a{
    text-decoration:none;
    color:#0f172a;
    font-weight:500;
}

.breadcrumb a:hover{
    text-decoration:underline;
}

.breadcrumb span{
    margin:0 6px;
    color:#64748b;
}

#topBtn {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 99;
    font-size: 18px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    background-color: #0f172a;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    transition: transform .25s ease, box-shadow .3s ease;
}

#topBtn:hover {
    transform: scale(1.12) translateY(-4px);
    background-color: #334155;
}

/* ====================== ABOUT SEC ============================  */
.about-section {
    background: linear-gradient(180deg, #ffffff, #abcae0);
    color: #000;
    /* padding-top: 48px;
    padding-bottom: 48px; */
}

.about-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);

}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#tensile-3d-section {
    padding: 30px 0;
}

.tensile-3d-wrapper {
    width: min(1100px, 92%);
    max-width: 1100px;
    height: calc(var(--tensile-h, 60vh));
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
    will-change: transform;
    margin: 0 auto;
}

#tensile-3d-img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    transform-origin: 50% 50%;
    backface-visibility: hidden;
    will-change: transform, opacity;
    border-radius: 8px;
    transition: box-shadow 300ms ease;
    user-select: none;
    pointer-events: none;
    transform: scale(0.9);
    transition: transform 0.15s linear;
}

.about-view-btn {
    background-color: #012a48;
    color: white;
}


/* =========================================== */
:root {
    --who-bg: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
    --accent-1: #1166a3;
    /* deep blue */
    --accent-2: #5a2ee8;
    /* purple */
    --muted-ink: #46535e;
    --card-radius: 18px;
}

.about-section {
    padding-bottom: 30px;
}

/* Section shell */
.who-creative {
    background: var(--who-bg);
    padding-top: 54px;
    padding-bottom: 56px;
}

/* header */
.who-creative-header h2 {
    font-family: "Merriweather", serif;
    font-size: 2rem;
    color: var(--accent-1);
    margin-bottom: 6px;
}

.who-creative-header p {
    color: var(--muted-ink);
}

/* Grid layout
DOM order: mission then vision
Visual: mission -> right, vision -> left using grid placement
*/
.who-creative-grid {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    display: flex;
    gap: 28px;
    align-items: stretch;
    margin-top: 18px;
}

/* Place mission (first in DOM) visually on the right */
.mission-card {
    grid-column: 2 / 3;
}

.vision-card {
    grid-column: 1 / 2;
}

/* Card base */
.card-creative {
    position: relative;
    display: flex;
    gap: 20px;
    background: linear-gradient(30deg, #c1cbee, #dfdfdfb2);
    border-radius: 300px 10px 300px 300px;
    padding: 26px;
    box-shadow: 0 18px 50px rgba(8, 12, 24, 0.06);
    overflow: visible;
    align-items: center;
    transition: transform .28s cubic-bezier(.2, .9, .2, 1), box-shadow .28s ease;
    height: 340px;
}

.card-creative-1 {
    border-radius: 300px 300px 300px 10px;
}

.card-creative:focus-within,
.card-creative:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 85px rgba(10, 20, 40, 0.10);
}

/* Large circular visual containers (floating circles) */
.card-circle {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: translateY(0);
    transition: transform .6s cubic-bezier(.2, .95, .2, 1), box-shadow .28s;
    z-index: 2;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75));
    box-shadow: inset 0 -10px 30px rgba(90, 46, 232, 0.02);
}

/* position modifiers */
.circle-right {
    margin-left: auto;
    margin-right: 6px;
}

/* places circle visually to right side inside card */
.circle-left {
    margin-right: auto;
    margin-left: 6px;
}

/* big badge inside circle and animated ring */
.badge-big {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2);
    background: linear-gradient(180deg, rgba(90, 46, 232, 0.08), rgba(17, 102, 163, 0.02));
    position: relative;
    box-shadow: 0 12px 36px rgba(10, 20, 40, 0.06), inset 0 -6px 18px rgba(90, 46, 232, 0.02);
    transition: transform .45s cubic-bezier(.2, .9, .2, 1);
}

/* decorative outer ring */
.badge-big::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 3px solid rgba(90, 46, 232, 0.06);
    box-shadow: 0 8px 22px rgba(90, 46, 232, 0.06);
    transform: scale(.98);
    transition: transform .45s cubic-bezier(.2, .9, .2, 1), opacity .36s;
    opacity: .95;
}

/* icon size inside svg */
.badge-big svg {
    width: 48px;
    height: 48px;
    color: var(--accent-2);
}

/* body */
.card-body-creative {
    flex: 1 1 auto;
    min-width: 0;
    padding: 6px 8px;
}

.card-body-creative h3 {
    margin: 0;
    font-size: 1.18rem;
    font-family: "Merriweather", serif;
    color: #082036;
}

.card-body-creative .short {
    margin: 10px 0 12px;
    color: var(--muted-ink);
    font-size: 0.98rem;
}

/* creative mini list */
.creative-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.creative-list li {
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.04), rgba(90, 46, 232, 0.02));
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 700;
    color: #1b2d3f;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.92rem;
}

.creative-list li i {
    font-size: 1.05rem;
    color: var(--accent-1);
    line-height: 1;
}

/* CTA */
.who-creative-cta .btn-cta {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    color: #fff;
    border: 0;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 12px 36px rgba(10, 30, 80, 0.12);
}

/* hover micro-animation */
.card-creative:hover .badge-big {
    transform: scale(1.06) rotate(-6deg);
}

.card-creative:focus-within .badge-big {
    transform: scale(1.04) rotate(0deg);
}

/* reveal animation initial state */
.animate-reveal {
    opacity: 0;
    transform: translateY(14px) scale(.996);
    transition: opacity .9s ease, transform .9s cubic-bezier(.18, .9, .32, 1);
}

.animate-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* small screens: stack and keep mission first */
@media (max-width:900px) {
    .who-creative-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mission-card,
    .vision-card {
        grid-column: auto;
    }

    .card-circle {
        width: 120px;
        height: 120px;
    }

    .badge-big {
        width: 92px;
        height: 92px;
    }

    .badge-big svg {
        width: 36px;
        height: 36px;
    }

    .card-creative {
        padding: 18px;
        gap: 12px;
        align-items: flex-start;
        border-radius: 10px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .circle-right,
    .circle-left {
        margin: 0 6px 0 0;
    }

    .card-circle {
        order: -1;
    }

    /* show circle above text on small view for a compact stacked look */
    /* ensure mission appears first on mobile */
    #mission {
        order: 0;
    }

    #vision {
        order: 1;
    }
}

/* small accessibility focus */
.card-creative:focus-within {
    outline: 3px solid rgba(90, 46, 232, 0.08);
    outline-offset: 6px;
    border-radius: var(--card-radius);
}

/* =======================MINI HERO SECTION====================== */

/* compact hero for about page */
.mini-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    --hero-height: 320px;
    /* tweak to make smaller/larger */
    height: var(--hero-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-bottom: 8px;
}

/* background image layer (uses your hero image path) */
.mini-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/heroImg-1.png');
    /* replace with your image path */
    background-size: cover;
    background-position: center center;
    filter: contrast(.95) saturate(.9) brightness(.55);
    transform-origin: center;
    z-index: 0;
}

/* darker gradient overlay for legibility */
.mini-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 12, 24, 0.42) 0%, rgba(6, 12, 24, 0.22) 60%);
    z-index: 1;
}

/* content area */
.mini-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    box-sizing: border-box;
}

/* title */
.mini-hero__title {
    margin: 0;
    font-family: "Merriweather", serif;
    color: #ffffff;
    font-size: clamp(1.4rem, 3.4vw, 2.2rem);
    letter-spacing: .02em;
    font-weight: 700;
    text-transform: none;
    text-shadow: 0 8px 24px rgba(3, 10, 25, 0.45);
}

/* breadcrumb pill */
.mini-hero__crumb-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    background: transparent;
}

.mini-hero__crumb,
.mini-hero__crumb-current {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.mini-hero__crumb {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.94);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background .18s, transform .12s;
}

.mini-hero__crumb:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.mini-hero__sep {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    margin: 0 6px;
}

/* current crumb style (highlight pill) */
.mini-hero__crumb-current {
    background: linear-gradient(90deg, #0d4fe8, #5a2ee8);
    color: #fff;
    box-shadow: 0 10px 30px rgba(10, 30, 80, 0.18);
}

/* responsiveness: smaller hero on small screens */
@media (max-width: 780px) {
    .mini-hero {
        --hero-height: 160px;
    }

    .mini-hero__title {
        font-size: clamp(1.2rem, 4.6vw, 1.6rem);
    }

    .mini-hero__crumb,
    .mini-hero__crumb-current {
        padding: 8px 12px;
        font-size: 0.88rem;
    }
}

/* Accessibility: focus states */
.mini-hero__crumb:focus {
    outline: 3px solid rgba(90, 46, 232, 0.16);
    outline-offset: 4px;
    border-radius: 10px;
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    z-index: 9999;
    transition: transform .25s ease, box-shadow .3s ease;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .32);
}

/* ============================================ */
/* ======================== WHY CHOOSE US HOME ================== */
:root {
    --wc-bg-1: linear-gradient(135deg, #f9f6ff 0%, #f3faff 100%);
    --wc-accent-1: #6f3cff;
    --wc-accent-2: #0d6efd;
    --wc-ink: #0b1b2b;
    --wc-card: rgba(255, 255, 255, 0.9);
    --wc-radius: 14px;
    --wc-gap: 22px;
}

.why-section {
    position: relative;
    background: var(--wc-bg-1);
    overflow: visible;
    color: var(--wc-ink);
    padding-top: 100px;
    padding-bottom: 150px;
    background: linear-gradient(180deg, #ffffff, #abcae0);

}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 4;
    padding: 0 12px;
}

.why-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 28px;
}

.why-header .kicker {
    color: var(--wc-accent-2);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.why-header h2 {
    font-size: clamp(1.5rem, 2.6vw, 2.6rem);
    margin: 0 0 8px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) 360px;
    gap: var(--wc-gap);
    align-items: stretch;
}

.why-card,
.why-highlight {
    border-radius: var(--wc-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 255, 0.85));
    box-shadow: 0 14px 40px rgba(20, 28, 40, 0.06);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: visible;
    transition: transform .28s cubic-bezier(.2, .95, .2, 1), box-shadow .28s ease;
}

.why-card:hover,
.why-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(20, 28, 40, 0.12);
    outline: none;
}

.icon-wrap {
    width: 100%;
    height: 156px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(111, 60, 255, 0.12), rgba(13, 110, 253, 0.06));
    color: var(--wc-accent-1);
    flex-shrink: 0;
    box-shadow: inset 0 -6px 14px rgba(111, 60, 255, 0.03);
    font-size: 5rem;
}

.why-card h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #151827;
    font-weight: 700;
}

.why-card p {
    margin: 0;
    color: #4b5563;
    font-size: .96rem;
    line-height: 1.45;
}

.tag {
    display: inline-block;
    margin-top: auto;
    align-self: flex-start;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.08), rgba(111, 60, 255, 0.06));
    color: #0b2b4a;
    font-size: .85rem;
    box-shadow: 0 6px 18px rgba(11, 27, 40, 0.03);
}

.why-highlight {
    background: linear-gradient(135deg, rgba(111, 60, 255, 0.08), rgba(13, 110, 253, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 28px;
}

.highlight-inner h3 {
    margin: 0 0 6px;
    font-size: 1.25rem;
    color: #231a3a;
}

.highlight-inner p {
    margin: 0 0 14px;
    color: #24303f;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (min-width: 1101px) {
    .why-grid .why-card:nth-child(1) {
        transform: translateY(30px);
    }

    .why-grid .why-card:nth-child(2) {
        transform: translateY(-10px);
    }

    .why-grid .why-card:nth-child(3) {
        transform: translateY(18px);
    }

    .why-highlight {
        transform: translateY(-8px);
    }

    .why-card,
    .why-highlight {
        transition: transform .45s cubic-bezier(.2, .9, .25, 1);
    }

    .why-card:hover,
    .why-highlight:hover {
        transform: translateY(0);
    }
}

@media (max-width:1100px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
    }

    .why-highlight {
        grid-column: 1 / -1;
    }
}

@media (max-width:720px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-header {
        padding: 0 6px;
    }

    .icon-wrap {
        width: 100%;
        height: 100px;
    }

    .why-card {
        padding: 18px;
    }

    .why-highlight {
        padding: 18px;
        text-align: center;
    }

    .cta-row {
        justify-content: center;
    }
}

.fade-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.fade-card:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-card:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-card:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
    will-change: transform, opacity;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.pulse-in {
    transform-origin: center;
    animation: pulseIn .9s ease both;
}

@keyframes pulseIn {
    from {
        transform: scale(.98);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        transition: none;
        transform: none;
        opacity: 1;
    }

    .pulse-in {
        animation: none;
    }
}
/* ============================================ */

.site-footer {
    background: linear-gradient(135deg, #012a48, #0d4872);
    color: rgba(255, 255, 255, 0.92);
    padding: 50px 0 20px;
    font-family: "Poppins", sans-serif;
}

/* GRID */
.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.5fr 1.6fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* LOGO */
.footer-logo {
    width: 130px;
    background: #fff;
    padding: 6px;
    border-radius: 6px;
}

/* TEXT */
.footer-desc {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

/* HEADINGS */
.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 14px;
    font-weight: 600;
}

/* LINKS */
.footer-links ul,
.footer-products ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    width: 10px;
}
.footer-products li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-products a,
.footer-contact a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}

.footer-links a:hover,
.footer-products a:hover,
.footer-contact a:hover {
    color: #fff;
}


/* 🔥 PRODUCTS GRID (3 COLUMNS) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
}

.products-heading{ 
    text-align: center;
    position: sticky;
    top: 0;
    background: #0d4872;
    z-index: 1;
    /* text-decoration: underline; */
}

/* 🔥 SCROLLABLE AREA */
.footer-products {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 5px;
}

/* 🔥 HIDE SCROLLBAR (ALL BROWSERS) */
.footer-products::-webkit-scrollbar {
    width: 0px;
}

.footer-products {
    -ms-overflow-style: none;  /* IE & Edge */
    scrollbar-width: none;     /* Firefox */
}

/* BUTTON */
.btn-download {
    margin-top: 14px;
    display: inline-block;
    background: #a85ad6;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-download:hover {
    background: #8d45bb;
}

/* CONTACT */
.contact-meta div {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* SOCIAL */
.socials {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social:hover {
    background: #a85ad6;
    transform: translateY(-3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    box-sizing: border-box;
}

.footer-bottom-inner a{
    color: #fff;
    text-decoration: none;
}

.copyright {
    white-space: nowrap;
}

.powered {
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-products {
        max-height: 220px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        row-gap: 8px;
        text-align: center;
    }

    .copyright,
    .powered {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 500px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-products {
        max-height: none; /* remove scroll on mobile */
        overflow: visible;
    }

    .footer-bottom-inner {
        align-items: center;
        text-align: center;
    }
    .copyright,
    .powered {
        width: 100%;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}
