/* style/about.css */
/* Base styles for the About Us page */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light grey for general text on dark backgrounds */
    line-height: 1.6;
    background-color: #0A2239; /* Main background color */
}

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

/* Hero Section */
.page-about__hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A2239 0%, #30485e 100%); /* Dark blue gradient */
    color: #ffffff;
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 0;
}

.page-about__hero .page-about__container {
    position: relative;
    z-index: 1;
}

.page-about__title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__subtitle {
    font-size: 1.4em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2239; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about__button:hover {
    background-color: #e0b800; /* Slightly darker gold on hover */
    color: #000000;
}

/* Mission & Vision Section */
.page-about__mission-vision,
.page-about__values {
    padding: 80px 0;
    background-color: #1a3a57; /* Slightly lighter dark blue */
    color: #f5f5f5;
}

.page-about__mission-vision-grid,
.page-about__values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-about__text-content {
    text-align: left;
}

.page-about__heading {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 25px;
}

.page-about__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-about__values ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-about__values li {
    background-color: #0A2239;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
}

.page-about__values li strong {
    color: #FFD700;
}

/* Why Choose Us Section */
.page-about__why-choose-us {
    padding: 80px 0;
    background-color: #0A2239;
    text-align: center;
    color: #ffffff;
}

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

.page-about__feature-item {
    background-color: #1a3a57;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-about__feature-item:hover {
    transform: translateY(-10px);
}

.page-about__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700); /* Gold glow for icons */
}

.page-about__feature-item h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-about__feature-item p {
    color: #e0e0e0;
}

/* CTA Section */
.page-about__cta {
    padding: 80px 0;
    background-color: #1a3a57;
    text-align: center;
    color: #ffffff;
}

.page-about__cta .page-about__heading {
    margin-bottom: 20px;
}

.page-about__cta .page-about__text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
    margin: 10px;
}

.page-about__button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-about__button--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
}

/* Animation for JS */
.page-about section.page-about--fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-about__mission-vision-grid,
    .page-about__values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .page-about__values-grid .page-about__image {
        order: -1; /* Image above text on smaller screens for values section */
    }
}

@media (max-width: 768px) {
    .page-about__title {
        font-size: 2.5em;
    }
    .page-about__subtitle {
        font-size: 1.2em;
    }
    .page-about__heading {
        font-size: 2em;
    }
    .page-about__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-about__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .page-about__title {
        font-size: 2em;
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__heading {
        font-size: 1.8em;
    }
    .page-about__hero,
    .page-about__mission-vision,
    .page-about__values,
    .page-about__why-choose-us,
    .page-about__cta {
        padding: 50px 0;
    }
    .page-about__button {
        display: block;
        width: calc(100% - 40px);
        margin: 10px auto;
    }
}