/* ========== Root Variables ========== */
:root {
    /* Brand colors */
    --primary-color: #39A5B7;
    --primary-dark: #178a94;
    --primary-hover: #168a94;

    /* Text colors */
    --text-dark: #1d1d1d;
    --text-body: #2b2b2b;
    --text-nav: #3a3a3a;
    --text-muted: #555;

    /* UI colors */
    --bg-white: #ffffff;
    --border-light: #eee;

    /* Shadows */
    --shadow-navbar: 0 1px 4px rgba(0, 0, 0, 0.04);
    --shadow-icon: 0 2px 6px rgba(28, 167, 179, 0.2);
    --shadow-btn-hover: 0 4px 12px rgba(28, 167, 179, 0.35);
    --focus-ring: 0 0 0 0.15rem rgba(28, 167, 179, 0.25);

    /* Typography */
    --font-family: 'Poppins', sans-serif;

    /* Layout */
    --section-padding-x: 80px;
    --radius-pill: 40px;
}

/* ========== Global ========== */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    margin: 0;
    /* Push body down so fixed header doesn't cover hero */
    padding-top: 122px;
    background: var(--bg-white);
    color: var(--text-body);
}

/* ========== Fixed Header Wrapper ========== */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background: var(--bg-white);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Shadow once user scrolls down */
.fixed-header.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.fixed-header.scrolled .custom-navbar {
    padding: 20px 0;
}

.fixed-header.scrolled .logo-img {
    height: 60px;
    transition: height 0.3s ease;
}
.section-padding{
    padding: 0 var(--section-padding-x);
}

/* ========== Top border line ========== */
.top-border {
    height: 3px;
    background: var(--primary-dark);
    width: 100%;
}

/* ========== Navbar ========== */
.custom-navbar {
    background: var(--bg-white);
    padding: 22px 0;
    box-shadow: var(--shadow-navbar);
}

/* ===== Logo ===== */
.navbar-brand {
    padding: 0;
    margin-right: 0;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}

/* ===== Nav Links ===== */
.navbar-nav .nav-link {
    color: var(--text-nav) !important;
    font-size: 16px;
    font-weight: 500;
    margin: 0 32px;
    position: relative;
    transition: color 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-dark) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
}

/* ===== Right section ===== */
.right-section {
    gap: 35px;
}

/* Call us */
.call-us {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: var(--shadow-icon);
}

.call-text {
    line-height: 1.2;
}

.call-text small {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    font-weight: 400;
}

.call-number {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

/* Language Button */
.lang-btn {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 14px 42px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn:focus {
    background: var(--primary-hover);
    color: var(--bg-white);
    box-shadow: var(--shadow-btn-hover);
    transform: translateY(-1px);
}

/* Mobile toggler */
.navbar-toggler {
    border: 1px solid var(--primary-color);
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: var(--focus-ring);
}

.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='%231ca7b3' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== Responsive ========== */
@media (max-width: 1399.98px) {
    .section-padding {
        padding: 0 40px;
    }
    .navbar-nav .nav-link {
        margin: 0 22px;
    }
    .right-section {
        gap: 20px;
    }
}

@media (max-width: 1199.98px) {
    .section-padding {
        padding: 0 24px;
    }
    .navbar-nav .nav-link {
        margin: 0 14px;
        font-size: 15px;
    }
    .right-section {
        gap: 14px;
    }
    .lang-btn {
        padding: 12px 28px;
    }
    .logo-img {
        height: 60px;
    }
    body {
        padding-top: 105px;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 0 20px;
    }
    .custom-navbar {
        padding: 14px 0;
    }
    body {
        padding-top: 90px;
    }
    /* Mobile: limit dropdown height so hero is still reachable */
    .navbar-collapse {
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }
    .navbar-collapse {
        margin-top: 15px;
        padding: 15px 0;
        border-top: 1px solid var(--border-light);
    }

    .navbar-nav {
        margin-bottom: 15px !important;
    }

    .navbar-nav .nav-link {
        margin: 6px 0;
        text-align: center;
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    .right-section {
        flex-direction: column;
        /* align-items: flex-start !important; */
        gap: 15px !important;
        width: 100%;
    }

    .lang-btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .logo-img {
        height: 42px !important;
    }

    .call-number {
        font-size: 14px;
    }

    body {
        padding-top: 72px;
    }
}

/* ==================================================
   SHARED COMPONENTS
================================================== */
.section-label {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.section-heading {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 22px;
}

.section-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    padding: 13px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
}

/* Loading state — keep pill styling, dim slightly, show inline spinner */
.btn-primary-custom:disabled,
.btn-primary-custom.is-sending {
    background: var(--primary-color);
    color: #fff;
    opacity: 0.85;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-primary-custom .btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
    flex-shrink: 0;
}
@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.btn-outline-primary-custom {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: var(--radius-pill);
    padding: 13px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn-outline-primary-custom:hover,
.btn-outline-primary-custom:focus {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
}

.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 1.5px solid #fff;
    border-radius: var(--radius-pill);
    padding: 13px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--primary-dark);
}

/* ==================================================
   HERO CAROUSEL
================================================== */
.hero-carousel {
    position: relative;
}

.hero-section {
    position: relative;
    min-height: 600px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 90px 0 110px;
}

/* Each slide has its own background */
.hero-slide-1 {
    background-image: url('image/homebanner.png');
}

.hero-slide-2 {
     background-image: url('image/homebanner.png');
}

.hero-slide-3 {
    background-image: url('image/homebanner.png');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 30, 50, 0.5), rgba(28, 167, 179, 0.15));
    z-index: 0;
}

.hero-content {
    position: relative;
    max-width: 720px;
    z-index: 2;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 18px;
    
    margin-bottom: 30px;
    font-weight: 600;

   color: var(--bg-white);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== Carousel Indicators (centered dots) ===== */
.hero-dots.carousel-indicators {
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 5;
    padding: 0;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0;
    padding: 0;
    opacity: 1;
    transition: all 0.3s ease;
    text-indent: 0;
    flex: none;
}

.hero-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-dots .dot.active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 5px;
}

/* ==================================================
   FEATURES STRIP
================================================== */
.features-strip {
    background: #f5f7f9;
    padding: 55px 0;
}

.feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 110px;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(28, 167, 179, 0.18);
}

.feature-icon {
    width: 68px;
    height: 68px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.feature-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* makes any color icon appear white */
}

.feature-title {
    font-size: 16px;
    font-weight: 500;
    color:#333;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

/* ==================================================
   ABOUT SECTION
================================================== */
.about-section {
    padding: 90px 0;
    background: #f5f7f9;
}

.about-image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: visible;
    /* max-width: 460px; */
    padding-left: 120px;

    
}

.about-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

/* ===== Experience Badge (overlapping bottom-left) ===== */
.experience-badge {
    position: absolute;
    bottom: 60px;
    left: 22px;
    background: var(--primary-color);
    color: #fff;
    padding: 32px 30px 28px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.experience-badge h2 {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.experience-badge h2 span {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    margin-top: 6px;
}

.experience-badge .years {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #fff;
}

.experience-badge small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.5;
    display: block;
    color: rgba(255, 255, 255, 0.95);
}

/* About content (right column) */
.about-section .section-label {
    font-size: 13px;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}

.about-section .section-heading {
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 24px;
}

.about-section .section-text {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-section .btn-primary-custom {
    margin-top: 12px;
}

/* ==================================================
   STATS SECTION
================================================== */
.stats-section {
    position: relative;
    padding: 140px 0 110px;
    background:
        
        url('image/high.png') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}


.text-light-cyan {
    color: var(--bg-white) !important;
}

.stats-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #fff;
}

.stats-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 420px;
}

.stats-grid {
    margin-top: 0;
}

.stat-item {
    text-align: left;
    padding: 0 10px;
}

.stat-item h3 {
    font-size: 64px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-item h3 span {
    color: #fff;
    font-size: 56px;
    font-weight: 600;
}

.stat-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 18px 0;
}

.stat-item p {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.8px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
}

/* ==================================================
   PRODUCTS SECTION
================================================== */
.products-section {
    padding: 90px 0;
    background: #fff;
}

.products-section .section-heading {
    text-align: center;
}

.products-section .product-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.72) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 22px;
}

.product-overlay h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.product-arrow {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.product-arrow:hover {
    background: #fff;
    color: var(--primary-color);
    transform: rotate(45deg);
}

/* ==================================================
   WHY CHOOSE US
================================================== */
.why-choose-section {
    background: #f7f9fb;
}

.why-image {
    height: 100%;
    min-height: 580px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 580px;
}

.why-content {
    padding: 80px 60px;
}

.why-points {
    margin-top: 30px;
}

.why-point {
    margin-bottom: 22px;
}

.why-point h6 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.why-point h6 span {
    /* color: var(--primary-color); */
    margin-right: 6px;
}

.why-point p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    padding-left: 20px;
}

/* ==================================================
   STRENGTH SECTION
================================================== */
.strength-section {
    padding: 90px 0;
    background: #fff;
}

.strength-section .section-heading,
.strength-section .section-label {
    display: block;
    text-align: center;
}

.strength-card {
    position: relative;
    background: #fff;
    border: 1px solid #707070;
    border-radius: 14px;
    padding: 40px 32px;
    text-align: left;
    height: 100%;
    transition: all 0.3s ease;
}

.strength-card:hover {
    box-shadow: 0 10px 30px rgba(28, 167, 179, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.strength-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 0 28px;
    overflow: hidden;
}

.strength-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.strength-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 14px;
    padding-top: 28px;
    border-top: 1px solid #B2B2B2;
}

.strength-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ==================================================
   CTA SECTION
================================================== */
.cta-section {
    position: relative;
    padding: 110px 0;
    background:
        linear-gradient(100deg, rgba(10, 50, 70, 0.88) 0%, rgba(10, 50, 70, 0.55) 55%, rgba(10, 50, 70, 0.35) 100%),
        url('image/high6.png') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'><polygon points='40,2 78,24 78,68 40,90 2,68 2,24' fill='none' stroke='%231ca7b3' stroke-width='1' stroke-opacity='0.25'/></svg>");
    background-repeat: repeat;
    background-position: left center;
    opacity: 0.6;
    pointer-events: none;
    width: 45%;
}

.cta-section .cta-label {
    color: var(--primary-color);
    opacity: 1;
}

.cta-heading {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #fff;
}

.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-info h6 {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.cta-info .cta-phone {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px !important;
}

/* ==================================================
   FOOTER
================================================== */
.footer-section {
    background: #f1f4f6;
    padding: 70px 0 0;
    color: #444;
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.footer-logo {
    height: 100px;
    width: auto;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
    color: #555;
}

.footer-links li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.footer-links li::marker {
    color: #555;
    font-size: 14px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
}

.footer-address {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.footer-phone {
    font-size: 22px !important;
    font-weight: 700;
    color: var(--text-dark) !important;
    letter-spacing: 0.3px;
    margin-top: 4px;
}

.footer-email {
    font-size: 14px;
    color: #555;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid #c9d2d6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.footer-news-text {
    font-size: 13px;
    color: #555;
    margin-bottom: 16px !important;
}

.footer-form input {
    width: 100%;
    border: 1.5px solid #c9d2d6;
    border-radius: 4px;
    background: #fff;
    padding: 12px 14px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.25s ease;
}

.footer-form input:focus {
    border-color: var(--primary-color);
}

.footer-form .btn-primary-custom {
    width: auto;
    padding: 12px 30px;
}

.footer-bottom {
    border-top: 1px solid #d8dee1;
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* ==================================================
   RESPONSIVE — Sections
================================================== */

/* ===== Tablets / small laptops (≤ 1199.98px) ===== */
@media (max-width: 1199.98px) {
    .hero-title { font-size: 38px; }
    .stats-heading { font-size: 34px; }
    .cta-heading { font-size: 38px; }
    .stat-item h3 { font-size: 54px; }
    .stat-item h3 span { font-size: 46px; }

    .stats-section,
    .cta-section { padding: 90px 0; }

    .why-content { padding: 60px 40px; }

    .product-card { height: 280px; }
}

/* ===== Tablets (≤ 991.98px) ===== */
@media (max-width: 991.98px) {
    .hero-section { padding: 70px 0 90px; min-height: 520px; }
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 15px; }

    .section-heading { font-size: 30px; }
    .stats-heading { font-size: 30px; }
    .cta-heading { font-size: 32px; }
    .stat-item h3 { font-size: 48px; }
    .stat-item h3 span { font-size: 40px; }

    .stats-section,
    .cta-section,
    .about-section,
    .products-section,
    .strength-section { padding: 70px 0; }

    .stats-grid .col-md-4 { margin-bottom: 30px; }
    .stats-grid .col-md-4:last-child { margin-bottom: 0; }

    .why-image { min-height: 0px;max-height: 300px; }
    .why-image img { min-height: 0px;max-height: 300px; }
    .why-content { padding: 24px; }

    .about-image { height: 460px; }
    .about-image-wrap { max-width: 100%; margin: 0 auto 40px; }
    .about-section .section-heading { font-size: 22px; margin-bottom: 8px; }

    .experience-badge {
        left: 0;
        bottom: 30px;
        width: 200px;
        padding: 26px 24px 22px;
    }
    .experience-badge h2 { font-size: 48px; }
    .experience-badge h2 span { font-size: 32px; }

    .strength-card { padding: 32px 26px; }

    /* CTA: hide hexagon overlay on smaller screens to avoid clutter */
    .cta-overlay { width: 100%; opacity: 0.25; }

    .cta-info .cta-phone { font-size: 17px; }

    /* Footer: tighten 4-col layout */
    .footer-section { padding: 60px 0 0; }
    .footer-phone { font-size: 20px; }


}

/* ===== Phones (≤ 767.98px) ===== */
@media (max-width: 768px) {
    .footer-logo {
    height: 50px;
    width: auto;
}
.footer-links li {
    margin-bottom: 2px;
    padding-left: 4px;
}
.footer-phone {
    font-size: 18px !important;

    margin-top: 4px;
}
    .hero-section { padding: 60px 0 70px; min-height: 340px; }
    .hero-title { font-size: 26px; }
    .hero-subtitle { font-size: 14px; }
    .hero-buttons .btn { padding: 12px 26px; font-size: 12px; }

    .section-heading { font-size: 22px;  margin-bottom: 10px; }
    .stats-heading { font-size: 20px; margin-bottom: 10px; }
    .cta-heading { font-size: 26px; }

    .stats-section,
    .cta-section,
    .about-section,
    .products-section,
    .strength-section { padding: 25px 0; }

    .features-strip { padding: 40px 0; }
    .feature-card { padding: 18px 18px; min-height: 96px; }

    .stat-item h3 { font-size: 42px; }
    .stat-item h3 span { font-size: 36px; }

    .about-image { height: 380px; }
    .experience-badge {
        bottom: 20px;
        left: 15px;
        padding: 20px 22px;
        width: 180px;
    }
    .experience-badge h2 { font-size: 42px; }
    .experience-badge h2 span { font-size: 28px; }

    .product-card { height: 240px; }

    .strength-card { padding: 20px 15px; }
    .strength-icon { width: 45px; height: 45px; margin: 0px;}
    .strength-icon img { width: 28px; height: 28px; }

    /* CTA stacking */
    .cta-info { gap: 8px; }
    .cta-info h6 { margin-bottom: 8px; }

    /* Footer: stack and re-flow */
    .footer-section { padding: 30px 0 0; }
    .footer-form .btn-primary-custom { width: 100%; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }
    .strength-icon img {
    width: 25px;
    height: 25px;
   
}
.about-image-wrap {
    max-width: 100%;
    margin: 0 auto 0px;
}
.section-label {
  
    margin-bottom: 5px;
}
.footer-title {
    font-size: 14px;
 
    margin-bottom: 8px;
}
.footer-bottom {

    margin-top: 20px;
    padding: 10px 0;
    
}
.strength-card h5 {
    font-size: 15px !important;

    margin-bottom: 7px;
    padding-top: 18px !important;
    border-top: 1px solid #e8eef0;
}
.strength-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

}

/* ===== Small phones (≤ 575.98px) ===== */
@media (max-width: 575.98px) {
    :root {
        --section-padding-x: 16px;
    }
    .about-section .section-heading {
    font-size: 18px;
    margin-bottom: 8px;
}
.about-section .section-label {
    font-size: 13px;
    
    margin-bottom: 5px;
}

    .hero-section { padding: 50px 0 60px; min-height: 420px; }
    .hero-title { font-size: 18px;margin-bottom: 7px; }
    .hero-buttons { gap: 10px; }
    .hero-buttons .btn { width: 100%; text-align: center; }

    .section-heading,
    .stats-heading,
    .cta-heading { font-size: 18px; margin-bottom: 8px; }

    .stat-item h3 { font-size: 28px; }
    .stat-item h3 span { font-size: 30px; }

    .feature-card { padding: 16px 14px; }
    .feature-icon { width: 56px; height: 56px; }
    .feature-icon img { width: 28px; height: 28px; }

    .product-card { height: 220px; }
    .product-overlay h5 { font-size: 16px; }
    .product-arrow { width: 36px; height: 36px; font-size: 14px; }

    .why-content { padding: 18px 20px; }
    .why-point h6 { font-size: 16px; }

    .about-image { height: 320px; }
    .experience-badge {
    bottom: 14px;
    left: -11px;
    padding: 8px 10px;
    width: 160px;
}
    .experience-badge h2 { font-size: 28px; 
    margin: 0 0 5px;}
   .experience-badge h2 span {
    font-size: 15px;
    margin: 0px;
}
.stat-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 9px 0;
}
    .experience-badge .years {
    font-size: 13px;
    font-weight: 700;
    margin: 0px 0 2px;
    color: #fff;
}
    .strength-card { padding: 10px 10px; }

    .cta-section { padding: 30px 0; }
    .cta-info .cta-phone { font-size: 16px; }

    .footer-phone { font-size: 18px; }
    .footer-bottom { font-size: 12px; margin-top: 5px; }
    .footer-title {
   
    margin-bottom: 10px;
}
.footer-links li {
    margin-bottom: 0px;
    padding-left: 1px;
}
.btn-primary-custom {

    padding: 12px 27px;
 
}
.why-point {
    margin-bottom: 13px;
}
.strength-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    padding-top: 16px;
    border-top: 1px solid #e8eef0;
}
    .footer-bottom p { font-size: 12px; }
    .about-image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: visible;
    /* max-width: 460px; */
    padding-left: 47px;
}
 .years { font-size: 15px; }

    .strength-card { padding: 24px 20px; }

    .cta-section { padding: 30px 0; }
    .cta-info .cta-phone { font-size: 16px; }

    .footer-phone { font-size: 18px; }
    .footer-bottom { font-size: 12px; }
    .footer-bottom p { font-size: 12px; }
}

.about-section {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.about-card {
  background-color: #ffffff;
  padding: 40px 35px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  opacity: 1;
  border-radius: 20px;
}

.about-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 24px;
}

.about-card__title {
  font-family: poppins, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

/* Large desktop (≤1399px) — keeps 48px on 1920px screens */
@media (max-width: 1399.98px) {
  .about-card__title {
    font-size: 42px;
  }
}

/* Small desktop (≤1199px) */
@media (max-width: 1199.98px) {
  .about-card__title {
    font-size: 36px;
  }
}

/* Tablet landscape (≤991px) */
@media (max-width: 991.98px) {
  .about-card__title {
    font-size: 30px;
  }
}

/* Tablet portrait (≤767px) */
@media (max-width: 767.98px) {
  .about-card__title {
    font-size: 26px;
  }
}

/* Mobile (≤575px) */
@media (max-width: 575.98px) {
  .about-card__title {
    font-size: 22px;
  }
}

.about-card__text {
  font-family: popins, sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #555;
}

/* Large desktop (≤1399px) */
@media (max-width: 1399.98px) {
  .about-card__text {
    font-size: 17px;
    line-height: 28px;
  }
}

/* Small desktop (≤1199px) */
@media (max-width: 1199.98px) {
  .about-card__text {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Tablet landscape (≤991px) */
@media (max-width: 991.98px) {
  .about-card__text {
    font-size: 15px;
    line-height: 25px;
  }
}

/* Tablet portrait (≤767px) */
@media (max-width: 767.98px) {
  .about-card__text {
    font-size: 14px;
    line-height: 24px;
  }
}

/* Mobile (≤575px) */
@media (max-width: 575.98px) {
  .about-card__text {
    font-size: 13px;
    line-height: 22px;
  }
}

.strength-banner {
  background-color: var(--primary-color);
  border: 1px dashed #045960;
  width: 1696;
  border-radius: 20px;
  border-width: 1px;
  border-style: dashed;
  dashes: 2, 2;
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  color: #ffffff;
}

.strength-banner__title {
  margin-bottom: 20px;
  font-family: poppins, sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 36px;
  line-height: 45px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #ffffff;
}

/* Large desktop (≤1399px) */
@media (max-width: 1399.98px) {
  .strength-banner__title {
    font-size: 32px;
    line-height: 40px;
  }
}

/* Small desktop (≤1199px) */
@media (max-width: 1199.98px) {
  .strength-banner__title {
    font-size: 28px;
    line-height: 36px;
  }
}

/* Tablet landscape (≤991px) */
@media (max-width: 991.98px) {
  .strength-banner__title {
    font-size: 24px;
    line-height: 32px;
  }
}

/* Tablet portrait (≤767px) */
@media (max-width: 767.98px) {
  .strength-banner__title {
    font-size: 20px;
    line-height: 28px;
  }
}

/* Mobile (≤575px) */
@media (max-width: 575.98px) {
  .strength-banner__title {
    font-size: 18px;
    line-height: 24px;
  }
}

.strength-banner__text {
  margin: 0 auto;
  margin-bottom: 0;
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
}

/* Large desktop (≤1399px) */
@media (max-width: 1399.98px) {
  .strength-banner__text {
    font-size: 20px;
    line-height: 34px;
  }
}

/* Small desktop (≤1199px) */
@media (max-width: 1199.98px) {
  .strength-banner__text {
    font-size: 18px;
    line-height: 30px;
  }
}

/* Tablet landscape (≤991px) */
@media (max-width: 991.98px) {
  .strength-banner__text {
    font-size: 16px;
    line-height: 28px;
  }
}

/* Tablet portrait (≤767px) */
@media (max-width: 767.98px) {
  .strength-banner__text {
    font-size: 14px;
    line-height: 24px;
  }
}

/* Mobile (≤575px) */
@media (max-width: 575.98px) {
  .strength-banner__text {
    font-size: 13px;
    line-height: 22px;
  }
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 40px 0;
  }

  .about-card {
    padding: 30px 25px;
  }

  .strength-banner {
    padding: 35px 20px;
  }
}

/* ===== Page Banner ===== */
.page-banner {
  position: relative;
  background-image: url("./image/about_banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 33%);
}

.page-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 40px 15px;
}

.page-banner__title {
  font-family: poppins, sans-serif;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 600;
  font-size: 80px;
  line-height: 110px;
  letter-spacing: 0%;
}

.page-banner__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.page-banner__breadcrumb-link {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
}

.page-banner__breadcrumb-link:hover {
  opacity: 1;
  color: #ffffff;
}

.page-banner__breadcrumb-separator {
  opacity: 0.7;
}

.page-banner__breadcrumb-current {
  font-weight: 600;
}

/* Large desktop (≤1399px) */
@media (max-width: 1399.98px) {
  .page-banner {
    min-height: 280px;
  }
  .page-banner__title {
    font-size: 64px;
    line-height: 88px;
  }
  .page-banner__breadcrumb {
    font-size: 17px;
  }
}

/* Small desktop (≤1199px) */
@media (max-width: 1199.98px) {
  .page-banner {
    min-height: 240px;
  }
  .page-banner__title {
    font-size: 52px;
    line-height: 72px;
  }
  .page-banner__breadcrumb {
    font-size: 16px;
  }
}

/* Tablet landscape (≤991px) */
@media (max-width: 991.98px) {
  .page-banner {
    min-height: 220px;
  }
  .page-banner__title {
    font-size: 42px;
    line-height: 58px;
    margin-bottom: 12px;
  }
  .page-banner__breadcrumb {
    font-size: 15px;
    gap: 10px;
  }
}

/* Tablet portrait (≤767px) */
@media (max-width: 767.98px) {
  .page-banner {
    min-height: 180px;
  }
  .page-banner__title {
    font-size: 34px;
    line-height: 46px;
  }
  .page-banner__breadcrumb {
    font-size: 14px;
    gap: 8px;
  }
}

/* Mobile (≤575px) */
@media (max-width: 575.98px) {
  .page-banner {
    min-height: 150px;
  }
  .page-banner__title {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 8px;
  }
  .page-banner__breadcrumb {
    font-size: 13px;
    gap: 6px;
  }
}

/* ============== PRODUCT DETAIL ============== */
.product-detail-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}

.product-detail-image img {
  object-fit: cover;
  max-height: 480px;
}

.product-detail-title {
  font-family: poppins, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 48px;
  line-height: 75px;
  letter-spacing: 0%;
}

.product-detail-block {
  margin-bottom: 18px;
}

.product-detail-subtitle {
  font-family: poppins, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  line-height: 35px;
  letter-spacing: 0%;
}

.product-detail-text {
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 0;
  line-height: 30px;
  letter-spacing: 0%;
}

.product-detail-list {
  padding-left: 20px;
  margin-bottom: 0;
}

.product-detail-list li {
  font-family: poppins, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
}

.product-detail-actions .btn {
  min-width: 160px;
}

/* Large desktop (≤1399px) */
@media (max-width: 1399.98px) {
  .product-detail-title {
    font-size: 42px;
    line-height: 64px;
  }
  .product-detail-subtitle {
    font-size: 18px;
    line-height: 30px;
  }
  .product-detail-text {
    font-size: 14px;
    line-height: 26px;
  }
}

/* Desktop (≤1199px) */
@media (max-width: 1199.98px) {
  .product-detail-title {
    font-size: 36px;
    line-height: 54px;
  }
  .product-detail-subtitle {
    font-size: 17px;
    line-height: 28px;
  }
  .product-detail-text {
    font-size: 14px;
    line-height: 24px;
  }
}

/* Tablet (≤991px) */
@media (max-width: 991.98px) {
  .product-detail-title {
    font-size: 32px;
    line-height: 46px;
  }
  .product-detail-subtitle {
    font-size: 16px;
    line-height: 26px;
  }
  .product-detail-text {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767.98px) {
  .product-detail-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .product-detail-title {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 16px;
  }
  .product-detail-subtitle {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 4px;
  }
  .product-detail-text {
    font-size: 13px;
    line-height: 22px;
  }
  .product-detail-image img {
    max-height: 260px;
  }
  .product-detail-actions .btn {
    flex: 1 1 100%;
    min-width: 0;
  }
}

/* Small mobile (≤575px) */
@media (max-width: 575.98px) {
  .product-detail-title {
    font-size: 22px;
    line-height: 30px;
  }
  .product-detail-subtitle {
    font-size: 14px;
    line-height: 22px;
  }
  .product-detail-text {
    font-size: 13px;
    line-height: 20px;
  }
}

/* ==================================================
   CONTACT SECTION
================================================== */
.contact-map-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.contact-map {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.contact-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

.contact-section__title {
  font-family: poppins, sans-serif;
  color: #000;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 48px;
  line-height: 30px;
  letter-spacing: 0%;
}

.contact-section__intro {
  font-family: poppins, sans-serif;
  color: #414141;
  margin-bottom: 32px;
  max-width: 480px;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-item__icon {
  font-size: 22px;
  color: var(--primary-color);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-info-item__title {
  font-family: poppins, sans-serif;
  color: #222222;
  margin-bottom: 4px;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0%;
}

.contact-info-item__text {
  font-family: poppins, sans-serif;
  color: #555555;
  margin-bottom: 0;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0%;
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form__input {
  border: 1px solid #e2e2e2;
  padding: 14px 18px;
  font-family: poppins, sans-serif;
  font-size: 14px;
  color: #333;
  background: #ffffff;
  height: 80px;
  opacity: 1;
  border-radius: 3px;
  border-width: 1px;
}

.contact-form__input:focus {
  border-color: var(--primary-color);
  box-shadow: var(--focus-ring);
  outline: none;
}

.contact-form__input::placeholder {
  color: #9a9a9a;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form__submit {
  min-width: 140px;
}

/* Extra large desktop (≤1560px) */
@media (max-width: 1560px) {
  .contact-section__title {
    font-size: 42px;
    line-height: 28px;
  }
  .contact-section__intro {
    font-size: 18px;
    line-height: 30px;
  }
  .contact-info-item__title {
    font-size: 22px;
    line-height: 28px;
  }
  .contact-info-item__text {
    font-size: 18px;
    line-height: 24px;
  }
  .contact-form__input {
    height: 58px;
    padding: 14px 18px;
    font-size: 14px;
  }
  .contact-form__textarea {
    height: auto;
    min-height: 120px;
  }
}

/* Large desktop (≤1399px) */
@media (max-width: 1399.98px) {
  .contact-section__title {
    font-size: 38px;
    line-height: 28px;
  }
  .contact-section__intro {
    font-size: 17px;
    line-height: 28px;
  }
  .contact-info-item__title {
    font-size: 20px;
    line-height: 26px;
  }
  .contact-info-item__text {
    font-size: 17px;
    line-height: 22px;
  }
  .contact-form__input {
    height: 51px;
    padding: 14px 18px;
    font-size: 14px;
  }
  .contact-form__textarea {
    height: auto;
    min-height: 112px;
  }
}

/* Small desktop (≤1199px) */
@media (max-width: 1199.98px) {
  .contact-section__title {
    font-size: 34px;
    line-height: 28px;
  }
  .contact-section__intro {
    font-size: 16px;
    line-height: 26px;
  }
  .contact-info-item__title {
    font-size: 19px;
    line-height: 24px;
  }
  .contact-info-item__text {
    font-size: 16px;
    line-height: 22px;
  }
  .contact-form__input {
    height: 45px;
    padding: 12px 16px;
    font-size: 14px;
  }
  .contact-form__textarea {
    height: auto;
    min-height: 104px;
  }
}

/* Tablet (≤991px) */
@media (max-width: 991.98px) {
  .contact-section__title {
    font-size: 30px;
    line-height: 28px;
  }
  .contact-section__intro {
    font-size: 15px;
    line-height: 24px;
  }
  .contact-info-item__title {
    font-size: 18px;
    line-height: 24px;
  }
  .contact-info-item__text {
    font-size: 15px;
    line-height: 22px;
  }
  .contact-form__input {
    height: 42px;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 4px;
  }
  .contact-form__textarea {
    height: auto;
    min-height: 96px;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767.98px) {
  .contact-map iframe {
    height: 320px;
  }
  .contact-section {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .contact-section__title {
    font-size: 26px;
    line-height: 28px;
  }
  .contact-section__intro {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }
  .contact-info-item__title {
    font-size: 16px;
    line-height: 22px;
  }
  .contact-info-item__text {
    font-size: 14px;
    line-height: 20px;
  }
  .contact-form__input {
    height: 38px;
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 4px;
  }
  .contact-form__textarea {
    height: auto;
    min-height: 88px;
  }
  .contact-form__submit {
    width: 100%;
  }
}

/* Small mobile (≤575px) */
@media (max-width: 575.98px) {
  .contact-map iframe {
    height: 240px;
  }
  .contact-section__title {
    font-size: 22px;
    line-height: 26px;
  }
  .contact-info-item__title {
    font-size: 15px;
    line-height: 20px;
  }
  .contact-info-item__text {
    font-size: 13px;
    line-height: 18px;
  }
  .contact-section__intro {
    font-size: 13px;
    line-height: 20px;
  }
  .contact-form__input {
    height: 35px;
    padding: 10px 12px;
    font-size: 13px;
  }
  .contact-form__textarea {
    height: auto;
    min-height: 80px;
  }
}

/* ==================================================
   PRODUCT CATEGORIES
================================================== */
.product-categories-section {
  background-color: #f5f5f5;
  padding-top: 80px;
  padding-bottom: 80px;
}

.product-categories__title {
  font-family: poppins, sans-serif;
  color: #000000;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 700;
  font-style: Bold;
  font-size: 60px;
  line-height: 75px;
  letter-spacing: 0%;
}

.product-categories__intro {
  font-family: poppins, sans-serif;
  color: #222222;
  max-width: 1160px;
  margin: 0 auto 48px;
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0%;
  text-align: center;
}

.product-categories__grid {
  margin-top: 0;
}

/* Whole card is clickable — strip default link styling and make the
   wrapper match the card so click hit-area covers image + title + body. */
.product-card-link {
  display: flex;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.product-card-link:hover { text-decoration: none; color: inherit; }
.product-card-link:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 22px;
}

/* Equal-height cards across the row (Bootstrap row already stretches columns;
   we flex the inner card so bodies align even when text length differs). */
.product-categories__grid > [class*="col-"] { display: flex; }
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.product-card__text { flex: 1 1 auto; }
.product-card__link { margin-top: auto; }

/* Force every card image to the SAME box (width × height × aspect-ratio)
   regardless of the source image proportions. */
.product-categories__grid .product-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  flex: 0 0 auto;
}
.product-categories__grid .product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-card {
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-card__media {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.product-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 20px;
}

.product-card:hover .product-card__image {
  transform: scale(1.04);
}

.product-card__body {
  padding: 23px 17px 13px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-card__title {
  font-family: poppins, sans-serif;
  color: #222222;
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 41px;
  letter-spacing: 0%;
}

.product-card__text {
  font-family: poppins, sans-serif;
  max-width: 600px;
  margin: 0 auto 48px;
  color: #555555;
  margin: 0;
  flex: 1;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s ease;
}

.product-card__link:hover {
  color: var(--primary-dark);
}

.product-card__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 13px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.product-card__link:hover .product-card__link-icon {
  background: var(--primary-dark);
  transform: translate(2px, -2px);
}

/* Extra large desktop (≤1560px) */
@media (max-width: 1560px) {
  .product-categories__title {
    font-size: 52px;
    line-height: 64px;
  }
  .product-categories__intro {
    font-size: 20px;
    line-height: 32px;
  }
  .product-card__title {
    font-size: 28px;
    line-height: 36px;
  }
  .product-card__text {
    font-size: 16px;
    line-height: 26px;
  }
  .product-card__media {
    border-radius: 18px;
  }
  .product-card__image {
    height: 230px;
    border-radius: 18px;
  }
}

/* Large desktop (≤1399px) */
@media (max-width: 1399.98px) {
  .product-categories__title {
    font-size: 46px;
    line-height: 58px;
  }
  .product-categories__intro {
    font-size: 18px;
    line-height: 28px;
  }
  .product-card__title {
    font-size: 26px;
    line-height: 34px;
  }
  .product-card__text {
    font-size: 15px;
    line-height: 24px;
  }
  .product-card__media {
    border-radius: 16px;
  }
  .product-card__image {
    height: 220px;
    border-radius: 16px;
  }
}

/* Small desktop (≤1199px) */
@media (max-width: 1199.98px) {
  .product-categories__title {
    font-size: 40px;
    line-height: 52px;
  }
  .product-categories__intro {
    font-size: 17px;
    line-height: 26px;
  }
  .product-card__title {
    font-size: 24px;
    line-height: 32px;
  }
  .product-card__text {
    font-size: 15px;
    line-height: 23px;
  }
  .product-card__media {
    border-radius: 14px;
  }
  .product-card__image {
    height: 210px;
    border-radius: 14px;
  }
}

/* Tablet (≤991px) */
@media (max-width: 991.98px) {
  .product-categories-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .product-categories__title {
    font-size: 34px;
    line-height: 44px;
  }
  .product-categories__intro {
    font-size: 16px;
    line-height: 24px;
  }
  .product-card__media {
    border-radius: 12px;
  }
  .product-card__image {
    height: 200px;
    border-radius: 12px;
  }
  .product-card__body {
    padding: 20px 22px 24px;
  }
  .product-card__title {
    font-size: 22px;
    line-height: 30px;
  }
  .product-card__text {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767.98px) {
  .product-categories-section {
    padding-top: 25px;
    padding-bottom: 50px;
  }
  .product-categories__title {
    font-size: 28px;
    line-height: 38px;
  }
  .product-categories__intro {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 32px;
  }
  .product-card__media {
    border-radius: 10px;
  }
  .product-card__image {
    height: 180px;
    border-radius: 10px;
  }
  .product-card__title {
    font-size: 19px;
    line-height: 26px;
  }
  .product-card__text {
    font-size: 14px;
    line-height: 21px;
  }
}

/* Small mobile (≤575px) */
@media (max-width: 575.98px) {
  .product-categories__title {
    font-size: 24px;
    line-height: 32px;
  }
  .product-categories__intro {
    font-size: 13px;
    line-height: 20px;
  }
  .product-card__media {
    border-radius: 10px;
  }
  .product-card__image {
    height: 160px;
    border-radius: 10px;
  }
  .product-card__body {
    padding: 18px 5px 5px;
  }
  .product-card__title {
    font-size: 17px;
    line-height: 24px;
  }
  .product-card__text {
    font-size: 13px;
    line-height: 20px;
  }
  .product-card {
    padding: 10px;
 
}
}

/* ==================================================
   KEY LAB REAGENTS
================================================== */
.reagents-section {
  background-color: #ffffff;
  padding-top: 60px;
  padding-bottom: 80px;
}

.reagents-section__title {
  font-family: poppins, sans-serif;
  color: #222;
  margin-bottom: 12px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 32px;
  line-height: 41px;
  letter-spacing: 0%;
}

.reagents-section__intro {
  font-family: poppins, sans-serif;
  color: #555555;
  margin-bottom: 32px;
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
}

.reagents-list {
  margin-top: 0;
}

.reagent-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #ffffff;
  text-decoration: none;
  color: #222222;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.reagent-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  color: #111111;
}

.reagent-card__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: poppins, sans-serif;
  color: #222222;
  font-weight: 400;
  font-size: 18px;
  line-height: 65px;
  letter-spacing: 0%;
}

.reagent-card__bullet {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #222222;
  border-radius: 50%;
  flex-shrink: 0;
}

.reagent-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.reagent-card:hover .reagent-card__icon {
  transform: translate(2px, -2px);
}

/* Extra large desktop (≤1560px) */
@media (max-width: 1560px) {
  .reagents-section__title {
    font-size: 30px;
    line-height: 38px;
  }
  .reagents-section__intro {
    font-size: 17px;
    line-height: 28px;
  }
  .reagent-card__label {
    font-size: 16px;
    line-height: 41px;
  }
}

/* Large desktop (≤1399px) */
@media (max-width: 1399.98px) {
  .reagents-section__title {
    font-size: 28px;
    line-height: 36px;
  }
  .reagents-section__intro {
    font-size: 16px;
    line-height: 26px;
  }
  .reagent-card__label {
    font-size: 15px;
    line-height: 34px;
  }
}

/* Small desktop (≤1199px) */
@media (max-width: 1199.98px) {
  .reagents-section__title {
    font-size: 26px;
    line-height: 34px;
  }
  .reagents-section__intro {
    font-size: 15px;
    line-height: 24px;
  }
  .reagent-card__label {
    font-size: 14px;
    line-height: 29px;
  }
}

/* Tablet (≤991px) */
@media (max-width: 991.98px) {
  .reagents-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .reagents-section__title {
    font-size: 24px;
    line-height: 32px;
  }
  .reagents-section__intro {
    font-size: 14px;
    line-height: 22px;
  }
  .reagent-card__label {
    font-size: 14px;
    line-height: 23px;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767.98px) {
  .reagents-section {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .reagents-section__title {
    font-size: 22px;
    line-height: 30px;
  }
  .reagents-section__intro {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }
  .reagent-card {
    padding: 12px 14px;
  }
  .reagent-card__label {
    font-size: 13px;
    line-height: 20px;
  }
}

/* Small mobile (≤575px) */
@media (max-width: 575.98px) {
  .reagents-section__title {
    font-size: 20px;
    line-height: 26px;
  }
  .reagents-section__intro {
    font-size: 13px;
    line-height: 20px;
  }
  .reagent-card__label {
    font-size: 12px;
    line-height: 17px;
  }
  .reagent-card__icon {
    font-size: 14px;
  }
  .reagents-section {
    padding-top: 30px;
    padding-bottom: 30px;
}
}

/* ==================================================
   INFO BLOCKS
================================================== */
.info-blocks-section {
  background-color: #f5f6f7;
  padding-top: 60px;
  padding-bottom: 80px;
}

.info-block {
  padding: 24px 0;
  max-width: 1300px;
  margin: 0 auto;
}

.info-block__title {
  font-family: poppins, sans-serif;
  color: #222222;
  margin: 0;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 41px;
  letter-spacing: 0%;
  /* Allow long words (e.g. French "d'approvisionnement") to wrap inside the
     narrow left column instead of overflowing into the right text column. */
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.info-block__text {
  font-family: poppins, sans-serif;
  color: #555555;
  margin: 0 0 20px;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
}

.info-block__cta {
  margin-top: 8px;
}

.info-blocks__divider {
  border: 0;
  border-top: 1px solid #d9d9d9;
  margin: 16px 0;
  opacity: 1;
}
.products-section .product-card{
  padding: 0px;
}

/* Extra large desktop (≤1560px) */
@media (max-width: 1560px) {
  .info-block__title {
    font-size: 28px;
    line-height: 36px;
  }
  .info-block {
    max-width: 1100px;
    padding: 22px 0;
  }
  .info-block__text {
    font-size: 17px;
    line-height: 28px;
  }
}

/* Large desktop (≤1399px) */
@media (max-width: 1399.98px) {
  .info-block__title {
    font-size: 26px;
    line-height: 34px;
  }
  .info-block {
    max-width: 960px;
    padding: 20px 0;
  }
  .info-block__text {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Small desktop (≤1199px) */
@media (max-width: 1199.98px) {
  .info-block__title {
    font-size: 24px;
    line-height: 32px;
  }
  .info-block {
    max-width: 100%;
    padding: 18px 0;
  }
  .info-block__text {
    font-size: 15px;
    line-height: 24px;
  }
}

/* Tablet (≤991px) */
@media (max-width: 991.98px) {
  .info-blocks-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .info-block__title {
    font-size: 22px;
    line-height: 30px;
  }
  .info-block {
    padding: 16px 0;
  }
  .info-block__text {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767.98px) {
  .info-blocks-section {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .info-block {
    padding: 16px 0;
  }
  .info-block__title {
    font-size: 20px;
    line-height: 28px;
  }
  .info-block__text {
    font-size: 14px;
    line-height: 22px;
  }
  .info-block__cta {
    width: 100%;
    text-align: center;
  }
}

/* Small mobile (≤575px) */
@media (max-width: 575.98px) {
  .info-block {
    padding: 12px 0 !important;
  }
  .info-blocks__divider .info-block .row>*{
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 0px;
  }
  .info-block__title {
    font-size: 18px;
    line-height: 26px;
  }
  .info-block__text {
    font-size: 13px;
    line-height: 20px;
  }
  .info-blocks-section {
    padding-top: 25px;
    padding-bottom: 25px;
}
}

/* ========== Product Detail — Tabs ========== */
.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 0;
  padding: 6px;
  background: #f1f7f9;
  border-radius: 14px;
  margin-bottom: 24px !important;
  width: fit-content;
  max-width: 100%;
}
.product-tabs .nav-item { margin: 0; }
.product-tabs .nav-link {
  position: relative;
  border: 0;
  background: transparent;
  color: #4a5d68;
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 22px;
  border-radius: 10px;
  transition: all .25s ease;
  white-space: nowrap;
}
.product-tabs .nav-link:hover {
  color: var(--primary-dark);
  background: rgba(57, 165, 183, .08);
}
.product-tabs .nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 6px 18px -6px rgba(57, 165, 183, .55);
}
.product-tab-content {
  background: #fff;
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .12);
  border: 1px solid #eef3f5;
  animation: fadeInTab .35s ease;
}
.product-tab-content .tab-pane h4 {
  color: var(--primary-dark);
  font-weight: 700;
  border-bottom: 2px solid #eef3f5;
  padding-bottom: 12px;
  margin-bottom: 16px !important;
}
.product-tab-content .product-detail-text {
  color: #4a5d68;
  line-height: 1.7;
}
@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 575.98px) {
  .product-tabs { gap: 4px; padding: 4px; border-radius: 10px; }
  .product-tabs .nav-link { padding: 8px 14px; font-size: 13px; }
  .product-tab-content { padding: 18px 16px; border-radius: 12px; }
}

/* ========== Legal Pages — Privacy / Terms ========== */
.legal-section {
  padding: 50px 0 70px;
  background: linear-gradient(180deg, #f7fbfc 0%, #ffffff 100%);
}
.legal-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eaf1f3;
  box-shadow: 0 30px 60px -40px rgba(23, 138, 148, .25);
  overflow: hidden;
  animation: legalFadeUp .45s ease;
}
.legal-card__header {
  padding: 22px 36px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
}
.legal-card__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1.2;
}
.legal-card__meta {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
}
.legal-card__body {
  padding: 32px 40px 36px;
}

/* Typography inside admin-managed CKEditor content */
.legal-content {
  color: #4a5d68;
  font-size: 15.5px;
  line-height: 1.75;
}
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5,
.legal-content h6 {
  color: var(--primary-dark);
  font-weight: 700;
  margin: 28px 0 10px;
  line-height: 1.3;
}
.legal-content h1:first-child,
.legal-content h2:first-child,
.legal-content h3:first-child { margin-top: 0; }
.legal-content h1 { font-size: 24px; }
.legal-content h2 { font-size: 20px; padding-bottom: 8px; border-bottom: 2px solid #eaf1f3; }
.legal-content h3 { font-size: 17px; }
.legal-content h4 { font-size: 16px; }
.legal-content p {
  margin: 0 0 14px;
  color: #4a5d68;
}
.legal-content strong, .legal-content b { color: #1f2d35; font-weight: 600; }
.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px dashed var(--primary-color);
  transition: all .2s ease;
}
.legal-content a:hover {
  color: var(--primary-dark);
  border-bottom-style: solid;
}
.legal-content ul,
.legal-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal-content ul li,
.legal-content ol li {
  margin-bottom: 6px;
  padding-left: 4px;
}
.legal-content ul li::marker { color: var(--primary-color); }
.legal-content ol li::marker { color: var(--primary-color); font-weight: 600; }
.legal-content blockquote {
  margin: 18px 0;
  padding: 14px 20px;
  background: #f1f7f9;
  border-left: 4px solid var(--primary-color);
  border-radius: 0 12px 12px 0;
  color: #2c3a42;
  font-style: italic;
}
.legal-content hr {
  border: 0;
  height: 1px;
  background: #eaf1f3;
  margin: 24px 0;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14.5px;
  border: 1px solid #eaf1f3;
  border-radius: 10px;
  overflow: hidden;
}
.legal-content table th,
.legal-content table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #eaf1f3;
}
.legal-content table th {
  background: #f7fbfc;
  color: var(--primary-dark);
  font-weight: 600;
}
.legal-content table tr:last-child td { border-bottom: 0; }
.legal-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 10px 0;
}
.legal-content code {
  background: #f1f7f9;
  color: var(--primary-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13.5px;
}

@keyframes legalFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767.98px) {
  .legal-section { padding: 30px 0 50px; }
  .legal-card { border-radius: 14px; }
  .legal-card__header { padding: 16px 20px; }
  .legal-card__title { font-size: 18px; }
  .legal-card__body { padding: 22px 20px 26px; }
  .legal-content { font-size: 14.5px; }
  .legal-content h1 { font-size: 20px; }
  .legal-content h2 { font-size: 17px; }
  .legal-content h3 { font-size: 16px; }
}

.about-logo-img {
  height: 34px;
  width: 35px;
}

.product-detail-shorttitle {
    font-family: poppins, sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0%;
}
