/* Banner Section */
.about-banner {
    position: relative;
    background: url('../images/hero-bg-bugs.webp') center/cover no-repeat;
    height: 380px;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Overlay */
.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 70, 0.65); /* Same dark overlay as screenshot */
}

/* Text */
.about-banner-content {
    position: relative;
    z-index: 2;
    padding-left: 40px;
}

.about-banner h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 20px;
    opacity: 0.9;
}

.breadcrumb span {
    margin: 0 8px;
}






/* MAIN WRAPPER */
.approach-section {
    padding: 80px 0;
    background: #f7faf5;
}

/* GRID LAYOUT */
.approach-section .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT IMAGES */
.approach-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.img-large {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
}

.img-small {
    width: 75%;
    height: 280px;
    object-fit: cover;
    border-radius: 22px;
}

.experience-box {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: #3a3a3c;
    color: white;
    padding: 45px 40px;
    border-radius: 22px;
    text-align: center;
    width: 230px;
}

.experience-box h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* RIGHT SIDE */
.badge {
    background: #e8f8e3;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    color: #0d7c36;
    margin-bottom: 20px;
}

.title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.title span {
    color: #188a2e;
}

.intro {
    color: #444;
    line-height: 1.7;
    margin-bottom: 35px;
    font-size: 17px;
}

/* CARDS (Vision, Mission) */
.cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.info-card {
    background: #002f48;
    color: white;
    padding: 25px;
    border-radius: 22px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.info-card img {
    width: 100%;
    height: 160px;
    border-radius: 18px;
    object-fit: cover;
    margin-top: 10px;
}

/* FEATURES LIST */
.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.features-list li {
    margin-bottom: 14px;
    font-size: 17px;
    color: #333;
    display: flex;
    align-items: center;
}

.features-list i {
    color: #2cb14a;
    margin-right: 10px;
}

/* BUTTON */
.discover-btn {
    background: #3a3a3c;
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.discover-btn i {
    font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .approach-section .container {
        grid-template-columns: 1fr;
    }

    .img-small {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 32px;
    }

    .experience-box {
        width: 200px;
        padding: 35px;
        bottom: -20px;
    }
}

@media (max-width: 576px) {
    .info-card img {
        height: 140px;
    }

    .cards-row {
        grid-template-columns: 1fr;
    }

    .experience-box {
        width: 180px;
        padding: 30px;
    }
}





.innovation-section {
    padding: 30px 0;
    background: #f8fdf7;
}

.innovation-section .container {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

/* LEFT SIDE */
.badge {
    background: #3a3a3c;
    color: #fff;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
}

.heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.heading span {
    color: #1cab3e;
}

.desc {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.big-image {
    width: 100%;
    border-radius: 22px;
    margin-top: 20px;
}


.right-image {
    width: 100%;
    border-radius: 22px;
    margin-bottom: 25px;
}


.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: #3a3a3c;
    margin-right: 10px;
}

/* BUTTON */
.cta-btn {
    background: #3a3a3c;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn i {
    font-size: 17px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .innovation-section .container {
        grid-template-columns: 1fr;
    }

    .heading {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .heading {
        font-size: 28px;
    }

    .feature-list li {
        font-size: 15px;
    }
}








.legacy-section {
    padding: 30px 0;
    background: #fbfefa;
}

.legacy-section .container {
    /* display: grid; */
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.legacy-badge {
    background: #3a3a3c;
    padding: 6px 16px;
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 18px;
}

.legacy-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.legacy-heading span {
    color: #1cab3e;
}

.legacy-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 28px;
   
}

.legacy-btn {
    background: #1cab3e;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.legacy-btn i {
    font-size: 17px;
}

/* Mosquito image (optional) */
.legacy-mosquito {
    width: 180px;
    margin-top: 40px;
}

/* RIGHT SECTION GRID */
.legacy-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
}

.legacy-feature h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 12px 0 10px;
}

.legacy-feature p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    max-width: 300px;
}

/* Icons */
.legacy-icon {
    width: 72px;
    height: 72px;
    background: #1cab3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legacy-icon img {
    width: 42px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .legacy-section .container {
        grid-template-columns: 1fr;
    }

    .legacy-right {
        grid-template-columns: 1fr 1fr;
    }

    .legacy-heading {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .legacy-right {
        grid-template-columns: 1fr;
    }

    .legacy-heading {
        font-size: 28px;
    }
}


.centered-layout .legacy-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.text-center {
    text-align: center;
}

.center-btn {
    margin: 20px auto 0;
    display: inline-flex;
}

/* 8 items in one row */
.legacy-features-row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 25px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.legacy-feature {
    text-align: center;
}

.legacy-feature h4 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
}

/* ICON CIRCLE */
.legacy-icon {
    width: 60px;
    height: 60px;
    background: #3a3a3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legacy-icon img {
    width: 32px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .legacy-features-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .legacy-features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .legacy-features-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
