/* ABOUT US PAGE SPECIFIC STYLES */

/* Hero Section */
.about-hero {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.about-hero-content h5 {
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-hero-content h1 span {
    color: var(--primary-green);
}

.about-hero-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-hero-btn {
    background-color: var(--primary-green);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.about-hero-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.about-hero-btn:hover {
    background-color: var(--color-dark);
    color: white;
}
.about-hero-btn:hover i {
    transform: translateX(5px);
}

/* Mission Vision Values */
.mvv-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mvv-item {
    display: flex;
    gap: 20px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 20px;
}
.mvv-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mvv-icon {
    width: 50px;
    height: 50px;
    background-color: #f0fdf4;
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.mvv-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.mvv-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Hero Image Area */
.about-hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.about-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.accredited-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.accredited-badge .badge-icon {
    background: var(--primary-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.accredited-badge .badge-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.accredited-badge .badge-text p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Stats Bar */
.about-stats-wrapper {
    background-color: #f8fcf9;
    border: 1px solid #eef7f1;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-stat-icon {
    color: var(--primary-green);
    font-size: 28px;
}

.about-stat-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.about-stat-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Why Choose Us Section */
.about-wcu {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-wcu-header h5 {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-wcu-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.about-wcu-header p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    position: relative;
}

.about-wcu-header p::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--primary-green);
    vertical-align: middle;
    margin-left: 10px;
}

.about-wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* The 5th item will span 2 cols to center if needed, or we just use 5 items flexibly */
.about-wcu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.about-feature {
    width: calc(25% - 25px);
    min-width: 140px;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    background-color: #f0fdf4;
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.about-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.about-feature p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* WCU Image */
.about-wcu-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-wcu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.caring-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.caring-badge i {
    font-size: 24px;
}

.caring-badge .badge-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.caring-badge .badge-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Trusted Bar */
.trusted-bar-wrapper {
    background-color: #f8fcf9;
    border: 1px solid #eef7f1;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 40px 0 80px 0;
}

.trusted-title {
    text-align: center;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 15px;
}

.trusted-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item img {
    height: 40px;
    width: auto;
}

.trust-item i {
    font-size: 30px;
    color: var(--primary-green);
}

.trust-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0;
}
.trust-text p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .about-hero {
        grid-template-columns: 1fr 1fr;
    }
    .about-hero-image-wrapper {
        grid-column: span 2;
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    .about-wcu {
        grid-template-columns: 1fr;
    }
    .about-feature {
        width: calc(33.333% - 25px);
    }
}

@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
    }
    .about-hero-image-wrapper {
        grid-column: 1;
    }
    .about-feature {
        width: calc(50% - 25px);
    }
}
