/* ====================================================
   ABOUT HERO SECTION (Desktop & Mobile Adaptive)
   ==================================================== */
.about-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
    background: #fff;
    position: relative;
    overflow: hidden;
    gap: 40px;
}

.hero-left {
    width: 45%;
}

.hero-left h1 {
    font-size: clamp(38px, 6vw, 80px); /* Fluid size: prevents text wrapping issues */
    line-height: 1.1;
    font-weight: 800;
    color: #001d3d;
}

.hero-left h1 span {
    color: #008c3a;
}

.hero-left h2 {
    color: #001d3d;
    font-size: clamp(24px, 3vw, 43px);
    margin-top: 10px;
}

.hero-left h3 {
    color: #008c3a;
    margin: 20px 0;
    font-size: clamp(16px, 1.8vw, 20px);
}

.hero-text {
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

.hero-right {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img {
    width: 100%;
    max-width: 550px;
    border-radius: 60% 40% 30% 70% / 40% 50% 50% 60%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    display: block;
}

/* Badges with responsive scaling */
.safe-badge {
    position: absolute;
    top: 20px;
    left: 10px;
    width: 130px;
    height: 130px;
    background: #fff;
    border: 3px solid #6bbd45;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
    z-index: 5;
    transition: all 0.3s ease;
}

.safe-badge h4 {
    font-size: 14px;
    line-height: 1.3;
    color: #222;
    margin-bottom: 5px;
}

.safe-badge i {
    font-size: 28px;
    color: #28a745;
}

.guarantee-box {
    position: absolute;
    right: 10px;
    bottom: 20px;
    background: #008c3a;
    color: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 5;
}

.guarantee-box h2 {
    font-size: clamp(32px, 4vw, 55px);
    margin: 0;
}

.about-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    height: 80px;
    background: #008c3a;
    border-radius: 50% 50% 0 0;
}

/* ====================================================
   PESTS SECTION
   ==================================================== */
.pests-section {
    padding: 80px 8%;
    background: #f8faf7;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: #00A651;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: #003366;
    margin-top: 10px;
}

.pests-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pest-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 20px;
    transition: .4s;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.pest-card:hover {
    transform: translateY(-10px);
}

.pest-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 15px;
}

.pest-card h4 {
    color: #003366;
}

/* ====================================================
   OUR STORY SECTION
   ==================================================== */
.our-story {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 100px 8%;
    background: #ffffff;
}

.story-images {
    width: 48%;
    position: relative;
}

.main-story-img img {
    width: 100%;
    border-radius: 25px;
    display: block;
}

.small-story-img {
    position: absolute;
    right: -20px;
    bottom: 30px;
    width: 200px;
}

.small-story-img img {
    width: 100%;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.experience-card {
    position: absolute;
    left: -20px;
    bottom: 20px;
    background: #00A651;
    color: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.experience-card h2 {
    font-size: 40px;
    margin-bottom: 5px;
}

.experience-card span {
    font-size: 14px;
    font-weight: 600;
}

.story-content {
    width: 48%;
}

.story-tag {
    display: inline-block;
    color: #00A651;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.story-content h2 {
    font-size: clamp(30px, 4vw, 52px);
    color: #003366;
    line-height: 1.2;
    margin-bottom: 20px;
}

.story-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 16px;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: #e8fff2;
    color: #00A651;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #003366;
    margin-bottom: 5px;
}

.feature-item p {
    margin: 0;
    font-size: 14px;
}

/* ====================================================
   VALUES SECTION
   ==================================================== */
.our-values {
    padding: 100px 8%;
    background: #f8faf8;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading span {
    color: #00A651;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 50px);
    color: #003366;
    margin-top: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.value-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: auto;
    background: #eafcf2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    color: #00A651;
    font-size: 35px;
}

.value-card h3 {
    color: #003366;
    margin-bottom: 10px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* ====================================================
   STATS SECTION WITH CONTAINER
   ==================================================== */
.stats-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 8%;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,40,15,.92), rgba(0,40,15,.92));
}

.stats-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    text-align: center;
    color: #fff;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,.15);
}

.stat-box:last-child {
    border-right: none;
}

.stat-box i {
    font-size: 55px;
    color: #a6ff00;
    margin-bottom: 15px;
    display: block;
}

.stat-box h2 {
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 18px;
    color: #fff;
}

/* ====================================================
   PESTS HANDLE SCROLLER ROW
   ==================================================== */
.pests-handle {
    background: #e4e6e4;
    padding: 50px 5%;
    text-align: center;
}

.small-title {
    color: #0b8a3c;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.pests-handle h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    color: #0f2438;
    margin: 15px 0 40px;
}

.pests-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.pest-box {
    text-align: center;
    width: 110px;
}

.pest-circle {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 2px solid #6dbb75;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: .3s;
}

.pest-circle:hover {
    transform: translateY(-5px);
}

.pest-circle img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.pest-box h4 {
    margin-top: 12px;
    font-size: 16px;
    color: #222;
    line-height: 1.3;
}

/* ====================================================
   RESPONSIVE MEDIA QUERIES (Anti-Overlap Engine)
   ==================================================== */

@media (max-width: 991px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 60px 5%;
    }

    .hero-left, 
    .hero-right {
        width: 100%;
    }

    /* Badges adjusting to fit smaller screens */
    .safe-badge {
        width: 110px;
        height: 110px;
        top: 10px;
        left: 5px;
    }
    .safe-badge i {
        font-size: 22px;
    }
    .safe-badge h4 {
        font-size: 11px;
    }

    .guarantee-box {
        padding: 10px 20px;
        bottom: 10px;
        right: 5px;
    }

    .our-story {
        flex-direction: column;
        gap: 50px;
        padding: 60px 5%;
    }

    .story-images, 
    .story-content {
        width: 100%;
    }

    .story-content {
        text-align: center;
    }

    .story-features {
        grid-template-columns: 1fr;
    }

    .small-story-img {
        display: none; /* Removed for clean spacing */
    }

    .experience-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 180px;
        padding: 15px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }
}

@media (max-width: 768px) {
    .pests-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 580px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .pests-grid {
        grid-template-columns: 1fr;
    }
}