.page-banner {
    width: 100%;
    min-height: 350px;


    background: linear-gradient(rgba(25, 135, 84, 0.6), rgba(25, 135, 84, 0.6)),
        url("/shreebalaji/img/facts.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;
    padding: 80px 20px;
}


.page-banner h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}


.page-banner p {
    font-size: 20px;
    opacity: 0.9;
}


@media (max-width: 768px) {
    .page-banner {
        min-height: 250px;
        padding: 60px 15px;
    }

    .page-banner h2 {
        font-size: 28px;
    }
}


/* ision & mission */

.vision-mission {
    background: #effaed;
}


.vm-heading {
    font-size: 28px;
    font-weight: 700;
    color: #184702;
    margin-bottom: 10px;
    position: relative;
}


.vm-heading::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #198754;
    position: absolute;
    left: 0;
    bottom: -5px;
}


.vm-text {
    margin-top: 15px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}


.vm-img {
    max-width: 100%;
    border-radius: 10px;
}


@media (max-width: 768px) {
    .vm-heading {
        text-align: center;
    }

    .vm-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .vm-text {
        text-align: left;
    }
}

/* what we do Section */

.what-we-do{
    background:#fff;
}

.wwd-image-box{
    overflow:hidden;
    border-radius:10px;
}

.wwd-img{
    width:100%;
    height: 500px;
    border-radius:10px;
    object-fit:cover;
    transition:0.4s;
}

.wwd-img:hover{
    transform:scale(1.03);
}

/* CONTENT */

.wwd-content{
    padding-left:10px;
}

/* TITLE */

.wwd-title{
    font-size:42px;
    font-weight:700;
    color:#034201;
    margin-bottom:25px;
    position:relative;
}

/* LINE */

.wwd-title::after{
    content:"";
    position:absolute;

    left:0;
    bottom:-10px;

    width:70px;
    height:4px;

    background:#0f8f52;
    border-radius:20px;
}

/* TEXT */

.wwd-text{
    line-height:1.8;
    color:#222;
    text-align:justify;
    margin-bottom:10px;
}

.wwd-subtitle{
    font-size:30px;
    font-weight:700;
    color:#0f8f52;
    margin-top:25px;
    margin-bottom:20px;
}

@media(max-width:991px){

    .wwd-title{
        font-size:34px;
    }

    .wwd-text{
        font-size:17px;
        line-height:34px;
    }

    .wwd-content{
        padding-left:0;
    }
}

@media(max-width:767px){

    .wwd-title{
        font-size:28px;
    }

    .wwd-text{
        font-size:16px;
        line-height:32px;
    }
}


/* contact page */
.contact-us-banner {
    width: 100%;
    min-height: 350px;


    background: linear-gradient(rgba(25, 135, 84, 0.6), rgba(25, 135, 84, 0.6)),
        url("/shreebalaji/img/contact.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;
    padding: 80px 20px;
}


.contact-us-banner h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}


.contact-us-banner p {
    font-size: 16px;
    opacity: 0.9;
}


@media (max-width: 768px) {
    .contact-us-banner {
        min-height: 250px;
        padding: 60px 15px;
    }

    .contact-us-banner h2 {
        font-size: 28px;
    }
}


.contact-us-box {
    margin-top: -60px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.contact-us-left {
    background: #f1fbf6;
    padding: 40px;
}

.contact-us-left h4 {
    color: #198754;
    margin-bottom: 15px;
}


.contact-us-item {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-us-item i {
    background: #198754;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.contact-us-right {
    padding: 40px;
}

.contact-us-right h4 {
    color: #198754;
    margin-bottom: 20px;
}


.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
}

.form-control:focus {
    border-color: #198754;
    box-shadow: none;
}


.send-btn {
    background: #198754;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

.send-btn:hover {
    background: #146c43;
}


@media (max-width: 768px) {
    .contact-us-banner {
        padding: 60px 15px;
    }

    .contact-us-box {
        margin-top: -30px;
    }
}