/* =========================================
   CSS Variables & Reset
   ========================================= */
:root {
    /* Color Palette */
    --primary-green: #29721E;
    --dark-green: #29721E;
    --light-green: #5D9C59;
    --accent-orange: #9A6815;
    --light-bg: #FAFAF8;
    --white: #FFFFFF;
    --dark-text: #000000;
    --light-gray: #777777;
    --border-color: #E0E0E0;

    /* Typography */
    --font-main: 'Poppins', sans-serif;

    /* Spacing & Utilities */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 15px 40px rgba(41, 114, 30, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
    /* letter-spacing: 1px; */
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   Typography & Layout Utilities
   ========================================= */
p {
    text-align: left;
    word-spacing: normal;
    letter-spacing: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    /* letter-spacing: 1px; */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc {
    color: var(--light-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

section {
    padding: 6rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.4), inset 0 -2px 2px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background-color: rgba(41, 114, 30, 0.85);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background-color: rgba(41, 114, 30, 1);
    transform: translateY(-2px);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.5), inset 0 -2px 2px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(41, 114, 30, 0.6);
}

.btn-dark {
    background-color: rgba(41, 114, 30, 0.85);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-dark:hover {
    background-color: rgba(41, 114, 30, 1);
    transform: translateY(-2px);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.3), inset 0 -2px 2px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(41, 114, 30, 0.6);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(41, 114, 30, 0.5);
    color: #29721E;
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.5), 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
    background-color: rgba(156, 90, 35, 0.85);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.4), inset 0 -2px 2px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(156, 90, 35, 0.5);
    transform: translateY(-2px);
}

.btn-outline-orange {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(41, 114, 30, 0.5);
    color: #29721E;
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.5), 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-outline-orange:hover {
    background-color: rgba(156, 90, 35, 0.85);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.4), inset 0 -2px 2px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(156, 90, 35, 0.5);
    transform: translateY(-2px);
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0px;
}

.navbar.scrolled {
    padding: 0.3rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: -2.5rem;
}

.logo-img {
    /* height: 165px; */
    width: 190PX;
    object-fit: contain;
    /* margin: -35px 0 -55px 0; */
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-text);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.navbar .btn {
    margin-right: -1.5rem;
}

.mobile-cta-item {
    display: none;
}

.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 24, 15, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dark-green);
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    padding: 7rem 0 10rem;
    background-color: var(--light-bg);
    min-height: 110vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero {
    position: relative;
    padding: 80px 0 40px;
    background-color: var(--dark-green);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.hero .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Keep 2 columns so text stays on left */
    gap: 4rem;
    align-items: center;
    margin-top: 2.5rem;
}

.hero-content {
    margin-left: -2.5rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.hero-title .highlight {
    color: var(--accent-orange);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero Visuals & Infographic */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 480px;
}

.hero-image-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    z-index: 0;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.floating-leaf {
    position: absolute;
    color: var(--light-green);
    font-size: 2.5rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.leaf-1 {
    top: 10%;
    right: -10%;
    font-size: 3rem;
}

.leaf-2 {
    bottom: -5%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.infographic {
    position: relative;
    width: 450px;
    height: 450px;
    z-index: 2;
    padding: 2rem;
    margin: 0 auto;
}

@keyframes spinCycle {
    from {
        transform: rotate(0deg) translateZ(0);
    }

    to {
        transform: rotate(360deg) translateZ(0);
    }
}

@keyframes counterSpinCycle {
    from {
        transform: rotate(0deg) translateZ(0);
    }

    to {
        transform: rotate(-360deg) translateZ(0);
    }
}

.cycle-circle {
    position: relative;
    width: 100%;
    height: 100%;
    animation: spinCycle 40s linear infinite;
    will-change: transform;
}

.cycle-item {
    position: absolute;
    width: 100px;
}

.item-rotator {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: counterSpinCycle 40s linear infinite;
    will-change: transform;
}

.cycle-item i {
    width: 45px;
    height: 45px;
    background-color: var(--dark-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.cycle-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.2;
}

.item-top {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.item-bottom {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.item-left {
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.item-right {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

.cycle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.center-inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.center-inner img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: center;
}

.center-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-top: -1.2rem;
}

.cycle-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* =========================================
   Statistics Section
   ========================================= */
.statistics {
    padding: 0;
    margin-top: -1.5rem;
    position: relative;
    z-index: 10;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%), url('assets/images/foo.jpeg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.statistics .container {
    max-width: 1280px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-wrapper {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    box-shadow: none;
    color: var(--white);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--dark-green), #0a1f38);
    box-shadow: var(--box-shadow);
    border: none;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.stat-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    display: inline-block;
}

.stat-text span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    /* margin-top: 0.2rem; */
}

.stat-desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.2rem;
}

.stat-divider {
    display: none !important;
}

/* =========================================
   Industries Section
   ========================================= */
.industries {
    background-color: var(--white);
    padding-top: 3rem;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
    background: var(--white);
    height: 320px;
}

.card-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-overlay {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.industry-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    background: transparent;
    color: var(--white);
}

.card-content i.ph {
    display: none;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.btn-view-details {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-view-details i.ph {
    display: inline-block;
    font-size: 1rem;
    color: var(--accent-orange);
    border: none;
    width: auto;
    height: auto;
    padding: 0;
}

.industry-card:hover .btn-view-details {
    background-color: var(--primary-green);
    color: var(--white);
}

/* =========================================
   Laboratory Section
   ========================================= */
.laboratory {
    background-color: var(--white);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.lab-container-new {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 4rem;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
}

.lab-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-tag-new {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title-new {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.title-separator {
    width: 60px;
    height: 4px;
    background-color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.section-desc-new {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 4.5rem;
    text-align: left !important;
    width: 100%;
}

.btn-theme-new {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 0.6rem 2rem;
    margin-top: 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-theme-new:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(41, 114, 30, 0.2);
}

.lab-features-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding-left: 3rem;
    border-left: 1px dashed var(--accent-orange);
}

.lab-feature-new {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    cursor: pointer;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-orange);
    margin-right: 1rem;
    font-family: var(--font-main);
    line-height: 1;
    opacity: 0.5;
    transition: var(--transition);
}

.feature-icon-new {
    background: var(--dark-green);
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-icon-new i {
    font-size: 1.6rem;
    color: #ffffff;
    transition: var(--transition);
}

.feature-text {
    flex-grow: 1;
}

.feature-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-green);
    margin: 0;
    transition: var(--transition);
}

.lab-feature-new:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(41, 114, 30, 0.15);
    border-color: var(--dark-green);
    background: var(--dark-green);
}

.lab-feature-new:hover .feature-text h3 {
    color: var(--white);
}

.lab-feature-new:hover .feature-number {
    -webkit-text-stroke: 1px var(--white);
    color: rgba(255, 255, 255, 0.1);
}

.lab-feature-new:hover .feature-icon-new {
    background: var(--white);
}

.lab-feature-new:hover .feature-icon-new i {
    color: var(--dark-green);
}

.lab-feature span {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark-green);
    line-height: 1.3;
    transition: var(--transition);
}

.lab-feature:hover span {
    color: var(--accent-orange);
}

/* =========================================
   Why Choose Us Section
   ========================================= */
.why-choose-us {
    background: linear-gradient(135deg, rgba(41, 114, 30, 0.05) 0%, rgba(41, 114, 30, 0.05) 100%);
    padding-top: 5rem;
}

.why-choose-us .container {
    max-width: 1280px;
}

.features-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.feature-card {
    flex: 1;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease-in-out;
    background: linear-gradient(180deg, #ffffff 0%, #fafcf9 100%);
    border: 1px solid rgba(41, 114, 30, 0.08);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03), 0 5px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    cursor: pointer;
}

.feature-card:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    box-shadow: 0 20px 40px rgba(41, 114, 30, 0.15);
    transform: translateY(-10px);
    z-index: 10;
}

.feature-card i {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(41, 114, 30, 0.05), rgba(41, 114, 30, 0.12));
    border-radius: 18px;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover i {
    transform: scale(1.1) translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-orange);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
    transition: all 0.3s ease-in-out;
}

.feature-card:hover h3 {
    color: var(--white);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.5;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   Sustainability Banner
   ========================================= */
.sustainability-banner {
    padding: 3rem 0 3rem;
}

.banner-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-top: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 0 25px 50px rgba(41, 114, 30, 0.15), 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0;
    color: var(--dark-text);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    transition: all 0.5s ease-in-out;
}

.banner-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px rgba(41, 114, 30, 0.2), 0 10px 20px rgba(0, 0, 0, 0.05);
}

.banner-bg-left {
    width: 150px;
    flex-shrink: 0;
    align-self: stretch;
    position: relative;
}

.banner-bg-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
    z-index: 1;
}

.banner-bg-left img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left;
}

.banner-content {
    flex: 1;
    min-width: 450px;
    padding: 2rem 2rem 2rem 2rem;
    z-index: 2;
}

.banner-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--dark-green);
}

.banner-content p {
    font-size: 1rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.banner-center-icon {
    padding-right: 4rem;
    margin-left: auto;
    z-index: 2;
}

.earth-image {
    width: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    transition: transform 0.8s ease-out;
}

.banner-container:hover .earth-image {
    transform: rotate(10deg) scale(1.08);
}

.banner-bg-right {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-bg-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.banner-bg-right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right center;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: linear-gradient(135deg, #0e300c 0%, #184c14 50%, #29721E 100%);
    color: var(--white);
    padding-top: 60px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo {
    display: block;
    margin-bottom: 0.8rem;
    margin-top: -20px;
}

.footer-logo-img {
    /* height: 200px; */
    width: 190px;
    display: block;
    /* margin: -30px 0 -40px 0; */
}

.brand-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-badges span {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--white);
    opacity: 0.9;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 0.4rem;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.social-links .social-linkedin:hover {
    background-color: #0077b5;
    border-color: #0077b5;
}

.social-links .social-facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

.social-links .social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.social-links .social-youtube:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

/* =========================================
   Animations Classes
   ========================================= */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="zoom-in"] {
    transform: scale(0.95);
}

.is-visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}




/* =========================================
   About Us Page Styles
   ========================================= */

/* About Hero Section (Enhanced Dark Design) */
.about-hero.dark-hero {
    padding: 10rem 0 6rem;
    background-color: #00204D;
    /* Navy blue background */
    background-image: radial-gradient(circle at center, rgba(41, 114, 30, 0.08) 0%, transparent 60%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero-container-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(41, 114, 30, 0.15);
    /* Green tint */
    border: 1px solid rgba(41, 114, 30, 0.3);
    color: var(--primary-green);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-tag .dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary-green);
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.text-green {
    color: var(--primary-green);
}

.about-hero.dark-hero .about-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hero-bottom-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

.hero-bottom-pill a {
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-bottom-pill a:hover {
    color: var(--primary-green);
}

.hero-bottom-pill .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* About Info (Who We Are, Vision, Mission) */
.about-info {
    padding: 4rem 0;
    background-color: var(--white);
}

.about-info-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.who-we-are-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.who-we-are {
    position: relative;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-we-are-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.who-we-are-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, #ffffff 0%, transparent 40%),
        linear-gradient(to top, #ffffff 0%, transparent 30%);
    z-index: 1;
    pointer-events: none;
}

.who-we-are-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.who-we-are-image:hover img {
    transform: scale(1.05);
}



.info-title {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.info-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
    border-radius: 2px;
}

.who-we-are p {
    margin-bottom: 1rem;
    color: #334155;
    /* Dark slate gray for better contrast but softer than black */
    font-size: 1.15rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    text-align: left;
}

.who-we-are p:last-child {
    margin-bottom: 0;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dark-card {
    background: #00204D;
    padding: 1.5rem;
    border-radius: 20px;
    border-top: 4px solid var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 32, 77, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.dark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 32, 77, 0.2);
}

.dark-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dark-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-green);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dark-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.dark-mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}

.dark-mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.4;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-mission-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dark-mission-list li i {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.dark-vision-content {
    flex-grow: 1;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
}

.dark-card-footer {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-badge i {
    color: var(--primary-green);
}

/* Title with Lines */
.title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.title-with-lines .line {
    height: 2px;
    width: 60px;
    background-color: var(--accent-orange);
}

/* Our Values Section */
.our-values {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.values-header {
    margin-bottom: 4rem;
}

.values-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(41, 114, 30, 0.1);
    color: var(--primary-green);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.values-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00204D, #29721E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.values-main-title span {
    /* Kept for structural reasons, but inherits gradient */
}

.values-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 32, 77, 0.08);
    border-color: rgba(41, 114, 30, 0.1);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(41, 114, 30, 0.1);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.value-icon-box i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.value-item:hover .value-icon-box {
    background-color: var(--primary-green);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.value-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00204D, #29721E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
}

.value-item:hover h4 {
    background: linear-gradient(135deg, #29721E, #29721E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.value-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Our Journey Section */
.our-journey {
    padding: 6rem 0;
    background-color: var(--white);
}

.mobile-journey {
    display: none;
}

.desktop-journey {
    display: block;
}

.journey-accordion-mobile {
    margin-top: 2rem;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: var(--white);
    transition: var(--transition);
}

.accordion-item.active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-green);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    background-color: var(--light-bg);
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-icon {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 2px solid #00204D;
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.accordion-item.active .accordion-icon {
    background-color: #00204D;
    color: var(--white);
}

.accordion-header h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #00204D;
    margin: 0;
}

.accordion-arrow {
    font-size: 1.2rem;
    color: #00204D;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--white);
}

.accordion-body p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.journey-timeline-interactive {
    position: relative;
    margin-top: 4rem;
}

.timeline-nav-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    margin-bottom: 3rem;
}

.timeline-line {
    position: absolute;
    top: 55px;
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 16%;
    padding: 0 0.5rem;
    cursor: pointer;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border: 2px solid #00204D;
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.timeline-step.active .timeline-icon,
.timeline-step:hover .timeline-icon {
    background-color: #00204D;
    color: var(--white);
}

.timeline-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    transition: var(--transition);
}

.timeline-step.active h4 {
    color: #00204D;
}

.timeline-content-container {
    position: relative;
    min-height: 100px;
}

.timeline-content {
    display: none;
    text-align: left;
    animation: fadeIn 0.4s ease forwards;
    position: relative;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, var(--light-bg) 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.timeline-content::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 250px;
    height: 250px;
    background-image: url('assets/images/images/leaf.jpeg');
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.timeline-content.active {
    display: block;
    text-align: center;
}

.content-text {
    position: relative;
    z-index: 1;
}

.content-text h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.timeline-content p {
    color: var(--dark-text);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    text-align-last: center;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Enhanced Our Commitment Section */
.our-commitment.enhanced-commitment {
    padding: 1.5rem 0;
    background-color: #f8fbfa;
    /* Subtle light green/gray background */
    position: relative;
}

.commitment-wrapper.enhanced-wrapper {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-radius: 30px;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-height: 220px;
}

.commitment-wrapper.enhanced-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.commitment-content {
    flex: 1 1 60%;
    padding: 0 3.5rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.commitment-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--dark-green, #29721E);
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.6rem;
    letter-spacing: -0.5px;
}

.commitment-title.underline-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange, #f5a623), #ffc107);
    border-radius: 2px;
}

.commitment-desc {
    font-size: 1.05rem;
    color: var(--dark-text, #4a5568);
    line-height: 1.6;
    max-width: 95%;
    margin-top: 0.2rem;
}

.commitment-visual.enhanced-visual {
    flex: 1 1 40%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.right-visual.enhanced-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
    mask-image: linear-gradient(to right, transparent 0%, black 50%);
    transition: transform 0.5s ease;
}

.commitment-wrapper.enhanced-wrapper:hover .right-visual.enhanced-visual img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .commitment-wrapper.enhanced-wrapper {
        flex-direction: column;
        max-height: none;
    }

    .commitment-content {
        padding: 2.5rem 2rem;
    }

    .commitment-visual.enhanced-visual {
        min-height: 250px;
    }

    .right-visual.enhanced-visual img {
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
    }
}

/* Responsive updates for About */
@media (max-width: 992px) {

    .about-hero-container,
    .about-info-container {
        grid-template-columns: 1fr;
    }

    .mission-list {
        grid-template-columns: 1fr;
    }

    .value-item {
        flex: 0 1 calc(50% - 2rem);
    }

    .journey-timeline {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .timeline-line {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: auto;
        display: none;
    }

    .timeline-line::after {
        transform-origin: top;
        transform: scaleY(0.5);
    }

    .timeline-item {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 2rem;
    }

    .timeline-item .timeline-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .commitment-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .commitment-desc {
        margin: 0 auto;
    }
}

/* ==========================================================================
   Materials Page Styles
   ========================================================================== */

/* Materials Hero */
.materials-hero-bg {
    background-color: var(--light-bg);
    padding: 7rem 0 5rem;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.materials-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.materials-hero-content {
    flex: 1;
    max-width: 50%;
    padding-right: 2rem;
}

.materials-hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.materials-hero-title span {
    color: #a87b4f;
    /* Brownish color from mockup */
}

.materials-hero-desc {
    font-size: 1.1rem;
    max-width: 500px;
}

.materials-hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.materials-hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, var(--light-bg) 0%, transparent 100%);
    z-index: 1;
}

.materials-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    mix-blend-mode: multiply;
}

/* Split Layout Image Gradient */
.hero-split-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
}

.hero-split-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to left, var(--light-bg) 0%, transparent 50%),
        linear-gradient(to top, var(--light-bg) 0%, transparent 20%);
    z-index: 1;
    pointer-events: none;
}

.hero-split-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Bar */
.hero-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #a87b4f;
}

.hero-divider .line {
    height: 1px;
    width: 60px;
    background-color: #a87b4f;
}



.hero-circle-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

@keyframes spin-arrows {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-arrows-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    animation: spin-arrows 15s linear infinite;
    transform-origin: center;
}

.hero-circle-bg {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    background: white;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.circle-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: 800;
    font-size: 1.4rem;
    color: #0b4020;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    z-index: 3;
    position: relative;
}

.hero-circle-overlay i {
    color: #5c8b36;
    font-size: 1.5rem;
}

/* Features Bar Box */
.features-bar-box {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(41, 114, 30, 1);
    /* Dark Green */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--white);
    border-right: none;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item i {
    font-size: 2rem;
    color: #a87b4f;
}

@media (max-width: 991px) {
    .features-bar-box {
        width: 100% !important;
        margin-top: 1rem !important;
    }

    .hero-split-layout {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 2rem !important;
    }

    .hero-split-image {
        min-height: 350px !important;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .feature-item {
        padding: 1rem !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-item i {
        font-size: 1.5rem !important;
    }
}

.feature-text h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-text p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
}

/* Border Title Container */
.border-title-container {
    position: relative;
    padding: 3rem 2rem 2rem;
    border: 1px solid var(--primary-green);
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    text-align: center;
}

.border-title-container .section-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 0 1.5rem;
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.border-title-container .section-subtitle {
    margin: 0 0 2rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Grids */
.materials-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.grid-12 {
    grid-template-columns: repeat(6, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Material Cards */
.material-card {
    background: #a87b4f;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.material-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.material-name {
    padding: 0.8rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.material-card.flex-center {
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.material-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.materials-note {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Product Cards */
.product-card {
    background: var(--light-bg);
    /* Off-white background */
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: #d3c4b5;
}

.product-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    /* Don't crop the ingredients */
    padding: 1.5rem 1rem 0.5rem;
    mix-blend-mode: multiply;
    /* Make the white background disappear */
}

.product-content {
    padding: 0 1rem 1.5rem;
}

.product-content h4 {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-content p {
    font-size: 0.75rem;
    margin: 0;
}

/* Materials Page Typography Alignment */
.materials-page .about-hero-desc,
.materials-page .feature-text p,
.materials-page .product-content p,
.materials-page .materials-note,
.materials-page .b-feature p {
    text-align: justify !important;
    text-justify: inter-word !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
    -moz-hyphens: auto !important;
    -ms-hyphens: auto !important;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
}

@media (max-width: 768px) {

    .materials-page .about-hero-desc,
    .materials-page .feature-text p,
    .materials-page .product-content p,
    .materials-page .materials-note,
    .materials-page .b-feature p {
        letter-spacing: -0.3px !important;
    }
}

/* Bottom Features */
.bottom-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.b-feature {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem;
    background: #F3F1EA;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-right: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.b-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.b-feature:first-child {
    padding-left: 1.5rem;
}

.b-feature:last-child {
    border-right: none;
    padding-right: 1.5rem;
}

.b-feature-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.b-feature-icon {
    font-size: 2.2rem;
    color: var(--primary-green);
    line-height: 1;
}

.b-feature-header h4 {
    font-size: 0.85rem;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.3;
    font-weight: 700;
}

.b-feature p {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.b-feature-text p {
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Materials Page */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .feature-item:nth-child(2) {
        border-right: none;
    }

    .grid-12,
    .grid-6 {
        grid-template-columns: repeat(4, 1fr);
    }

    .bottom-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .materials-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .grid-12,
    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-12,
    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bottom-features-grid .b-feature:last-child {
        grid-column: 1 / -1;
    }

    .b-feature {
        padding: 1rem !important;
        align-items: center;
        text-align: center;
    }

    .b-feature-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .b-feature-header h4 {
        font-size: 0.8rem;
        margin: 0;
    }

    .b-feature-icon {
        font-size: 1.8rem;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 1rem;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .border-title-container .section-title {
        position: relative;
        transform: none;
        left: 0;
        display: inline-block;
        background: transparent;
        margin-bottom: 1rem;
    }
}

/* ==========================================================================
   Laboratory Page Styles
   ========================================================================== */



.lab-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lab-title {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.lab-divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1.5rem 0;
}

.lab-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.lab-desc {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 90%;
}

.lab-hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Capabilities Section */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.cap-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.cap-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.cap-content {
    padding: 1.5rem 1rem;
}

.cap-content h4 {
    font-size: 0.95rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.cap-content p {
    font-size: 0.75rem;
    margin: 0;
}

/* Equipment Section */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.eq-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.eq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.eq-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 0;
}

.eq-card h4 {
    font-size: 0.95rem;
    margin: 0;
    padding: 1rem 0.5rem;
    background-color: #00204D;
    color: var(--white);
}

/* Why It Matters */
.why-matters-box {
    background: #F6FAEC;
    border-radius: 12px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    margin-top: 2rem;
}

.why-img-col {
    flex: 0 0 350px;
    /* Slightly wider to accommodate the fade */
}

.why-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to right, black 30%, transparent 100%);
    mask-image: linear-gradient(to right, black 30%, transparent 100%);
}

.why-content-col {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.why-content-col p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.why-list-col {
    flex: 0 0 300px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.why-list li:last-child {
    margin-bottom: 0;
}

.why-list li i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1200px) {

    .capabilities-grid,
    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .lab-hero-grid {
        grid-template-columns: 1fr;
    }

    .why-matters-box {
        flex-direction: column;
    }

    .why-img-col {
        height: 250px;
        flex: auto;
    }

    .why-list-col {
        flex: auto;
        padding: 2rem;
    }
}

@media (max-width: 768px) {

    .capabilities-grid,
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .capabilities-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
    }
}


.lab-top-features {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

/* Lab Features Box */
.lab-features-box {
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.lab-features-box .lab-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.lab-feature {
    text-align: center !important;
    padding: 0.85rem 1rem !important;
    background: linear-gradient(135deg, #00204D 0%, #0F3F2A 50%, #29721E 100%) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 25px rgba(0, 32, 77, 0.15) !important;
    display: grid !important;
    grid-template-rows: 52px 48px 1fr !important;
    align-items: start !important;
    justify-items: center !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

.lab-feature h4,
.lab-feature p {
    color: var(--white) !important;
}

.lab-feature:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 32, 77, 0.3) !important;
    background: linear-gradient(135deg, #00173B 0%, #154D34 50%, #1E5C16 100%) !important;
}



.lab-feature-icon {
    width: 40px !important;
    height: 40px !important;
    background: #EAF3DC;
    /* Light green circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem !important;
    color: var(--primary-green);
    margin-bottom: 0.35rem !important;
}

.lab-feature h4 {
    font-size: 0.95rem;
    color: var(--primary-green);
    margin: 0 !important;
    line-height: 1.2;
    align-self: center !important;
    width: 100%;
    text-align: center;
}

.about-hero-desc {
    text-align: center !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    line-height: 1.65;
}

.lab-feature p {
    font-size: 0.75rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.65;
    align-self: start !important;
    width: 100%;
    text-align: center !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    text-wrap: balance;
    padding-top: 0.25rem;
}

/* Hero Section */
.lab-hero {
    padding-top: 2rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.lab-hero-grid {
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
}

.lab-hero-content-wrapper {
    width: 50%;
    padding-left: 0;
    padding-right: 3rem;
    box-sizing: border-box;
}

.lab-hero-image {
    width: 50%;
    padding-right: 0;
    box-sizing: border-box;
}

.lab-hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 35%, black 100%);
}

@media (max-width: 992px) {
    .lab-hero-grid {
        flex-direction: column;
    }

    .lab-hero-content-wrapper {
        width: 100%;
        padding: 0 5%;
        margin-bottom: 3rem;
    }

    .lab-hero-image {
        width: 100%;
        padding: 0;
    }

    .lab-hero-image img {
        border-radius: 12px;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    }

    .lab-title {
        font-size: 3rem !important;
        line-height: 1.05 !important;
        letter-spacing: -1px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    }
}

/* ==========================================================================
   Technology Page Styles
   ========================================================================== */

/* Hero Section */
.tech-hero {
    background: var(--light-bg);
    padding: 4rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.tech-hero-grid {
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
}

.tech-hero-content-wrapper {
    flex: 1;
    padding: 0 2rem 0 0;
}

.tech-hero-content {
    max-width: 800px;
}

.tech-title {
    font-size: 3rem;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    text-transform: uppercase;
}

.tech-title span {
    color: #29721E;
}

.tech-divider {
    height: 3px;
    width: 60px;
    background: #29721E;
    margin-bottom: 1.5rem;
}

.tech-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.tech-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: justify;
    text-align-last: left;
}

.tech-hero-image {
    flex: 1;
    position: relative;
    margin-right: -5%;
    -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
    mask-image: linear-gradient(to left, black 70%, transparent 100%);
}

.tech-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px 0 0 20px;
}

/* Features Box */
.tech-features-box {
    margin-top: -12rem;
    position: relative;
    z-index: 10;
}

.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.tech-feature {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 1.5rem 1rem;
    position: relative;
}

.tech-feature:not(:last-child)::after {
    display: none;
}

.tech-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-green);
    font-size: 1.8rem;
}

.tech-feature h4 {
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.tech-feature p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.8rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
    background: var(--white);
    padding: 0;
    border-radius: 8px;
    border: 1px solid #EAF3DC;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: 2;
}

.process-step img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 8px 8px 0 0;
}

.process-step h4 {
    font-size: 0.95rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    text-align: center;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
    text-align: center;
    padding: 0 0.5rem;
    margin-bottom: 1rem;
}

.step-arrow {
    position: absolute;
    right: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-green);
    font-size: 1.2rem;
    z-index: 1;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.adv-card {
    padding: 1.5rem 1rem;
    position: relative;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.adv-card:hover .adv-icon {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(41, 114, 30, 0.3);
}

.adv-icon {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    width: 54px;
    height: 54px;
    background: #EAF3DC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.adv-card h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.adv-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    transition: all 0.3s ease;
}

/* Innovation Box */
.innovation-box {
    background: #F6FAEC;
    border-radius: 12px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    margin-top: 2rem;
}

.inn-img-col {
    flex: 0 0 350px;
}

.inn-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to right, black 30%, transparent 100%);
    mask-image: linear-gradient(to right, black 30%, transparent 100%);
}

.inn-content-col {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inn-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.inn-content-col p {
    color: var(--text-light);
}

.inn-list-col {
    flex: 0 0 300px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
}

.inn-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inn-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.inn-list li i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

/* Section Dividers */
.section-divider-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-divider-center .line {
    height: 2px;
    width: 50px;
    background-color: var(--accent-orange);
}

.section-divider-center h2 {
    margin-bottom: 0;
    color: var(--dark-green);
    font-weight: 800;
}

/* ==========================================================================
   Sustainability Page Styles
   ========================================================================== */

/* Hero Section */
.sus-hero {
    background: var(--light-bg);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.sus-hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.sus-hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 35%;
    background: linear-gradient(to right, var(--light-bg) 0%, rgba(250, 250, 248, 0) 100%);
    z-index: 2;
}

.sus-hero-visual .globe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sus-hero-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.sus-hero-content {
    flex: 1;
    max-width: 50%;
    padding-right: 3rem;
    text-align: left;
}

.sus-title-line {
    width: 50px;
    height: 3px;
    background-color: var(--accent-orange);
    margin: 1.5rem 0;
}

.sus-title {
    font-size: 4rem;
    color: var(--dark-green);
    line-height: 1.1;
    margin-bottom: 0;
    margin-top: 1.5rem;
}

.sus-title span {
    color: #a87b4f;
}

.sus-subtitle {
    font-size: 1.25rem;
    color: var(--dark-green);
    margin-bottom: 2rem;
    font-weight: 600;
}

.sus-desc {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Approach Section */
.sus-approach {
    background: var(--white);
}

.approach-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    gap: 2rem;
}

.approach-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.approach-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.approach-step:hover .approach-icon {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(41, 114, 30, 0.3);
}

.approach-icon {
    width: 90px;
    height: 90px;
    background: #EAF3DC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    font-size: 2.5rem;
    border: none;
    transition: all 0.3s ease;
}

.approach-step h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.approach-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    max-width: 180px;
    margin: 0 auto;
}

.approach-arrow {
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translate(50%, -50%);
    color: var(--primary-green);
    opacity: 0.5;
    font-size: 1.5rem;
    z-index: 5;
}

.approach-step:last-child .approach-arrow {
    display: none;
}

/* Initiatives Section */
.initiatives-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.ini-img-col {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.ini-img-col img {
    width: 100%;
    height: auto;
    display: block;
}

.ini-img-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 70%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.ini-img-overlay h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
}

.ini-content-col {
    flex: 1;
}

.ini-items-list {
    display: flex;
    flex-direction: column;
}

.ini-item {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid #E0E0E0;
    padding: 1rem 0;
    align-items: center;
    transition: all 0.3s ease;
}

.ini-item:first-child {
    padding-top: 0;
}

.ini-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ini-item:hover .ini-icon {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(41, 114, 30, 0.3);
}

.ini-icon {
    width: 60px;
    height: 60px;
    background: #EAF3DC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ini-text h4 {
    color: var(--dark-green);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.ini-text p {
    color: var(--dark-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Impact Section */
.sus-impact {
    background: var(--white);
    padding-bottom: 2rem !important;
}

.impact-wrapper {
    background: #F6F8F5;
    border-radius: 20px;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.impact-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 35%;
    background-image: url('assets/images/images/techno.jpeg');
    background-size: cover;
    background-position: center right;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 70%);
    mask-image: linear-gradient(to right, transparent 0%, black 70%);
    z-index: 0;
    opacity: 0.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.impact-card {
    background: transparent;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #DCE6D5;
}

.impact-card:last-child {
    border-right: none;
}

.impact-icon {
    font-size: 2.2rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.impact-card h3 {
    color: var(--dark-green);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.impact-card p {
    font-size: 0.85rem;
    color: var(--dark-text);
    line-height: 1.4;
}

.sus-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #00204D;
    padding: 1.5rem 3.5rem;
    border-radius: 100px;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    background-image: url('assets/images/images/earth.jpeg');
    background-size: cover;
    background-position: center left;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 70%);
    mask-image: linear-gradient(to right, transparent 0%, black 70%);
    z-index: 0;
    opacity: 0.5;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border: 2px solid #A5B695;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #82c341;
    background: transparent;
    flex-shrink: 0;
}

.cta-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 500px;
    margin: 0;
}

.cta-right {
    margin-left: 2rem;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {

    .process-grid,
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-arrow {
        display: none;
        /* Hide arrows on wrapping layouts for simplicity */
    }

    .approach-grid {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .approach-step {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .sus-hero {
        padding: 6rem 0 2rem;
        flex-direction: column;
    }

    .sus-hero-visual {
        position: relative;
        width: 100%;
        height: 350px;
        order: 2;
    }

    .sus-hero-content {
        max-width: 100%;
        padding-right: 0;
        padding-top: 3rem;
    }

    .tech-hero-grid {
        flex-direction: column;
    }

    .tech-hero-content-wrapper {
        padding: 0 !important;
    }

    .tech-desc {
        text-align: justify !important;
        text-align-last: left !important;
    }

    .tech-hero-image {
        margin-right: 0;
        width: 100%;
        margin-top: 2rem;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    }

    .tech-hero-image img {
        border-radius: 16px;
    }

    .tech-title {
        font-size: 3rem !important;
        line-height: 1.05 !important;
        letter-spacing: -1px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    }

    .tech-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .innovation-box,
    .sus-hero-container,
    .initiatives-grid,
    .sus-cta {
        flex-direction: column;
    }

    .inn-img-col,
    .ini-img-col {
        height: 250px;
        flex: auto;
        width: 100%;
    }

    .inn-list-col,
    .ini-content-col {
        flex: auto;
        padding: 2rem;
    }

    .cta-left {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }

    .cta-right {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .tech-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Hero Section */
.contact-hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
    mask-image: linear-gradient(to right, transparent 0%, black 50%);
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-container {
    position: relative;
    z-index: 1;
}

.contact-hero-content {
    max-width: 600px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-green);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.contact-title-line {
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-desc {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
}

.btn-brown {
    background-color: rgba(41, 114, 30, 0.85);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.4), inset 0 -2px 2px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(41, 114, 30, 0.4);
}

.btn-brown:hover {
    background-color: rgba(41, 114, 30, 1);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.3), inset 0 -2px 2px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(41, 114, 30, 0.5);
}

.btn-brown-outline {
    background-color: rgba(255, 255, 255, 0.15);
    color: #29721E;
    border: 1px solid rgba(41, 114, 30, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.3), 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-brown-outline:hover {
    background-color: rgba(41, 114, 30, 0.85);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.4), inset 0 -2px 2px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(41, 114, 30, 0.5);
}

/* Contact Info Section */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 1.25rem 1rem;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.contact-card:hover .contact-icon {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(41, 114, 30, 0.3);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: #EAECE3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--dark-green);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.contact-card h3 {
    font-size: 0.95rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--dark-green);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Form and Map */
.form-map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-wrapper,
.contact-map-wrapper {
    background: #F8F9F7;
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-form-layout {
    display: flex;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    align-items: stretch;
}

.form-image-col {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 400px;
    position: relative;
    display: block;
}

.form-image-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(255, 255, 255, 0.85) 100%);
    pointer-events: none;
    z-index: 2;
}

.form-image-col img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.contact-form-wrapper {
    flex: 1.2;
    width: 100%;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.line-left {
    width: 30px;
    height: 2px;
    background: var(--accent-orange);
}

.form-header h2 {
    font-size: 1.25rem;
    color: var(--dark-green);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {

    .form-row:nth-child(1),
    .form-row:nth-child(2) {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #EAEAEA;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.btn-submit {
    background: rgba(41, 114, 30, 0.85);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.8rem 2rem;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.4), inset 0 -2px 2px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(41, 114, 30, 0.4);
    transition: var(--transition);
}

.btn-submit:hover {
    background: rgba(41, 114, 30, 1);
    transform: translateY(-2px);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.3), inset 0 -2px 2px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(41, 114, 30, 0.5);
}

/* Map Section */
.map-container {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    background: #EAEAEA;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/images/images/map-placeholder.jpg');
    background-size: cover;
    background-position: center;
}

.map-pin {
    font-size: 2.5rem;
    color: var(--dark-green);
}

.location-box {
    background: var(--dark-green);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
}

.location-icon {
    font-size: 2.5rem;
    color: #A6C289;
}

.location-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.location-text p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* Bottom Banner */
.contact-banner {
    background: #F3F4EE;
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.banner-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

.banner-item {
    display: flex;
    gap: 1rem;
    border-right: 1px solid #D5D9D2;
    padding: 0 1.5rem;
    align-items: center;
}

.banner-item:first-child {
    padding-left: 0;
}

.banner-item:nth-child(4) {
    border-right: none;
}

.banner-icon {
    font-size: 2.5rem;
    color: var(--dark-green);
}

.banner-text h4 {
    font-size: 0.95rem;
    color: var(--dark-green);
    margin-bottom: 0.25rem;
}

.banner-text p {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin: 0;
}

.banner-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 28%;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 40%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, transparent 40%, black 100%);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Architecture
   ========================================================================== */

/* 1. Navigation & Header Breakpoints (<= 1024px) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.25rem;
    }

    .logo {
        margin-left: 0;
    }

    .logo-img {
        height: 55px;
        width: auto;
        margin: 0;
        object-fit: contain;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: #ffffff;
        padding: 5.5rem 1.75rem 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
        z-index: 999;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        border-left: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 0.75rem;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 1.05rem;
        font-weight: 500;
        display: block;
        width: 100%;
        color: var(--dark-green);
    }

    .mobile-cta-item {
        display: block;
        margin-top: 1rem;
        padding-bottom: 0 !important;
    }

    .mobile-cta-item .btn-mobile {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        border-radius: 8px;
    }

    .navbar .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        z-index: 1000;
        border-radius: 8px;
        font-size: 1.75rem;
    }
}

/* 2. Tablet Layouts (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 0;
    }

    .hero-content {
        margin-left: 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .infographic {
        transform: translate(-50%, -50%) scale(0.82);
        transform-origin: center center;
    }

    .stats-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }

    .stat-divider {
        display: none;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .lab-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        width: 100%;
    }

    .lab-content-col {
        padding: 1rem 0;
    }

    .lab-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
        align-items: stretch;
        grid-auto-rows: 1fr;
    }

    .features-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border: none;
        background: transparent;
        gap: 1.25rem;
        box-shadow: none;
    }

    .feature-card {
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: var(--border-radius);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        padding: 1.75rem 1.25rem;
    }

    .feature-card:last-child {
        grid-column: 1 / -1;
    }

    .values-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }

    .values-grid .value-item {
        width: 100% !important;
        flex: none !important;
        padding: 2rem 1.25rem;
    }

    .values-grid .value-item:last-child {
        grid-column: 1 / -1;
    }

    .equipment-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }

    /* Sustainability Page Tablet Overrides */
    .sus-hero {
        padding: 6.5rem 0 3.5rem;
        min-height: auto;
    }

    .sus-hero-content {
        max-width: 55%;
        padding-right: 1.5rem;
    }

    .sus-hero-visual {
        width: 50%;
    }

    .sus-title {
        font-size: 2.8rem;
    }

    .approach-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
        margin-top: 2.5rem;
    }

    .approach-step {
        width: 100% !important;
        padding: 1.25rem 0.85rem;
        background: var(--white);
        border: 1px solid #EAF3DC;
        border-radius: 12px;
    }

    .approach-step:last-child {
        grid-column: 1 / -1;
    }

    .approach-arrow {
        display: none !important;
    }

    .initiatives-grid {
        gap: 2rem;
    }

    .impact-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }

    .impact-card {
        border: 1px solid #DCE6D5;
        border-radius: 12px;
        background: var(--white);
    }

    .impact-card:last-child {
        grid-column: 1 / -1;
        border-right: 1px solid #DCE6D5;
    }

    /* Contact Page Tablet Overrides */
    .contact-info-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }

    .contact-card {
        padding: 1.75rem 1rem;
    }

    .contact-title {
        font-size: 2.8rem;
    }

    .banner-container {
        display: grid;
        grid-template-columns: 1fr 240px;
        min-height: 280px;
        align-items: center;
        padding: 1.5rem 2rem;
        background: linear-gradient(135deg, #ffffff 0%, #f4f8f5 100%);
        border-radius: 16px;
        border: 1px solid rgba(41, 114, 30, 0.1);
    }

    .banner-bg-left {
        display: none;
    }

    .banner-content {
        padding: 0;
        min-width: 0;
        z-index: 2;
    }

    .banner-content h2 {
        font-size: 1.75rem;
    }

    .banner-center-icon {
        padding-left: 0;
        display: flex;
        justify-content: center;
        z-index: 2;
    }

    .earth-image {
        width: 220px;
        height: auto;
    }

    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-col:nth-child(n+5) {
        margin-top: 1rem;
    }

    .footer-logo-img {
        height: 70px;
        width: auto;
        margin: 0 0 10px 0;
    }
}

/* 3. General Mobile & Tablet Overrides (<= 992px) */
@media (max-width: 992px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .lab-container-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lab-features-col {
        padding-left: 0;
        border-left: none;
    }

    .lab-text-col {
        align-items: flex-start;
        text-align: left;
    }

    .lab-text-col .btn-theme-new {
        align-self: flex-start;
    }

    /* Inner Page Heroes */
    .about-hero,
    .lab-hero,
    .tech-hero,
    .materials-hero,
    .sus-hero,
    .contact-hero {
        display: flex !important;
        flex-direction: column;
        padding-top: 6.5rem;
        padding-bottom: 2.5rem;
    }

    .about-hero-visual,
    .lab-hero-visual,
    .tech-hero-visual,
    .materials-hero-visual,
    .sus-hero-visual,
    .contact-hero-bg {
        position: relative !important;
        width: 100% !important;
        min-height: 250px !important;
        height: auto !important;
        max-height: 360px !important;
        order: 2;
        padding: 0 !important;
        margin-top: 0.5rem;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .contact-hero-bg,
    .materials-hero-visual,
    .sus-hero-visual {
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%) !important;
        mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%) !important;
    }

    .sus-title {
        font-size: 3rem !important;
        line-height: 1.05 !important;
        letter-spacing: -1px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    }

    .materials-hero-title {
        font-size: 3rem !important;
        line-height: 1.05 !important;
        letter-spacing: -1px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    }

    .about-hero-spacer,
    .lab-hero-spacer,
    .tech-hero-spacer,
    .materials-hero-spacer,
    .sus-hero-spacer {
        display: none !important;
    }

    .about-hero-container,
    .lab-hero-container,
    .tech-hero-container,
    .materials-hero-container,
    .sus-hero-container,
    .contact-hero-container {
        order: 1;
        width: 100%;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .about-hero-subtitle {
        font-size: 1.45rem;
        line-height: 1.35;
        margin-bottom: 0.85rem;
        letter-spacing: -0.5px;
    }

    .about-hero-content,
    .lab-hero-content,
    .tech-hero-content,
    .materials-hero-content,
    .sus-hero-content,
    .contact-hero-content {
        max-width: 100% !important;
    }

    .who-we-are-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .who-we-are {
        width: 100%;
        align-self: stretch;
        padding: 2rem 0.75rem;
    }

    .who-we-are p {
        text-align: justify !important;
        text-justify: inter-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        word-break: break-word !important;
    }

    .who-we-are-image {
        max-height: 350px;
        order: 1 !important;
        /* Content first, image below */
    }

    .who-we-are-image::before {
        background: linear-gradient(to bottom, #ffffff 0%, transparent 60%) !important;
    }

    .vision-mission {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }



    /* Timeline Scroll Fix */
    .timeline-nav-container {
        overflow-x: auto;
        justify-content: flex-start !important;
        gap: 1.5rem;
        padding-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .timeline-nav-container::-webkit-scrollbar {
        display: none;
    }

    .our-journey .section-header {
        margin-bottom: 1.5rem !important;
    }

    .title-with-lines .line {
        height: 3px;
        width: 60px;
        background-color: var(--accent-orange);
    }

    .desktop-journey {
        display: none !important;
    }

    .mobile-journey {
        display: block !important;
    }

    .journey-timeline-interactive {
        position: relative;
    }

    .timeline-step {
        width: 130px !important;
        min-width: 130px;
        flex-shrink: 0;
        scroll-snap-align: start;
        margin-top: 0;
        position: relative;
    }

    .timeline-step::after {
        content: '\2192';
        position: absolute;
        top: 35px;
        right: -10px;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: var(--accent-orange);
        font-weight: bold;
        z-index: 5;
    }

    .timeline-step:last-child::after {
        display: none;
    }

    .timeline-content {
        padding: 2rem 1.25rem !important;
    }

    .timeline-content p {
        text-align: justify !important;
        text-align-last: center !important;
        font-size: 1.05rem;
    }

    .tech-features-box {
        padding: 0;
    }

    .tech-features-grid {
        gap: 0.5rem;
    }

    .tech-feature {
        padding: 0.5rem;
    }

    .tech-feature-icon {
        margin: 0 auto 0.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .tech-feature h4 {
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
    }

    .tech-feature p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .our-commitment {
        padding-top: 2rem !important;
    }

    .commitment-content {
        padding: 2rem 1.25rem !important;
    }

    .left-visual img {
        max-width: 270px;
        margin: 0 auto;
        display: block;
        mix-blend-mode: multiply;
    }

    .why-matters-box,
    .lab-content-wrapper,
    .material-details {
        flex-direction: column;
    }

    .why-img-col,
    .why-content-col {
        width: 100% !important;
    }

    .contact-banner {
        flex-direction: column;
        padding: 0;
    }

    .banner-items {
        padding: 2rem 1.25rem;
    }

    .banner-image {
        position: relative;
        width: 100%;
        height: 220px;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%) !important;
        mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%) !important;
    }
}

/* 4. Mobile Devices (<= 768px) */
@media (max-width: 768px) {

    .container,
    .lab-container,
    .tech-hero-grid,
    .lab-hero-grid {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    p,
    .section-desc,
    .hero-desc,
    .about-hero-desc {
        text-align: left !important;
        letter-spacing: normal !important;
        word-spacing: normal !important;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        line-height: 1.65;
    }

    .hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
        min-height: 95vh;
    }

    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-top: 0;
    }

    .hero-content {
        text-align: left;
        margin-left: 0;
    }

    .hero-title {
        font-size: clamp(2.1rem, 7vw, 2.6rem);
        line-height: 1.2;
        text-shadow: 0 2px 15px rgba(255, 255, 255, 0.9);
        position: relative;
        z-index: 2;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.35;
    }

    .hero-desc {
        font-size: 1.05rem;
        margin-bottom: 1.75rem;
        max-width: 95%;
        color: #f8f8f8;
        font-weight: 500;
        position: relative;
        z-index: 2;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        box-shadow: 0 6px 15px rgba(41, 114, 30, 0.12);
        font-size: 1.05rem;
    }

    .hero-image-wrapper {
        width: 100vw;
    }

    .hero-visual {
        display: none;
    }

    .infographic {
        width: 460px;
        height: 460px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.78);
    }

    .section-title {
        font-size: 1.85rem !important;
    }

    /* Statistics Section Mobile & Tablet Grid (2 columns) */
    .statistics {
        margin-top: 0;
        padding: 1.5rem 0;
    }

    .statistics .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem 0.5rem;
    }

    .stat-item {
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 1rem;
    }

    .stat-item i {
        font-size: 1.8rem;
        flex-shrink: 0;
        margin-bottom: 0.25rem;
    }

    .stat-text h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
    }

    .stat-divider {
        display: none;
    }

    /* Industries Grid Mobile & Tablet (2 columns) */
    .industry-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .industry-card {
        height: 240px;
    }

    .card-img-wrapper {
        height: 100%;
    }

    .card-content {
        padding: 1.5rem 0.25rem;
        gap: 0.8rem;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        text-align: center;
    }

    .card-content i {
        width: 2rem;
        height: 2rem;
        font-size: 1.2rem;
        margin: auto;
    }

    .card-content h3 {
        font-size: 0.65rem;
        margin-top: 10px;
        letter-spacing: -0.2px;
        white-space: nowrap;
    }

    /* Lab Section Mobile */
    .laboratory {
        padding: 0.5rem 0 1.5rem;
    }

    .lab-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        width: 100%;
    }

    .lab-image-col {
        order: -1;
    }

    .lab-image-wrapper {
        border-radius: 12px;
        aspect-ratio: 16 / 9;
    }

    .lab-image-wrapper::after {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 45%;
        background: linear-gradient(to bottom, rgba(250, 250, 248, 0) 0%, var(--light-bg) 100%);
    }

    .lab-content-col {
        padding: 0;
    }

    .lab-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        align-items: stretch !important;
        grid-auto-rows: 1fr !important;
    }

    .lab-features-grid .lab-feature:last-child {
        grid-column: 1 / -1;
    }

    .lab-feature {
        padding: 1rem 1.25rem;
        height: 100% !important;
        box-sizing: border-box !important;
        grid-template-rows: 52px 48px 1fr !important;
    }

    .lab-feature span {
        font-size: 0.95rem;
    }

    /* Why Choose Us Mobile & Tablet (2 columns) */
    .features-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
        border: none;
        background: transparent;
        box-shadow: none;
        margin-top: 2rem;
    }

    .feature-card {
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: var(--border-radius);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 1.25rem 0.85rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .feature-card:last-child {
        grid-column: 1 / -1;
    }

    .feature-card i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .feature-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .feature-card p {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    /* Our Values Grid Mobile & Tablet (2 columns) */
    .values-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
    }

    .values-grid .value-item {
        width: 100% !important;
        flex: none !important;
        min-width: 0 !important;
        padding: 1.25rem 0.85rem;
    }

    .values-grid .value-item:last-child {
        grid-column: 1 / -1;
    }

    .value-icon {
        width: 52px;
        height: 52px;
        font-size: 1.8rem;
        margin: 0 auto 1rem;
    }

    .value-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .value-item p {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    /* Equipment & Capabilities Grid Mobile & Tablet (2 columns) */
    .equipment-grid,
    .capabilities-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
    }

    .eq-card {
        padding: 0;
    }

    .eq-card img {
        height: 120px;
        margin-bottom: 0;
    }

    .eq-card h4 {
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
    }

    /* Sustainability Page Mobile Overrides */
    .sus-hero {
        padding: 5.5rem 0 0;
        min-height: auto;
    }

    .sus-hero-container {
        flex-direction: column;
    }

    .sus-hero-content {
        max-width: 100%;
        padding-right: 0;
        text-align: left;
    }

    .sus-hero-visual {
        position: relative;
        width: 100%;
        height: 220px;
        order: 2;
        margin-bottom: 0;
        margin-top: 2rem;
        border-radius: 16px;
        overflow: hidden;
    }

    .sus-hero-visual::before {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        left: 0;
        background: linear-gradient(to bottom, transparent 0%, var(--light-bg) 100%);
    }

    .sus-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    .sus-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .sus-desc {
        font-size: 0.95rem;
    }

    .sus-approach-desc {
        text-align: justify !important;
        text-align-last: center !important;
    }

    .ini-text p {
        text-align: justify !important;
        text-align-last: left !important;
    }

    /* Approach Grid 2 Columns on Mobile */
    .approach-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
        margin-top: 2rem;
    }

    .approach-step {
        width: 100% !important;
        padding: 1.25rem 0.75rem;
        background: var(--white);
        border: 1px solid #EAF3DC;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .approach-step:last-child {
        grid-column: 1 / -1;
    }

    .approach-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .approach-step h4 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .approach-step p {
        font-size: 0.78rem;
        max-width: 100%;
    }

    .approach-arrow {
        display: none !important;
    }

    /* Initiatives Section Mobile */
    .initiatives-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .ini-img-col {
        width: 100%;
        max-height: 240px;
    }

    .ini-item {
        gap: 1rem;
        padding: 0.85rem 0;
    }

    .ini-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .ini-text h4 {
        font-size: 0.98rem;
    }

    .ini-text p {
        font-size: 0.82rem;
    }

    /* Impact Grid 2 Columns on Mobile */
    .impact-wrapper {
        padding: 2rem 1rem;
    }

    .impact-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
    }

    .impact-card {
        border: 1px solid #DCE6D5;
        border-radius: 12px;
        background: var(--white);
        padding: 1.25rem 0.75rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .impact-card:last-child {
        grid-column: 1 / -1;
        border-right: 1px solid #DCE6D5;
    }

    .impact-icon {
        font-size: 1.8rem;
    }

    .impact-card h3 {
        font-size: 1.2rem;
    }

    .impact-card p {
        font-size: 0.78rem;
    }

    /* Sustainability CTA Mobile */
    .sus-cta {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 2rem 1.25rem;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .cta-left {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cta-left .cta-content h3 {
        font-size: 1.3rem;
    }

    .cta-left .cta-content p {
        font-size: 0.88rem;
    }

    .cta-right {
        width: 100%;
    }

    .cta-right .btn {
        width: 100%;
        justify-content: center;
    }

    /* Contact Page Mobile Overrides */
    .contact-hero {
        padding: 5.5rem 0 2.5rem;
        min-height: auto;
    }

    .contact-title {
        font-size: clamp(2.1rem, 7vw, 2.6rem);
    }

    .contact-subtitle {
        font-size: 1.15rem;
        line-height: 1.35;
    }

    .contact-buttons {
        width: 100%;
    }

    .contact-buttons .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    /* Contact Info Grid 2 Columns on Mobile */
    .contact-info-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
    }

    .contact-card {
        padding: 1.25rem 0.75rem;
        border-radius: 12px;
    }

    .contact-icon {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        margin-bottom: 0.85rem;
    }

    .contact-card h3 {
        font-size: 0.88rem;
        margin-bottom: 0.35rem;
    }

    .contact-card p {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    /* Form Mobile */
    .contact-form-wrapper {
        padding: 1.5rem 1.25rem !important;
        border-radius: 12px;
    }

    .form-header h2 {
        font-size: 1.15rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .form-footer {
        flex-direction: column;
        gap: 1.25rem;
        align-items: stretch;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    /* Sustainability Banner Mobile */
    .sustainability-banner {
        padding: 2rem 0;
    }

    .banner-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2.25rem 1.25rem;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(41, 114, 30, 0.15);
        overflow: hidden;
        position: relative;
        min-height: auto;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.5) 100%);
    }

    .banner-bg-left {
        display: none;
    }

    .banner-content {
        padding: 0;
        min-width: 0;
        text-align: center;
        z-index: 2;
    }

    .banner-content h2 {
        font-size: 1.55rem;
        margin-bottom: 0.75rem;
    }

    .banner-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .banner-content .btn {
        margin-top: 0 !important;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        background-color: #29721E;
        border-color: #29721E;
        color: var(--white);
    }

    .banner-center-icon {
        padding-left: 0;
        margin-top: 1rem;
        z-index: 2;
        order: -1;
    }

    .earth-image {
        /* width: 160px;
        height: auto;
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2)); */
        display: none;
    }

    /* Footer Mobile */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem 1.25rem !important;
        text-align: left;
    }

    .brand-col {
        grid-column: 1 / -1;
        text-align: left;
    }

    .footer-logo {
        margin-left: 0;
        margin-top: 0;
    }

    .footer-logo-img {
        height: 65px;
        width: auto;
        margin: 0 0 10px 0;
    }

    .trust-badges {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 1rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* About Us - Updated Components Responsive */
    .about-hero {
        padding: 130px 0 60px !important;
        min-height: auto;
    }

    .about-hero h1 {
        font-size: 2.5rem !important;
    }

    .about-hero-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .about-hero-desc {
        font-size: 1rem !important;
        line-height: 1.6;
        padding: 0 1rem;
    }

    .who-we-are-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .who-we-are-image {
        max-height: 250px;
        order: 1 !important;
        /* Content first, image below */
    }

    .who-we-are-image::before {
        background: linear-gradient(to bottom, #ffffff 0%, transparent 60%) !important;
    }

    .who-we-are {
        padding: 0 1rem !important;
        text-align: center;
    }

    .vision-mission {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .dark-card {
        padding: 1.5rem !important;
    }

    .dark-card-title {
        font-size: 1.25rem !important;
    }

    .values-header {
        margin-bottom: 2.5rem;
    }

    .values-main-title {
        font-size: 2rem !important;
    }

    .values-subtitle {
        font-size: 1rem !important;
        padding: 0 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr !important;
    }
}

/* 5. Small Mobile Devices (<= 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem !important;
    }

    .hero-visual {
        display: none;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }


    /* .infographic {
        width: 320px;
        height: 320px;
        transform: translate(-50%, -50%) scale(0.68);
    } */

    .section-title {
        font-size: 1.55rem !important;
    }

    .section-title-new {
        font-size: 1.6rem !important;
    }

    .sus-title {
        font-size: 1.75rem !important;
        word-wrap: break-word;
    }

    .process-step .step-arrow {
        transform: rotate(90deg);
        margin: 1rem auto;
        display: block;
        text-align: center;
    }

    .lab-feature {
        display: grid !important;
        grid-template-rows: 52px 48px 1fr !important;
        align-items: start !important;
        justify-items: center !important;
        padding: 0.85rem 0.5rem !important;
        height: 100% !important;
        box-sizing: border-box !important;
    }

    .lab-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        align-items: stretch !important;
        gap: 0.85rem !important;
        grid-auto-rows: 1fr !important;
    }

    .btn {
        min-height: 44px;
        padding: 0.75rem 1.25rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.75rem !important;
    }

    .stats-wrapper {
        gap: 0.75rem;
        padding: 0.5rem;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.5rem;
        padding: 1rem 0.75rem;
    }

    .stat-item i {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .stat-text {
        width: 100%;
    }

    .stat-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
        word-break: break-word;
    }

    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }

    .stat-desc {
        font-size: 0.65rem;
        line-height: 1.2;
    }
}

@media (max-width: 992px) {
    .contact-form-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .form-image-col {
        min-height: 300px;
    }
}