/* ========================================
   About Hero Section Styles
   ======================================== */
.about-hero {
    background-color: #f5f5f5;
    padding: 2rem 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.about-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-family: Arial, sans-serif;
}

.about-title+.about-subtitle {
    margin-top: 0.5rem;
}

.about-subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* ========================================
   About Content Section
   ======================================== */
.about-main-section {
    padding: 4rem 1rem;
    background-color: #fff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-row:last-child {
    margin-bottom: 0;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

/* ========================================
   Stats Strip Section
   ======================================== */
.stats-strip {
    background-color: #fff;
    padding: 3rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    border: 1px solid #ddd;
    /* Added border as per user request 'box' look might be implied or just clean separation */
    /* The user image shows boxes with colored borders? Let's check user request again. */
    /* "Established in 2018... Best in Segment..." - likely simple boxes. I'll add simple borders. */
    border-top: 4px solid #007bff;
    /* Default color, can vary */
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-item:nth-child(2) {
    border-top-color: #dc3545;
}

.stat-item:nth-child(3) {
    border-top-color: #28a745;
}

.stat-item:nth-child(4) {
    border-top-color: #fd7b1d;
}

.stat-label-top {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-bottom {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

/* Response */
@media (max-width: 768px) {
    .about-title {
        font-size: 1.8rem;
    }

    .about-row {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        /* Image on top on mobile? Or keep standard. Let's keep standard. */
        order: 0;
    }

    .stat-item {
        min-width: 100%;
        margin-bottom: 1rem;
    }
}

/* ========================================
   Visionaries Section (Team)
   ======================================== */
.visionaries-section {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
}

.visionaries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.visionary-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid #03b9e2;
}

.visionary-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eee;
}

.visionary-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visionary-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.visionary-role {
    font-size: 1rem;
    color: #03b9e2;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.visionary-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Poppins', sans-serif;
    text-align: justify
}

/* ========================================
   Mission & Vision Section
   ======================================== */
.mission-vision-section {
    padding: 4rem 1rem;
    background-color: #fff;
    text-align: center;
}

.mv-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mv-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.mv-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.mv-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.mv-card {
    flex: 1;
    min-width: 300px;
    background: #fdfdfd;
    padding: 2.5rem;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mv-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #193358;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mv-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* ========================================
   Support/Trust Strip (Copied/Adapted)
   ======================================== */
.support-strip {
    background-color: #dbf3f9;
    padding: 3rem 1rem;
}

.sup-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
}

.sup1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.pic img {
    max-width: 50px;
    height: auto;
    margin-bottom: 0.5rem;
}

.dd3 {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
}

.dd3 strong {
    font-size: 1.1rem;
    color: #193358;
}

/* Quote */
.quote-box {
    text-align: center;
    font-style: italic;
    font-size: 1.25rem;
    color: #03b9e2;
    margin: 2rem 0;
    font-weight: 600;
}