.about-banner {
    position: relative;
    height: 300px;
    background: url("assest/img/about.webp") center/cover no-repeat;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
    /* padding: 30px 0; */
}

/* dark overlay */
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

/* content */
.about-content {
    position: relative;
    text-align: left;
    color: #fff;
    z-index: 2;
}

.about-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: limegreen;
}

/* breadcrumb */
.breadcrumb {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #fbbf24;
}

.breadcrumb span {
    opacity: 0.9;
}


.about-section {
    padding: 20px 0;
    background: #f5f5f5;

    /* max-width: 1200px; */
    margin: auto;
    /* padding: 0 20px; */
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */

.about-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-content h4 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #222;
}

/* RIGHT IMAGE */

.about-image {
    text-align: right;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

/* RESPONSIVE */

@media(max-width:992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        text-align: center;
        margin-top: 30px;
    }
}



/* 
   WHY CHOOSE US
 */

.why-choose {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.choose-box {
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: .3s;
    height: 100%;
}

.choose-box i {
    /* font-size: 30px;
    color: #f4b400; */
            font-size: 46px;
            color: darkblue;
    margin-bottom: 10px;
}

.choose-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* 
   SERVICES SECTION
 */

.services-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    transition: .35s ease;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* hover gradient glow */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #f4b400, #ffcc33);
    opacity: 0;
    transition: .35s;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card * {
    position: relative;
    z-index: 1;
}

/* ICON */
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: lightblue;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: darkblue;
    transition: .3s;
}

/* TEXT */
.service-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 15px;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    color: #fff;
}

.service-card:hover .service-icon {
    background: #fff;
    color: #000;
}

.service-card:hover p {
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .services-section {
        padding: 60px 0;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .banner-overlay h1 {
        font-size: 30px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-section {
        text-align: center;
    }

    .about-section ul {
        text-align: left;
    }

}

@font-face {
    font-family: 'Kalam';
    src: url('assest/Kalam/Kalam-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Kalam';
    src: url('assest/Kalam/Kalam-Bold.ttf') format('truetype');
    font-weight: 700;
}

.hindi-text {
    font-family: 'Kalam', cursive;
    font-size: 2.5rem;
    font-weight: 700;
}

.hindi-text {
    font-family: 'Kalam', cursive;
        font-size: 2.4rem;
    color: darkblue;
    border-radius: 10px;
}