@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;
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    background: #ffffff;
    color: #000000;
    font-family: var(--font-sans);
    overflow-x: hidden;
}

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: 9999;
    overflow-y: visible;
}

.nav-container {
    position: relative;
    z-index: 9999;
    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: 10000;
}

/* 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;
    min-width: 180px;
    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;
    }
}

/* ---------- Hero (category title + sub-tabs) ---------- */
.product-hero {
    text-align: center;
    padding: 40px 12px 10px;
    background: linear-gradient(180deg, rgba(250, 248, 246, 1), rgba(248, 249, 252, 1));
    border-bottom: 1px solid rgba(10, 20, 30, 0.03);
}

.hero-title {
    font-family: "Merriweather", serif;
    color: var(--accent-gold);
    font-size: clamp(1.6rem, 3.8vw, 2.6rem);
    margin: 0 0 14px;
    letter-spacing: .01em;
    text-shadow: 0 8px 20px rgba(2, 8, 20, 0.08);
}

/* SUB TABS CONTAINER */
.sub-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;            
    padding: 10px 10px 14px;
    margin-top: 10px;
    
    scrollbar-width: none;          /* Firefox */
}

.sub-tabs::-webkit-scrollbar {
    display: none;                  /* Chrome */
}

/* SUB PILLS */
.sub-pill {
    flex: 0 0 auto;                 /* prevent shrinking */
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 999px;
    border: 1px solid lightgray;
    font-weight: bold;
    font-size: 15px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #122335;
    text-decoration: none;
}

/* HOVER */
.sub-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(6, 12, 24, 0.08);
    outline: 2px solid rgba(230, 145, 0, 0.4);
    outline-offset: 3px;
    background: linear-gradient(135deg, #e5c97b, #ffb300);
}

/* ACTIVE STATE (MORE PREMIUM) */
.sub-pill.active {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-2));
    color: #081018;
    border: none;
    box-shadow: 0 10px 30px rgba(230, 145, 0, 0.25);
    transform: translateY(-3px) scale(1.04);
}

/* CLICK EFFECT */
.sub-pill:active {
    transform: scale(0.96);
}

/* FOCUS (ACCESSIBILITY) */
.sub-pill:focus {
    outline: 2px solid rgba(230, 145, 0, 0.4);
    outline-offset: 3px;
    background: linear-gradient(135deg, #e5c97b, #ffb300);
}
/* ---------- Product detail grid ---------- */
.product-detail {
    max-width: 1200px;
    margin: 34px auto 40px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
    transition: all 360ms ease;
}

.p-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(6, 12, 24, 0.10);
    transition: transform 520ms cubic-bezier(.2, .9, .25, 1), filter 320ms;
    transform-origin: center;
    border: 6px solid rgba(255, 255, 255, 0.6);
    background: linear-gradient(180deg, #fff, #fafafa);
}

/* subtle hover scale on desktop */
@media (hover:hover) {
    .p-img img:hover {
        transform: scale(1.02) translateY(-4px);
        filter: brightness(1.02);
    }
}

.p-info h2 {
    font-family: "Merriweather", serif;
    font-size: clamp(1.25rem, 2.4vw, 1.9rem);
    margin: 0 0 12px;
    color: #0b2133;
}

.p-info p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 22px;
    font-size: 0.98rem;
}

.p-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.badge-soft {
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.06), rgba(111, 60, 255, 0.03));
    color: #0b2340;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: inset 0 -6px 14px rgba(111, 60, 255, 0.02);
}

.cta-btn {
    display: inline-block;
    background: #ffffff;
    padding: 18px 20px;
    color: #122335;
    border-radius: 999px;
    border: 1px solid lightgray;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    font-size: 15px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 76px rgba(226, 147, 16, 0.20);
}

/* small animation for content swap */
.fade-in {
    animation: fadeInUp 420ms ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------- RESPONSIVE ADJUSTMENTS ---------------- */
/* tablets and smaller: stack product-detail and tighten spacing */
@media (max-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 18px;
        padding: 0 14px;
    }
    .p-img img {
        height: 360px;
    }
    .related-wrap {
        padding: 14px;
    }
    .related-title {
        font-size: 1.25rem;
    }
}
/* =============Whatsapp Floater============== */

/* 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);
}

/* ============== Footer ============= */

.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;
}

.social-icon {
    width: 18px;
    height: 18px;
}


@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;
}