:root {
    --bs-primary: #2f7d4f;
    --bs-secondary: #164d35;
    --bs-primary-rgb: 47, 125, 79;
    --bs-secondary-rgb: 22, 77, 53;
    --bs-link-color: #2f7d4f;
    --bs-link-hover-color: #164d35;
    --app-bg: #f6f9f7;
    --app-surface: #ffffff;
    --app-surface-alt: #eef5f0;
    --app-surface-soft: rgba(255, 255, 255, 0.9);
    --app-text: #14281f;
    --app-muted: #5f7268;
    --app-heading: #164d35;
    --app-link: #2f7d4f;
    --app-link-hover: #164d35;
    --app-border: rgba(20, 40, 31, 0.12);
    --app-shadow: 0 10px 30px rgba(5, 45, 102, 0.08);
    --app-navbar-bg: rgba(255, 255, 255, 0.97);
    --app-navbar-text: #14281f;
    --app-footer-bg: linear-gradient(135deg, #03162f 0%, #0f4a34 52%, #0b2f22 100%);
    --app-footer-text: #f8fafc;
    --app-footer-muted: rgba(248, 250, 252, 0.75);
    --app-btn-text: #ffffff;
    --app-btn-bg: #2f7d4f;
    --app-btn-bg-alt: #164d35;
    --app-input-bg: #ffffff;
    --app-input-border: rgba(20, 40, 31, 0.12);
    --app-input-text: #14281f;
}

body {
    background-color: var(--app-bg);
    color: var(--app-text);
    font-family: "Inter", sans-serif;
    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

body,
body * {
    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, fill 0.35s ease, stroke 0.35s ease;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--app-heading);
    font-family: "Poppins", sans-serif;
}

p,
li,
.text-body,
.text-muted {
    color: var(--app-muted);
}

a {
    color: var(--app-link);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--app-link-hover);
}

.section-title,
.section-title::after {
    color: var(--app-link);
}

.card,
.hero-card,
.info-card,
.service-item,
.product-item,
.blog-item,
.about-item,
.contact-item,
.contact-info-card,
.stats-card,
.list-group-item,
.form-control,
.form-floating>label,
.form-floating .form-control {
    background-color: var(--app-surface);
    color: var(--app-text);
    border-color: var(--app-border);
}

.footer {
    position: relative;
    overflow: hidden;
    background: var(--app-footer-bg);
    color: var(--app-footer-text);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 32%);
    pointer-events: none;
}

.footer a,
.footer .text-muted,
.footer .text-white {
    color: #f8fafc !important;
}

.footer-item {
    position: relative;
    z-index: 1;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 35px rgba(0, 0, 0, 0.12);
    height: 100%;
}

.footer h3,
.footer h4 {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 1rem;
    color: #ffffff;
}

.footer a {
    display: block;
    padding: 0.35rem 0;
    text-decoration: none;
    transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.footer a:hover {
    color: #dff8ea !important;
    transform: translateX(4px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.footer-item a i,
.footer-item .social-links a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
}

.copyright {
    background: var(--app-surface-alt);
    color: var(--app-text);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright a:hover {
    color: #bff5d2 !important;
}

.form-control.is-invalid,
.form-select.is-invalid,
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.16);
}

.form-control.is-valid,
.form-select.is-valid,
.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #198754;
    box-shadow: 0 0 0 0.15rem rgba(25, 135, 84, 0.16);
}

#formMessage {
    min-height: 1.5rem;
    font-weight: 600;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 999px;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--bs-primary);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    display: block;
    margin-top: 0.5rem;
}

.section-shell {
    padding-top: clamp(3rem, 6vw, 5rem) !important;
    padding-bottom: clamp(3rem, 6vw, 5rem) !important;
}

.stats-card {
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #f6fbf8 100%);
}

.hero-card,
.info-card,
.service-item,
.product-item,
.blog-item,
.stats-card {
    box-shadow: 0 10px 30px rgba(5, 45, 102, 0.08);
    border: 1px solid rgba(5, 45, 102, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover,
.info-card:hover,
.service-item:hover,
.product-item:hover,
.blog-item:hover,
.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(5, 45, 102, 0.14);
}

.hero-card img,
.about-img img,
.product-item img,
.card-img-top,
.carousel-item img {
    object-fit: cover !important;
    object-position: center !important;
    display: block;
    background: linear-gradient(135deg, #f7fbf8 0%, #eaf4ed 100%);
}

.carousel-item img {
    min-height: 520px;
}

.about-img img,
.product-item img,
.card-img-top {
    transition: transform 0.4s ease, filter 0.35s ease;
}

.about-img:hover img,
.product-item:hover img,
.card:hover .card-img-top {
    transform: scale(1.03);
    filter: saturate(1.05) contrast(1.02);
}

.product-item {
    border: 1px solid rgba(5, 45, 102, 0.07);
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--app-btn-text);
    background-color: var(--app-btn-bg);
    border-color: var(--app-btn-bg);
}

.btn.btn-primary:hover {
    background: var(--app-btn-bg-alt);
    border-color: var(--app-btn-bg-alt);
}

.btn.btn-secondary {
    color: var(--app-btn-text);
    background-color: var(--app-btn-bg-alt);
    border-color: var(--app-btn-bg-alt);
}

.btn.btn-secondary:hover {
    background: var(--app-btn-bg);
    border-color: var(--app-btn-bg);
}

/*** Topbar Start ***/

/*** Navbar ***/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    will-change: transform;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.container-fluid.position-relative.p-0 {
    padding-top: 94px;
}

.theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 44px;
    height: 44px;
    padding: 0 0.95rem;
    border: 1px solid var(--app-border);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(47, 125, 79, 0.1), rgba(22, 77, 53, 0.12));
    color: var(--app-heading);
    box-shadow: 0 5px 16px rgba(10, 42, 28, 0.08);
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.theme-toggle-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(10, 42, 28, 0.12);
}

.theme-toggle-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 125, 79, 0.2);
}

.theme-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    transform: rotate(0deg);
    transition: transform 0.35s ease;
}

.theme-toggle-btn.theme-toggle-btn-dark .theme-toggle-icon {
    transform: rotate(180deg);
}

.theme-toggle-label {
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: var(--app-navbar-bg);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    will-change: transform;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--app-navbar-text);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.02em;
    outline: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--app-link);
    transform: translateY(-1px);
}

.navbar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 9998;
}

.navbar-backdrop.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .container-fluid.position-relative.p-0 {
        padding-top: 84px;
    }

    .navbar-collapse {
        position: fixed;
        top: 74px;
        right: 0;
        width: min(320px, 90vw);
        height: calc(100vh - 74px);
        margin-top: 0;
        padding: 1.25rem;
        border-left: 1px solid var(--app-border);
        background: var(--app-surface-soft);
        backdrop-filter: blur(14px);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-collapse .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 0.8rem 0;
        margin-right: 0;
        width: 100%;
    }

    .theme-toggle-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.35rem;
        padding: 0.8rem 1rem;
    }
}

.search-bar .form-control {
    min-width: 200px;
    background: rgba(25, 135, 84, 0.08);
}

.hero-content h1,
.hero-content p,
.hero-content .btn {
    font-family: "Poppins", sans-serif;
}

.promo-card,
.category-card,
.product-card,
.feature-card {
    border: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.promo-card:hover,
.category-card:hover,
.product-card:hover,
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 81, 50, 0.12);
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 48, 26, 0.1), rgba(8, 48, 26, 0.65));
    mix-blend-mode: multiply;
}

.promo-card-body,
.category-card .p-4,
.product-card .p-4 {
    position: relative;
    z-index: 1;
}

.promo-card-body {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
}

:root {
    --dark-bg: #10161b;
    --dark-surface: #1a2328;
    --dark-surface-alt: #202c31;
    --dark-border: #33454b;
    --dark-text: #f2f6f2;
    --dark-muted: #b8c6be;
    --dark-link: #8bd38f;
    --dark-link-hover: #bfe8b5;
}

body.dark-mode {
    --app-bg: var(--dark-bg);
    --app-surface: var(--dark-surface);
    --app-surface-alt: var(--dark-surface-alt);
    --app-surface-soft: rgba(26, 35, 40, 0.95);
    --app-text: var(--dark-text);
    --app-muted: var(--dark-muted);
    --app-heading: var(--dark-text);
    --app-link: var(--dark-link);
    --app-link-hover: var(--dark-link-hover);
    --app-border: var(--dark-border);
    --app-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    --app-navbar-bg: rgba(16, 22, 27, 0.96);
    --app-navbar-text: var(--dark-text);
    --app-footer-bg: linear-gradient(135deg, #070e12 0%, #14252d 100%);
    --app-footer-text: var(--dark-text);
    --app-footer-muted: rgba(242, 246, 242, 0.8);
    --app-btn-text: #07110d;
    --app-btn-bg: #9edc82;
    --app-btn-bg-alt: #bfe8b5;
    --app-input-bg: #202c31;
    --app-input-border: var(--dark-border);
    --app-input-text: var(--dark-text);
}

body.dark-mode .bg-white,
body.dark-mode .bg-light,
body.dark-mode .card,
body.dark-mode .hero-card,
body.dark-mode .info-card,
body.dark-mode .service-item,
body.dark-mode .product-item,
body.dark-mode .blog-item,
body.dark-mode .about-item,
body.dark-mode .contact-item,
body.dark-mode .contact-info-card,
body.dark-mode .stats-card,
body.dark-mode .list-group-item,
body.dark-mode .form-control,
body.dark-mode .form-floating>label,
body.dark-mode .form-floating .form-control,
body.dark-mode .footer-item,
body.dark-mode .footer,
body.dark-mode .copyright {
    background-color: var(--app-surface) !important;
    color: var(--app-text) !important;
    border-color: var(--app-border) !important;
}

body.dark-mode .navbar,
body.dark-mode .navbar-collapse,
body.dark-mode .footer,
body.dark-mode .copyright {
    background-color: var(--app-surface-alt) !important;
}

body.dark-mode .theme-toggle-btn {
    background: rgba(158, 220, 130, 0.14);
    border-color: rgba(158, 220, 130, 0.3);
    color: var(--dark-link);
}

body.dark-mode .navbar-light .navbar-nav .nav-link,
body.dark-mode .section-title,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode p,
body.dark-mode li,
body.dark-mode .text-body,
body.dark-mode .text-muted,
body.dark-mode .footer a,
body.dark-mode a {
    color: var(--app-text) !important;
}

body.dark-mode a {
    color: var(--app-link) !important;
}

body.dark-mode a:hover {
    color: var(--app-link-hover) !important;
}

body.dark-mode .form-control::placeholder {
    color: var(--dark-muted);
}

html,
body {
    overflow-x: hidden;
}

.navbar-toggler {
    border: 0;
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.carousel-caption-1-content,
.carousel-caption-2-content {
    width: min(100%, 900px);
}

.carousel-caption-1-content .btn,
.carousel-caption-2-content .btn {
    margin-bottom: 0.5rem;
}

@media (max-width: 1199px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 12px;
        padding: 20px 0;
        font-size: 16px;
    }

    .carousel-caption-1-content,
    .carousel-caption-2-content {
        padding: 0 1rem;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .navbar-collapse {
        margin-top: 0.75rem;
        padding: 1rem;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 0.75rem 0;
        margin-right: 0;
    }

    .carousel-caption-1-content,
    .carousel-caption-2-content {
        max-width: 100% !important;
        padding: 1rem;
    }

    .carousel-caption-1-content-btn,
    .carousel-caption-2-content-btn {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .service-item .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .service-item .service-content.text-end {
        text-align: left !important;
    }

    .service-item .ps-4,
    .service-item .pe-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .footer .row>div {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 0.95rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-brand img {
        max-height: 52px;
    }

    .display-2 {
        font-size: 1.9rem !important;
        line-height: 1.2;
    }

    .display-4,
    .display-5,
    .display-6 {
        font-size: 1.7rem !important;
    }

    .about-item .d-flex.gap-3,
    .carousel-caption-1-content-btn,
    .carousel-caption-2-content-btn {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .stats-card,
    .info-card,
    .product-item,
    .blog-item,
    .service-item,
    .card {
        padding: 1.15rem !important;
    }

    .contact-info-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info-card i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .copyright .row>div {
        text-align: center !important;
    }

    .footer-item {
        align-items: center;
        text-align: center;
    }

    .footer-item a {
        justify-content: center;
    }
}

@media (max-width: 575px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
    }

    .carousel-caption-1-content,
    .carousel-caption-2-content {
        padding: 0.75rem;
    }

    .carousel-caption-1-content .btn,
    .carousel-caption-2-content .btn {
        padding: 0.8rem 1rem !important;
        font-size: 0.95rem;
    }

    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .partner-logo {
        width: 100%;
        max-width: 100%;
    }

    .footer-item a {
        word-break: break-word;
    }
}

body.dark-mode .text-muted {
    color: var(--dark-muted) !important;
}

body.dark-mode .btn.btn-secondary {
    background-color: #2e6f42;
    border-color: #2e6f42;
}

body.dark-mode .btn.btn-secondary:hover,
body.dark-mode .btn.btn-primary:hover {
    background-color: #198754;
    border-color: #198754;
}

body.dark-mode .form-control {
    background-color: #151a20 !important;
    border-color: var(--dark-border) !important;
    color: var(--dark-text) !important;
}

body.dark-mode .form-control:focus {
    background-color: #151a20 !important;
    color: #fff !important;
    border-color: #5f8f5a !important;
    box-shadow: none !important;
}

body.dark-mode .accordion-button,
body.dark-mode .dropdown-menu,
body.dark-mode .modal-content {
    background-color: var(--dark-surface) !important;
    color: var(--dark-text) !important;
}

body.dark-mode #themeToggle i {
    color: #ffb800 !important;
}

body.dark-mode .bg-breadcrumb {
    background: linear-gradient(135deg, #0a1f14 0%, #122c1f 100%) !important;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
}

.hero-image img,
.category-card img,
.product-card img,
.promo-card img {
    object-fit: cover;
    height: 100%;
}

.feature-icon {
    font-size: 1.15rem;
}

.stats-card {
    transition: transform .3s ease, box-shadow .3s ease;
}

.stats-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 81, 50, 0.12);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--bs-primary);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-secondary);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-nav .nav-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-item::before {
    bottom: 0;
}

.navbar-light .navbar-nav .nav-item:hover::before,
.navbar-light .navbar-nav .nav-item.active::before {
    width: calc(100% - 2px);
    left: 1px;
}

.navbar-light .navbar-toggler {
    border-color: var(--bs-secondary);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(5, 45, 102, 1)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-brand img {
    max-height: 92px;
    width: auto;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 72px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid;
        border-left: 0;
        border-style: dotted;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
        border: none;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent var(--bs-primary) transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .service-item .d-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .service-item .service-content {
        text-align: left !important;
        width: 100%;
    }

    .service-item .service-btn {
        margin-bottom: 1rem;
    }

    .service-item .service-btn i {
        font-size: 2rem;
    }

    .footer .footer-item {
        text-align: left;
    }

    .footer .footer-item a {
        display: inline-block;
        margin-bottom: .5rem;
    }

    .footer .row.g-5 {
        gap: 1.5rem;
    }

    .bg-breadcrumb {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .carousel-caption-1-content,
    .carousel-caption-2-content,
    .text-center.mx-auto {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 767.98px) {

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 0.95rem;
    }

    .navbar-light .navbar-brand img {
        max-height: 55px;
    }

    .service-item,
    .footer-item,
    .text-center.mx-auto,
    .container.py-5,
    .container.py-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .service-item {
        padding: 1.5rem !important;
    }

    .bg-white,
    .bg-light,
    .footer,
    .copyright,
    .service-item,
    .hero-card,
    .info-card,
    .product-item,
    .blog-item,
    .about-item,
    .contact-item {
        border-radius: 1rem !important;
    }

    .section-title {
        font-size: 0.78rem;
    }

    .btn.btn-secondary,
    .btn.btn-primary {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .navbar-light .navbar-nav {
        gap: 0.5rem;
    }

    .footer .footer-item h4 {
        font-size: 1.1rem;
    }

    .footer .footer-item a,
    .footer .footer-item p {
        font-size: 0.95rem;
    }

    .container-fluid.py-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .btn.btn-secondary,
    .btn.btn-primary {
        padding: 0.95rem 1rem;
    }

    /* Make carousel captions vertically centered on very small screens */
    .carousel .carousel-inner .carousel-item {
        height: auto;
        margin-top: 0;
    }

    .carousel .carousel-inner .carousel-item img {
        height: auto;
        min-height: 360px;
    }

    .carousel .carousel-inner .carousel-item .carousel-caption-1,
    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        padding-top: 0;
        align-items: center;
        justify-content: center;
    }

    .carousel-caption-1-content,
    .carousel-caption-2-content {
        padding: 0.75rem !important;
        text-align: center !important;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-header .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 45, 102, 0.85) 0%, rgba(5, 45, 102, 0.45) 50%, rgba(232, 62, 71, 0.2) 100%);
}

.carousel-caption-1-content,
.carousel-caption-2-content {
    position: relative;
    z-index: 2;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}


.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: start;
}


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-caption-1-content,
    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}

/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url("../img/fact-bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px;
    margin-left: 30px;
}

.about .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -30px;
    right: 0;
    border-radius: 10px;
    background: var(--bs-secondary);

}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: -30px;
    bottom: 30px;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.about .about-img .about-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px;
    font-size: 30px;
    font-weight: bold;
    background: var(--bs-secondary);
    color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
}

/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
    transition: 0.5s;
}

.service-item:hover .service-content a:hover {
    color: var(--bs-secondary);
}

.service-item:hover .service-content p {
    color: var(--bs-white);
}

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-primary) !important;
}

/*** Service End ***/


/*** Products Start ***/
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--bs-primary);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-primary) !important;
}

/*** Blog End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/

:root {
    --brand-red: #E83E47;
    --brand-blue: #052D66;
    --surface: #f8fafc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #ffffff;
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
}

/* Professional footer styling (three-column, dark gradient) */
.footer {
    background: linear-gradient(90deg, #0b1530 0%, #071827 100%);
    color: rgba(255, 255, 255, 0.95);
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.footer .footer-item {
    background: transparent;
    border: none;
    padding: 0;
}

.footer .footer-item h3,
.footer .footer-item h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.footer .footer-item p {
    color: rgba(255, 255, 255, 0.78);
}

.footer a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    display: inline-block;
    transition: color .2s ease, transform .18s ease;
}

.footer a:hover {
    color: #dff8ea;
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: .6rem;
    margin-top: .5rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.footer .footer-item .fa,
.footer .footer-item .fab {
    color: inherit;
}

.footer .footer-item a i {
    width: 1.2rem;
    margin-right: .6rem;
}

.copyright {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    color: rgba(255, 255, 255, 0.6);
    padding-top: .9rem;
    padding-bottom: .9rem;
}

@media (max-width: 767px) {
    .footer .footer-item {
        text-align: center;
    }

    .footer .footer-item .social-links {
        justify-content: center;
    }

    .footer .footer-item img {
        margin: 0 auto 0.6rem;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

.topbar {
    background: linear-gradient(90deg, var(--brand-blue), #0a3f86);
}

.topbar .container {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.brand-logo {
    max-height: 124px;
    width: auto;
    object-fit: contain;
}

.brand-footer-logo {
    max-height: 220px;
    width: auto;
    object-fit: contain;
}

.site-header {
    z-index: 1040;
}

.site-header .navbar {
    min-height: 104px;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.site-header .navbar-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-blue);
    padding: 0.85rem 1rem;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link:focus {
    color: var(--brand-red);
}

.mega-menu {
    min-width: 620px;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(5, 45, 102, 0.14);
    padding: 1.4rem;
}

.mega-menu .dropdown-item {
    padding: 0.5rem 0;
    color: #334155;
}

.mega-menu .dropdown-item:hover {
    color: var(--brand-red);
    background: transparent;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--brand-blue);
    padding: 0.8rem 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--brand-red);
}

.navbar-light .navbar-toggler {
    border: 0;
}

.navbar-light .btn-outline-secondary {
    border-color: #d7dde7;
    color: var(--brand-blue);
}

.navbar-light .btn-outline-secondary:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

.section-heading .eyebrow,
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 1rem;
}

.hero-section {
    position: relative;
}

.hero-swiper,
.hero-swiper .swiper-slide {
    min-height: 88vh;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 45, 102, 0.9) 0%, rgba(5, 45, 102, 0.55) 45%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.min-vh-90 {
    min-height: 88vh;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
}

.feature-card,
.category-card,
.product-card,
.timeline-card,
.news-card,
.testimonial-card,
.stat-card {
    background: #ffffff;
    border: 1px solid rgba(5, 45, 102, 0.08);
    box-shadow: 0 12px 30px rgba(5, 45, 102, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover,
.category-card:hover,
.product-card:hover,
.timeline-card:hover,
.news-card:hover,
.testimonial-card:hover,
.stat-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 38px rgba(5, 45, 102, 0.13);
}

.icon-box,
.category-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand-red), #ff6b76);
    color: #fff;
    border-radius: 16px;
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-card .btn-outline-primary,
.product-card .btn-outline-secondary {
    border-radius: 999px;
}

.profile-video-card {
    border: 1px solid rgba(5, 45, 102, 0.08);
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    grid-auto-rows: 220px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 24px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(232, 62, 71, 0.12), rgba(5, 45, 102, 0.06));
    color: var(--brand-blue);
    box-shadow: none;
}

.footer {
    background: linear-gradient(135deg, #061a3b 0%, #052d66 100%);
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
}

.footer a:hover {
    color: #ffffff;
}

.floating-whatsapp,
.back-to-top {
    position: fixed;
    right: 24px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red), #ff6b76);
    box-shadow: 0 10px 24px rgba(232, 62, 71, 0.24);
    z-index: 1000;
    transition: 0.3s ease;
}

.floating-whatsapp {
    bottom: 94px;
}

.back-to-top {
    bottom: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#spinner {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.96);
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: 0.4s ease;
}

#spinner:not(.show) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spinner-ring {
    width: 58px;
    height: 58px;
    border: 4px solid rgba(5, 45, 102, 0.15);
    border-top-color: var(--brand-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

body.dark-theme {
    background: #07122b;
    color: #f4f7fb;
}

body.dark-theme .bg-white,
body.dark-theme .bg-light,
body.dark-theme .feature-card,
body.dark-theme .category-card,
body.dark-theme .product-card,
body.dark-theme .timeline-card,
body.dark-theme .news-card,
body.dark-theme .testimonial-card,
body.dark-theme .stat-card,
body.dark-theme .accordion-item,
body.dark-theme .glass-card {
    background: #0d1831 !important;
    color: #f4f7fb !important;
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .text-muted,
body.dark-theme .text-white-50 {
    color: rgba(255, 255, 255, 0.68) !important;
}

body.dark-theme .navbar-light .navbar-nav .nav-link,
body.dark-theme .navbar-light .btn-outline-secondary {
    color: #f4f7fb;
}

body.dark-theme .navbar-light .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.16);
}

.hero-bottle {
    position: relative;
    max-width: 330px;
    margin: 0 auto;
    animation: floatBottle 4s ease-in-out infinite;
}

.hero-bottle img {
    width: 100%;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.26));
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 18, 43, 0.72);
    display: grid;
    place-items: center;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

.search-overlay.show {
    opacity: 1;
    visibility: visible;
}

.search-box {
    width: min(92vw, 620px);
    background: #fff;
    position: relative;
}

.btn-close-search {
    position: absolute;
    top: 14px;
    right: 14px;
}

.cookie-notice {
    position: fixed;
    left: 16px;
    bottom: 16px;
    background: rgba(5, 45, 102, 0.95);
    color: #fff;
    padding: 14px 16px;
    border-radius: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 1100;
}

.cookie-notice.dismissed {
    display: none;
}

.filter-btn.active {
    background: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
}

@keyframes floatBottle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@media (max-width: 992px) {
    .topbar .container {
        justify-content: center !important;
    }

    .site-header .navbar {
        min-height: auto;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }

    .hero-swiper,
    .hero-swiper .swiper-slide {
        min-height: 78vh;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .mega-menu {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        max-height: 72px;
    }

    .brand-footer-logo {
        max-height: 160px;
    }

    .hero-content .d-flex {
        display: block !important;
    }

    .hero-content .btn {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: auto;
        grid-row: auto;
    }

    .floating-whatsapp,
    .back-to-top {
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .floating-whatsapp {
        bottom: 84px;
    }

    .product-search {
        min-width: 100%;
    }
}