.about-content {
    font-size: 19px;
    line-height: 31px;
    color: #2c79e6;

}

.heading-title {
    text-align: center;
    color: #1e3c72;
    padding: 30px 0;
    font-size: 20px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

.divider .line {
    flex: 1;
    width: 30px;
    height: 2px;
    background-color: #2A78E6;
    ;
}

.star-icon {
    color: #0F4796;
    font-size: 22px;
}

.banner-container {
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.director-content h2 {
    font-size: 21px;

    text-align: right;
    color: #0F4796;
}

.director-content h3 {
    font-size: 21px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #0F4796;
    text-align: right;
}

.custom-list {
    counter-reset: my-counter;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* === Main Title (H1) === */
.views-title {
    font-size: 32px;
    font-weight: 700;
    color: #0F4796;
    margin-bottom: 25px;
}

/* List items styling */
.custom-list li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 35px;
    /* space for number */
    font-size: 18px;
    line-height: 31px;
    color: #2c79e6;
    text-align: justify;
}

/* Custom numbers */
.custom-list li::before {
    counter-increment: my-counter;
    content: counter(my-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #2C79E6;
    /* number color */
    font-size: 20px;
}



/* ===== Navbar Overlay ===== */
.overlay-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
}

/* White text on image */
.overlay-navbar .nav-link,
.overlay-navbar .navbar-brand,
.overlay-navbar .dropdown-toggle {
    color: #fff !important;
}

/* CTA button stays visible */
.overlay-navbar .btn-primary {
    background: #fff;
    color: #3C6AAA;
}

/* Dropdown fix */
.overlay-navbar .dropdown-menu {
    background: #fff;
}

/* ===== Banner ===== */
.banner-container {
    position: relative;
}

.banner-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Dark overlay on image */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* Keep swiper content layered */
.swiper-slide {
    position: relative;
}