@import url("https://cdn.jsdelivr.net/npm/remixicon@4.2.0/fonts/remixicon.css");

: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;
    }
}


/* ========================  NEW HERO SECTION ================================= */
.tensile-hero {
    padding: 100px 30px 80px 40px;
    background: radial-gradient(circle at top left, #fff7ea 0, #ffffff 40%, #f7f8ff 100%);
    position: relative;
    overflow: hidden;
    /* background-image: url('/assets/hero-img/hero-bg-2.jpg'); */
    /* background: linear-gradient(50deg, #012a48, #402488, #012a48); */
    background: linear-gradient(50deg, #012a48, #0d4872, #012a48);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* little doodle background similar to travel hero */
.tensile-hero::before {
    content: "";
    position: absolute;
    inset: -120px;
    background-image: radial-gradient(circle at 10% 20%, #fbd38d 0, transparent 55%),
        radial-gradient(circle at 85% 10%, #c4b5fd 0, transparent 60%),
        radial-gradient(circle at 70% 85%, #a5f3fc 0, transparent 60%);
    opacity: 0.15;
    z-index: -1;
}

.tensile-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

/* LEFT SIDE */
.tensile-hero-copy {
    flex: 1 1 50%;
    max-width: 520px;
}

.hero-kicker {
    color: #eca128;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 8px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.hero-heading {
    font-family: "Merriweather", serif;
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 16px;
    color: #ffffff;
}

.hero-lead {
    font-size: 0.98rem;
    color: #e9e9e9;
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
    font-style: none;

}

.hero-cta-row a {
    font-style: none;
    text-decoration: none;
}

.hero-primary-btn {
    background: #0d3ca3;
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
}

.hero-primary-btn:hover {
    background: #000;
    color: #fff;
}

.hero-secondary-btn {
    background: #f2ab1e;
    color: #363638;
    padding: 10px 18px;
    border-radius: 10px;
    /* border: 1px solid #e5e7eb; */
    font-weight: 600;
}

.hero-secondary-btn:hover {
    background: #f3f4ff;
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.hero-avatars {
    display: inline-flex;
    align-items: center;
}

.avatar-dot {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #facc15);
    border: 2px solid #fff;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.25);
    margin-left: -8px;
}

.avatar-dot:first-child {
    margin-left: 0;
}

.hero-trust-text {
    font-size: 0.9rem;
    color: #ffffff;
}

/* RIGHT SIDE – visual stack */
.tensile-hero-visual {
    position: relative;
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* big rounded frame like the travel hero */
.hero-orbit-frame {
    position: relative;
    width: min(900px, 80vw);
    height: min(500px, 90vw);
    border-radius: 200px 0px 0px 600px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.35);
    background: #020617;
}

/* slides */
.hero-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-shot.is-active {
    opacity: 1;
}

/* small label pill at bottom of frame */
.hero-step-pill {
    position: absolute;
    left: 55%;
    top: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 18px;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.349);
    color: #f9fafb;
    padding: 6px 14px;
    border-radius: 10px 10px 10px 50px;
    font-size: 30px;
    font-weight: 600;
    backdrop-filter: blur(1px);
    width: 32rem;
    /* box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4); */
}

/* floating badge top-left of frame */
.hero-floating-badge {
    position: absolute;
    top: 10px;
    left: 4%;
    transform: translateY(-40%);
    background: #f97316;
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(248, 114, 23, 0.55);
}

/* smaller overlapping card */
.hero-secondary-frame {
    position: absolute;
    bottom: 6%;
    right: 0;
    width: 210px;
    height: 160px;
    border-radius: 40% 60% 55% 45%;
    background: #fff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.hero-secondary-text {
    font-size: 0.86rem;
    text-align: center;
    color: #111827;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .tensile-hero-inner {
        flex-direction: column;
        text-align: left;
    }

    .tensile-hero-copy {
        max-width: none;
    }

    .tensile-hero-visual {
        margin-top: 18px;
    }
}

@media (max-width: 640px) {
    .tensile-hero {
        padding-top: 40px;
    }

    .hero-orbit-frame {
        width: min(320px, 86vw);
        height: min(410px, 900vw);
        border-radius: 20px;
    }

    .hero-secondary-frame {
        width: 190px;
        height: 140px;
    }

    .hero-step-pill {

        font-size: 17px;
    }

}

/* ====================================HERO========================= */

.hero-sec {
    margin-top: 0;
    padding-top: 0;
}

.hero-crossfade {
    position: relative;
    width: 100%;
    height: var(--hero-h);
    max-height: 980px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(3, 10, 25, 0.08);
    z-index: 1;
}

.hero-crossfade .slides {
    position: absolute;
    inset: 0;
    display: block;
}

.hero-text-btn {
    background: linear-gradient(135deg, #947be5, #ff00ea);
    border: none;
    height: 50px;
    width: 200px;
    color: white;
    font-size: 20px;
}

.slide {
    position: absolute;
    inset: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    transition: opacity 900ms cubic-bezier(.22, .9, .35, 1);
    opacity: 0;
    pointer-events: none;
}

.slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
}

.slide-img {
    grid-column: 1/-1;
    grid-row: 1/-1;
    width: 100%;
    height: 100%;
    object-fit: var(--hero-fit);
    object-position: center right;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 5;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.06) 100%);
    pointer-events: none;
}

.slide-caption {
    position: absolute !important;
    left: 6%;
    top: 25%;
    transform: translateY(-50%);
    width: min(920px, 86%);
    padding: 32px 40px;
    z-index: 9999 !important;
    background-color: #282828b3;
    color: #fff !important;
    border-radius: 10px;
}

.slide-caption h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 3.2rem);
    margin: 0 0 12px;
    line-height: 1.02;
    font-weight: 700;
    text-shadow: 0 8px 30px rgba(2, 8, 20, 0.4);
}

.slide-caption p {
    margin: 0 0 18px;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.94);
    font-weight: 500;
}

.controls {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 10;
}

.dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.dots button {
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 50%;
    border: none;
    background: rgb(202, 211, 246);
    transition: all .25s ease;
    box-shadow: 0 6px 14px rgba(2, 8, 24, 0.12);
}

.dots button.active {
    background: #9ea4f0;
    transform: scale(1.25);
}

@media (max-width:992px) {
    .slide {
        display: block;
        position: relative;
    }

    .hero-crossfade {
        height: 80vh !important;
        min-height: 520px;
    }

    .slide-img {
        object-fit: cover !important;
        object-position: center !important;
        width: 100%;
        height: 100%;
    }

    .slide-caption {
        left: 5%;
        right: 5%;
        top: 52%;
        transform: translateY(-52%);
        padding: 18px;
        width: auto;
        text-align: left;
    }

    .slide-caption {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

/* ########################### HERO ########################### */

/* ====================== 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;
}

.about-view-btn {
    background-color: #012a48;
    color: white;
}


/* ========================== PRODUCT SEC ========================== */

.product-sec {
    background: linear-gradient(180deg, 360deg, #ffffff, #fff1d1);
    /* background: ghostwhite; */
}

.products-wrap {
    --max-width: 1200px;
    max-width: var(--max-width);
    margin: 60px auto;
    padding: 40px 20px 72px;
    box-sizing: border-box;
    position: relative;

}

.product-text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    text-align: center;
}

.products-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;

}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    padding: 6px 0;
    box-sizing: content-box;
}

.carousel-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    transition: transform 600ms cubic-bezier(.22, .9, .35, 1);
    will-change: transform;
}

.carousel-track>* {
    flex: 0 0 auto;
    box-sizing: border-box;
}

.products-carousel .product-card {
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: transform .28s ease;
    overflow: hidden;
    padding: 18px;
    min-height: 320px;
    font-size: 14px;
    width: 330px;
    border: 1px solid rgb(197, 195, 195);
}

.product-icon {
    width: 100%;
    max-width: 320px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 8px 22px rgba(2, 8, 20, 0.04);
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
    transition: transform .35s ease;
}

.product-card:hover .product-icon img {
    transform: scale(1.04);
}

.product-body {
    width: 100%;
    padding: 6px 8px 0;
    box-sizing: border-box;
}

.product-body h5 {
    margin: 6px 0 8px;
    font-size: 1.05rem;
    color: #0b2340;
    font-weight: 700;
}

.product-list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #3a4856;
    font-size: 0.95rem;
    line-height: 1.45;
    text-align: left;
}

.product-list li {
    margin-bottom: 6px;
}

.carousel-btn {
    background: rgba(10, 16, 30, 0.06);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(2, 8, 20, 0.06);
}

.carousel-btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 1100px) {
    .products-carousel .product-card {
        min-width: 220px;
        max-width: 320px;
        min-height: 300px;
    }

    .product-icon {
        height: 160px;
        max-width: 280px;
    }
}

@media (max-width: 720px) {
    .product-card {
        width: 240px !important;
    }

    .products-carousel {
        gap: 8px;
    }

    .carousel-viewport {
        padding: 0;
    }

    .carousel-track {
        gap: 12px;
    }

    .products-carousel .product-card {
        min-width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        min-height: auto;
        padding: 14px;
        border-radius: 14px;
    }

    .product-icon {
        width: 100%;
        height: 240px;
        max-width: 100%;
        border-radius: 12px;
    }

    .product-body {
        padding: 8px 4px 12px;
    }

    .product-list {
        font-size: 0.98rem;
        text-align: left;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}

.products-carousel .product-card:focus-within,
.products-carousel .product-card:focus {
    outline: 3px solid rgba(168, 90, 214, 0.12);
    outline-offset: 4px;
}

.products-carousel .product-card.animate-on-scroll {
    opacity: 0;
    transform: translateY(12px) scale(.995);
    transition: opacity 520ms ease, transform 520ms ease;
}

.products-carousel .product-card.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ############################## PRODUCT SEC ##############################  */


/* ========================== OUR CLIENTS ============================== */

@media (max-width: 900px) {
    .client-logo-wrap {
        min-width: 96px;
        max-width: 120px;
        height: 64px;
    }

    .products-carousel .product-card {
        min-width: 220px;
        max-width: 300px;
    }

    .clients-track {
        gap: 16px;
    }
}

.clients-section {
    background-color: #cfd3f744;
    /* background: linear-gradient(60deg, #ffffff, #d3d1ff); */

    overflow: hidden;
    padding: 90px 8px;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.clients-header {
    text-align: center;
    margin-bottom: 22px;
}

.clients-kicker {
    color: var(--wc-accent-2);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.clients-slider {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 28px;
    align-items: center;
    will-change: transform;
    padding: 12px 4px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: none;
}

.client-logo-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 24px rgba(6, 12, 24, 0.06);
    min-width: 200px;
    max-width: 10px;
    height: 50px;
}

.client-logo-wrap img {
    max-width: 100%;
    max-height: 35px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.clients-track.pause {
    animation-play-state: paused !important;
    transition: none;
}

.clients-track img {
    pointer-events: none;
}


/* ############################## OUR CLIENTS ############################## */


/* ============================== TESTIMONIALS SEC ======================== */

.testimonial-sec {
    /* background: linear-gradient(300deg, #ffffff, #ffd1f7); */
    background: ghostwhite;
}

.testimonial-wrapper {
    padding: 48px 20px;
    max-width: 1200px;
    margin: 36px auto;
    text-align: center;

}

.testimonial-container {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 20rem;
}

.testimonial-window {
    overflow: hidden;
    width: 920px;
    max-width: 84vw;
}

.testimonial-track {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    transition: transform 520ms cubic-bezier(.22, .9, .35, 1);
    padding-bottom: 40px;
}

.test-kicker {
    color: var(--wc-accent-2);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.testimonial-card {
    background: #e3e6fb;
    width: 360px;
    min-width: 360px;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform-origin: center;
    transition: transform 420ms cubic-bezier(.22, .9, .35, 1), box-shadow 360ms;
    opacity: 0.9;
}

.testimonial-card.active {
    transform: translateY(-8px) scale(1.02);
    z-index: 5;
    opacity: 1;
}

.testimonial-card.side {
    transform: translateY(6px) scale(.95);
    opacity: .88;
    z-index: 2;
}

.test-quote-mark {
    position: absolute;
    left: 18px;
    top: -10px;
    font-size: 3rem;
    color: rgba(16, 76, 31, 0.06);
    pointer-events: none;
}

/* .score-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
    width: 76px;
    height: 76px;
    background: linear-gradient(180deg, #1e6ffb, #0d4fe8);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 10px 30px rgba(13, 79, 194, 0.18);
    z-index: 6;
    border: 6px solid #fff;
} */

.test-arrow-btn {
    background: rgba(10, 16, 30, 0.06);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(2, 8, 20, 0.06);
}

@media (max-width: 780px) {
    .testimonial-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        height: auto;
        padding: 0 12px;
    }

    .testimonial-window {
        width: 100% !important;
        max-width: 100% !important;
    }

    .testimonial-card {
        width: 100% !important;
        min-width: 100% !important;
        margin: 0 auto 12px;
        transform: none !important;
    }

    .testimonial-card.active,
    .testimonial-card.side {
        transform: none !important;
        opacity: 1 !important;
    }

    .score-badge {
        position: relative;
        left: auto;
        transform: none;
        bottom: auto;
        margin: 12px auto 0;
        width: 64px;
        height: 64px;
        border-width: 5px;
        font-size: 1rem;
    }

    .test-arrow-btn {
        display: none;
    }

    .test-quote-mark {
        font-size: 2.2rem;
        left: 12px;
        top: -6px;
    }

    .testimonial-message {
        font-size: 0.98rem;
        line-height: 1.6;
        margin-bottom: 8px;
    }
}

@media (max-width: 420px) {
    .testimonial-card {
        padding: 18px;
    }

    .score-badge {
        width: 56px;
        height: 56px;
        font-size: 0.95rem;
    }
}


/* ##################### TESTIMONIALS SEC #####################*/

/* ======================== 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;
    }
}


/* ##################### WHY CHOOSE US HOME ##################### */

/* ======================== STATS HOME ====================== */
:root {
    --card-size: 300px;
    --inner-size: 200px;
    --dot-size: 18px;
    --ring-width: 3px;
    --ring-color: #4a90ff;
}

.stats-sec {
    background: linear-gradient(360deg, #ffffff, #abcae0);
    background-color: #e0e8fb69;
    padding: 30px;
}

.stats-heading {

    padding: 80px;
}

.stats-row {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding: 18px;
    margin: 0 auto 44px;
}

.stats-row .inner {
    background-color: #000;
}

.stat {
    width: var(--card-size);
    aspect-ratio: 1/1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    cursor: default;
    transition: transform .18s ease;
}

.stat .ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: var(--ring-width) solid var(--ring-color);
    z-index: 1;
    background: transparent;
}

.stat .inner {
    width: var(--inner-size);
    height: var(--inner-size);
    border-radius: 50%;
    background: rgba(211, 224, 246, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 8px 22px rgba(15, 20, 30, 0.04);
    text-align: center;
    padding: 18px;
}

.value {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: #0b0b0b;
}

.label {
    margin-top: 8px;
    color: #263238;
    font-weight: 500;
    font-size: 0.95rem;
}

.rotator {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    z-index: 4;
    pointer-events: none;
}

.rotator .dot {
    width: var(--dot-size);
    height: var(--dot-size);
    margin-left: calc(-1 * var(--dot-size) / 2);
    margin-top: calc(-1 * var(--dot-size) / 2);
    border-radius: 50%;
    background: #0d6efd;
    box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.12), 0 0 0 10px rgba(13, 110, 253, 0.06);
    transform: translate(0, -120px);
    transition: transform 260ms cubic-bezier(.18, .9, .32, 1), opacity 220ms;
    opacity: 0.95;
}

.rotator.spinning .dot,
.rotator.spinning {
    transition: none !important;
}

.rotator .dot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(2, 8, 20, 0.12);
}

.stat:hover .inner {
    transform: translateY(-6px);
    transition: transform .22s ease;
}

@media (max-width:992px) {
    :root {
        --card-size: 240px;
        --inner-size: 160px;
        --dot-size: 16px;
    }

    .stats-row {
        gap: 36px;
    }
}

@media (max-width:640px) {
    :root {
        --card-size: 180px;
        --inner-size: 120px;
        --dot-size: 14px;
    }

    .stats-row {
        gap: 20px;
    }
}


/* xxxxxxxxxxxxxxxxxxxxxx STATS XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXx */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.thumb {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(2, 8, 20, 0.04);
    cursor: zoom-in;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 160px;
}

.thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.thumb:hover img {
    transform: scale(1.03);
}

.full-gallery-modal,
.lightbox {
    --bg: rgba(3, 10, 20, 0.72);
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.lightbox.active,
.full-gallery-modal.active {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: calc(100% - 60px);
    max-height: calc(100% - 60px);
    width: min(1100px, 92%);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(#fff, #fff);
    box-shadow: 0 40px 120px rgba(2, 8, 20, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
}

.lightbox-close,
.lb-prev,
.lb-next {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lb-prev,
.lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
}

.lb-prev {
    left: 12px;
    right: auto;
}

.lb-next {
    right: 12px;
    left: auto;
}

.lb-close {
    right: 14px;
    top: 14px;
}

.site-footer {
    /* background: #0a1e33; */
    background: linear-gradient(50deg, #012a48, #0d4872, #012a48);
    color: rgba(255, 255, 255, 0.95);
    padding-top: 40px;
    padding-bottom: 18px;
    font-family: "Poppins", sans-serif;
    line-height: 1.45;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    align-items: start;
}

.footer-about .footer-logo {
    width: 140px;
    max-width: 100%;
    border-radius: 8px;
    background: white;
    padding: 8px;
    display: block;
    object-fit: contain;
}

.footer-desc {
    margin-top: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 44ch;
}

.btn-download {
    display: inline-block;
    margin-top: 12px;
    background: #a85ad6;
    padding: 10px 14px;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(168, 90, 214, 0.28);
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.03rem;
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color .16s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.88);
}

.contact-meta div {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.socials {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.social {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}

.social:hover {
    background: #a85ad6;
    transform: translateY(-4px);
}

.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;
}

.copyright {
    white-space: nowrap;
}

.powered {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .footer-about .footer-logo {
        width: 120px;
    }

    .footer-desc {
        max-width: 48ch;
        font-size: 0.94rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 8px;
    }

    .copyright,
    .powered {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 14px;
    }

    .footer-about .footer-logo {
        width: 110px;
    }

    .footer-desc {
        font-size: 0.92rem;
        max-width: 100%;
    }

    .footer-bottom-inner {
        align-items: center;
        text-align: center;
    }

    .copyright,
    .powered {
        width: 100%;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}

.footer-links a:focus,
.footer-contact a:focus,
.btn-download:focus,
.social:focus {
    outline: 3px solid rgba(168, 90, 214, 0.16);
    outline-offset: 3px;
    border-radius: 8px;
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #ffffff10;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    transition: 0.3s ease;
}

.social:hover {
    background: #5a2ee8;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(90, 46, 232, .35);
    color: #fff;
}



/* =======================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);
}