/* ====================hero settion home==================== */
/* Hero Title */
.hero-tage {
    font-size: 1.7rem;   /* Desktop default */
    font-weight: 600;
    margin-left: 10px;
    line-height: 1.3;
    color: #ffffff;
}

/* Hero Paragraph */
.hero-pera {
    font-size: 10px;
    line-height: 1.1;
   
}

/* ✅ Tablet Responsive */
@media (max-width: 992px) {
    .hero-tage {
        font-size: 1.5rem;
    }
    .hero-pera{
        font-size: 0.9rem;
    }
}

/* ✅ Mobile Responsive */
@media (max-width: 576px) {
    .hero-tage {
        font-size: 1.4rem;
        text-align: center;
    }
    .hero-pera {
        font-size: 0.95rem;
        text-align: center;
    }
}
/* #about-experiences .row reverse iamge home */
/* Mobile view reverse */
@media (max-width: 767px) {
    #about-experiences .row {
        flex-direction: column-reverse !important;
    }
}
/* ====================area services==================== */
/* Section Styling */
.areas-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Grid Layout */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Card Styling */
.area-service-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    border: 1px solid #eee;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.area-service-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #03bbb3;
}

.area-service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Hover Effects */
.area-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(25, 191, 183, 0.48);
    border-color: #a2bf33;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
    }
    .section-subtitle {
        font-size: 14px;
    }
}

/* ==================end area services style============== */


/* =================how-we-work================== */

    /* Section Title */
    .section-title {
        font-size: 28px;
        font-weight: 700;
        color: #0b3d2e;
        margin-bottom: 16px;
    }

    /* Work Cards */
    .work-card {
        background: #fff;
        border-radius: 14px;
        padding: 24px 20px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
        text-align: center;
        height: 100%;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .work-card h5 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #03bbb3;
    }

    .work-card p {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
    }

    /* Hover Effect */
    .work-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
        background: #f8fdfb;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .section-title {
            font-size: 24px;
        }

        .work-card {
            text-align: left;
            padding: 20px;
        }
    }
/* end how-we-work */

/* =====================how-to-reach================================= */

    /* Section Title */
    .section-title {
        font-size: 28px;
        font-weight: 700;
        color: #0b3d2e;
        margin-bottom: 16px;
    }

    /* Step Cards */
    .step-card {
        background: #fff;
        border-radius: 16px;
        padding: 28px 22px;
        text-align: center;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    /* Step Number Circle */
    .step-number {
        width: 50px;
        height: 50px;
        background: #03bbb3;
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        line-height: 50px;
        border-radius: 50%;
        margin: 0 auto 15px;
        box-shadow: 0 4px 10px rgba(27, 189, 126, 0.4);
    }

    .step-card h5 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #03bbb3;
    }

    .step-card p {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
    }

    /* Hover Effect */
    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        background: #f9fdfc;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .section-title {
            font-size: 24px;
        }

        .step-card {
            text-align: left;
            padding: 22px;
        }

        .step-number {
            margin-left: 0;
        }
    }

    /* end how-to-reach */


/* ==================Swiper CSS===================== */

/* end swiper */

/* faqs */
    .area-service-card {
        flex: 1 1 calc(33.333% - 20px);
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .area-service-card h4 {
        margin-top: 0;
    }

    @media (max-width: 768px) {
        .card {
            flex: 1 1 100%;
        }
    }

    .faq {
        margin-bottom: 20px;
    }

    .faq h4 {
        cursor: pointer;
        margin: 0;
        padding: 10px;
        background: #e9f7f2;
        border-radius: 5px;
    }

    .faq p {
        display: none;
        padding: 10px;
        background: #fff;
        margin: 0;
        border-left: 3px solid #1bbd7e;
    }
/* end faqs */