﻿/* About Page - Modern CSS */

/* Hero Section */
.about-hero {
    background: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
    padding: 0 2rem;
display: flex;
flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.about-hero-header {
    max-width: 600px;
    text-align: center;
}

.about-hero-label {
    color: #1e3c72;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: block;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.about-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

    .about-hero-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Main Content Section */
.about-main-section {
    padding: 4rem 0;
    background: white;
}

.about-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Policies Section */
.policies-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.policies-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.policies-header {
    margin-bottom: 3rem;
}

.policies-label {
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.policies-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.policies-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.policy-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

    .policy-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #000080, #191970);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .policy-card:hover::before {
        transform: scaleX(1);
    }

    .policy-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

.policy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.policy-card:hover .policy-icon {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.policy-icon i {
    font-size: 2rem;
    color: white;
}

.policy-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.policy-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 5rem 0;
    background: white;
}

.mission-vision-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-vision-text .section-label {
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: block;
}

.mission-vision-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.mission-vision-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-vision-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

    .mission-vision-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Decorative Dots */
.decorative-dots {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 120px;
    height: 60px;
    z-index: 1;
}

    .decorative-dots::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle, #ff6b35 2px, transparent 2px);
        background-size: 20px 20px;
        opacity: 0.6;
    }

/* Statistics - Removed overlay style */

/* Certifications Section */
.certifications-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.certifications-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.certifications-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .certifications-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e3c72;
        margin-bottom: 1rem;
    }

    .certifications-header p {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
    }

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.certification-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

    .certification-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

.certification-logo {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .certification-logo img {
        max-width: 60px;
        max-height: 60px;
        object-fit: contain;
    }

.certification-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.certification-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.certification-btn {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

    .certification-btn:hover {
        background: linear-gradient(45deg, #ff6b35, #f7931e);
        color: white;
        transform: translateY(-1px);
    }

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .newsletter-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.newsletter-label {
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .newsletter-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
    }

.newsletter-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .newsletter-btn:hover {
        background: linear-gradient(45deg, #f7931e, #ff6b35);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .about-main-content,
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Vision section - image first, then text on mobile */
    .mission-vision-content {
        grid-template-rows: auto auto;
    }

    .mission-vision-image {
        grid-row: 1;
    }

    .mission-vision-text {
        grid-row: 2;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    .about-main-section {
        padding-top: 0;
    }
    .about-text-content h2,
    .mission-vision-text h2,
    .policies-title,
    .certifications-header h2,
    .newsletter-content h2 {
        font-size: 2rem;
    }

    .policies-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .certification-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .statistics-overlay {
        position: static;
        margin-top: 2rem;
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 0;
    }

        .about-hero h1 {
            font-size: 2rem;
        }

    .about-main-section,
    .policies-section,
    .mission-vision-section,
    .certifications-section,
    .newsletter-section {
        padding: 3rem 0;
    }

    .about-main-content,
    .policies-content,
    .mission-vision-content,
    .certifications-content,
    .newsletter-content {
        padding: 0 1rem;
    }

    .policy-card,
    .certification-card {
        padding: 1.5rem;
    }

    .decorative-dots {
        bottom: -1rem;
        right: -1rem;
        width: 80px;
        height: 40px;
    }
}
