/* style/about.css */

/* General Page Styles */
.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-about__container--small {
    max-width: 900px;
}

.page-about__section {
    padding: 60px 0;
    text-align: center;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.page-about__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-about__btn--primary {
    background-color: #007bff;
    color: #fff;
}

.page-about__btn--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.page-about__btn--secondary {
    background-color: #ffc107;
    color: #333;
}

.page-about__btn--secondary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

.page-about__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-about__image--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-about__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-about__hero-section .page-about__container {
    z-index: 1;
    flex: 1;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.page-about__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-about__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.page-about__hero-image {
    max-width: 90%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: rotate(3deg);
}

/* Mission & Vision Section */
.page-about__mission-vision {
    background-color: #fff;
}

.page-about__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-about__content-item {
    padding: 25px;
    background-color: #f1f7fe;
    border-left: 5px solid #007bff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-about__item-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-about__item-text {
    font-size: 1.1em;
    color: #555;
}

/* Core Values Section */
.page-about__core-values {
    background-color: #f8f9fa;
}

.page-about__values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.page-about__value-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-about__value-text {
    color: #666;
}

.page-about__image--full-width {
    margin-top: 50px;
    width: 100%;
    object-fit: cover;
    height: 300px;
}

/* Why Us Section */
.page-about__why-us {
    background-color: #e6f2ff;
    padding-bottom: 80px;
}

.page-about__list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 40px;
}

.page-about__list-item {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 1.1em;
    color: #444;
    border-left: 4px solid #ffc107;
}

.page-about__list-item strong {
    color: #007bff;
}

/* CTA Section */
.page-about__cta-section {
    background: linear-gradient(90deg, #007bff, #ffc107);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-about__cta-section .page-about__container {
    flex: 1;
    min-width: 300px;
}

.page-about__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
}

.page-about__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-about__cta-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
}

.page-about__cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-section {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }

    .page-about__hero-title {
        font-size: 2.8em;
    }

    .page-about__hero-image-wrapper {
        margin-top: 40px;
    }

    .page-about__content-grid {
        grid-template-columns: 1fr;
    }

    .page-about__cta-section {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-about__section-title {
        font-size: 2em;
    }

    .page-about__hero-title {
        font-size: 2.2em;
    }

    .page-about__hero-description,
    .page-about__item-text,
    .page-about__value-text,
    .page-about__list-item,
    .page-about__cta-text {
        font-size: 1em;
    }

    .page-about__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-about__hero-title {
        font-size: 1.8em;
    }

    .page-about__section-title {
        font-size: 1.8em;
    }

    .page-about__cta-title {
        font-size: 2em;
    }

    .page-about__image--full-width {
        height: 200px;
    }
}