/* Enhanced About Page Styling */

/* About Section */
.about-section {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1f2937;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.about-highlights {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 2rem;
    color: #06b6d4;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.highlight-item strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.mission-card p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #6b7280;
}

/* Specializations Section */
.specializations-section {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 1.375rem !important;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.feature-card p {
    font-size: 1.0625rem !important;
    line-height: 1.7;
    color: #6b7280 !important;
}

/* Testimonials Section Override */
.testimonials-section .testimonial-card p {
    font-size: 1.0625rem !important;
    line-height: 1.8;
    color: #374151;
}

.testimonials-section .testimonial-author strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.testimonials-section .testimonial-author span {
    font-size: 0.9375rem;
    color: #6b7280;
}

.testimonials-section .stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonials-section .stars i {
    color: #fbbf24;
    font-size: 1.25rem;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    padding: 1.25rem 1.75rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.experience-badge strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.experience-badge span {
    font-size: 0.875rem;
    opacity: 0.95;
}

/* About Image */
.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-content h2 {
        font-size: 1.875rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .mission-card h3,
    .feature-card h3 {
        font-size: 1.25rem !important;
    }

    .mission-card p,
    .feature-card p {
        font-size: 1rem !important;
    }
}