﻿/* About Page Container */
.about-page {
    background-color: #FFFBEB;
    font-family: 'Poppins', sans-serif;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Page Header */
.page-title {
    font-weight: 700;
    font-size: 2.4rem;
    color: #1F2937;
}

.page-subtitle {
    color: #4B5563;
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* Section Titles & Text */
.section-title {
    font-weight: 600;
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.section-text {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
}

/* Images */
.about-page img {
    border-radius: 15px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    max-width: 100%;
    height: auto;
}

/* Info Cards (Team / Highlights) */
.team-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 25px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 28px rgba(0,0,0,0.15);
    }

    .team-card h5 {
        font-weight: 600;
        margin-top: 12px;
        margin-bottom: 8px;
    }

    .team-card p {
        color: #4B5563;
        font-size: 0.95rem;
    }

    /* Icons inside team cards */
    .team-card i {
        transition: transform 0.3s ease;
    }

    .team-card:hover i {
        transform: scale(1.1);
    }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FACC15, #22C55E, #EF4444);
    color: #FFFFFF;
    border-radius: 15px;
    padding: 50px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .cta-section:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.2);
    }

    .cta-section h2 {
        font-weight: 700;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }

    .cta-section .btn-cta {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-page .row.align-items-center {
        flex-direction: column-reverse;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .team-card {
        margin-bottom: 20px;
    }

    .cta-section {
        padding: 35px 20px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .team-card p {
        font-size: 0.9rem;
    }
}
