:root {
    --navy: #071a34;
    --navy2: #0d2a50;
    --orange: #df7a3b;
    --gold: #e8a65a;
    --ink: #172033;
    --muted: #687386;
    --soft: #f4f5f7;
    --line: #e7e9ee;
    --white: #fff;
    --shadow: 0 18px 50px rgba(12, 25, 48, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 12px;
    top: 12px;
    z-index: 9999;
    background: #fff;
    padding: 8px 12px;
}

.container {
    max-width: 1200px;
}

/* Topbar */
.topbar {
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    padding: 3px 0;
    letter-spacing: 0.15px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.topbar i {
    color: var(--gold);
    margin-right: 4px;
}

.topbar-sep {
    opacity: 0.35;
    margin: 0 8px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
}

.main-nav {
    background: #fff;
    border-bottom: 1px solid #eceef2;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(10, 25, 50, 0.06);
}

.main-nav.scrolled {
    box-shadow: 0 10px 30px rgba(10, 25, 50, 0.14);
}

.nav-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand img {
    width: 300px;
    max-height: 83px;
    object-fit: contain;
}

.nav-panel {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

.nav-menu > li {
    position: relative;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--navy);
    color: #fff !important;
    padding: 10px 12px;
    font: 700 14px/1 'Montserrat', Arial, sans-serif;
    min-height: 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.25s;
}

.nav-btn:hover,
.nav-btn.active {
    background: #172d4b;
}

.plus {
    color: var(--gold);
    font-size: 15px;
}

.submenu-toggle {
    display: none;
}

.submenu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 205px;
    margin: 0;
    padding: 7px 0;
    background: #fff;
    list-style: none;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(8, 22, 44, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.22s;
    z-index: 2000;
}

.has-submenu:hover > .submenu,
.has-submenu.submenu-open > .submenu,
.has-submenu:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.submenu li {
    position: relative;
}

.submenu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 14px;
    font: 600 13px 'Roboto', sans-serif;
    color: #253047;
}

.submenu a:hover {
    background: #f6f7f9;
    color: var(--orange);
}

.nested-submenu {
    top: -8px;
    left: 100%;
    transform: translateX(8px);
}

.has-submenu:hover > .nested-submenu,
.has-submenu.submenu-open > .nested-submenu,
.has-submenu:focus-within > .nested-submenu {
    transform: none;
}

.chevron {
    color: #a7adb7;
}

.mobile-nav-toggle {
    display: none;
    border: 0;
    background: var(--navy);
    width: 44px;
    height: 40px;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.mobile-nav-toggle span {
    height: 2px;
    background: #fff;
    width: 100%;
    transition: 0.25s;
}

.mobile-nav-toggle.open span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO SLIDER - সম্পূর্ণ রেস্পন্সিভ
   ======================================== */
.hero {
    position: relative;
    overflow: hidden;
    background: #0a1e39;
}

.hero-carousel,
.hero .carousel-item {
    height: 620px;
}

.hero .carousel-item {
    position: relative;
}

.hero .carousel-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 7s ease;
}

.hero .carousel-item.active > img {
    transform: scale(1.045);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, rgba(3, 16, 34, 0.78) 0%, rgba(3, 16, 34, 0.44) 45%, rgba(3, 16, 34, 0.08) 78%),
        linear-gradient(0deg, rgba(3, 16, 34, 0.28), transparent 45%);
}

.hero-caption {
    position: absolute;
    z-index: 2;
    left: max(7%, calc((100% - 1200px)/2));
    top: 50%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #fff;
}

.eyebrow,
.section-kicker {
    font: 800 11px/1.2 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-caption .eyebrow {
    color: #f1b26b;
}

.hero-caption h1,
.hero-caption h2 {
    font: 800 clamp(36px, 5vw, 66px)/1.08 'Montserrat', sans-serif;
    margin: 14px 0 18px;
    letter-spacing: -1.6px;
}

.hero-caption p {
    font-size: 17px;
    max-width: 590px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 28px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-premium,
.btn-dark-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 13px 18px;
    font: 800 11px 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    border: 1px solid var(--orange);
    transition: 0.3s;
}

.btn-premium:hover {
    background: #c9632d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(223, 122, 59, 0.25);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    padding: 13px 18px;
    font: 800 11px 'Montserrat', sans-serif;
    transition: 0.3s;
}

.btn-ghost:hover {
    background: #fff;
    color: var(--navy);
}

.carousel-indicators {
    bottom: 24px;
}

.carousel-indicators button {
    width: 22px;
    height: 4px;
    border: 0;
    margin: 0 3px;
    background: #fff;
    opacity: 0.45;
}

.carousel-indicators button.active {
    opacity: 1;
    width: 34px;
    background: var(--gold);
}

/* Section */
.section {
    padding: 30px 0;
}

.section-soft {
    background: #f5f6f8;
}

.about-section {
    background: #fff;
}

.reveal {
    opacity: 1;
}

/* Premium Image */
.premium-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: #ddd;
}

.premium-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(223, 122, 59, 0.18), transparent 40%);
    pointer-events: none;
}

.premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s;
}

.premium-image:hover img,
.product-card:hover img,
.category-card:hover img,
.logo-card:hover img,
.client-card:hover img {
    transform: scale(1.07);
}

.about-image {
    height: 520px;
}

.image-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    background: #fff;
    padding: 11px 14px;
    font: 800 10px 'Montserrat', sans-serif;
    color: var(--navy);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.image-badge i {
    color: var(--orange);
    margin-right: 5px;
}

.section-kicker {
    color: var(--navy);
    margin-bottom: 10px;
}

.section-kicker.orange {
    color: var(--orange);
}

.section-title {
    font: 800 clamp(28px, 3.4vw, 42px)/1.15 'Montserrat', sans-serif;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.8px;
}


.lead-copy {
    font-size: 17px;
    color: #364154;
}

.about-copy p {
    color: #667080;
}

.btn-dark-premium {
    background: var(--navy);
    border-color: var(--navy);
}

.btn-dark-premium:hover {
    background: var(--navy2);
    color: #fff;
    transform: translateY(-2px);
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading p {
    max-width: 650px;
    margin: 12px auto 0;
    color: var(--muted);
}

/* Product Card */
.product-card {
    display: block;
    background: #fff;
    border: 1px solid #e1e4e9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(20, 35, 60, 0.08);
    transition: 0.35s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 35px rgba(20, 35, 60, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #fff;
    /*aspect-ratio: 4/3;*/
    height:290px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    transition: transform 0.7s;
}

.product-view {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(7, 26, 52, 0.94);
    color: #fff;
    padding: 8px 10px;
    font: 700 9px 'Montserrat', sans-serif;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.3s;
}

.product-card:hover .product-view {
    opacity: 1;
    transform: none;
}

.product-body {
    padding: 14px 15px;
}

.product-body span {
    color: var(--orange);
    font: 800 9px 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-body h3 {
    font: 800 15px 'Montserrat', sans-serif;
    margin: 5px 0 0;
}

.swiper {
    padding-bottom: 42px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 34px;
    height: 34px;
    background: var(--navy);
    color: #fff;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 13px;
}

.swiper-pagination-bullet-active {
    background: var(--orange);
}

/* Compliance */
.compliance-section {
    background: #eef0f2;
}

.compliance-image {
    height: 500px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.compliance-item {
    background: #fff;
    border: 1px solid #e0e3e7;
    border-left: 3px solid var(--orange);
    padding: 10px 11px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.28s;
    border-radius:15px;
}

.compliance-item i {
    color: orange;
    font-size: 16px;
}

.compliance-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 18px rgba(20, 35, 60, 0.09);
}

/* Categories */
.categories-section {
    background: #fff;
}

.category-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e1e4e8;
    box-shadow: 0 9px 28px rgba(20, 35, 60, 0.09);
    transition: 0.35s;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(20, 35, 60, 0.16);
}

.category-image {
    position: relative;
    overflow: hidden;
    height: 360px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.category-arrow {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--navy);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-6px);
    transition: 0.3s;
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: none;
}

.category-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 17px;
}

.category-body h3 {
    font: 800 18px 'Montserrat', sans-serif;
    margin: 0;
}

.category-body span {
    font: 800 9px 'Montserrat', sans-serif;
    color: var(--orange);
}

/* Cert Section */
.cert-section {
    background: #f2f3f5;
}

.logo-card {
    height: 120px;
    background: #fff;
    border: 1px solid #e1e4e8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s;
}

.logo-card:hover {
    box-shadow: 0 12px 25px rgba(20, 35, 60, 0.12);
    transform: translateY(-4px);
}

.logo-card img {
    max-width: 90%;
    max-height: 82px;
    object-fit: contain;
    transition: 0.6s;
}

/* Sustainability */
.sustainability-section {
    background: #fff;
}

.sustain-wrap {
    overflow: hidden;
}

.sustain-copy {
    padding: 55px;
}

.sustain-image {
    height: 100%;
    min-height: 470px;
    border-radius: 0;
    box-shadow: none;
}

.sustain-image img {
    height: 100%;
}

/* Client Section */
.client-section {
    background: #f2f3f5;
}

.client-card {
    height: 110px;
    background: #fff;
    border: 1px solid #e1e4e8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s;
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(20, 35, 60, 0.12);
}

.client-card img {
    max-width: 88%;
    max-height: 70px;
    object-fit: contain;
    transition: 0.6s;
}

/* CTA Section */
.cta-section {
    padding: 0 0 90px;
    background: #f2f3f5;
}

.cta-box {
    background: linear-gradient(110deg, var(--navy), #123760);
    color: #fff;
    padding: 38px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    font: 800 30px 'Montserrat', sans-serif;
    margin: 7px 0;
}

.cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

.btn-premium.light {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
    white-space: nowrap;
}

/* Footer */
.site-footer {
    background: #061a36;
    color: #c7d0dc;
    padding: 65px 0 18px;
}

.footer-logo img {
    width: 235px;
    margin-bottom: 20px;
}

.site-footer p {
    font-size: 16px;
    color: #aeb9c8;
}

.site-footer h4 {
    font: 800 13px 'Montserrat', sans-serif;
    color: #fff;
    margin: 0 0 17px;
    position: relative;
    padding-bottom: 9px;
    font-size: 18px;
}

.site-footer h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.footer-list,
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    display: flex;
    gap: 8px;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-list i {
    color: var(--gold);
    min-width: 14px;
}

.footer-list a:hover,
.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-links li {
    font-size: 15px;
    margin-bottom: 7px;
    transition: 0.25s;
    font-weight: 600;
}

.footer-links a:before {
    content: '›';
    color: var(--gold);
    margin-right: 7px;
}

.bank-logos {
    display: flex;
    gap: 10px;
}

.bank-logos img {
    width: 120px;
    height: 50px;
    object-fit: contain;
    padding: 2px;
}

.socials {
    display: flex;
    gap: 8px;
}

.socials a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: 0.3s;
    color: #c7d0dc;
}

.socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-3px);
}

.open-hours {
    font-size: 16px;
}

.open-hours strong {
    color: var(--gold);
}

.open-hours span {
    color: #9eabbc;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    margin-top: 35px;
    padding-top: 16px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #8996a8;
}

.footer-bottom strong {
    color: #fff;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 27px;
    z-index: 1060;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-3px);
    color: #fff;
}

/* ========================================
   📱 মোবাইল রেস্পন্সিভ - সম্পূর্ণ
   ======================================== */

/* Tablet - 991px পর্যন্ত */
@media (max-width: 991.98px) {
    .topbar-right {
        display: none;
    }
    .nav-inner {
        min-height: 66px;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .nav-panel {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 18px 35px rgba(10, 25, 50, 0.15);
        max-height: calc(100vh - 115px);
        overflow: auto;
        display: none;
    }
    .nav-panel.open {
        display: block;
    }
    .nav-menu {
        display: block;
        padding: 10px;
    }
    .nav-menu > li {
        margin-bottom: 2px;
    }
    .nav-btn {
        justify-content: space-between;
        width: 100%;
        padding: 13px 14px;
    }
    .submenu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        border-top: 1px solid #eee;
        background: #f8f9fb;
        padding: 4px 0;
    }
    .has-submenu.submenu-open > .submenu {
        display: block;
    }
    .nested-submenu {
        position: static;
        transform: none;
    }
    .submenu-toggle {
        display: block;
        position: absolute;
        right: 7px;
        top: 4px;
        width: 42px;
        height: 42px;
        border: 0;
        background: transparent;
        color: #fff;
        z-index: 2;
    }
    .submenu-toggle i {
        transition: 0.25s;
    }
    .has-submenu.submenu-open > .submenu-toggle i {
        transform: rotate(180deg);
    }
    .submenu > li > .submenu-toggle {
        color: var(--navy);
    }
    .submenu a {
        padding: 11px 14px;
    }

    /* Hero Slider */
    .hero-carousel,
    .hero .carousel-item {
        height: 510px;
    }
    .hero-caption {
        left: 7%;
        right: 7%;
        max-width: 650px;
    }
    .hero-caption h1,
    .hero-caption h2 {
        font-size: 46px;
    }

    /* Sections */
    .section {
        padding: 75px 0;
    }
    .about-image,
    .compliance-image {
        height: 430px;
    }
    .category-image {
        height: 300px;
    }
    .sustain-copy {
        padding: 42px;
    }
    .sustain-image {
        min-height: 380px;
    }
    .cta-box {
        padding: 32px;
    }
    .footer-logo img {
        width: 220px;
    }

    /* Brand Logo */
    .brand img {
        width: 180px;
    }
}

/* Mobile Large - 767px পর্যন্ত */
@media (max-width: 767.98px) {
    body {
        font-size: 14px;
    }
    .topbar {
        font-size: 10px;
    }
    .topbar-inner {
        justify-content: center;
    }

    /* Logo */
    .brand img {
        width: 170px;
        max-height: 54px;
    }

    /* Hero Slider */
    .hero-carousel,
    .hero .carousel-item {
        height: 460px;
    }
    .hero-caption {
        top: 52%;
        left: 7%;
        right: 7%;
    }
    .hero-caption h1,
    .hero-caption h2 {
        font-size: 32px;
        letter-spacing: -0.8px;
    }
    .hero-caption p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    .btn-premium,
    .btn-ghost {
        padding: 11px 14px;
        font-size: 10px;
    }

    /* Trust Items */
    .trust-item {
        padding: 15px 8px;
    }
    .trust-item strong {
        font-size: 20px;
    }
    .trust-item span {
        font-size: 10px;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .lead-copy {
        font-size: 15px;
    }

    /* Images */
    .about-image,
    .compliance-image {
        height: 320px;
    }
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    .category-image {
        height: 280px;
    }
    .logo-card {
        height: 90px;
    }
    .client-card {
        height: 90px;
    }

    /* Sustainability */
    .sustain-copy {
        padding: 28px 20px;
    }
    .sustain-image {
        min-height: 280px;
    }

    /* CTA */
    .cta-box {
        display: block;
        padding: 24px 20px;
    }
    .cta-box h2 {
        font-size: 22px;
    }
    .cta-box .btn-premium {
        margin-top: 18px;
    }

    /* Footer */
    .footer-bottom {
        display: block;
        text-align: center;
    }
    .footer-bottom span {
        display: block;
        margin: 4px;
    }

    /* WhatsApp */
    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 46px;
        height: 46px;
        font-size: 24px;
    }

    /* Swiper */
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

/* Mobile Small - 480px পর্যন্ত */
@media (max-width: 480px) {
    /* Logo */
    .brand img {
        width: 140px;
    }

    /* Hero Slider */
    .hero-carousel,
    .hero .carousel-item {
        height: 400px;
    }
    .hero-caption h1,
    .hero-caption h2 {
        font-size: 26px;
    }
    .hero-caption p {
        font-size: 13px;
        margin-bottom: 14px;
    }
    .hero-shade {
        background: linear-gradient(90deg, rgba(3, 16, 34, 0.85), rgba(3, 16, 34, 0.4));
    }
    .hero-actions {
        gap: 8px;
    }
    .btn-premium,
    .btn-ghost {
        padding: 9px 12px;
        font-size: 9px;
    }

    /* Sections */
    .section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 24px;
    }

    /* Images */
    .about-image,
    .compliance-image {
        height: 260px;
    }
    .image-badge {
        font-size: 7px;
        padding: 6px 10px;
        left: 10px;
        bottom: 10px;
    }
    .category-image {
        height: 220px;
    }

    /* Floating Card */
    .floating-card {
        padding: 10px 12px;
        right: 10px;
        bottom: 10px;
    }
    .floating-card i {
        font-size: 20px;
    }
    .floating-card strong {
        font-size: 10px;
    }
    .floating-card small {
        font-size: 9px;
    }

    /* Sustainability */
    .sustain-image {
        min-height: 220px;
    }

    /* Footer */
    .footer-logo img {
        width: 180px;
    }
    .site-footer h4 {
        font-size: 16px;
    }
    .footer-list li {
        font-size: 13px;
    }
    .footer-links li {
        font-size: 13px;
    }

    /* WhatsApp */
    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

/* ========================================
   🎯 অতিরিক্ত ফিক্স
   ======================================== */

/* ইমেজ রেস্পন্সিভ করার জন্য */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* ক্যারোসেল ইমেজ ফিক্স */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* মোবাইলে টেক্সট ওভারলে */
@media (max-width: 767.98px) {
    .hero-caption .eyebrow {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    .hero-caption p {
        font-size: 13px;
    }
}

/* অ্যানিমেশন রিডিউস */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


    /* ========================================
       COMMON PAGE HERO - সব পেজের জন্য
       ======================================== */
    .page-hero {
        background: linear-gradient(135deg, #071a34 0%, #0d2a50 40%, #1a3a6a 100%);
        padding: 60px 0 50px;
        position: relative;
        overflow: hidden;
    }

    /* Decorative Elements */
    .page-hero::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -150px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(223, 122, 59, 0.12), transparent 70%);
        border-radius: 50%;
        animation: pulseGlow 8s ease-in-out infinite;
    }

    .page-hero::after {
        content: '';
        position: absolute;
        bottom: -200px;
        left: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(232, 166, 90, 0.08), transparent 70%);
        border-radius: 50%;
        animation: pulseGlow 10s ease-in-out infinite reverse;
    }

    @keyframes pulseGlow {
        0%,
        100% {
            transform: scale(1);
            opacity: 0.5;
        }
        50% {
            transform: scale(1.1);
            opacity: 1;
        }
    }

    .page-hero .hero-content {
        position: relative;
        z-index: 2;
    }

    .page-hero .hero-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #e8a65a;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        padding: 6px 22px;
        border-radius: 50px;
        margin-bottom: 15px;
    }

    .page-hero .page-title {
        color: #fff;
        font-size: 42px;
        font-weight: 900;
        letter-spacing: -1px;
        margin-bottom: 8px;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    }

    .page-hero .hero-line {
        width: 70px;
        height: 4px;
        background: linear-gradient(90deg, #df7a3b, #e8a65a);
        margin: 0 auto 15px;
        border-radius: 2px;
    }

    .page-hero .hero-sub {
        color: rgba(255, 255, 255, 0.75);
        font-size: 16px;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* Breadcrumb */
    .page-hero .breadcrumb-wrap {
        margin-top: 18px;
    }

    .page-hero .breadcrumb-wrap .breadcrumb {
        background: transparent;
        padding: 0;
        margin: 0;
        justify-content: center;
    }

    .page-hero .breadcrumb-wrap .breadcrumb-item {
        color: rgba(255, 255, 255, 0.5);
        font-size: 13px;
        font-weight: 500;
    }

    .page-hero .breadcrumb-wrap .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s;
    }

    .page-hero .breadcrumb-wrap .breadcrumb-item a:hover {
        color: #e8a65a;
    }

    .page-hero .breadcrumb-wrap .breadcrumb-item.active {
        color: #e8a65a;
    }

    .page-hero .breadcrumb-wrap .breadcrumb-item+.breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.3);
        content: "›";
        font-size: 18px;
        font-weight: 300;
    }

    /* Floating Shapes */
    .page-hero .shape {
        position: absolute;
        border: 2px solid rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        z-index: 1;
    }

    .page-hero .shape-1 {
        width: 80px;
        height: 80px;
        top: 15%;
        right: 8%;
        animation: floatShape 6s ease-in-out infinite;
    }

    .page-hero .shape-2 {
        width: 50px;
        height: 50px;
        bottom: 20%;
        left: 10%;
        animation: floatShape 8s ease-in-out infinite reverse;
    }

    @keyframes floatShape {
        0%,
        100% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-20px) rotate(180deg);
        }
    }

    /* ========================================
       ABOUT PAGE SPECIFIC
       ======================================== */

    /* About Image */
    .about-image-wrapper {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(7, 26, 52, 0.2);
    }

    .about-image-wrapper img {
        height: 480px;
        object-fit: cover;
        width: 100%;
        transition: transform 0.7s ease;
    }

    .about-image-wrapper:hover img {
        transform: scale(1.03);
    }

    .about-image-wrapper .badge-float {
        position: absolute;
        bottom: 25px;
        left: 25px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 14px 22px;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .about-image-wrapper .badge-float .icon {
        background: linear-gradient(135deg, #df7a3b, #e8a65a);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 22px;
    }

    .about-image-wrapper .badge-float strong {
        color: #071a34;
        font-size: 17px;
        display: block;
        font-weight: 800;
    }

    .about-image-wrapper .badge-float span {
        color: #687386;
        font-size: 12px;
    }

    /* Section Title */
    .section-label {
        color: #df7a3b;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .section-label i {
        font-size: 14px;
    }

    .section-title {
        color: #071a34;
        font-size: 34px;
        font-weight: 900;
        margin: 8px 0 15px;
        letter-spacing: -0.5px;
    }

  

    .about-desc {
        color: #444;
        font-size: 15px;
        line-height: 1.8;
    }

    .about-desc p {
        margin-bottom: 10px;
    }

    /* Stats */
    .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 25px;
    }

    .about-stats .stat {
        text-align: center;
        background: #f5f6f8;
        padding: 14px 12px;
        border-radius: 10px;
        border: 1px solid #e7e9ee;
        transition: all 0.3s ease;
    }

    .about-stats .stat:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
        border-color: #df7a3b;
    }

    .about-stats .stat strong {
        display: block;
        font-size: 28px;
        font-weight: 900;
        color: #071a34;
        line-height: 1.2;
    }

    .about-stats .stat span {
        font-size: 12px;
        color: #687386;
        font-weight: 500;
    }

    /* Description Two */
    .desc-two-box {
        background: linear-gradient(135deg, #f8f9fb, #f1f2f4);
        padding: 45px 50px;
        border-radius: 16px;
        border-left: 5px solid #df7a3b;
        margin-top: 40px;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .desc-two-box p {
        color: #333;
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 10px;
    }

    /* ========================================
       RESPONSIVE
       ======================================== */
    @media (max-width: 991px) {
        .page-hero .page-title {
            font-size: 34px;
        }
        .about-image-wrapper img {
            height: 380px;
        }
        .section-title {
            font-size: 28px;
        }
    }

    @media (max-width: 767px) {
        .page-hero {
            padding: 40px 0 35px;
        }
        .page-hero .page-title {
            font-size: 26px;
        }
        .page-hero .hero-sub {
            font-size: 14px;
        }
        .page-hero .hero-badge {
            font-size: 9px;
            padding: 4px 16px;
        }
        .page-hero .shape {
            display: none;
        }

        .about-image-wrapper img {
            height: 280px;
        }
        .about-image-wrapper .badge-float {
            bottom: 15px;
            left: 15px;
            padding: 10px 16px;
            gap: 10px;
        }
        .about-image-wrapper .badge-float .icon {
            width: 38px;
            height: 38px;
            font-size: 16px;
        }
        .about-image-wrapper .badge-float strong {
            font-size: 14px;
        }

        .section-title {
            font-size: 24px;
        }
        .about-stats {
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        .about-stats .stat strong {
            font-size: 20px;
        }
        .about-stats .stat {
            padding: 10px 8px;
        }

        .desc-two-box {
            padding: 25px 20px;
            margin-top: 30px;
        }

        .page-hero .breadcrumb-wrap .breadcrumb-item {
            font-size: 12px;
        }
    }

    @media (max-width: 480px) {
        .page-hero .page-title {
            font-size: 22px;
        }
        .about-image-wrapper img {
            height: 220px;
        }
        .about-image-wrapper .badge-float {
            bottom: 10px;
            left: 10px;
            padding: 8px 12px;
            gap: 8px;
        }
        .about-image-wrapper .badge-float .icon {
            width: 32px;
            height: 32px;
            font-size: 14px;
        }
        .about-image-wrapper .badge-float strong {
            font-size: 12px;
        }
        .about-image-wrapper .badge-float span {
            font-size: 9px;
        }
        .about-stats .stat strong {
            font-size: 16px;
        }
        .about-stats .stat span {
            font-size: 10px;
        }
        .desc-two-box {
            padding: 18px 15px;
        }
    }