

.services-section {
    background: #ffffff;  
    background: linear-gradient(to bottom, #f5fafa, #e8f5f0);   /* gradient / green bg hataavo */
    padding: 60px 20px;
}

.services-section h2 {
    text-align: center;
    font-size: 20px;         /* small heading */
    font-weight: 600;
    color: #3a5f4c;
    margin-bottom: 8px;
}

.services-section .section-title {
    text-align: center;
    font-size: 15px;         /* normal paragraph */
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-subtitle{
      
    color:#3a5f4c;
 
}
/* ===== SERVICES SECTION ===== */

.services-section {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #f3f8f5 0%, #ffffff 60%);
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Heading */
.services-section h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #3a5f4c;
    margin-bottom: 8px;
}

/* Subtitle */
.section-title {
    text-align: center;
    font-size: 15px;
    color: #666;
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto 45px;
    line-height: 1.6;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Card */
.service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Icon */
.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.service-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Card Content */
.service-content h3 {
    font-size: 1.25rem;
    color: #3a5f4c;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Button */
.read-more {
    display: inline-block;
    background-color: #3a5f4c;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 28px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #5c7a65;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px;
    }
}


/* BUTTON */
.btn-primary {
    display: inline-block;
    padding: 10px 50px;
    background: #4b7c63;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.btn:hover {
    background: #3a6450;
}

.primary {
    padding: 12px 30px;
}

/* TRUST STRIP */
.trust-section {
    padding: 80px 20px;
    background: #f7faf8;
}

.trust-container {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    padding: 50px 40px;
}

.trust-box {
    text-align: center;
    padding: 10px 20px;
}

.trust-box img {
    width: 55px;
    margin-bottom: 15px;
}

.trust-box h3 {
    font-size: 20px;
    color: #2f6f5b;
    margin-bottom: 8px;
    font-weight: 600;
}

.trust-box p {
    font-size: 15px;
    color: #555;
}

/* Divider line */
.divider {
    width: 1px;
    height: 120px;
    background: #d6e6df;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .trust-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .divider {
        display: none;
    }
}

/* CTA SECTION */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.cta-section h2 {
    color: #2f4f3f;
    margin-bottom: 10px;
}

.cta-section p {
    margin-bottom: 20px;
    color: #555;
}

/* FOOTER */
.site-footer {
    background: #2f4f3f;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    font-size: 13px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {

    .services-section h3 {
        font-size: 26px;
    }

    .section-title {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .trust-container {
        padding: 40px 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .services-section {
        padding: 60px 15px;
    }

    .services-section h3 {
        font-size: 24px;
    }

    .section-title {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-icon img {
        width: 60px;
        height: 60px;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    /* Trust section */
    .trust-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px 20px;
    }

    .divider {
        display: none;
    }

    /* CTA */
    .cta-section {
        padding: 50px 15px;
    }

    .cta-section p br {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .services-section h3 {
        font-size: 22px;
    }

    .section-title {
        font-size: 13px;
    }

    .service-card {
        padding: 25px 18px;
        border-radius: 14px;
    }

    .read-more {
        width: 100%;
        padding: 10px 0;
    }

    .btn-primary {
        width: 100%;
        padding: 12px 0;
    }

    .trust-box h3 {
        font-size: 18px;
    }

    .trust-box p {
        font-size: 14px;
    }
}
