@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    padding: 0;
    margin: 0;
}


body {
    background: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: "Open Sans", sans-serif;
    background: rgb(231, 231, 231);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6
{
font-family: Poppins, sans-serif;
}

header {
    position: relative;
}

.header-bottom {
    height: 36px;
    background: rgb(19, 35, 59);
    padding: 10px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box-content {
    color: #fff;
}

.info-box-icon-left {
    justify-content: center;
}

.info-box-content h4 {
    color: inherit;
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
}


@media (min-width: 992px) {
    .container {
        max-width: 1260px;
    }

    .header-middle {
        padding: 0;
    }
}


/* ══════════════════════════════════════
   HEADER – RESPONSIVE
══════════════════════════════════════ */

.header-middle {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* extra shadow when page is scrolled */
.header-middle.is-sticky {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.header-middle .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0 !important;
    gap: 16px;
    flex-wrap: nowrap;
}

/* Logo */
.logo {
    flex-shrink: 0;
    max-width: 100px;
}



/* ── Hamburger button ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
}

/* Close button & overlay hidden on desktop */
.mob-close-btn,
.mob-overlay {
    display: none;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #13233b;
    border-radius: 2px;
}

/* X state */
.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Nav wrapper (holds nav + search) ── */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

/* ── Nav ── */
nav {
    background: #fff;
    flex: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
    padding: 0;
    margin: 0;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 18px 8px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-links>li>a:hover,
.nav-links>li:hover>a {
    color: #007799;
}

.nav-links>li>a .arrow {
    font-size: 10px;
}

.nav-links>li:hover>a .arrow {
    transform: rotate(180deg);
}

/* ── Mega Menu ── */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 24px;
    min-width: 520px;
    z-index: 999;
}

.nav-links>li:nth-last-child(-n+3) .mega-menu {
    left: auto;
    right: 0;
}

.nav-links>li:hover .mega-menu {
    display: flex;
    gap: 32px;
}

.mega-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #f0f0f0;
    white-space: nowrap;
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col ul li {
    margin-bottom: 8px;
}

.mega-col ul li a {
    text-decoration: none;
    color: #555;
    font-size: 13px;
    white-space: nowrap;
}

.mega-col ul li a:hover {
    color: #4db7b3;
}

/* ── Simple Dropdown ── */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    max-width: 240px;
    max-height: 420px;
    overflow-y: auto;
    z-index: 999;
}

.nav-links>li:hover .dropdown {
    display: block;
}

.dropdown a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown a:hover {
    background: #f5f5f5;
    color: #00aacc;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    width: 100%;
}

/* ── Search ── */
.header-search {
    flex-shrink: 0;
}

.header-search-wrapper {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    border-radius: 50px;
    overflow: hidden;
    height: 48px;
    margin-right: 20px;
}

.header-search-wrapper .form-control {
    flex: 1;
    width: 200px;
    height: 100%;
    font-size: 14px;
    color: #333;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0 20px;
    border-radius: 0;
    font-family: Poppins, sans-serif;  
}

.header-search-wrapper .form-control::placeholder {
    color: #aaa;
}

.header-search-wrapper .form-control:focus {
    box-shadow: none;
    border: none;
    background: transparent;
}

.header-search-wrapper .btn.search_submit {
    width: 56px;
    height: 100%;
    flex-shrink: 0;
    background: #1a1f2e;
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

/* ══════════════════════════════════════
   MOBILE  (< 992px)
══════════════════════════════════════ */
@media (max-width: 991.98px) {

    .nav-toggle {
        display: flex;
    }

    /* ── Overlay behind the drawer ── */
    .mob-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1099;
    }

    .mob-overlay.active {
        display: block;
    }

    /* ── Slide-in drawer ── */
    .nav-wrapper {
        display: flex !important;
        /* always in DOM, slide in/out */
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        background: #1c2130;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        z-index: 1100;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.28s ease;
        padding: 0;
    }

    .nav-wrapper.nav-open {
        transform: translateX(0);
    }

    /* ── Close button inside drawer ── */
    .mob-close-btn {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 14px 18px;
        background: #1c2130;
        border-bottom: 1px solid #2a3045;
    }

    .mob-close-btn button {
        background: none;
        border: none;
        color: #ffffff;
        font-size: 20px;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        opacity: 0.85;
    }

    .mob-close-btn button:hover {
        opacity: 1;
    }

    nav {
        width: 100%;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    /* Top-level items — white text, dark navy bg */
    .nav-links>li>a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 5px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        color: #ffffff;
        background: #1c2130;
        border-bottom: 1px solid #2a3045;
        text-decoration: none;
    }

    .nav-links>li>a:hover {
        background: #232840;
        color: #ffffff;
    }

    /* Active/open parent gets slightly lighter bg */
    .nav-links>li.mob-open>a {
        background: #232840;
    }

    .nav-links>li>a .arrow {
        font-size: 12px;
        color: #ffffff;
        transition: transform 0.2s;
    }

    /* sub-menus hidden by default on mobile */
    .nav-links .mega-menu,
    .nav-links .dropdown {
        display: none !important;
        position: static;
        box-shadow: none;
        min-width: 0;
        padding: 0;
        background: transparent;
    }

    /* open state toggled by JS */
    .nav-links .has-dropdown.mob-open>.mega-menu,
    .nav-links .has-dropdown.mob-open>.dropdown {
        display: block !important;
    }

    /* mobile mega-menu stacked */
    .nav-links .has-dropdown.mob-open>.mega-menu {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    /* Each sub-category group (mega-col) */
    .mega-col {
        padding: 0;
    }

    /* Sub-category heading (e.g. "Hair Care") — slightly lighter navy, white text */
    .mega-col h4 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
        margin: 0;
        padding: 13px 20px 13px 36px;
        border-bottom: 1px solid #2a3045;
        background: #232840;
        cursor: pointer;
        letter-spacing: 0.3px;
    }

    .mega-col h4::after {
        content: '\f077';
        /* fa-chevron-up */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 11px;
        color: #ffffff;
    }

    .mega-col.col-closed h4::after {
        content: '\f078';
        /* fa-chevron-down */
    }

    /* Sub-items list — darkest layer */
    .mega-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
        background: #1c2130;
    }

    .mega-col.col-closed ul {
        display: none;
    }

    .mega-col ul li {
        margin: 0;
    }

    .mega-col ul li a {
        display: block;
        padding: 11px 20px 11px 50px;
        font-size: 13px;
        color: #ffffff;
        text-decoration: none;
        border-bottom: 1px solid #2a3045;
        font-weight: 400;
    }

    .mega-col ul li a:hover {
        background: #232840;
        color: #ffffff;
    }

    /* Simple dropdown items */
    .dropdown {
        background: #1c2130;
    }

    .dropdown a {
        display: block;
        padding: 11px 20px 11px 36px;
        font-size: 13px;
        color: #ffffff;
        text-decoration: none;
        border-bottom: 1px solid #2a3045;
        font-weight: 400;
        background-color: #232840;
    }

    .dropdown a:hover {
        background: #232840;
        color: #ffffff;
    }

    nav {
        background: #1c212f;
    }

    /* Rotate top-level arrow when open */
    .has-dropdown.mob-open>a .arrow {
        transform: rotate(180deg);
    }

    /* search inside drawer */
    .header-search {
        padding: 14px 16px;
        width: 100%;
        background: #1c2130;
        border-top: 1px solid #2a3045;
        margin-top: auto;
    }

    .header-search-wrapper {
        width: 100%;
        background: #2a3045;
        border-radius: 4px;
        overflow: hidden;
    }

    .header-search-wrapper .form-control {
        width: 100%;
        flex: 1;
        color: #ffffff;
        background: transparent;
    }

    .header-search-wrapper .form-control::placeholder {
        color: #7a849e;
    }

    .header-search-wrapper .btn.search_submit {
        background: #2a3045;
        color: #ffffff;
        border-radius: 0 4px 4px 0;
    }
}


.intro-section {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-image: url('/assets/img/slide-bg.png');
}

.bg-blue {
    text-align: center;
    color: rgb(255 255 255);
    line-height: 40px;
    background-color: rgba(30, 60, 153, 1);
    font-size: 25px;
    font-weight: 700;
}

.banner3 h3 {
    font-size: 16px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 8px;
}

.banner3 a {
    font-size: 14px;
    color: #00aacc;
    text-decoration: none;
}

.banner3,
.banner4 {
    padding: 1.6rem 0px;
}

.about_us {
    text-align: left;
    font-size: 14px;
    line-height: 25px;
    color: #676767;
}

.features_new {
    font-size: 17px;
    text-align: center;
    margin-bottom: 1px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(184, 184, 184);
    border-image: initial;
}

.client {
    border: rgba(30, 60, 153, 1) 2px solid;
    border-radius: 22px;
    padding: 11px;
}

.client h1 {
    text-align: center;
    font-size: 27px;
}

.client h3 {
    text-align: center;
    font-size: 20px;
}


.card {
    border-radius: 10px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    padding: 30px;
    font-size: 16px;
}

.card_title {
    text-align: center;
    padding: 10px;
}

.card_title h1 {
    font-size: 26px;
    font-weight: bold;
}

.form input {
    margin: 10px 0;
    width: 100%;
    background-color: #e2e2e2;
    border: none;
    outline: none;
    padding: 12px 20px;
    border-radius: 4px;
}

.form button {
    background-color: #4796ff;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    border-radius: 5px;
    border: none;
    padding: 8px 15px;
    width: 100%;
}

.card_terms {
    display: flex;
    align-items: center;
    padding: 10px;
}

.card_terms input[type="checkbox"] {
    background-color: #e2e2e2;
}

.card_terms span {
    margin: 5px;
    font-size: 13px;
}

.card a {
    color: #4796ff;
    text-decoration: none;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */

footer {
    font-size: 15px;
    color: white;
    line-height: 1.6;
}

footer .container {
    position: relative;
}

footer p {
    color: inherit;
    font-size: 15px;
}

footer a {
    color: inherit;
    font-size: 15px;
}

.footer-middle {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: rgba(30, 60, 153, 1);
    padding-left: 40px;
    padding-right: 40px;
}

.footer-bottom {
    background: #7f7f7f;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 15px;
}

/* NEED HELP / Email Us labels (h6) */
footer .footer-question h6 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Phone / email values (h3) */
footer .footer-question h3 {
    font-size: 17px;
    font-weight: 700;
}

footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #525252;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .social-icon i {
    line-height: 1;
}

footer .social-icon:not(:hover):not(:active):not(:focus) {
    background: #fff;
}

footer .social-icon:hover {
    background: #fff;
    color: rgba(30, 60, 153, 1);
    transform: translateY(-2px);
}

footer .social-icon+.social-icon {
    margin-left: 12px;
}

footer .widget {
    margin-bottom: 2rem;
}

footer .widget-title {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 16px;
}

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

footer .links li {
    margin-bottom: 8px;
}

footer .links a {
    font-size: 15px;
    color: #d0d8ff;
    text-decoration: none;
}

footer .links a:hover {
    color: #fff;
}

/* address text */
footer .widget p {
    font-size: 15px;
    line-height: 1.6;
    color: #d0d8ff;
}

footer .contact-info {
    margin: 0;
    padding: 0;
}

footer .contact-info li {
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.4;
}

footer .contact-info-label {
    display: block;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1px;
}

.footer-copyright {
    text-align: center;
    font-size: 15px;
    margin: 0;
}

/* ── Brands Slider (Swiper) ── */
.brands-slider {
    padding: 16px 0;
    position: relative;
}

.brands-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}


.brands-slider .swiper-button-prev,
.brands-slider .swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.brands-slider .swiper-button-prev::after,
.brands-slider .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.brands-slider .swiper-button-prev:hover,
.brands-slider .swiper-button-next:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE STYLES - TABLET & MOBILE
═══════════════════════════════════════════════════════════════ */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .header-bottom {
        height: auto;
        padding: 8px 15px;
    }

    .info-box-content h4 {
        font-size: 13px;
    }

    .nav-links>li>a {
        padding: 18px 6px;
        font-size: 14px;
    }

    .bg-blue {
        font-size: 22px;
        line-height: 36px;
    }

    .client h1 {
        font-size: 24px;
    }

    .client h3 {
        font-size: 18px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .header-bottom {
        padding: 6px 10px;
    }

    .info-box-content h4 {
        font-size: 12px;
    }

    .logo {
        max-width: 60px;
    }

    .intro-section {
        background-size: cover;
    }

    .bg-blue {
        font-size: 20px;
        line-height: 34px;
        padding: 8px 15px;
    }

    .banner3 h3 {
        font-size: 15px;
    }

    .view-more h3 {
        font-size: 14px !important;
    }

    .view-more a {
        font-size: 13px !important;
    }

    .about_us {
        font-size: 13px;
        line-height: 22px;
    }

    .features_new {
        font-size: 15px;
    }

    .client {
        padding: 15px;
        margin-bottom: 15px;
    }

    .client h1 {
        font-size: 22px;
    }

    .client h3 {
        font-size: 16px;
    }

    /* Contact form responsive */
    .contact-form {
        padding: 20px 15px !important;
    }

    .card {
        padding: 20px;
    }

    .card_title h1 {
        font-size: 22px;
    }

    .card_title span {
        font-size: 14px;
    }

    /* Footer responsive */
    .footer-middle {
        padding: 30px 20px;
    }

    footer .widget-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    footer .links a,
    footer .widget p {
        font-size: 14px;
    }

    footer .footer-question h6 {
        font-size: 12px;
    }

    footer .footer-question h3 {
        font-size: 15px;
    }

    .footer-copyright {
        font-size: 14px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    body {
        font-size: 1.2rem;
    }

    .header-bottom {
        padding: 5px 10px;
    }

    .info-box-content h4 {
        font-size: 11px;
        text-align: center;
    }

    .logo {
        max-width: 60px;
    }

    .intro-section .carousel-item img {
        min-height: 200px;
        object-fit: cover;
    }

    .bg-blue {
        font-size: 18px;
        line-height: 30px;
        padding: 6px 12px;
    }

    /* Live Catalogue items - stack on mobile */
    .live-catalogue .banner3 {
        min-height: 150px;
        background-size: cover;
        background-position: center;
    }

    .live-catalogue .banner3[style*="background-image"] {
        height: 150px !important;
    }

    .view-more {
        padding: 10px;
    }

    .view-more h3 {
        font-size: 13px !important;
        margin-bottom: 5px !important;
    }

    .view-more a {
        font-size: 12px !important;
    }

    /* About section */
    .about_us {
        font-size: 13px;
        line-height: 20px;
        padding: 0 10px;
    }

    .about_us p {
        margin-bottom: 10px;
    }

    /* Features */
    .features_new {
        font-size: 14px;
        padding: 8px;
    }

    /* Client counter boxes */
    .client {
        padding: 12px;
        margin-bottom: 10px;
    }

    .client h1 {
        font-size: 20px;
    }

    .client h3 {
        font-size: 14px;
    }

    /* Contact form */
    .contact-form {
        padding: 15px 10px !important;
    }

    .card {
        padding: 15px;
        margin: 0 5px;
    }

    .card_title {
        padding: 5px;
    }

    .card_title h1 {
        font-size: 20px;
    }

    .card_title span {
        font-size: 13px;
    }

    .form input,
    .form select {
        padding: 10px 15px;
        font-size: 14px;
    }

    .form button {
        font-size: 15px;
        padding: 10px;
    }

    /* Footer */
    .footer-middle {
        padding: 25px 15px;
    }

    footer .widget {
        margin-bottom: 1.5rem;
    }

    footer .widget-title {
        font-size: 15px;
        margin-bottom: 10px;
        margin-top: 15px;
    }

    footer .links li {
        margin-bottom: 6px;
    }

    footer .links a,
    footer .widget p {
        font-size: 13px;
    }

    footer .footer-question {
        margin-bottom: 15px !important;
    }

    footer .footer-question h6 {
        font-size: 11px;
    }

    footer .footer-question h3 {
        font-size: 14px;
    }

    footer .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 12px 10px;
    }

    .footer-copyright {
        font-size: 13px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .header-bottom {
        padding: 4px 8px;
    }

    .info-box-content h4 {
        font-size: 10px;
        word-break: break-word;
    }

    .logo {
        max-width: 100px;
    }

    .nav-toggle {
        width: 35px;
        height: 35px;
    }

    .intro-section .carousel-item img {
        min-height: 180px;
    }

    .bg-blue {
        font-size: 16px;
        line-height: 26px;
        padding: 5px 10px;
    }

    /* Catalogue grid items */
    .live-catalogue .banner3[style*="background-image"] {
        height: 130px !important;
    }

    .view-more h3 {
        font-size: 12px !important;
    }

    .view-more a {
        font-size: 11px !important;
    }

    /* About section */
    .about_us {
        font-size: 12px;
        line-height: 18px;
    }

    .features_new {
        font-size: 13px;
    }

    /* Client boxes */
    .client {
        padding: 10px;
    }

    .client h1 {
        font-size: 18px;
    }

    .client h3 {
        font-size: 13px;
    }

    /* Contact form */
    .contact-form {
        padding: 10px 5px !important;
    }

    .card {
        padding: 12px;
    }

    .card_title h1 {
        font-size: 18px;
    }

    .card_title span {
        font-size: 12px;
    }

    .form input,
    .form select {
        padding: 8px 12px;
        font-size: 13px;
        margin: 8px 0;
    }

    .form button {
        font-size: 14px;
        padding: 8px 12px;
    }

    /* Footer */
    .footer-middle {
        padding: 20px 12px;
    }

    footer .widget-title {
        font-size: 14px;
    }

    footer .links a,
    footer .widget p {
        font-size: 12px;
    }

    footer .footer-question h3 {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   UTILITY CLASSES FOR RESPONSIVE
───────────────────────────────────────────────────────────────── */

/* Ensure images scale properly */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive text alignment */
@media (max-width: 767.98px) {
    .text-center-mobile {
        text-align: center !important;
    }

    /* Center footer logo and content on mobile */
    footer .col-lg-3 {
        text-align: center;
    }

    footer .widget {
        text-align: center;
    }

    footer .widget.text-lg-left {
        text-align: center !important;
    }

    footer .social-icons {
        justify-content: center;
        display: flex;
        gap: 8px;
    }

    footer .social-icon+.social-icon {
        margin-left: 0;
    }
}

/* Contact form - full width on mobile */
@media (max-width: 767.98px) {
    .contact-form .col-sm-3 {
        display: none;
    }

    .contact-form .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Swiper brands slider responsive */
@media (max-width: 767.98px) {
    .brands-slider {
        padding: 10px 0;
    }

    .brands-slider .swiper-slide img {
        max-height: 60px;
        width: auto;
        margin: 0 auto;
    }
}

/* Fix for background images in catalogue items on mobile */
@media (max-width: 575.98px) {
    .live-catalogue .banner3[style*="background-image"] {
        background-size: cover;
        background-position: center;
        min-height: 120px;
    }

    .live-catalogue .banner3 .col-sm-6:first-child {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .live-catalogue .banner3 .col-sm-6:last-child {
        display: none;
    }
}


.service_1 h3 {
    font-size: 2rem;
    line-height: 1.28;
    font-weight: 700;
}

.service_1 p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #777;
}

.service_1 h4 {
    font-size: 20px;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 20px;
}

.page-header-bg {
    padding: 7rem 0 7rem;
}

.page-header-bg h1 span {
    display: block;
    color: #1e3636;
    font-size: 0.5em;
    font-weight: 700;
    line-height: 1.2;
    font-family: Poppins, sans-serif;
    letter-spacing: 0;
}

.page-header-bg h1 {
    color: #1e3636;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 2.4rem;
    letter-spacing: 0;
}




/* ═══════════════════════════════════════════════════════════════
   ABOUT US PAGE STYLES
═══════════════════════════════════════════════════════════════ */

/* Page Header Background */
.page-header-about {
    background-color: #D4E1EA;
    background-image: url('../img/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* About Container */
.about-container {
    background-color: white;
    padding: 10px;
}

/* Section Title Centered */
.section-title-centered {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

/* Text Centered */
.text-centered {
    text-align: center;
}

/* Footer Address */
.footer-address {
    font-size: 16px;
}

/* About Section Responsive */
@media (max-width: 991.98px) {
    .about-section .col-lg-6 {
        margin-bottom: 30px;
    }

    .about-section .cms-box {
        padding: 0 15px;
    }
}

/* Quill / rich-text content inside about page */
.cms-box p,
.about_us p {
    font-size: 14px;
    line-height: 25px;
    color: #676767;
    margin-bottom: 12px;
    text-align: left;
}

.cms-box ul,
.cms-box ol {
    font-size: 14px;
    line-height: 25px;
    color: #676767;
    padding-left: 20px;
    margin-bottom: 12px;
}

.cms-box h1, .cms-box h2, .cms-box h3, .cms-box h4 {
    color: #333;
    margin-bottom: 10px;
}

.text-centered p,
.text-centered ul,
.text-centered ol {
    text-align: center;
}

@media (max-width: 767.98px) {
    .section-title-centered {
        font-size: 22px;
    }

    .about-container {
        padding: 15px;
    }

    .about-section .cms-block img {
        margin-bottom: 20px;
    }

    .page-header-about {
        background-position: center;
    }

    .page-header-bg h1 {
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .section-title-centered {
        font-size: 18px;
    }

    .about-section {
        padding: 10px 0;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE PAGE STYLES
═══════════════════════════════════════════════════════════════ */

/* Service Page Video/Image Section */
.service_1 .col-sm-5 iframe,
.service_1 .col-sm-5 img {
    width: 100%;
    height: auto;
    min-height: 250px;
    border-radius: 8px;
}

.service_1 .col-sm-7 {
    padding: 0 15px;
}

/* Service Page Responsive */
@media (max-width: 991.98px) {
    .service_1 .row {
        flex-direction: column;
    }

    .service_1 .col-sm-5,
    .service_1 .col-sm-7 {
        width: 100%;
        margin-bottom: 20px;
    }

    .service_1 .col-sm-5 iframe {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .service_1 .col-sm-5 iframe {
        min-height: 200px;
    }

    .service_1 h3 {
        font-size: 20px;
    }

    .service_1 p {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .service_1 {
        padding: 15px 0;
    }

    .service_1 h3 {
        font-size: 18px;
    }

    .service_1 .col-sm-5 iframe {
        min-height: 180px;
    }
}


/* -------------------category------------------- */


.product-default {
    color: #777;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease-in-out;
}

.product-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-details a {
    color: #777;
    text-decoration: none;
}

.product-default .category-list {
    text-align: center;
    font-weight: 400;
    font-size: 10px;
    font-family: "Open Sans", sans-serif;
    line-height: 1.7;
    opacity: 0.8;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product-default .product-title {
    max-width: 100%;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: 0.005em;
    margin-bottom: 0.4rem;
    font-family: "Open Sans", sans-serif;
}

.product-default .category-list {
    text-align: center;
    font-weight: 400;
    font-size: 10px;
    font-family: "Open Sans", sans-serif;
    line-height: 1.7;
    opacity: 0.8;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
}

.price-box {
    margin-bottom: 14px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    line-height: 1;
}

.product-price {
    color: #222529;
    font-size: 18px;
    line-height: 1;
}

/* Product card — size display (replaces price) */
.product-size-box {
    margin-top: 4px;
    margin-bottom: 10px;
    text-align: center;
}

.product-size {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    color: #222529;
    letter-spacing: 0.5px;
    font-family: "Open Sans", sans-serif;
    line-height: 1;
}



.cl-breadcrumb {
    font-size: 11px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.cl-breadcrumb a {
    text-decoration: none;
    color: #000000;
}

.cl-breadcrumb .cl-active {
    color: #555555;
}


.cl-product-container {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.cl-main-image-box {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 440px;
    border-radius: 0;
    overflow: hidden;
}

.cl-main-image-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    width: 100%;
    height: 100%;
}

.cl-thumbnail-list {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cl-thumbnail {
    width: 90px;
    height: 90px;
    border: 2px solid #ccc;
    cursor: pointer;
    background-color: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cl-thumbnail:hover,
.cl-thumb-active {
    border-color: #0046be !important;
}

.cl-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.cl-product-details {
    flex: 1.5;
    padding-top: 10px;
}

.cl-brand-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
}

.cl-brand-title span {
    font-weight: normal;
    color: #333333;
}

.cl-meta-info {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333333;
}

.cl-meta-info strong {
    font-weight: bold;
}



.cl-quote-btn {
    display: block;
    width: 100%;
    max-width: 260px;
    background-color: #0046be;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 24px;
    text-align: center;
    transition: background-color 0.2s ease;
    letter-spacing: 0.3px;
}

.cl-quote-btn:hover {
    background-color: #003399;
}


.cl-section-divider {
    border: 0;
    height: 1px;
    background-color: #dddddd;
    margin: 40px 0 20px 0;
}


.cl-description-section h2 {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: #000000;
}

.cl-description-section p {
    font-size: 14px;
    color: #666666;
    text-align: justify;
    line-height: 1.7;
}


@media (max-width: 768px) {
    .cl-product-container {
        flex-direction: column;
    }

   

    .cl-main-image-box {
        height: 350px;
    }
}


/* --------blog---------     */

.blog-section{
    background: #fff;
}


.post {
    margin-bottom: 4.1rem;
}

.post-media {
    position: relative;
    margin-bottom: 0;
    background-color: rgb(204, 204, 204);
    border-radius: 0px;
}

.post-media img {
    width: 100%;
    display: block;
}

/* ── Single post: date sits below image, not overlaid ── */
.post.single .post-body {
    padding: 20px 0 30px;
}

.post.single .post-date {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.post.single .post-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
    margin-bottom: 20px;
}

/* ── Post content — handles both plain text and Quill HTML ── */
.post.single .post-content {
    font-size: 14px;
    line-height: 1.85;
    color: #555;
}

.post.single .post-content p {
    font-size: 14px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 14px;
}

.post.single .post-content h1,
.post.single .post-content h2,
.post.single .post-content h3,
.post.single .post-content h4 {
    font-weight: 700;
    color: #111;
    margin: 24px 0 10px;
    line-height: 1.3;
}
.post.single .post-content h1 { font-size: 22px; }
.post.single .post-content h2 { font-size: 20px; }
.post.single .post-content h3 { font-size: 18px; }
.post.single .post-content h4 { font-size: 16px; }

.post.single .post-content ul,
.post.single .post-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
}
.post.single .post-content li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 6px;
}

.post.single .post-content blockquote {
    border-left: 4px solid #0046be;
    padding: 12px 18px;
    margin: 20px 0;
    background: #f7f9ff;
    color: #555;
    font-style: italic;
}

.post.single .post-content img {
    max-width: 100%;
    height: auto;
    margin: 16px 0;
}

.post.single .post-content a {
    color: #0046be;
    text-decoration: underline;
}

.post.single .post-content strong { color: #222; }

/* ── Blog list card date badge (overlaid on image) ── */
.post-media .post-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 4.5rem;
    font-size: 16px;
    color: rgb(255, 255, 255);
    font-family: Poppins, sans-serif;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 0.8rem 0.8rem;
    background: rgb(34, 37, 41);
}

.post-title {
    margin-bottom: 1.3rem;
    color: rgb(34, 37, 41);
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.post-title a {
   text-decoration: none;
   color: #333;
}

.post-content {
    font-size: 14px;
    line-height: 1.85;
    color: #555;
}

/* ── Back link ── */
.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0046be;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.blog-back-link:hover { color: #003399; }

/* ── Blog index / related post cards ── */
.post-card {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.post-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.13); }

.post-card-media {
    position: relative;
    overflow: hidden;
}
.post-card-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.post-card:hover .post-card-media img { transform: scale(1.03); }

.post-card-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #222529;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
}

.post-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}
.post-card-title a { color: #111; text-decoration: none; }
.post-card-title a:hover { color: #0046be; }

.post-card-excerpt {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 12px;
}

.post-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0046be;
    text-decoration: none;
    margin-top: auto;
}
.post-card-readmore:hover { color: #003399; }
.post-card-readmore .fa { font-size: 11px; }



/* ---------------blog------------------ */

.feature-box {
    color: #7b858a;
    font-size: 15px;
    line-height: 2;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.feature-box i {
    display: inline-block;
    margin-bottom: 2.2rem;
    color: #4db7b3;
    font-size: 50px;
    line-height: 1;
}

.feature-box-content {
    color: #000000;
    font-size: 16px;
    line-height: 1.9;
    padding-left: 10px;
    padding-right: 10px;
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0;
}

.feature-box h5{
    font-size: 14px;
    line-height: 1.429;
}

.feature-box a{
color:#4db7b3;
text-decoration: none;
font-weight:700;
}

.contact-info {
    background: #fff;
    height: 100%;
}

.bg {
    position: absolute;
    background-color: #222;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.4;
}
.search-banner {
    position: relative;
    background-size: cover;
    background-position: center;
}
 
.search-banner .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
 
.search-banner .banner-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
 
.search-banner .banner-text h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
 
@media (max-width: 767.98px) {
    .search-banner .banner-text h1 {
        font-size: 24px;
    }
}
 
@media (max-width: 575.98px) {
    .search-banner .banner-text h1 {
        font-size: 18px;
    }
}

 
.main-content {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
}

.search-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.search-no-results i {
    font-size: 48px;
    color: #ccc;
    display: block;
    margin-bottom: 16px;
}

.mega-col h4 a {
    cursor: default;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    text-decoration: none;
    color: #000000;
}



 .bottom-contact-panel {
            position: fixed;
            bottom: 25px;
            right: 25px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 9999;
        }

        .contact-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .contact-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
        }

        
        .contact-btn.btn-catalogue {
            background-color: #ffffff;
            color: #000000;
            border: 1px solid #e0e0e0;
        }

        
        .contact-btn.btn-green {
            background-color: #25d366;
            color: #ffffff;
        }

        .contact-btn i {
            font-size: 26px;
        }