/* ==================== GLOBAL FONT OVERRIDE ==================== */
*:not(.fa):not(.fas):not(.fa-solid):not(.fa-brands):not(.bi):not(.fa-regular):not(.fa-light) {
    font-family: 'Poppins', sans-serif !important;
}

:root {
    /* =========================
       BRAND COLORS (CELESTIAL PALETTE)
    ========================= */
    --primary: #9AAEFF;
    /* Signature Periwinkle */
    --primary-light: #C9D4FF;
    --primary-soft: #EEF2FF;

    --secondary: #968FD2;
    /* Lavender Grey */
    --secondary-light: #D9D4F7;
    --secondary-soft: #F3F1FF;

    --dark: #1D2F6F;
    /* Celestial Navy */
    --dark-soft: #32468C;
    --accent: #968FD2;
    /* Lavender */
    --accent-light: #D9D4F7;

    /* =========================
       BACKGROUNDS
    ========================= */
    --bg-main: #FBF1E8;
    --bg-section: #F8F6FF;
    --bg-card: #FFFFFF;
    --bg-alt: #F4F7FF;

    /* =========================
       TEXT
    ========================= */
    --heading: #1D2F6F;
    --heading-light: #32468C;

    --text: #334155;
    --text-light: #475569;
    --text-muted: #64748B;

    /* =========================
       BORDERS & EFFECTS
    ========================= */
    --border: #E7EAF6;
    --border-light: #F1F3FA;

    --shadow-sm: 0 4px 12px rgba(29, 47, 111, 0.05);
    --shadow-md: 0 10px 30px rgba(29, 47, 111, 0.08);
    --shadow-lg: 0 20px 60px rgba(29, 47, 111, 0.12);
    --shadow-xl: 0 30px 80px rgba(29, 47, 111, 0.15);
    --shadow-glow: 0 0 40px rgba(154, 174, 255, 0.3);

    /* =========================
       STATUS COLORS
    ========================= */
    --success: #8BC7A1;
    --warning: #F2C572;
    --danger: #E28A8A;

    /* =========================
       NEW GRADIENTS
    ========================= */
    --gradient-primary: linear-gradient(135deg, #9AAEFF 0%, #968FD2 100%);
    --gradient-hero: linear-gradient(135deg, #FBF1E8 0%, #F8F6FF 40%, #EEF2FF 100%);
    --gradient-dark: linear-gradient(180deg, #FFFFFF 0%, #F8F6FF 100%);
    --gradient-accent: linear-gradient(135deg, #968FD2 0%, #F6E6DA 100%);

    /* =========================
       MAPPINGS FOR BACKWARD COMPATIBILITY
    ========================= */
    --bg-white: var(--bg-card);
    --bg-light: var(--bg-alt);
    --bg-soft: var(--bg-main);

    --text-dark: var(--heading);
    --text-heading: var(--heading);

    --primary-color: var(--primary);
    --secondary-color: var(--secondary);
    --accent-color: var(--accent);
    --dark-color: var(--dark);
    --border-color: var(--border);
    --sagalife-blue: var(--primary);
    --sagalife-orange: var(--accent);
}

/* ==================== GLOBAL COMPONENTS ==================== */
.btn-primary {
    background: var(--secondary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 60px !important;
    padding: 16px 40px !important;
    font-weight: 600 !important;
    transition: all .4s ease !important;
    box-shadow: var(--shadow-md) !important;
}

.btn-primary:hover {
    background: var(--secondary-dark) !important;
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-lg) !important;
}

.hero-section {
    background: var(--gradient-hero) !important;
}

.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(154, 174, 255, 0.15);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: all .4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.section-title {
    color: var(--text-heading);
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-muted);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbars globally while preserving scroll functionality */
::-webkit-scrollbar {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-overflow-style: none !important;
    /* IE and Edge */
    scrollbar-width: none !important;
    /* Firefox */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ==================== PAGE LOADER ==================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 6vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
}

.loader-logo span {
    color: var(--accent);
    font-weight: 900;
}

.loader-pill-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-pill-icon i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1) rotate(10deg);
        opacity: 1;
    }
}

.loader-progress-container {
    width: 280px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 208, 132, 0.5);
}

.loader-counter {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 0.1em;
}

.loader-molecule {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: floatMolecule 6s ease-in-out infinite;
}

.loader-molecule:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.loader-molecule:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.loader-molecule:nth-child(3) {
    width: 140px;
    height: 140px;
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

.loader-molecule:nth-child(4) {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes floatMolecule {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -15px) rotate(5deg);
    }

    66% {
        transform: translate(-10px, 10px) rotate(-3deg);
    }
}

/* ==================== NAVBAR ==================== */
.navbar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    background: rgba(0, 31, 63, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.35s ease;
}

.navbar-wrap.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(154, 174, 255, 0.15);
    box-shadow: 0 8px 24px rgba(29, 47, 111, 0.08);
}

.navbar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
}

@media (max-width: 575.98px) {
    .navbar-inner {
        padding: 10px 16px;
        gap: 12px;
    }
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff !important;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: color 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
    flex-shrink: 0;
    min-width: fit-content;
}

.navbar-wrap.scrolled .navbar-brand {
    color: var(--primary) !important;
}

.brand-logo {
    max-height: 42px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.02);
}

.brand-logo-sm {
    max-height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
    gap: 4px;
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: nowrap;
    min-width: 0;
}

.nav-menu a.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu a.nav-link:hover {
    color: var(--accent) !important;
    background: rgba(255, 255, 255, 0.08);
}

.nav-menu a.nav-link.active {
    color: var(--accent) !important;
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid var(--accent);
}

.navbar-wrap.scrolled .nav-menu a.nav-link {
    color: var(--text-dark) !important;
}

.navbar-wrap.scrolled .nav-menu a.nav-link:hover {
    color: var(--primary) !important;
    background: rgba(0, 87, 184, 0.08);
}

.navbar-wrap.scrolled .nav-menu a.nav-link.active {
    color: var(--primary) !important;
    background: rgba(0, 87, 184, 0.08);
    border-bottom: 2px solid var(--primary);
}

.nav-cta {
    flex-shrink: 0;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: fit-content;
}

.btn-cta-nav {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    background: var(--gradient-accent) !important;
    border: none !important;
    color: #fff !important;
    letter-spacing: 0.03em !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.25) !important;
    text-decoration: none !important;
}

.btn-cta-nav:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.4) !important;
    color: #fff !important;
    opacity: 0.95;
}

.navbar-wrap.scrolled .btn-cta-nav {
    background: var(--gradient-primary) !important;
    box-shadow: 0 4px 15px rgba(0, 87, 184, 0.25) !important;
}

.navbar-wrap.scrolled .btn-cta-nav:hover {
    box-shadow: 0 8px 25px rgba(0, 87, 184, 0.4) !important;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-wrap.scrolled .mobile-toggle {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-menu {
        display: none !important;
    }

    .nav-cta {
        display: none !important;
    }

    .mobile-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        font-size: 1.2rem;
        background: transparent;
        border: none;
        color: #fff;
        cursor: pointer;
    }

    .navbar-wrap.scrolled .mobile-toggle {
        color: var(--primary);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-inner {
        padding: 12px 20px;
        gap: 14px;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .brand-title .primary {
        font-size: 1rem;
    }

    .brand-title .secondary {
        font-size: 0.65rem;
        letter-spacing: 0.18em;
    }
}

@media (max-width: 767.98px) {
    .navbar-inner {
        padding: 12px 16px;
        gap: 12px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .brand-title .primary {
        font-size: 0.95rem;
    }

    .brand-title .secondary {
        font-size: 0.6rem;
        letter-spacing: 0.2em;
    }

    .brand-title {
        gap: 2px;
    }
}

@media (max-width: 379px) {
    .navbar-inner {
        padding: 10px 12px;
        gap: 8px;
    }

    .brand-title .primary {
        font-size: 0.85rem;
    }

    .brand-title .secondary {
        display: none;
    }

    .brand-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .mobile-toggle {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .nav-menu a.nav-link {
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    .brand-title .primary {
        font-size: 0.95rem;
    }
}

/* ==================== OFFCANVAS NAV ==================== */
.nav-offcanvas {
    background: rgba(5, 22, 48, 0.98) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 100005 !important;
}

.offcanvas-backdrop {
    z-index: 100002 !important;
}

.nav-offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 22px;
}

.nav-offcanvas-title {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-offcanvas-title .brand-icon-sm {
    color: var(--accent);
    margin-right: 10px;
}

.nav-offcanvas-close {
    filter: invert(1);
}

.nav-offcanvas-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offcanvas-nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease, color 0.2s ease;
}

.offcanvas-nav-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff !important;
}

.offcanvas-nav-link.active {
    background: rgba(255, 255, 255, 0.07);
    color: var(--accent) !important;
    border-bottom: 2px solid var(--accent);
}

.offcanvas-nav-link .link-arrow {
    opacity: 0.7;
    font-size: 1rem;
    font-style: normal;
}

.offcanvas-cta-wrap {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-cta-offcanvas {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border: none;
    color: #fff !important;
    border-radius: 60px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-cta-offcanvas:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff !important;
}

.btn-cta-offcanvas .cta-arrow {
    margin-left: 10px;
    font-size: 0.85rem;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0a1f3d;
    padding: 120px 0 80px;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(10, 31, 61, 0.82) 0%, rgba(20, 71, 121, 0.55) 50%, rgba(10, 31, 61, 0.88) 100%),
        url('https://images.pexels.com/photos/31522470/cleanroom-design-hvac-system-india-pharma-setup-industrial-lighting-31522470.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1200&w=1920') center/cover no-repeat;
    z-index: 0;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(10, 31, 61, 0.72) 0%, rgba(20, 71, 121, 0.45) 50%, rgba(10, 31, 61, 0.82) 100%);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.floating-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.35), transparent 70%);
    top: -10%;
    right: -5%;
}

.floating-shape.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.35), transparent 70%);
    bottom: -15%;
    left: -10%;
}

.floating-shape.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 87, 184, 0.4), transparent 70%);
    top: 40%;
    right: 35%;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    animation: floatParticle linear infinite;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    10% {
        opacity: 0.9;
    }

    90% {
        opacity: 0.9;
    }

    100% {
        transform: translate(40px, -110vh);
        opacity: 0;
    }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-section>.container {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 10;
    position: relative;
}

.hero-badge i {
    color: var(--accent);
    font-size: 0.75rem;
}

.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.hero-heading .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    line-height: 1.6;
    margin: 0 auto 40px;
    /* Centered auto margins */
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    /* Centered buttons flexbox */
}

.btn-hero-primary {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 35px;
    border-radius: 60px;
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.btn-hero-secondary {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 35px;
    border-radius: 60px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
    /* Centered stats container */
}

.hero-stat {
    text-align: center;
    /* Centered text inside each stat */
}

.hero-stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stat-value span {
    color: var(--accent);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounceDown 2s ease-in-out infinite;
}

.hero-scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.hero-scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 10px;
    background: var(--accent);
    border-radius: 3px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ==================== SECTION COMMON ==================== */
.section-padding {
    padding: 100px 0;
}

.section-padding-lg {
    padding: 120px 0;
}

.section-bg-light {
    background: var(--bg-light);
}

.section-bg-dark {
    background: var(--gradient-dark);
    color: #fff;
}

.section-bg-blue {
    background: linear-gradient(180deg, #F5F9FD 0%, #EDF4FB 100%);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-heading.light {
    color: #fff;
}

.section-subtext {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    line-height: 1.8;
}

.section-subtext.light {
    color: rgba(255, 255, 255, 0.75);
}

.section-bg-dark .section-subtext {
    color: rgba(255, 255, 255, 0.75);
}

.section-bg-dark .section-label {
    color: var(--accent);
}

/* ==================== ABOUT SECTION ==================== */
.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
}

.about-content-panel {
    position: relative;
    z-index: 2;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 87, 184, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-float-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 280px;
    border: 1px solid rgba(0, 87, 184, 0.05);
}

.about-float-card i {
    font-size: 2.2rem;
    color: var(--accent);
}

.about-float-card .card-text strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    margin-bottom: 2px;
}

.about-float-card .card-text span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.counter-item {
    text-align: center;
    padding: 25px 15px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.counter-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(0, 87, 184, 0.1);
}

.counter-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 87, 184, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: var(--primary);
}

.counter-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.counter-value span {
    color: var(--accent);
}

.counter-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #about .row {
        align-items: stretch !important;
        --bs-gutter-x: 2rem;
    }

    #aboutImageCol,
    #aboutTextCol {
        display: flex;
    }

    .about-image-wrapper {
        width: 100%;
        min-height: 560px;
        border-radius: 28px;
    }

    .about-image {
        height: 100%;
        min-height: 560px;
    }

    .about-content-panel {
        width: 100%;
        flex: 1;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(0, 87, 184, 0.08);
        border-radius: 28px;
        padding: 36px;
        box-shadow: 0 24px 70px rgba(0, 87, 184, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #about .section-heading {
        font-size: 2.35rem;
        margin-bottom: 14px;
    }

    #about .section-subtext {
        font-size: 0.98rem;
        line-height: 1.72;
        max-width: none;
    }

    #about .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 30px;
    }

    #about .counter-item {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px;
        border-radius: 14px;
    }

    #about .counter-icon {
        width: 44px;
        height: 44px;
        margin: 0;
        flex: 0 0 44px;
        font-size: 1.05rem;
    }

    #about .counter-value {
        font-size: 1.45rem;
    }

    #about .counter-label {
        font-size: 0.68rem;
        letter-spacing: 0.04em;
    }

    #about .about-float-card {
        right: 18px;
        bottom: 18px;
        max-width: 255px;
        padding: 18px 20px;
    }
}

/* ==================== CAPABILITIES SECTION ==================== */
.capability-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 87, 184, 0.1);
}

.capability-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 87, 184, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.capability-card:hover .capability-icon {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 87, 184, 0.3);
    transform: scale(1.05) rotate(-3deg);
}

.capability-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.capability-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.capability-card .card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 15px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.capability-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== PRODUCTS SECTION ==================== */
.product-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(154, 174, 255, 0.15);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease, border-color 0.5s ease;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 87, 184, 0.2);
    z-index: 10;
}

.product-card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.6) 50%, transparent 60%);
    transform: translateX(-150%) rotate(30deg);
    transition: transform 0.7s ease;
    z-index: 3;
    pointer-events: none;
}

.product-card:hover .product-card-shine {
    transform: translateX(150%) rotate(30deg);
}

.product-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.product-card-image::after {
    content: '\f06e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%) scale(0.5);
    color: #fff;
    font-size: 2.5rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
}

.product-card:hover .product-card-image::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.15) rotate(1deg);
}

.product-card-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 87, 184, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-card-image .image-overlay {
    opacity: 1;
}

.product-card-body {
    padding: 24px 24px 30px;
    position: relative;
}

.product-card-body::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 24px;
    right: 24px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    font-size: 1.1rem;
}

.product-card:hover .product-card-body::after {
    opacity: 1;
    transform: translateX(0);
}

.product-card-body .category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary);
    margin-bottom: 6px;
    transition: transform 0.4s ease, color 0.4s ease;
    display: inline-block;
    position: relative;
}

.product-card-body .category::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.product-card:hover .product-card-body .category::after {
    width: 100%;
}

.product-card-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.product-card:hover .product-card-body h4 {
    color: var(--primary);
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.product-card:hover .product-card-body .category {
    transform: translateY(-3px);
    color: var(--primary);
}

.product-card:hover .product-card-body p {
    transform: translateY(-3px);
    color: var(--text-dark);
}

.portfolio-slider-shell {
    position: relative;
}

.portfolio-viewport {
    overflow: hidden;
    padding: 10px 4px 34px;
    margin: 0 -4px;
}

.portfolio-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.portfolio-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
}

.portfolio-slide .product-card {
    height: 100%;
}

.portfolio-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 8px;
}

.portfolio-arrows {
    display: flex;
    gap: 10px;
}

.portfolio-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(0, 87, 184, 0.16);
    background: #fff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.portfolio-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.portfolio-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.portfolio-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 87, 184, 0.2);
    transition: all 0.25s ease;
}

.portfolio-dot.active {
    width: 32px;
    background: var(--primary);
    box-shadow: 0 0 16px rgba(0, 87, 184, 0.25);
}

.portfolio-status {
    min-width: 72px;
    text-align: right;
    font-family: 'Poppins', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--primary);
}

/* ==================== QUALITY SECTION ==================== */
.quality-section {
    background: var(--gradient-dark);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.quality-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.quality-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.06), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.quality-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(154, 174, 255, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.quality-card:hover {
    background: #fff;
    border-color: rgba(154, 174, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quality-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
    transition: transform 0.4s ease;
}

.quality-card:hover i {
    transform: scale(1.15);
}

.quality-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.quality-card p {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 0;
}

.quality-timeline {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.timeline-progress-bar {
    flex: 1;
    max-width: 600px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.timeline-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px;
    width: 0%;
    transition: width 1.5s ease;
    box-shadow: 0 0 20px rgba(0, 208, 132, 0.5);
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 20px rgba(0, 208, 132, 0.5);
    flex-shrink: 0;
}

/* ==================== GLOBAL SECTION ==================== */
.world-map-container {
    position: relative;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.world-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-marker {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 208, 132, 0.3), 0 0 20px rgba(0, 208, 132, 0.4);
    animation: markerPulse 2s ease-in-out infinite;
}

.map-marker.m-1 {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.map-marker.m-2 {
    top: 20%;
    left: 48%;
    animation-delay: 0.3s;
}

.map-marker.m-3 {
    top: 60%;
    left: 30%;
    animation-delay: 0.6s;
}

.map-marker.m-4 {
    top: 35%;
    left: 68%;
    animation-delay: 0.9s;
}

.map-marker.m-5 {
    top: 50%;
    left: 75%;
    animation-delay: 1.2s;
}

.map-marker.m-6 {
    top: 40%;
    left: 18%;
    animation-delay: 1.5s;
}

.map-marker.m-7 {
    top: 28%;
    left: 55%;
    animation-delay: 0.8s;
}

@keyframes markerPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(0, 208, 132, 0.3), 0 0 20px rgba(0, 208, 132, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(0, 208, 132, 0.1), 0 0 35px rgba(0, 208, 132, 0.6);
    }
}

.global-stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.global-stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.global-stat-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.global-stat-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.global-stat-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    font-weight: 500;
}

/* ==================== WHY CHOOSE US ==================== */
.choose-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.choose-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: rgba(0, 87, 184, 0.1);
}

.choose-card .step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 87, 184, 0.07);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.choose-card .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(0, 87, 184, 0.2);
}

.choose-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.choose-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==================== CSR SECTION ==================== */
.csr-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.csr-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.csr-image-wrapper:hover .csr-image {
    transform: scale(1.05);
}

.csr-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.csr-item:last-child {
    border-bottom: none;
}

.csr-item i {
    font-size: 1.3rem;
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.csr-item h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.csr-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
}

.testimonial-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px 35px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Poppins', sans-serif;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.08;
    position: absolute;
    top: 0;
    left: 20px;
    line-height: 1;
    pointer-events: none;
}

.testimonial-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 25px rgba(0, 87, 184, 0.25);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 400;
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.testimonial-nav-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.testimonial-nav-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 87, 184, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.testimonial-nav-dots .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 87, 184, 0.4);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.btn-cta-primary {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 38px;
    border-radius: 60px;
    background: #fff;
    border: none;
    color: var(--primary);
    letter-spacing: 0.02em;
    margin: 10px 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: var(--light);
}

.btn-cta-outline {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 38px;
    border-radius: 60px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    letter-spacing: 0.02em;
    margin: 10px 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px);
    color: #fff;
}

.floating-cta-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(30px);
}

.cta-shape.s1 {
    width: 300px;
    height: 300px;
    top: -10%;
    right: -5%;
}

.cta-shape.s2 {
    width: 200px;
    height: 200px;
    bottom: -5%;
    left: -3%;
    background: rgba(255, 255, 255, 0.07);
}

.cta-shape.s3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 70%;
    background: rgba(255, 255, 255, 0.04);
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0a1628;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.footer h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer ul li a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer ul li a i {
    font-size: 0.6rem;
    color: var(--accent);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    margin-right: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 87, 184, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    margin-top: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.footer a {
    text-decoration: none;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 87, 184, 0.35);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 87, 184, 0.5);
    background: var(--gradient-accent);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 767.98px) {
    .navbar-collapse {
        background: rgba(0, 31, 63, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 20px;
        margin-top: 15px;
    }

    .navbar.scrolled .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
    }

    .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 12px 16px !important;
        margin: 2px 0;
    }

    .navbar.scrolled .navbar-nav .nav-link {
        color: var(--text-dark) !important;
    }

    .btn-cta-nav {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 991.98px) {
    #about .row {
        text-align: left;
    }

    #aboutLabel,
    #aboutDivider {
        margin-left: 0;
        margin-right: 0;
    }

    #aboutLabel::before {
        display: inline-block;
    }

    #about .section-subtext {
        margin-left: 0;
        margin-right: 0;
    }

    .about-image-wrapper {
        max-width: none;
        margin: 0;
    }

    .hero-stats {
        gap: 20px;
        justify-content: center;
    }

    .hero-stat-value {
        font-size: 1.8rem;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 28px;
    }

    .about-float-card {
        bottom: 20px;
        right: 20px;
        position: absolute;
        display: flex;
    }

    .about-image {
        height: 420px;
    }

    .portfolio-slide {
        flex-basis: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }

    .section-padding-lg {
        padding: 100px 0;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    #about .about-image-wrapper {
        min-height: 560px;
    }

    #about .about-image {
        height: 100%;
        min-height: 560px;
    }

    .portfolio-slide {
        flex-basis: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 767.98px) {
    .stat-number {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-stats {
        gap: 15px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 1.7rem;
    }

    .about-image {
        height: 280px;
    }

    .testimonial-card {
        padding: 30px 22px;
    }

    .cta-content h2 {
        font-size: 1.7rem;
    }

    .map-marker {
        width: 10px;
        height: 10px;
    }

    .product-card-image {
        height: 180px;
    }

    .portfolio-slide {
        flex-basis: 100%;
        max-width: 100%;
    }

    .portfolio-controls {
        gap: 12px;
    }

    .portfolio-status {
        display: none;
    }

    .csr-image {
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    .stat-number {
        font-size: 1.8rem;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-stat-value {
        font-size: 1.3rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .counter-item {
        padding: 18px 10px;
    }

    .counter-value {
        font-size: 1.4rem;
    }

    .capability-card {
        padding: 25px 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .hero-stat {
        min-width: 45%;
        text-align: center;
    }
}

@media (min-width: 1600px) {

    .container,
    .container-lg {
        max-width: 1400px;
    }
}

@media (min-width: 2000px) {

    .container,
    .container-lg {
        max-width: 1700px;
    }
}

/* Utility */
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
    margin-bottom: 20px;
}

/* Option B Section */
.option-b {
    display: none;
}


/* ==================== SUBPAGE HERO ==================== */
.subpage-hero {
    background: linear-gradient(135deg,
            #FBF1E8 0%,
            #E8D8FF 30%,
            #A7B8FF 70%,
            #9B8FD6 100%);
    color: var(--dark);
    padding: 120px 0 80px;
    position: relative;
}

.subpage-hero .text-white-50 {
    color: var(--text-dark) !important;
}

.subpage-hero h1,
.subpage-hero .display-4 {
    letter-spacing: -1.5px;
    font-weight: 800;
}

.subpage-hero p.lead {
    letter-spacing: 0.5px;
}

.subpage-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}


/* ==================== ABOUT DIRECTORY STYLES ==================== */
.section-title {
    position: relative;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

.dna-item {
    display: flex;
}

.dna-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dna-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(0, 87, 184, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.dna-card h5 {
    font-size: 1.1rem;
}

.stat-card {
    background: var(--accent);
    /* Lavender background */
    border: 1px solid var(--accent);
    box-shadow: 0 4px 15px rgba(167, 184, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stat-card .stat-number {
    color: var(--dark) !important;
    /* Ensure numbers are readable against lavender */
}

.stat-card .small {
    color: var(--text-dark) !important;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(167, 184, 255, 0.25);
    border-color: var(--primary);
}

.stats-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.country-tag {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 500;
    color: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.subsidiary-card {
    background: linear-gradient(to right, #ffffff, #f1f7f8);
    border-left: 5px solid var(--accent-color);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}


/* ==================== PRODUCT PORTFOLIO SECTION ==================== */
.product-portfolio-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.portfolio-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    background: rgba(0, 87, 184, 0.06);
    border-radius: 30px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 87, 184, 0.1);
}

.portfolio-left-content {
    position: relative;
    z-index: 2;
}

.portfolio-left-content .section-title {
    position: relative;
    margin-bottom: 25px;
    font-size: 2.25rem;
    color: var(--text-dark);
}

.portfolio-left-content .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.portfolio-cards-grid {
    position: relative;
    z-index: 2;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0, 87, 184, 0.06);
    box-shadow: 0 10px 40px rgba(5, 22, 48, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 87, 184, 0.08);
    border-color: rgba(0, 87, 184, 0.15);
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(0, 87, 184, 0.06) 0%, rgba(0, 174, 239, 0.06) 100%);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-icon-box {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 87, 184, 0.2);
}

.portfolio-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.portfolio-card:hover h5 {
    color: var(--primary);
}

.portfolio-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
}


/* ==================== PRODUCT DIRECTORY ==================== */

.directory-wrapper {
    position: relative;
}

/* Search */
.search-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.sagalife-search {
    width: 100%;
    border: 1.5px solid var(--sagalife-orange);
    border-radius: 50px;
    padding: 14px 50px 14px 24px;
    font-size: 15px;
    outline: none;
    transition: all .3s ease;
    background: #fff;
}

.sagalife-search:focus {
    box-shadow: 0 0 12px rgba(242, 122, 34, 0.2);
}

.clear-search-btn {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    display: none;
    font-size: 18px;
}

/* Categories */

.category-buttons-panel {
    max-height: 520px;
    overflow-y: auto;
    padding-right: 10px;
}

.category-buttons-panel::-webkit-scrollbar {
    width: 6px;
}

.category-buttons-panel::-webkit-scrollbar-thumb {
    background: #d6dce5;
    border-radius: 20px;
}

.sagalife-category-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: #fff;
    border-radius: 12px;
    padding: 15px 18px;
    margin-bottom: 12px;
    font-weight: 500;
    transition: all .3s ease;
    color: #334155;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.sagalife-category-btn:hover {
    transform: translateX(5px);
    background: rgba(0, 87, 184, 0.05);
}

.sagalife-category-btn.active {
    background: var(--sagalife-blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 87, 184, 0.25);
}

.btn-counter-badge {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    padding: 4px 10px;
    font-size: 12px;
}

.sagalife-category-btn.active .btn-counter-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ==========================================
   DESKTOP + TABLET LAYOUT
========================================== */

.directory-layout {
    display: flex;
    flex-wrap: nowrap;
}

/* ==========================================
   ALPHABET NAVIGATION
========================================== */

.alpha-jumper-strip {
    position: sticky;
    top: 100px;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 8px;

    padding: 12px 8px;

    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;

    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;

    min-width: 58px;
}

.alpha-jumper-strip::-webkit-scrollbar {
    width: 4px;
}

.alpha-jumper-strip::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 20px;
}

.alpha-link {
    width: 38px;
    height: 38px;

    border-radius: 50%;
    border: 1px solid #e2e8f0;

    background: #fff;
    color: var(--sagalife-blue);

    font-size: 13px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: all .3s ease;
}

.alpha-link:hover {
    background: var(--sagalife-orange);
    color: #fff;
    border-color: var(--sagalife-orange);
    transform: translateX(3px);
}

.alpha-link.active {
    background: var(--sagalife-blue);
    color: #fff;
    border-color: var(--sagalife-blue);
}

/* ==========================================
   PRODUCTS
========================================== */

.product-column {
    min-width: 0;
}

.stream-viewport {
    max-height: 850px;
    overflow-y: auto;
    padding-right: 15px;
}

/* ==========================================
   LARGE TABLET
========================================== */
@media (min-width:768px) and (max-width:991.98px) {

    .category-buttons-panel {
        max-height: 600px;
    }

    .stream-viewport {
        max-height: 600px;
        overflow-y: auto;
    }

    .alpha-jumper-strip {
        min-width: 50px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .directory-layout {
        display: block;
    }

    .alpha-jumper-strip {
        position: relative;
        top: auto;

        display: flex !important;
        flex-direction: row !important;

        align-items: center;

        width: 100%;
        max-height: none;

        overflow-x: auto;
        overflow-y: hidden;

        white-space: nowrap;

        gap: 8px;

        margin: 20px 0;
        padding: 12px;

        scrollbar-width: none;
    }

    .alpha-jumper-strip::-webkit-scrollbar {
        display: none;
    }

    .alpha-link {
        flex: 0 0 auto;
        width: 36px;
        height: 36px;
    }

    .category-buttons-panel {
        max-height: 280px;
    }

    .stream-viewport {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

/* ==================== MANUFACTURING PAGE SPECIFIC STYLES ==================== */
.manufacturing-page {
    --mfg-primary: #0057B8;
    --mfg-secondary: #0a1628;
    --mfg-accent: #00D084;
    --mfg-white: #ffffff;
    --mfg-light: #F5F9FD;
    --mfg-text: #1f2937;
    --mfg-transition: all .4s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--mfg-text);
}

/* Hero Section */
.manufacturing-page .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.manufacturing-page .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manufacturing-page .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 22, 40, 0.85), rgba(0, 87, 184, 0.55));
}

.manufacturing-page .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.manufacturing-page .hero-title {
    font-size: clamp(1.8rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 20px 0;
    font-family: 'Montserrat', sans-serif;
}

.manufacturing-page .hero-subtitle {
    max-width: 700px;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin: 0 auto 35px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.manufacturing-page .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    /* Centered buttons */
}

/* Custom Buttons */
.manufacturing-page .btn-primary-custom {
    background: var(--mfg-primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    display: inline-block;
    font-weight: 600;
    transition: var(--mfg-transition);
}

.manufacturing-page .btn-primary-custom:hover {
    background: var(--mfg-secondary);
    color: #fff;
    transform: translateY(-2px);
}

.manufacturing-page .btn-outline-custom {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: var(--mfg-transition);
}

.manufacturing-page .btn-outline-custom:hover {
    background: #fff;
    color: var(--mfg-secondary);
    transform: translateY(-2px);
}

/* Badges and Titles */
.manufacturing-page .section-badge,
.manufacturing-page .section-badge-dark {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 4px 12px;
    border-radius: 4px;
}

.manufacturing-page .section-badge {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.manufacturing-page .section-badge-dark {
    color: var(--mfg-primary);
    background: rgba(0, 87, 184, 0.06);
}

.manufacturing-page .section-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--mfg-secondary);
    margin-bottom: 20px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.manufacturing-page .section-description {
    max-width: 750px;
    margin: auto;
    color: var(--text-muted);
}

.manufacturing-page .image-wrapper {
    height: 100%;
}

.manufacturing-page .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: var(--shadow-lg);
    transition: var(--mfg-transition);
}

.manufacturing-page .image-wrapper img:hover {
    transform: scale(1.02);
}

/* Stats */
.manufacturing-page .stats-section {
    background: var(--mfg-primary);
    color: #fff;
    padding: 70px 0;
}

.manufacturing-page .stat-box {
    text-align: center;
}

.manufacturing-page .stat-box h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.manufacturing-page .stat-box p {
    margin-bottom: 0;
    font-weight: 500;
    opacity: 0.9;
}

/* Strategy */
.manufacturing-page #strategy {
    position: relative;
    overflow: hidden;
}

.manufacturing-page #strategy>.container {
    position: relative;
    z-index: 2;
}

.strategy-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.strategy-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 87, 184, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 87, 184, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
    animation: strategyGridShift 45s linear infinite;
}

.strategy-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.strategy-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 87, 184, 0.28), transparent 70%);
    top: -20%;
    left: -8%;
    animation: strategyFloat1 22s infinite alternate ease-in-out;
}

.strategy-shape.shape-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.22), transparent 70%);
    bottom: -20%;
    right: -8%;
    animation: strategyFloat2 28s infinite alternate ease-in-out;
}

.strategy-shape.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.18), transparent 70%);
    top: 40%;
    left: 50%;
    animation: strategyFloat3 18s infinite alternate ease-in-out;
}

@keyframes strategyGridShift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

@keyframes strategyFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(80px, 60px) scale(1.12);
    }
}

@keyframes strategyFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-70px, -50px) scale(0.92);
    }
}

@keyframes strategyFloat3 {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(calc(-50% + 50px), calc(-50% - 40px)) scale(1.1);
    }
}

.manufacturing-page .strategy-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 87, 184, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.manufacturing-page .strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.manufacturing-page .strategy-card:hover::before {
    transform: scaleX(1);
}

.manufacturing-page .strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 87, 184, 0.12);
}

.manufacturing-page .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: rgba(0, 87, 184, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mfg-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.manufacturing-page .strategy-card:hover .icon-box {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 87, 184, 0.25);
    transform: scale(1.08) rotate(-5deg);
}

/* Capabilities */
.manufacturing-page .capability-card {
    text-align: center;
    background: #fff;
    padding: 35px 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 87, 184, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.manufacturing-page .capability-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.manufacturing-page .capability-card:hover::after {
    transform: scaleX(1);
}

.manufacturing-page .capability-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 87, 184, 0.15);
}

.manufacturing-page .capability-card i {
    font-size: 2.8rem;
    color: var(--mfg-primary);
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.4s ease;
}

.manufacturing-page .capability-card:hover i {
    transform: scale(1.15) rotate(10deg);
    color: var(--secondary);
}

.manufacturing-page .capability-card h5 {
    font-weight: 700;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.manufacturing-page .capability-card:hover h5 {
    color: var(--primary);
}

/* Timeline */
.manufacturing-page .timeline-section {
    background: #ffffff;
    position: relative;
}

.manufacturing-page .timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

/* Horizontal line connecting steps on Desktop */
.manufacturing-page .timeline::before {
    content: '';
    position: absolute;
    top: 55px;
    /* Center of the 70px icon box */
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(to right, var(--mfg-primary) 0%, var(--mfg-accent) 50%, rgba(0, 87, 184, 0.15) 100%);
    z-index: -1;
    border-radius: 10px;
}

.manufacturing-page .timeline-item {
    text-align: center;
    padding: 30px 20px 25px 20px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .02);
    border: 1px solid rgba(0, 87, 184, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.manufacturing-page .timeline-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--mfg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--mfg-primary);
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(0, 87, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 4;
}

.manufacturing-page .timeline-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--mfg-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.manufacturing-page .timeline-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mfg-secondary);
    margin-bottom: 10px;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.manufacturing-page .timeline-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Hover States */
.manufacturing-page .timeline-item:hover {
    transform: translateY(-8px);
    border-color: var(--mfg-primary);
    box-shadow: 0 15px 35px rgba(0, 87, 184, 0.1);
}

.manufacturing-page .timeline-item:hover .timeline-icon-box {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.manufacturing-page .timeline-item:hover .timeline-title {
    color: var(--mfg-primary);
}

/* Responsive adjustments next to component */
@media(max-width:1200px) {
    .manufacturing-page .timeline::before {
        left: 10%;
        right: 10%;
    }
}

@media(max-width:991px) {
    .manufacturing-page .timeline {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 650px;
        margin: 0 auto;
        padding-left: 40px;
    }

    .manufacturing-page .timeline::before {
        left: 20px;
        top: 0;
        bottom: 0;
        width: 4px;
        height: auto;
        background: linear-gradient(to bottom, var(--mfg-primary) 0%, var(--mfg-accent) 50%, rgba(0, 174, 239, 0.1) 100%);
    }

    .manufacturing-page .timeline-item {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        padding: 24px 24px 24px 70px;
    }

    .manufacturing-page .timeline-icon-box {
        position: absolute;
        left: -30px;
        top: 24px;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

@media(max-width:576px) {
    .manufacturing-page .timeline {
        padding-left: 25px;
    }

    .manufacturing-page .timeline::before {
        left: 10px;
    }

    .manufacturing-page .timeline-item {
        padding: 20px 20px 20px 50px;
    }

    .manufacturing-page .timeline-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        left: -25px;
        top: 20px;
    }
}

/* Highlights */
.manufacturing-page .highlight-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 87, 184, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.manufacturing-page .highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 87, 184, 0.02) 0%, rgba(0, 208, 132, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.manufacturing-page .highlight-card:hover::before {
    opacity: 1;
}

.manufacturing-page .highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 208, 132, 0.2);
}

.manufacturing-page .highlight-card i {
    font-size: 2.2rem;
    color: var(--mfg-primary);
    margin-bottom: 18px;
    display: inline-block;
    transition: all 0.4s ease;
}

.manufacturing-page .highlight-card:hover i {
    transform: scale(1.2) translateY(-2px);
    color: var(--accent);
}

/* Gallery */
.manufacturing-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.manufacturing-page .gallery-item {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.manufacturing-page .gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.manufacturing-page .gallery-item:hover img {
    transform: scale(1.08);
}

/* Certifications */
.manufacturing-page .certification-section {
    background: var(--mfg-secondary);
}

.manufacturing-page .certificate-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 18px;
    transition: var(--mfg-transition);
}

.manufacturing-page .certificate-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

/* QA */
.manufacturing-page .quality-list {
    list-style: none;
    padding-left: 0;
}

.manufacturing-page .quality-list li {
    padding: 10px 0 10px 30px;
    font-weight: 600;
    position: relative;
}

.manufacturing-page .quality-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--mfg-primary);
    font-size: 1.2rem;
}

/* Global Reach */
.manufacturing-page .global-reach {
    background: linear-gradient(135deg, var(--mfg-secondary), var(--mfg-primary));
}

.manufacturing-page .reach-box {
    text-align: center;
    color: #fff;
}

.manufacturing-page .reach-box h3 {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.manufacturing-page .reach-box p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* CTA */
.manufacturing-page .cta-section {
    padding: 100px 0;
    background: #f5f8fc;
}

.manufacturing-page .cta-box {
    background: var(--mfg-secondary);
    color: #fff;
    border-radius: 25px;
    text-align: center;
    padding: 70px 40px;
    box-shadow: var(--shadow-lg);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
}

.close-lightbox:hover {
    transform: scale(1.2);
}

/* Responsive */
@media(max-width:768px) {
    .manufacturing-page .hero-content {
        text-align: center;
    }

    .manufacturing-page .hero-buttons {
        justify-content: center;
    }

    .manufacturing-page .hero-title {
        font-size: 1.9rem;
    }

    .manufacturing-page .stat-box h3 {
        font-size: 2.5rem;
        white-space: nowrap;
    }
}

@media(max-width:576px) {
    .manufacturing-page .hero-title {
        font-size: 1.5rem;
    }

    .manufacturing-page .btn-primary-custom,
    .manufacturing-page .btn-outline-custom {
        width: 100%;
        text-align: center;
    }

    .manufacturing-page .stat-box h3 {
        font-size: 1.75rem;
        white-space: nowrap;
    }
}

/* contact page */
/* ===================================
   GLOBAL STYLES
=================================== */

:root {
    --primary: #1c5aa9;
    --secondary: #0b2c52;
    --white: #ffffff;
    --light: #f8fafc;
    --text: #1f2937;
    --gray: #6b7280;
    --shadow: 0 15px 40px rgba(0, 0, 0, .08);
    --transition: .4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: var(--text);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-padding {
    padding: 100px 0;
}

@media(max-width:768px) {

    .section-padding {
        padding: 70px 0;
    }

}

/* ===================================
   TYPOGRAPHY
=================================== */

.hero-title {
    font-size: clamp(1.8rem, 4.2vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.subpage-hero .hero-subtitle {
    display: inline-block;
    color: #fff;
    font-size: 1.1rem;
    padding: 8px 15px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-weight: 400;
}

.subpage-hero .display-4 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, .85);
    max-width: 800px;
    margin: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.section-text {
    font-size: 1.05rem;
    color: var(--gray);
}

/* ===================================
   BUTTONS
=================================== */

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    display: inline-block;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-4px);

}

.btn-outline-custom {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--secondary);
}

@media(max-width:576px) {

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }

}

/* ===================================
   HERO SECTION
=================================== */

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        url("../images/hero-bg.jpg") center center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(11, 44, 82, .95),
            rgba(28, 90, 169, .85));
}

.hero-section .container {
    z-index: 2;
    position: relative;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media(max-width:768px) {

    .hero-section {
        min-height: 80vh;
    }

}

/* ===================================
   CONTACT CARDS
=================================== */

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.contact-cards {
    position: relative;
    background: linear-gradient(-45deg, #f5f9fd, #edf4fc, #e5effb, #f5f9fd);
    background-size: 300% 300%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

/* Subtle tech grid overlay */
.contact-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(28, 90, 169, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 90, 169, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    z-index: 1;
    pointer-events: none;
}

.contact-cards .container {
    position: relative;
    z-index: 2;
}

/* Background animated glow blobs */
.cards-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.08;
}

.cards-bg-glow-1 {
    width: 350px;
    height: 350px;
    background: var(--primary);
    top: -10%;
    left: -10%;
}

.cards-bg-glow-2 {
    width: 450px;
    height: 450px;
    background: var(--secondary);
    bottom: -15%;
    right: -10%;
}

/* Parallax floating geometric outlines */
.cards-bg-shape {
    position: absolute;
    border: 2px solid rgba(28, 90, 169, 0.08);
    pointer-events: none;
    z-index: 1;
}

.cards-bg-shape-1 {
    top: 15%;
    right: 8%;
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.cards-bg-shape-2 {
    bottom: 20%;
    left: 8%;
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(28, 90, 169, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(28, 90, 169, 0.2);
}

.contact-card h4 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-weight: 700;
}

.contact-card p,
.contact-card li {
    color: var(--gray);
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(28, 90, 169, .1);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease, color 0.4s ease;
}

.contact-card:hover .icon-box {
    transform: scale(1.1) rotate(8deg);
    background: var(--primary);
    color: #fff;
}

/* ===================================
   CONTACT FORM
=================================== */

.contact-form-section {
    background: var(--light);
}

.contact-image {
    overflow: hidden;
    border-radius: 25px;
    height: 100%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.form-control {
    height: 60px;
    border-radius: 12px;
    border: 1px solid #dbe3f0;
    padding: 15px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

textarea.form-control {
    min-height: 180px;
    resize: none;
}

/* ===================================
   GLOBAL PRESENCE
=================================== */

.presence-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.presence-card:hover {
    transform: translateY(-8px);
}

.presence-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.presence-card p {
    color: var(--gray);
}

/* ===================================
   WHY PARTNER
=================================== */

.why-partner {
    background: var(--light);
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h5 {
    font-weight: 700;
    color: var(--secondary);
}

/* ===================================
   MAP SECTION
=================================== */

.map-section {
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 500px;
    border: none;
}

@media(max-width:768px) {

    .map-section iframe {
        height: 350px;
    }

}

/* ===================================
   FAQ
=================================== */

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    padding: 25px;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: #eef4ff;
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
}

/* ===================================
   CTA SECTION
=================================== */

.cta-section {
    background:
        linear-gradient(135deg,
            rgba(11, 44, 82, .95),
            rgba(28, 90, 169, .90)),
        url("../images/cta-bg.jpg") center center/cover no-repeat;

    color: #fff;
    text-align: center;
    padding: 120px 0;
}

.cta-section h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: auto;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:992px) {

    .form-wrapper {
        padding: 30px;
    }

}

@media(max-width:768px) {

    .hero-buttons {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

}

@media(max-width:576px) {

    .contact-card,
    .presence-card,
    .feature-card {
        padding: 25px;
    }

    .form-wrapper {
        padding: 25px;
    }

}

/* ========================= */
/* quality page */
/* ========================= */
/* ==========================================
   LE SERAFIM LIMITED
   QUALITY & REGULATORY AFFAIRS PAGE
========================================== */

:root {
    --primary: #1C5AA9;
    --dark: #0B2C52;
    --light: #F8FAFC;
    --white: #ffffff;
    --text: #5f6b7a;
    --border: #e8edf5;
    --shadow: 0 15px 40px rgba(0, 0, 0, .08);
    --radius: 20px;
    --transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* ==========================================
   GLOBAL
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--white);
    color: #222;
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(28, 90, 169, .08);
    color: var(--primary);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.container {
    position: relative;
    z-index: 2;
}

/* ==========================================
   INTRO SECTION
========================================== */

.quality-intro {
    padding-top: 120px;
    padding-bottom: 90px;
    background:
        linear-gradient(135deg, #f7fbff, #ffffff);
}

.main-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
}

.intro-text {
    max-width: 900px;
    margin: auto;
    font-size: 1.1rem;
    color: var(--text);
}

/* ==========================================
   STATS
========================================== */

.stats-section {
    background: var(--light);
}

.stat-card {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.stat-card h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-card p {
    margin: 0;
    color: var(--text);
    font-weight: 600;
}

/* ==========================================
   QUALITY PHILOSOPHY
========================================== */

.quality-philosophy {
    background: #fff;
    padding: 100px 0 60px;
}

.quality-image-wrapper {
    position: relative;
    padding: 10px;
    height: 100%;
}

.quality-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quality-image-wrapper:hover .quality-image img {
    transform: scale(1.06);
}

.quality-floating-card {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(28, 90, 169, 0.1);
    border-radius: 18px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(28, 90, 169, 0.15);
    z-index: 3;
    transition: all 0.4s ease;
}

.quality-image-wrapper:hover .quality-floating-card {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(28, 90, 169, 0.2);
}

.floating-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(28, 90, 169, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.quality-floating-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.quality-floating-card p {
    font-size: 0.8rem;
    color: var(--text);
    margin: 2px 0 0 0;
}

.quality-philosophy .philosophy-text {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 520px;
    /* Constrain grid width to prevent stretched empty space */
}

.principle-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(28, 90, 169, 0.08);
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.principle-item span {
    font-size: 0.88rem;
    color: var(--dark);
    font-weight: 600;
}

.principle-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(28, 90, 169, 0.06);
    background: rgba(28, 90, 169, 0.01);
}

.principle-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(28, 90, 169, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.principle-item:hover .principle-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

/* ==========================================
   CERTIFICATIONS
========================================== */

.certifications {
    background: var(--light);
}

.cert-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid transparent;
    overflow: hidden;
    position: relative;
}

.cert-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transition: .6s;
}

.cert-card:hover::before {
    left: 0;
}

.cert-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
}

.cert-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(28, 90, 169, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 25px;
}

.cert-icon i {
    font-size: 2.2rem;
    color: var(--primary);
}

.cert-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.cert-card p {
    color: var(--text);
}

/* ==========================================
   TIMELINE
========================================== */

.timeline-section {
    background: #fff;
}

.timeline {
    max-width: 900px;
    margin: auto;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    width: 45%;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 35px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    margin-right: auto;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
}

.timeline-item h5 {
    margin: 0;
    color: var(--dark);
    font-weight: 700;
}

/* ==========================================
   DOSSIER
========================================== */

.dossier-section {
    background: var(--light);
}

.dossier-card {
    background: #fff;
    text-align: center;
    padding: 50px 25px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.dossier-card:hover {
    transform: translateY(-10px);
}

.dossier-card h3 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 800;
}

.dossier-card p {
    margin-top: 15px;
    color: var(--text);
}

/* ==========================================
   LEGAL
========================================== */

.legal-section {
    background: #fff;
}

.legal-card {
    background: #ffffff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(28, 90, 169, 0.08);
    box-shadow: var(--shadow);
    overflow: hidden;
    z-index: 1;
}

.legal-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2.5px;
    /* Animated border width */
    background: linear-gradient(90deg, var(--primary), #00AEEF, var(--primary));
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.legal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 15px 40px rgba(28, 90, 169, 0.12);
    border-color: transparent;
}

.legal-card:hover::after {
    opacity: 1;
    animation: rotateBorder 3s linear infinite;
}

.legal-card h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    transition: color 0.4s ease;
}

.legal-card:hover h4 {
    color: var(--primary);
}

.legal-card p {
    margin-top: 15px;
    color: var(--text);
    transition: color 0.4s ease;
}

@keyframes rotateBorder {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-us {
    background: var(--light);
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid rgba(28, 90, 169, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(28, 90, 169, 0.12);
    border-color: rgba(28, 90, 169, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(28, 90, 169, 0.08);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease, color 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(6deg);
    background: var(--primary);
    color: #fff;
}

.feature-card h4 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text);
}

/* ==========================================
   CTA
========================================== */

.quality-cta {
    background:
        linear-gradient(rgba(11, 44, 82, .90),
            rgba(11, 44, 82, .90)),
        url("../images/quality-bg.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.quality-cta h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.quality-cta p {
    max-width: 750px;
    margin: auto;
    margin-bottom: 35px;
    opacity: .9;
}

.btn-primary-custom {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-5px);
}

/* ==========================================
   FLOATING SHAPES
========================================== */

.quality-intro::before,
.certifications::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(28, 90, 169, .05);
    filter: blur(20px);
}

.quality-intro::before {
    top: -100px;
    right: -100px;
}

.certifications::before {
    left: -120px;
    bottom: -120px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px) {

    section {
        padding: 80px 0;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        margin-left: 40px !important;
    }

    .principles-grid {
        max-width: 100%;
    }

}

@media(max-width:767px) {

    .main-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-card h2 {
        font-size: 2.5rem;
    }

    .quality-cta {
        background-attachment: scroll;
    }

}

@media(max-width:575px) {

    section {
        padding: 65px 0;
    }

    .timeline-item {
        margin-left: 30px !important;
        padding: 20px;
    }

    .stat-card,
    .cert-card,
    .dossier-card,
    .feature-card,
    .legal-card {
        padding: 30px 20px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TIMELINE BACKGROUND ANIMATIONS
========================================== */
.timeline-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.timeline-section .container {
    position: relative;
    z-index: 2;
}

.timeline-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.05;
}

.timeline-bg-glow-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: -10%;
}

.timeline-bg-glow-2 {
    width: 450px;
    height: 450px;
    background: var(--dark);
    bottom: 5%;
    right: -10%;
}

.timeline-bg-shape {
    position: absolute;
    border: 2px solid rgba(28, 90, 169, 0.06);
    pointer-events: none;
    z-index: 1;
}

.timeline-bg-shape-1 {
    top: 20%;
    right: 5%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.timeline-bg-shape-2 {
    bottom: 15%;
    left: 5%;
    width: 60px;
    height: 60px;
    border-radius: 15px;
}


/* ==========================================
   LEGAL BACKGROUND ANIMATIONS
========================================== */
.legal-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.legal-section .container {
    position: relative;
    z-index: 2;
}

.legal-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.06;
}

.legal-bg-glow-1 {
    width: 350px;
    height: 350px;
    background: var(--primary);
    top: -5%;
    right: -5%;
}

.legal-bg-glow-2 {
    width: 400px;
    height: 400px;
    background: #00D084;
    bottom: -10%;
    left: -5%;
}

.legal-bg-shape {
    position: absolute;
    border: 2px solid rgba(28, 90, 169, 0.06);
    pointer-events: none;
    z-index: 1;
}

.legal-bg-shape-1 {
    top: 25%;
    left: 7%;
    width: 70px;
    height: 70px;
    border-radius: 12px;
}

.legal-bg-shape-2 {
    bottom: 25%;
    right: 7%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

/* ==========================================
   GENERIC SECTION BACKGROUND ANIMATIONS
========================================== */
.animated-section {
    position: relative;
    overflow: hidden;
}

.animated-section .container {
    position: relative;
    z-index: 2;
}

.section-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.04;
}

.section-bg-glow-1 {
    width: 350px;
    height: 350px;
    background: var(--primary);
    top: -10%;
    left: -10%;
}

.section-bg-glow-2 {
    width: 400px;
    height: 400px;
    background: #00D084;
    bottom: -10%;
    right: -10%;
}

.section-bg-shape {
    position: absolute;
    border: 2px solid rgba(28, 90, 169, 0.06);
    pointer-events: none;
    z-index: 1;
}

.section-bg-shape-1 {
    top: 15%;
    right: 8%;
    width: 70px;
    height: 70px;
    border-radius: 15px;
}

.section-bg-shape-2 {
    bottom: 15%;
    left: 8%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

/* ==========================================================================
   HERO HEIGHT REDUCTION (HOME & MANUFACTURING)
   ========================================================================== */

#home.hero-section {
    min-height: 75vh;
}

.manufacturing-page #hero.hero-section {
    min-height: 100vh;
}

@media (max-width: 991px) {
    #home.hero-section {
        min-height: 70vh;
        padding-top: 110px;
        padding-bottom: 70px;
    }

    .manufacturing-page #hero.hero-section {
        min-height: 65vh;
        padding-top: 110px;
        padding-bottom: 70px;
    }
}

@media (max-width: 768px) {
    #home.hero-section {
        min-height: 65vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .manufacturing-page #hero.hero-section {
        min-height: 60vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

/* ==================== ROW COMPOSITION TITLE STYLING ==================== */
.row-composition-title {
    color: #1c5aa9 !important;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

/* ==================== PRODUCT PAGE META BADGE ==================== */
.meta-category-badge,
.meta-trade-label {
    color: #6c757d !important;
    /* Bootstrap text-muted */
}



.row-metadata-flex {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    gap: 20px;
}

/* ==================== PRODUCT ROW ==================== */
.sagalife-product-row {
    font-weight: 700 !important;
    margin-bottom: 20px;
}

/* ==================== INDEX PORTFOLIO CARDS — NON-CLICKABLE ==================== */
.product-card {
    cursor: default !important;
    pointer-events: none !important;
}

/* Re-enable pointer events only on the slider navigation buttons */
.portfolio-btn {
    pointer-events: auto !important;
    cursor: pointer !important;
}

.portfolio-dots .portfolio-dot {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* ==================== 1024PX LAPTOP FIXES ==================== */
@media (max-width: 1199.98px) {
    .dna-card {
        padding: 15px;
    }

    .dna-card .icon-box {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .dna-card h5 {
        font-size: 1.1rem;
    }

    .quality-floating-card {
        right: 0;
        bottom: 0;
        padding: 10px 15px;
    }

    .floating-card-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .quality-floating-card h5 {
        font-size: 0.85rem;
    }

    .quality-floating-card p {
        font-size: 0.75rem;
    }

    .principles-grid {
        gap: 15px;
        max-width: 100%;
    }

    .principle-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .principle-item span {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem !important;
    }

    #facility .section-title {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .loader-logo-img img {
        max-height: 45px !important;
        margin-bottom: 10px !important;
    }
}