/* About Page Styles */

/* Page Hero Section */
.page-hero-section {
    position: relative;
    padding: 180px 0 100px;
    background-color: var(--text-dark);
    background-image: linear-gradient(180deg, rgba(12, 12, 12, 0.57) 0%, rgba(10, 1, 1, 0.75) 99%), url('../assets/images/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.page-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero-section .container {
    position: relative;
    z-index: 2;
}

.page-hero-section .main-heading {
    font-weight: 800;
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero-section .description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* About Us Section */
.about-us-section {
    padding: 80px 0;
}

.about-us-section .image-column img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-us-section .section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.about-us-section .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-us-section .section-text p {
    margin-bottom: 20px;
}

/* Mission, Vision & Values Section */
.mvv-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 64px;
    font-weight: 800;
    color: rgba(149, 193, 31, 0.1);
    line-height: 1;
}

.mvv-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mvv-card p {
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.mvv-card ul {
    padding-left: 20px;
    margin-top: 15px;
}

.mvv-card ul li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
}

.mvv-card ul li:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.mvv-card ul li strong {
    color: var(--text-dark);
}

/* Services Overview Section */
.services-overview-section {
    padding: 80px 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(149, 193, 31, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--text-dark);
    background-image: linear-gradient(180deg, rgba(12, 12, 12, 0.8) 0%, rgba(10, 1, 1, 0.85) 100%), url('../assets/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-hero-section {
        padding: 150px 0 80px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-item {
        flex-direction: column;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero-section {
        padding: 120px 0 60px;
    }

    .page-hero-section .main-heading {
        font-size: 36px;
    }

    .about-us-section .image-column {
        margin-bottom: 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}