/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, #002b49 0%, #003d6b 50%, #002b49 100%);
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.about-hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.about-hero h1 i {
    margin-right: 10px;
    opacity: 0.8;
}

.about-hero p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 50px 0 60px;
    background: #f8f9fa;
}

/* About Cards */
.about-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.about-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0078c1, #005a94);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.about-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #002b49;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #0078c1;
    display: inline-block;
}

.about-text {
    color: #444;
    line-height: 1.8;
    font-size: 0.98rem;
}

.about-text p {
    margin-bottom: 16px;
}

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

/* Services List */
.about-services .services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.about-services .service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f0f7ff;
    border-radius: 8px;
    border-left: 3px solid #0078c1;
    font-weight: 500;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-services .service-item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 120, 193, 0.12);
}

.about-services .service-item i {
    color: #0078c1;
    font-size: 1.1rem;
    min-width: 20px;
}

/* Vision & Mission Grid */
.about-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-vision .about-card-icon {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
}

.about-vision h2 {
    border-bottom-color: #2e7d32;
}

.about-mission .about-card-icon {
    background: linear-gradient(135deg, #e65100, #bf360c);
}

.about-mission h2 {
    border-bottom-color: #e65100;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 40px 0 35px;
    }

    .about-hero h1 {
        font-size: 1.6rem;
    }

    .about-card {
        padding: 25px;
    }

    .about-vm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-services .services-list {
        grid-template-columns: 1fr;
    }
}
