/* ==========================================
   ABOUT PAGE CSS - Exact Screenshot Match
   ========================================== */

/* ---- Page Banner ---- */
.about-page-banner {
    position: relative;
    height: 300px;
    background: url('images/i15.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 36, 92, 0.65);
}

.about-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
}

.about-banner-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.about-breadcrumb a {
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
}

.about-breadcrumb a:hover {
    color: var(--secondary-color);
}

.about-breadcrumb i {
    font-size: 10px;
}

/* ---- Main About Section ---- */
.about-main-section {
    padding: 80px 0 90px;
    background: #fff;
}

.about-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media(min-width: 992px) {
    .about-two-col {
        grid-template-columns: 1fr 1fr;
    }
}

/* Left Image */
.about-left-img {
    display: flex;
    justify-content: center;
}

.about-left-img img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
}

/* Right Content */
.who-label {
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    font-style: italic;
}

.about-heading {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 22px;
    line-height: 1.3;
}

.about-para {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Mission / Vision Boxes */
.mission-vision-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.mv-icon-circle {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.mv-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.mv-text p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

/* ---- Footer Styles (Override for exact match) ---- */
.site-footer .footer-widget h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 3px solid var(--secondary-color);
    line-height: 1;
}

.footer-divider {
    display: none; /* Using border-left instead */
}

.footer-widget p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.8;
    padding-left: 12px;
}

.links-widget ul li {
    margin-bottom: 10px;
}

.links-widget ul li a {
    font-size: 13px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.links-widget ul li a i.fa-square {
    font-size: 8px;
    color: var(--secondary-color);
}

.links-widget ul li a:hover {
    color: var(--secondary-color);
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.footer-socials a {
    font-size: 13px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--secondary-color);
}

.contact-widget ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-widget ul li i {
    color: white;
    margin-top: 3px;
    min-width: 14px;
}
