﻿:root {
    /* Brand colours */
    --primary: #15579a;
    --primary-dark: #103c68;
    --accent: #2f7fbe;
    /* Text colours */
    --ink: #172433;
    --muted: #667085;
    /* Neutral backgrounds */
    --soft: #f6f8fa;
    --soft-blue: #edf4f9;
    --border: #e2e7ec;
    --white: #ffffff;
    /* Neutral shadow */
    --shadow: 0 16px 40px rgba(16, 32, 57, 0.09);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none !important;
}

html {
    scroll-behavior: smooth;
}

p {
    text-align: justify;
    font-weight: 500 !important;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background: #ffffff;
    line-height: 1.7;
}

Text-Center {
    text-align: center;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button, input, textarea, select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.topbar {
    background: var(--primary-dark);
    color: #dce7ff;
    font-size: 13px;
}

.topbar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}


.hero-stats i {
    font-size: 35px;
    color: #0f3fa7;
    font-weight: 600;
}

.topbar-inner p {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-social {
    margin-left: auto;
    display: flex;
    gap: 12px;
}

    .top-social a {
        font-size: 17px;
    }

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(3px);
    border-bottom: 1px solid rgba(15,63,167,.08);
}



.nav-wrap {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .brand img {
        width: 72px;
        height: 52px;
        object-fit: contain;
    }

    .brand strong {
        display: block;
        font-size: 35px;
        letter-spacing: 1px;
        color: #0f3fa7;
        line-height: 1;
        font-weight: 900;
        font-family: Gotham;
    }

.header.scrolled .brand strong {
    color: var(--primary);
}

.brand span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .nav a {
        font-weight: 700;
        font-size: 14px;
        position: relative;
        color: #fff;
    }

        .nav a:not(.nav-cta)::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            background: #fff;
            transition: .3s;
        }

        .nav a:hover::after, .nav a.active::after {
            width: 100%;
            color: #fe0909;
        }

.nav-cta {
    color: white;
    background: var(--primary);
    padding: 12px 18px;
    border-radius: 10px;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    color: var(--primary);
}

.hero {
    position: relative;
    background: var(--soft);
}

.product-sub-heading {
    display: flex;
    justify-content: flex-start;
    column-gap: 20px;
    margin: 20px 0px;
    color: #000000;
    font-weight: 600;
}

.hero-slider {
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 0.8s ease, transform 1.2s ease, visibility 0.8s ease;
}

    .slide.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    /* Neutral overlay—blue dominance কমাবে */
    .slide::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient( 90deg, rgba(7, 14, 22, 0.76) 0%, rgba(9, 18, 28, 0.58) 30%, rgba(10, 20, 30, 0.28) 55%, rgba(10, 20, 30, 0.06) 76%, transparent 100% );
    }

/* Slider images */
.slide-one {
    background-image: url("../images/Slide4.jpeg");
}

.slide-two {
    background-image: url("../images/Slide3.jpeg");
}

.slide-three {
    background-image: url("../images/Slide2.jpeg");
}

.slide-Four {
    background-image: url("../images/Slide1.jpeg");
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding-bottom: 40px;
}

    .hero-content > * {
        max-width: 720px;
    }

.eyebrow, .section-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    font-weight: 800;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 16px;
}

.hero .eyebrow {
    color: #9fc4ff;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 4.2vw, 58px);
    line-height: 1.08;
    max-width: 760px;
    color: #ffffff;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.25);
}

.hero p {
   color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    max-width: 720px;
    line-height: 1.7;
    word-spacing: normal;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}


.btn {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: .25s;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 24px rgba(15,63,167,.28);
}

.hero .btn-primary {
    background: white;
    color: var(--primary);
}

.btn-light {
    border: 1px solid rgba(255,255,255,.45);
    color: white;
    background: rgba(255,255,255,.08);
}

.slider-controls {
    position: absolute;
    z-index: 5;
    right: max(30px, calc((100vw - 1180px)/2));
    bottom: 120px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .slider-controls a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.45);
        background: rgba(255,255,255,.1);
        color: white;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.dots {
    display: flex;
    gap: 7px;
}

    .dots a {
        width: 9px;
        height: 9px;
        border: 0;
        background: rgba(255,255,255,.45);
    }

        .dots a.active {
            width: 28px;
            border-radius: 99px;
            background: white;
        }

.hero-stats {
    position: absolute;
    z-index: 6;
    bottom: -54px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-height: 108px;
    box-shadow: var(--shadow);
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

    .hero-stats div {
        padding: 5px 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-right: 1px solid var(--border);
        text-align: center;
    }

        .hero-stats div:last-child {
            border-right: 0;
        }

    .hero-stats strong {
        color: var(--primary);
        font-size: 24px;
    }

    .hero-stats span {
        color: var(--muted);
        font-size: 13px;
    }

.section {
    padding: 40px 0;
}

.about {
    padding-top: 160px;
}

.about-grid, .feedback-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*align-items: center;*/
    gap: 72px;
}

.about-visual {
    position: relative;
    min-height: 430px;
    /*background: linear-gradient(135deg,#f2f7ff,#dfeaff);*/
    border-radius: 28px;
    display: grid;
    place-items: center;
    /*overflow: hidden;*/
}


    .about-visual::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        /*background: rgba(15,63,167,.08);*/
        border-radius: 50%;
        right: -80px;
        bottom: -80px;
    }

.logo-card {
    background: #e9e4e4;
    width: 76%;
    padding: 20px;
    border-radius: 22px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    transform: rotate(-2deg);
}

.about-badge {
    position: absolute;
    right: 20px;
    bottom: 22px;
    z-index: 2;
    background: var(--primary);
    color: white;
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

    .about-badge i {
        font-size: 34px;
    }

.section-copy h2, .section-heading h2, .why-grid h2, .feedback h2, .contact h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4.5vw, 40px);
    line-height: 1.16;
    margin-bottom: 20px;
}


.section-copy p, .section-heading p, .feedback p {
    color: #000;
}

.feature-list {
    display: grid;
    gap: 2px;
    margin: 5px 0;
}

    .feature-list div {
        display: flex;
        gap: 10px;
        align-items: center;
        font-weight: 700;
    }

    .feature-list i {
        color: var(--accent);
        font-size: 19px;
    }

.text-link {
    color: var(--primary);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.products {
    background: #f8faff;
}

.section-heading {
    /*max-width: 760px;*/
    margin-bottom: 48px;
}

    .section-heading.center {
        margin-inline: auto;
        text-align: center;
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    transition: .3s;
    /*min-height: 310px;*/
    display: flex;
    flex-direction: column;
    box-shadow: rgb(106 121 159) 0px 50px 100px -20px, rgb(44 45 49) 0px 30px 60px -30px, rgb(23 37 69) 0px -2px 6px 0px inset;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow);
        border-color: transparent;
        background: var(--primary);
        color: white;
    }

.product-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--soft);
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 22px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.product-card p {
    color: var(--muted);
    font-size: 14px;
}

.product-card:hover p {
    color: #fff;
}

.product-card a {
    /*margin-top: auto;*/
    /*padding-top: 22px;*/
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
}

.product-card:hover a {
    color: #fff;
}

.featured-product {
    background: var(--primary);
    color: white;
}

    .featured-product .product-icon {
        background: rgba(255,255,255,.15);
        color: white;
    }

    .featured-product p, .featured-product a {
        color: #dbe7ff;
    }

.why-us {
    background: linear-gradient(135deg,var(--primary-dark),var(--primary));
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: .85fr 1.4fr;
    gap: 70px;
    align-items: center;
}

.section-kicker.light {
    color: #9fc4ff;
}

.why-grid > div:first-child p {
    color: #c9dafb;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

    .why-cards > div {
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.16);
        padding: 28px;
        border-radius: 18px;
        box-shadow: rgb(255 250 250 / 64%) 0px 5px 15px;
    }

    .why-cards i {
        font-size: 32px;
        color: #e0ecfd;
        background-color: #22304d;
        padding: 8px;
        border-radius: 20%;
    }

    .why-cards h3 {
        margin: 14px 0 8px;
    }

    .why-cards p {
        color: #cbdcff;
        font-size: 13px;
    }

.client-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

    .client-grid div {
        min-height: 130px;
        border: 1px solid var(--border);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        background: white;
        transition: .3s;
    }

        .client-grid div:hover {
            box-shadow: var(--shadow);
            transform: translateY(-4px);
        }

    .client-grid i {
        font-size: 34px;
        color: var(--primary);
    }

    .client-grid span {
        font-weight: 800;
    }

.feedback {
    background: #f4f8ff;
}

.contact-mini {
    display: grid;
    gap: 15px;
    margin-top: 28px;
}

    .contact-mini div {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .contact-mini i {
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        background: white;
        color: var(--primary);
        border-radius: 12px;
        font-size: 22px;
        box-shadow: 0 8px 20px rgba(15,63,167,.08);
    }

    .contact-mini small {
        display: block;
        color: var(--muted);
    }

.feedback-form {
    background: white;
    padding: 34px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 17px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feedback-form label {
    font-weight: 800;
    font-size: 13px;
}

.feedback-form input, .feedback-form select, .feedback-form textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 13px 14px;
    outline: none;
    background: #fbfcff;
    font-weight: 500;
}

    .feedback-form input:focus, .feedback-form select:focus, .feedback-form textarea:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 4px rgba(31,115,232,.1);
    }

.full {
    width: 100%;
}

.form-status {
    min-height: 22px;
    font-size: 13px;
    color: var(--primary) !important;
    font-weight: 700;
    text-align: center;
}

.contact {
    padding-bottom: 90px;
}

.contact-panel {
    background: linear-gradient(145deg,var(--primary-dark),var(--primary));
    color: white;
    border-radius: 24px;
    padding: 26px;
}

    .contact-panel p {
        color: #cbdcff;
    }

.contact-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

    .contact-list div {
        display: flex;
        gap: 14px;
    }

    .contact-list i {
        font-size: 23px;
        color: #a8cbff;
    }

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

    .contact-social a {
        border: 1px solid rgba(255,255,255,.2);
        padding: 9px 14px;
        border-radius: 10px;
        font-size: 13px;
    }

.map-placeholder {
    min-height: 500px;
    border-radius: 24px;
    display: grid;
    place-content: center;
    text-align: center;
    background: repeating-linear-gradient(45deg,#eef3fb,#eef3fb 18px,#e7edf7 18px,#e7edf7 36px);
    color: var(--muted);
}

    .map-placeholder i {
        font-size: 62px;
        color: var(--primary);
    }

    .map-placeholder h3 {
        color: var(--ink);
        font-size: 24px;
    }

.footer {
    background: #071a42;
    color: #dce7ff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(2,1fr);
    gap: 50px;
}

.footer-brand img {
    width: 110px;
    background: white;
    padding: 6px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 320px;
     color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.footer h4 {
    color: white;
    margin-bottom: 15px;
}

.footer a {
    display: block;
    color: #b9cae7;
    font-size: 14px;
    margin: 8px 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border: 1px solid #304775;
        border-radius: 50%;
    }

.footer-bottom {
    margin-top: 46px;
    padding-top: 18px;
    border-top: 1px solid #253b67;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(15,63,167,.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    cursor: pointer;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

        .footer-grid > div:last-child {
            grid-column: span 3;
        }
}

@media (max-width: 840px) {
    .topbar {
        display: none;
    }

    .nav-wrap {
        min-height: 76px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 76px;
        right: -100%;
        width: min(330px, 86vw);
        height: calc(100vh - 76px);
        background: white;
        box-shadow: -12px 18px 40px rgba(0,0,0,.12);
        padding: 30px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        transition: .35s;
    }

        .nav.open {
            right: 0;
        }

        .nav a {
            padding: 12px;
        }

            .nav a::after {
                display: none;
            }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .hero-slider {
        min-height: 620px;
    }

    .slider-controls {
        bottom: 118px;
        right: 24px;
    }

    .hero-stats {
        width: calc(100% - 40px);
    }

    .about-grid, .feedback-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-visual {
        min-height: 360px;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .client-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 28px,1180px);
    }

    .brand img {
        width: 60px;
        height: 44px;
    }

    .brand strong {
        font-size: 20px;
    }

    .brand span {
        font-size: 10px;
    }

    .hero-slider {
        min-height: 680px;
    }

    .hero-content {
        padding-top: 30px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: -74px;
    }

        .hero-stats div {
            border-right: 0;
            border-bottom: 1px solid var(--border);
            text-align: center;
        }

            .hero-stats div:last-child {
                border-bottom: 0;
            }

    .slider-controls {
        bottom: 94px;
    }

    .section {
        padding: 40px 0;
    }

    .about {
        padding-top: 80px;
    }

    .product-grid, .client-grid, .form-row {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

        .footer-grid > div:first-child, .footer-grid > div:last-child {
            grid-column: span 2;
        }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
    }

    .feedback-form, .contact-panel {
        padding: 24px;
    }
}

/* Responsive product dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    border: 0;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
}

    .dropdown-toggle i {
        font-size: 18px;
        transition: transform .25s ease;
    }

.nav-dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translate(-50%, 12px);
    min-width: 245px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 63, 167, .18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease;
}

    .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -7px;
        left: 60%;
        width: 14px;
        height: 14px;
        background: white;
        border-left: 1px solid var(--border);
        border-top: 1px solid var(--border);
        transform: translateX(-50%) rotate(45deg);
    }

    .dropdown-menu a {
        display: block;
        padding: 3px 20px;
        border-radius: 10px;
        color: var(--ink);
        font-size: 13px;
        white-space: nowrap;
    }

        .dropdown-menu a:hover {
            background: var(--soft);
            color: var(--primary);
        }

        .dropdown-menu a::after {
            display: none !important;
        }

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.product-card {
    scroll-margin-top: 115px;
}

@media (max-width: 840px) {
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 12px;
        font-size: 14px;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        min-width: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0 8px;
        border: 0;
        border-radius: 10px;
        box-shadow: none;
        background: #f5f8ff;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: max-height .35s ease, padding .35s ease;
    }

        .dropdown-menu::before {
            display: none;
        }

    .nav-dropdown.open .dropdown-menu {
        max-height: 460px;
        padding: 8px;
    }

    .dropdown-menu a {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Grouped product mega dropdown */
.product-mega-menu {
    width: min(760px, 92vw);
    min-width: 700px;
    display: grid;
    grid-template-columns: 1.25fr 1px 1fr;
    gap: 18px;
    padding: 18px;
    left: 50%;
}

.product-menu-group {
    min-width: 0;
}

.product-menu-title {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px 10px !important;
    margin-bottom: 6px;
    border-radius: 12px;
    /*background: linear-gradient(135deg, var(--primary), var(--primary-dark));*/
    color: var(--primary) !important;
    font-size: 16px !important;
    font-weight: 800;
}

    .product-menu-title i {
        font-size: 25px;
    }

.product-submenu {
    display: grid;
    gap: 3px;
}

    .product-submenu > a,
    .nested-product-title,
    .nested-product-menu a {
        display: flex !important;
        align-items: center;
        gap: 8px;
        white-space: normal !important;
        line-height: 1.35;
    }

        .product-submenu > a span,
        .nested-product-title span {
            color: var(--primary);
            font-weight: 800;
        }

.product-menu-divider {
    width: 1px;
    background: var(--border);
}

.nested-product-group {
    position: relative;
}

.nested-product-title {
    justify-content: flex-start;
}

    .nested-product-title i {
        margin-left: auto;
        font-size: 18px;
    }

.nested-product-menu {
    position: absolute;
    top: -8px;
    left: calc(100% + 12px);
    width: 230px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15,63,167,.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: .22s ease;
    z-index: 20;
}

.nested-product-group:hover .nested-product-menu,
.nested-product-group:focus-within .nested-product-menu,
.nested-product-group.open .nested-product-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.nested-product-menu a {
    padding: 9px 10px !important;
}

@media (max-width: 840px) {
    .product-mega-menu {
        min-width: 0;
        width: 100%;
        display: block;
        padding: 8px;
    }

    .product-menu-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }

    .product-menu-title {
        margin-top: 5px;
    }

    .nested-product-menu {
        position: static;
        width: auto;
        margin: 2px 0 6px 18px;
        padding: 0 0 0 10px;
        border: 0;
        border-left: 2px solid var(--border);
        border-radius: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: max-height .28s ease;
    }

    .nested-product-group.open .nested-product-menu {
        max-height: 240px;
    }

    .nested-product-title i {
        transform: rotate(90deg);
    }

    .nested-product-group.open .nested-product-title i {
        transform: rotate(270deg);
    }
}

/* Mobile navigation reliability fixes */
@media (max-width: 840px) {
    body {
        overflow-x: hidden;
    }

    .header {
        z-index: 5000;
    }

    .menu-toggle {
        position: relative;
        z-index: 5002;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        cursor: pointer;
    }

    .nav {
        z-index: 5001;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 80px;
    }

    .nav-dropdown,
    .dropdown-toggle {
        flex: 0 0 auto;
    }

        .nav-dropdown.open .dropdown-menu {
            max-height: 70vh;
            overflow-y: auto;
        }

    .product-mega-menu {
        overflow-x: hidden;
    }

    .nested-product-title {
        cursor: pointer;
    }

    .nested-product-group.open .nested-product-menu {
        max-height: 280px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
}
/* =====================================================
   FIXED RESPONSIVE NAVIGATION
===================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

    body.menu-open {
        overflow: hidden;
        touch-action: none;
    }

.header {
    width: 100%;
}

.nav-wrap {
    position: relative;
}

/* Overlay */

.nav-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(4, 16, 39, 0.56);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 4998;
}

    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

/* Nested product button reset */

.nested-product-title {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-family: inherit;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    border-radius: 10px;
    padding: 10px 12px;
}

    .nested-product-title:hover {
        background: var(--soft);
        color: var(--primary);
    }

/* Desktop only hover behaviour */

@media (min-width: 841px) {

    .nav-dropdown:hover > .dropdown-menu,
    .nav-dropdown:focus-within > .dropdown-menu,
    .nav-dropdown.open > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-60%, 0);
    }

    .nested-product-group:hover > .nested-product-menu,
    .nested-product-group:focus-within > .nested-product-menu,
    .nested-product-group.open > .nested-product-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 840px) {

    .header {
        z-index: 5000;
    }

    .nav-wrap {
        min-height: 76px;
    }

    .menu-toggle {
        position: relative;
        z-index: 5002;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 0;
        border-radius: 10px;
        background: var(--soft);
        color: var(--primary);
        display: grid;
        place-items: center;
        cursor: pointer;
        font-size: 26px;
        line-height: 1;
    }

        .menu-toggle:hover {
            background: #dfeaff;
        }

        .menu-toggle i {
            pointer-events: none;
        }

    .nav {
        position: fixed;
        top: 76px;
        right: 0;
        bottom: 0;
        width: min(360px, 88vw);
        max-width: 100%;
        height: calc(100dvh - 76px);
        min-height: calc(100vh - 76px);
        margin: 0;
        padding: 22px 20px 90px;
        background: #ffffff;
        box-shadow: -18px 20px 50px rgba(0, 0, 0, 0.18);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        transform: translateX(105%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s ease, visibility 0.35s ease;
        z-index: 5001;
    }

        .nav.open {
            right: 0;
            transform: translateX(0);
            visibility: visible;
            pointer-events: auto;
        }

        .nav > a,
        .dropdown-toggle {
            width: 100%;
            min-height: 46px;
            padding: 12px 10px;
            display: flex;
            align-items: center;
            border-radius: 10px;
            font-size: 14px;
            color: #000000;
        }

            .nav > a:hover,
            .nav > a.active {
                background: var(--soft);
                color: var(--primary);
            }

        .nav a::after {
            display: none !important;
        }

    .nav-cta {
        justify-content: center;
        margin-top: 10px;
        color: #ffffff !important;
        background: var(--primary) !important;
    }

    .nav-dropdown {
        width: 100%;
        flex: 0 0 auto;
    }

    .dropdown-toggle {
        justify-content: space-between;
        border: 0;
        background: transparent;
        color: var(--ink);
        cursor: pointer;
    }

        .dropdown-toggle:hover {
            background: var(--soft);
        }

        .dropdown-toggle i {
            transition: transform 0.25s ease;
        }

    .nav-dropdown.open > .dropdown-toggle {
        color: var(--primary);
        background: var(--soft);
    }

        .nav-dropdown.open > .dropdown-toggle i {
            transform: rotate(180deg);
        }

    /* Mobile product dropdown */

    .dropdown-menu,
    .product-mega-menu {
        position: static;
        top: auto;
        left: auto;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        display: block;
        margin: 0;
        padding: 0 8px;
        border: 0;
        border-radius: 12px;
        box-shadow: none;
        background: #f6f8fc;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease, margin 0.3s ease;
    }

        .dropdown-menu::before {
            display: none !important;
        }

    .nav-dropdown.open > .dropdown-menu {
        max-height: 72vh;
        margin-top: 6px;
        padding: 8px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .product-menu-group {
        width: 100%;
        min-width: 0;
    }

    .product-menu-title {
        width: 100%;
        margin: 4px 0 6px;
        padding: 11px 12px !important;
        display: flex !important;
        align-items: center;
        gap: 9px;
        white-space: normal !important;
    }

    .product-menu-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
        background: var(--border);
    }

    .product-submenu {
        width: 100%;
        display: grid;
        gap: 3px;
    }

        .product-submenu > a,
        .nested-product-title,
        .nested-product-menu a {
            width: 100%;
            white-space: normal !important;
            overflow-wrap: anywhere;
            line-height: 1.4;
        }

        .product-submenu > a {
            padding: 10px 11px;
            border-radius: 9px;
        }

    /* Nested Antifungal */

    .nested-product-group {
        width: 100%;
        position: static;
    }

    .nested-product-title {
        display: flex !important;
        align-items: center;
        gap: 8px;
        justify-content: flex-start;
    }

        .nested-product-title i {
            margin-left: auto;
            transform: rotate(90deg);
            transition: transform 0.25s ease;
        }

    .nested-product-group.open > .nested-product-title i {
        transform: rotate(270deg);
    }

    .nested-product-menu {
        position: static;
        width: auto;
        max-width: 100%;
        max-height: 0;
        margin: 0 0 0 18px;
        padding: 0 0 0 10px;
        border: 0;
        border-left: 2px solid var(--border);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nested-product-group.open > .nested-product-menu {
        max-height: 280px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .nested-product-menu a {
        padding: 9px 10px !important;
        border-radius: 8px;
    }
}

/* Small Mobile */

@media (max-width: 480px) {

    .container {
        width: calc(100% - 28px);
    }

    .brand {
        gap: 9px;
        min-width: 0;
    }

        .brand img {
            width: 54px;
            height: 42px;
            flex-shrink: 0;
        }

        .brand strong {
            font-size: 18px;
        }

        .brand span {
            max-width: 145px;
            font-size: 9px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .nav {
        width: min(340px, 90vw);
        padding-left: 16px;
        padding-right: 16px;
    }
}

/*==========================
    Sticky Header
==========================*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    transition: all .35s ease;
    margin-top: 35px;
}

    .header.scrolled {
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
        padding: 0;
        margin-top: 0px;
    }

        .header.scrolled .nav-wrap {
            min-height: 72px;
        }

        .header.scrolled .brand img {
            height: 55px;
            transition: .3s;
        }

        .header.scrolled .nav > a,
        .header.scrolled .dropdown-toggle {
            color: #102039;
        }

            .header.scrolled .nav > a:hover,
            .header.scrolled .dropdown-toggle:hover {
                color: #0b63ce;
            }

/* Page content header এর নিচে চলে না যায় */


@media(max-width:840px) {

    .header {
        background: #fff;
        box-shadow: 0 5px 20px rgba(0,0,0,.08);
        margin-top: 0px;
    }
}

/*loader*/

#pageLoader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity .6s ease, visibility .6s ease;
}

    #pageLoader.hide {
        opacity: 0;
        visibility: hidden;
    }

.loader-box {
    text-align: center;
}

.loader-logo {
    width: 110px;
    margin-bottom: 25px;
    animation: pulseLogo 2s infinite;
}

.loader-ring {
    width: 65px;
    height: 65px;
    margin: auto;
    border: 4px solid #e6edf8;
    border-top: 4px solid #0B63CE;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-box h3 {
    margin-top: 25px;
    font-size: 22px;
    color: #102039;
    font-weight: 700;
}

.loader-box p {
    margin-top: 8px;
    color: #666;
    font-size: 15px;
    letter-spacing: .5px;
}

@keyframes spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseLogo {

    0% {
        transform: scale(.95);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(.95);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background: rgb(136 203 201 / 41%);
    margin-top: 90px;
}

@media (max-width: 575px) {
    .breadcrumbs {
        margin-top: 70px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #676775;
            content: "/";
        }

@media (max-width: 992px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs h2 {
        margin-bottom: 10px;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

.breadcumb-wrapper {
    /*background-color: var(--title-color);*/
    padding: 1px 0 0 0;
    text-align: center;
    background-image: url(../images/aboutus.jpg);
    background-position: center;
    background-size: cover;
}

.breadcumb-title {
    color: #fff;
    margin: -0.18em 0 -0.14em 0;
    line-height: 1.1;
    padding-bottom: 110px;
    font-weight: 700;
    margin-top: 80px;
}

.breadcumb-menu-wrapper {
    position: relative;
}

.breadcumb-menu {
    position: relative;
    max-width: 100%;
    padding: 0;
    list-style-type: none;
    margin: 0;
    background-color: #ffffff;
    min-width: 360px;
    display: inline-block;
    min-height: 30px;
    line-height: 30px;
    padding: 15px 120px;
    margin-bottom: -1px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 50% 100%, 0% 100%, 0% 25%);
    border-top: 10px solid var(--primary-dark);
}

    .breadcumb-menu li {
        display: inline-block;
        margin-right: 3px;
        padding-right: 5px;
        font-family: var(--title-color);
        font-weight: 700;
        font-size: 16px;
        line-height: 26px;
        list-style: none;
        position: relative;
        color: var(--title-color);
    }

        .breadcumb-menu li:after {
            content: "<i class="bi bi-caret-right-fill"></i>";
            position: relative;
            margin-left: 10px;
            font-weight: 600;
            font-size: 15px;
            color: var(--theme-color);
            font-family: var(--icon-font);
        }

@media (max-width: 1199px) {
    .breadcumb-menu {
        margin: 20px 0 -0.5em 0;
    }
}

@media (max-width: 920px) {
    .breadcumb-wrapper {
        padding: 80px 0 0 0;
    }
}

@media (max-width: 575px) {
    .breadcumb-menu {
        min-width: 100%;
        padding: 15px 70px;
    }
}




.product-submenu {
    position: relative;
    display: grid;
    gap: 4px;
    padding-left: 22px;
}

    /* Vertical line */

    .product-submenu::before {
        content: "";
        position: absolute;
        top: 40px;
        bottom: 15px;
        left: 7px;
        width: 1px;
        background: #d7e3f6;
    }

    /* Product link */

    .product-submenu a {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 7px 10px;
        color: #202833;
        border-radius: 8px;
        text-decoration: none;
        transition: .25s ease;
    }

/* Blue dot */

.cic-dot {
    position: absolute;
    top: 14px;
    left: -18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #347ff3;
    box-shadow: 0 0 0 3px #ffffff;
    z-index: 2;
}

.product-submenu a:hover {
    color: #0f3fa7;
    background: #f1f6ff;
    transform: translateX(3px);
}

.product-submenu strong {
    display: block;
    font-size: 12px;
}

.product-submenu small {
    display: block;
    margin-top: 2px;
    color: #747b86;
    font-size: 9px;
}

.product-submenu .sub {
    margin-left: -30px;
    color: #164ab1;
    font-weight: 600;
}

    .product-submenu .sub i {
        background-color: #dcf4fd;
        padding: 8px;
        color: #123d94;
        border-radius: 20px;
        font-size: 18px;
        font-weight: 600;
    }

.product-submenus .card {
    min-height: 165px;
    margin-top: 18px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    display: block;
    grid-template-columns: 1fr 110px;
    gap: 12px;
    border-radius: 15px;
    background: radial-gradient( circle at 100% 100%, rgba(33, 112, 238, .18), transparent 45% ), linear-gradient(135deg, #edf5ff, #dcecff);
}

    .product-submenus .card h4 {
        margin: 0 0 9px;
        color: #103f96;
        font-size: 16px;
        line-height: 1.35;
    }

    .product-submenus .card p {
        max-width: 250px;
        margin: 0 0 14px;
        color: #4e5968;
        font-size: 9px;
        line-height: 1.65;
        text-align: left;
    }

.cic-help-button {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 5px !important;
    color: #fff !important;
    background: #0f4cb5;
    border-radius: 7px !important;
    font-size: 9px !important;
    font-weight: 800;
    height: 30px !important;
    box-shadow: 0 8px 18px rgba(15, 76, 181, .25);
}

    .cic-help-button:hover {
        color: #fff !important;
        background: #0f4cb5 !important;
    }


/* =====================================================
   HISTORY & MILESTONES - FULL RESPONSIVE
===================================================== */

/* IMPORTANT: STOP LEFT-RIGHT SCROLL */



.history-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 90px 0;
    overflow-x: hidden;
    background: radial-gradient( circle at 95% 10%, rgba(15, 63, 167, .07), transparent 28% ), #f8faff;
}



.history-layout {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 55px;
    align-items: start;
}

.history-timeline,
.history-side {
    min-width: 0;
    max-width: 100%;
}

/* =============================================
   TIMELINE
============================================= */


.history-timeline {
    position: relative;
    width: 100%;
    height: 500px;
    /* Scroll থাকবে */
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    border-radius: 20px;
    padding: 10px 15px;
    border: 3px solid #103c68;
    z-index: 200;
    /* Firefox */
    scrollbar-width: none;
    /* Old Edge / IE */
    -ms-overflow-style: none;
}

    /* Chrome / Edge / Safari */
    .history-timeline::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .history-timeline::before {
        content: "";
        position: absolute;
        top: 8px;
        bottom: 15px;
        left: 130px;
        width: 2px;
        background: linear-gradient( to bottom, #0f3fa7, #77aaf1, #2e9659 );
        height: 850px;
    }

.history-item {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 55px;
    padding-bottom: 38px;
}

    .history-item:last-child {
        padding-bottom: 0;
    }

.history-year {
    padding-top: 7px;
    color: #0f3fa7;
    font-size: 13px;
    font-weight: 800;
    text-align: right;
}

.history-dot {
    position: absolute;
    top: 8px;
    left: 107px;
    z-index: 3;
    width: 18px;
    height: 18px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: #0f3fa7;
    box-shadow: 0 0 0 3px rgba(15,63,167,.13);
}

/* =============================================
   HISTORY CARD
============================================= */

.history-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 18px 20px;
    border: 1px solid #e0e7f1;
    border-radius: 17px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .history-card:hover {
        transform: translateY(-4px);
        border-color: #c7d8f3;
        box-shadow: 0 18px 45px rgba(15,63,167,.10);
    }

.history-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #0f3fa7;
    background: #edf4ff;
    font-size: 21px;
}

.history-card h3 {
    color: #17243a;
    font-size: 17px;
}

.history-card > p {
    margin: 0;
    color: #000000;
    font-size: 12.5px;
    line-height: 1.85;
    overflow-wrap: break-word;
}

/* =============================================
   HIGHLIGHT
============================================= */

.history-highlight .history-dot {
    background: #269154;
    box-shadow: 0 0 0 4px rgba(38,145,84,.14);
}

.history-highlight .history-year {
    color: #21844c;
}

.history-highlight .history-card {
    border-color: #cce7d5;
    background: linear-gradient( 135deg, #ffffff, #f4fbf6 );
}

.history-highlight .history-icon {
    color: #21844c;
    background: #e7f7ed;
}

/* BADGE */

.milestone-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 9px;
    border-radius: 50px;
    color: #1e7845;
    background: #e5f6eb;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
}

/* =============================================
   MISSION
============================================= */

.mission-box {
    width: 100%;
    display: flex;
    gap: 12px;
    margin-top: 19px;
    padding: 16px;
    border: 1px solid #d8ebdf;
    border-radius: 12px;
    background: #ffffff;
}

    .mission-box > i {
        flex: 0 0 35px;
        width: 35px;
        height: 35px;
        display: grid;
        place-items: center;
        border-radius: 9px;
        color: #ffffff;
        background: #269154;
        font-size: 17px;
    }

    .mission-box > div {
        min-width: 0;
    }

    .mission-box strong {
        display: block;
        margin-bottom: 4px;
        color: #173b26;
        font-size: 12px;
    }

    .mission-box p {
        margin: 0;
        color: #607064;
        font-size: 11px;
        line-height: 1.7;
        overflow-wrap: break-word;
    }

/* =============================================
   RIGHT IMAGE
============================================= */

.history-side {
    position: sticky;
    top: 120px;
    width: 100%;
}

.history-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 440px;
    overflow: hidden;
    border-radius: 22px;
    background: #e8eef7;
    box-shadow: 0 25px 60px rgba(16,32,57,.14);
}

    .history-image img {
        width: 100%;
        max-width: 100%;
        height: 440px;
        display: block;
        object-fit: cover;
    }

    .history-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(5,25,67,.88), transparent 60% );
    }

.history-image-overlay {
    position: absolute;
    z-index: 3;
    left: 28px;
    right: 28px;
    bottom: 27px;
    max-width: 100%;
}

    .history-image-overlay strong {
        display: block;
        color: #ffffff;
        font-family: "Playfair Display", serif;
        font-size: 34px;
    }

    .history-image-overlay span {
        color: #d9e5f8;
        font-size: 11px;
    }

/* =============================================
   STATS
============================================= */

.history-stats {
    position: relative;
    z-index: 4;
    width: auto;
    max-width: calc(100% - 36px);
    margin: -20px 18px 0;
    padding: 20px 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(16,32,57,.12);
}

    .history-stats div {
        min-width: 0;
        padding: 4px 8px;
        text-align: center;
        border-right: 1px solid #e5eaf1;
    }

        .history-stats div:last-child {
            border-right: 0;
        }

    .history-stats strong {
        display: block;
        margin-bottom: 3px;
        color: #0f3fa7;
        font-size: 18px;
    }

    .history-stats span {
        display: block;
        color: #000;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.4;
        overflow-wrap: break-word;
    }

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .history-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .history-side {
        position: relative;
        top: auto;
        width: 100%;
        max-width: 650px;
        margin: auto;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .history-section {
        width: 100%;
        padding: 55px 0;
        overflow-x: hidden;
    }

    .history-heading {
        width: 100%;
        margin-bottom: 38px;
    }

        .history-heading h2 {
            font-size: 34px;
        }

    /* Timeline line */

    .history-timeline::before {
        left: 9px;
    }

    /* Item */

    .history-item {
        width: 100%;
        display: block;
        padding-left: 35px;
        padding-right: 0;
        padding-bottom: 28px;
    }

    .history-year {
        width: 100%;
        margin-bottom: 8px;
        padding: 0;
        text-align: left;
    }

    .history-dot {
        left: 1px;
        top: 2px;
    }

    /* Card */

    .history-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        border-radius: 14px;
    }

        .history-card h3 {
            padding-right: 0;
            font-size: 16px;
        }

        .history-card > p {
            font-size: 12px;
            text-align: left;
        }

    /* Badge */

    .milestone-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 13px;
    }

    /* Mission */

    .mission-box {
        padding: 13px;
    }

    /* Side */

    .history-side {
        width: 100%;
        max-width: 100%;
        margin-top: 35px;
    }

    .history-image {
        width: 100%;
        max-width: 100%;
        min-height: 330px;
        border-radius: 16px;
    }

        .history-image img {
            width: 100%;
            max-width: 100%;
            height: 330px;
        }

    .history-image-overlay {
        left: 20px;
        right: 20px;
        bottom: 22px;
    }

        .history-image-overlay strong {
            font-size: 27px;
        }

    /* Stats */

    .history-stats {
        max-width: calc(100% - 16px);
        margin: -17px 8px 0;
        padding: 15px 5px;
    }

        .history-stats div {
            padding: 4px 3px;
        }

        .history-stats strong {
            font-size: 15px;
        }

        .history-stats span {
            font-size: 7.5px;
        }
}

/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

    .history-item {
        padding-left: 30px;
    }

    .history-card {
        padding: 17px;
    }

    .history-image,
    .history-image img {
        height: 290px;
        min-height: 290px;
    }

    .history-stats strong {
        font-size: 14px;
    }
}


.product-category-block {
    margin-bottom: 65px;
}

.product-category-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dfe7f3;
}

.product-category-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #0f3fa7;
    background: #edf4ff;
    font-size: 23px;
}

.product-category-heading span {
    display: block;
    margin-bottom: 3px;
    color: #7a8798;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.product-category-heading h2 {
    margin: 0;
    color: #103f96;
    font-size: 23px;
}
