               /* HERO SECTION */
.services-hero {
    background: #f5f7f6;
    padding: 100px 0;
    text-align: center;
}

.service-tag {
    color: #2c9c7b;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
}

.service-heading1 {
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0;
    color: #1c1c1c;
}

.service-subtext {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 16px;
}

                    /* CARDS SECTION */

.services-cards {
    padding: 80px 0;
    background: #f9f9f9;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card .icon {
    font-size: 32px;
    color: #28a745; /* YOUR THEME GREEN */
    margin-bottom: 15px;
}

.services-cards .row {
    row-gap: 30px;
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #555;
}

.service-card .icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .icon {
    transform: scale(1.15); /* thoda kam rakha for smooth look */
}

.service-card:hover {
    transform: translateY(-6px); /* less jump */
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}


.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}



                         /*Process section*/

.process-section {
    padding: 80px 0;
    background: #f8faf9;
}

.process-tag {
    color: #2e8b6f;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}

.process-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

/* Hover effect (very important for premium feel) */
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* Number styling */
.process-number {
    font-size: 70px;
    font-weight: 700;
    color: #2e8b6f;
    opacity: 0.12;
    margin-bottom: 10px;
}

/* Heading */
.process-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.process-card p {
    color: #6c757d;
    font-size: 14px;
}
.process-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

.process-card {
    border: 1px solid #f1f1f1;
}



                /*CTA Section*/
                
.cta-section {
    background: linear-gradient(135deg, #2e8b6f, #3aa17e);
    padding: 80px 20px;
    color: #fff;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Button */
.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #2e8b6f;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect ðŸ”¥ */
.cta-btn:hover {
    background: #f1f1f1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}






@media (max-width: 768px) {

    .services-hero {
        padding: 60px 20px; /* 🔥 reduce from 100px */
        text-align: center;
    }

    .services-hero h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .services-hero p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}


@media (max-width: 768px) {
    .process-section .row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px !important;
}
}















