/*===================== About Banner section start ======================= */
.about-banner {
    position: relative;
    background: url('/assets/frontend/media/pages/about/images/about.jpg') no-repeat center center/cover;
    height: 80vh;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-banner-content {
    z-index: 1;
}

.about-banner h1 {
    color: var(--white-text);
    font-size: 2rem;
    line-height: 1.4;
}

.about-banner-content .lead {
    color: var(--sub-heading-text);
}


.paragraph {
    color: var(--gray-text) !important;
}

.heading {
    color: var(--heading-text) !important;
   }

.sub-heading {
  color: var(--sub-heading-text) !important;

}
/*===================== About Banner section End ======================= */
/*===================== Vision section Start ======================= */
.vision-section {
    background: #cde5ff;
    padding: 60px 0;
}

.vision-title {
    font-size: 1.5rem;
    color: var(--sub-heading-text);
    margin-bottom: 10px;
}

.vision-highlight {
    font-size: 2rem;
    color: var(--heading-text);
    font-weight: bold;
    margin-bottom: 20px;
}

.vision-description {
    font-size: 1rem;
    color: var(--sub-heading-text);
    line-height: 1.8;
}

/*===================== Vision section End ======================= */

/*===================== Custom section Start ======================= */
.custom-section {
    position: relative;
    padding: 60px 0;
    background: var(--linear-bg);
}

.custom-section .lead {
    color: var(--white-text);
}

.custom-section .row {
    align-items: center;
}

.speech-box {
    position: absolute;
    bottom: -90px;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    padding: 20px;
    max-width: 800px;
    text-align: center;
}

.speech-box p {
    font-size: 1rem;
    color: var(--sub-heading-text);
    line-height: 1.8;
}

.speech-box span {
    font-weight: bold;
    color: var(--heading-text);
}

/* Responsive Breakpoints */

@media (max-width: 780px) {
    .custom-section {
        padding: 40px 0;
    }
    .custom-section h2 {
        font-size: 1.8rem;
    }
    .speech-box {
        bottom: -70px;
        max-width: 600px;
        padding: 15px;
    }
    .speech-box p {
        font-size: 0.95rem;
    }
    .speech-box span {
        font-size: 1rem;
    }
}


@media (max-width: 576px) {
    .custom-section {
        padding: 30px 0;
    }

    .custom-section .row {
        flex-direction: column;
        text-align: center;
    }
    .custom-section .col-md-6 {
        margin-bottom: 20px;
    }
    .speech-box {
        position: static;
        margin-top: 20px;
        bottom: auto;
        max-width: 100%;
    }
    .speech-box p {
        font-size: 0.9rem;
    }
    .speech-box span {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .custom-section {
        padding: 20px 0;
    }
    .custom-section h2 {
        font-size: 1.4rem;
    }
    .speech-box {
        padding: 10px;
    }
    .speech-box p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .speech-box span {
        font-size: 0.9rem;
    }
}


/*===================== Custom section End ======================= */



