/* =========================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================= */

.about-hero-section {
    padding: 80px 5%;
    background-color: #f8fcf9;
    /* Very light green / off-white */
    text-align: center;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-heading {
    font-size: 3rem;
    color: #103f1d;
    /* Dark Green */
    font-weight: 600;
    /* Medium-bold */
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.25rem;
    color: #103f1d;
    line-height: 1.6;
    max-width: 900px;
    margin-bottom: 60px;
}

/* Rounded Dark Green Container */
.about-mv-container {
    background-color: #103f1d;
    /* Dark Green Background */
    border-radius: 30px;
    /* Rounded corners */
    padding: 60px 40px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(16, 63, 29, 0.2);
    display: flex;
    align-items: center;
    /* Center Vertically */
    justify-content: space-between;
    position: relative;
    color: #edf3f1;
    /* White / Light Green text */
    overflow: hidden;
}

.about-mv-card {
    flex: 1;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-mv-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    /* Thin vertical line */
    height: 150px;
    /* Specific height */
    align-self: center;
}

.about-mv-card h3 {
    font-size: 3rem;
    color: #f77037;
    /* Orange Title */
    margin-bottom: 25px;
    font-weight: 500;
}

.about-mv-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #f8fcf9;
    /* Light text */
    margin: 0;
}

/* Animations */
.about-mv-card.left-card {
    transform: translateX(-30px);
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards 0.5s;
}

.about-mv-card.right-card {
    transform: translateX(30px);
    opacity: 0;
    animation: slideInRight 1s ease-out forwards 0.5s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 
   -----------------------------------
   WHY CHOOSE US SECTION styles
   Matches the uploaded image design
   -----------------------------------
*/
.about-choose-section {
    padding: 40px 5%;
    background-color: #f8fcf9;
    /* Consistent light background */
    text-align: center;
}

.about-choose-container {
    max-width: 1000px;
    /* Constrain width for readability */
    margin: 0 auto;
}

.about-choose-container h2 {
    font-size: 3rem;
    color: #103f1d;
    /* Dark Green */
    font-weight: 500;
    margin-bottom: 30px;
}

.about-choose-container p {
    font-size: 1.25rem;
    color: #103f1d;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.choose-us-diagram {
    width: 100%;
    margin-top: 50px;
    /* Space between text and diagram */
    display: flex;
    justify-content: center;
}

.choose-us-diagram img {
    max-width: 800px;
    /* Controlled width as per image */
    width: 100%;
    height: auto;
}

/* 
   -----------------------------------
   WHO WE ARE SECTION styles
   -----------------------------------
*/
.who-section {
    padding: 45px 5%;
    background-color: #103f1d;
    /* Dark Green background */
    text-align: center;
    color: #ffffff;
    /* White text for section */
}

.who-section .container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.who-section h2 {
    font-size: 3rem;
    color: #ffffff;
    /* White Heading */
    font-weight: 500;
    margin-bottom: 30px;
}

.who-section p {
    font-size: 1.25rem;
    color: #edf3f1;
    /* Off-white/Light grey text for readability */
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}


/* 
   -----------------------------------
   STRENGTHS / SERVICE CARDS SECTION
   -----------------------------------
*/

.service-cards-section {
    padding: 60px 5%;
    background-color: #f8fcf9;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    color: #103f1d;
    margin-bottom: 50px;
    font-weight: 500;
}

/* Grid Layout for Cards */
.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns on Desktop */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling Enhancements */
.service-card {
    height: 100%;
    /* Ensure full height in grid cell */
    perspective: 1000px;
    /* For potential 3D effects later */
}

/* Responsive Grid */
@media (max-width: 1100px) {
    .cards-row {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns on Tablet */
    }
}

@media (max-width: 768px) {
    .cards-row {
        grid-template-columns: 1fr;
        /* 1 Column on Mobile */
    }
}

/* Existing Mobile Responsive Adjustments */
@media (max-width: 900px) {
    .about-mv-container {
        flex-direction: column;
        gap: 40px;
        padding: 50px 20px;
    }

    .about-mv-divider {
        width: 100px;
        /* Horizontal line on mobile */
        height: 1px;
    }

    .about-mv-card {
        width: 100%;
        padding: 0;
    }

    .about-heading,
    .about-choose-container h2,
    .who-section h2,
    .section-title {
        font-size: 2.2rem;
    }
}

/* 
   -----------------------------------
   TESTIMONIAL SECTION RESPONSIVENESS
   -----------------------------------
*/

.testimonial-section {
    padding: 80px 5%;
    /* Standard desktop padding */
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .testimonial-heading {
        font-size: 24px;
        padding: 20px 15px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 18px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 50px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        /* Softer shadow for mobile */
    }

    .testimonial-heading {
        font-size: 20px;
        border-radius: 15px 15px 0 0;
    }

    .testimonial-text {
        font-size: 16px;
        /* Readable on mobile */
        line-height: 1.6;
    }

    .testimonial-client {
        font-size: 16px;
    }

    .testimonial-location {
        font-size: 18px;
    }

    /* Navigation adjustments */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
        /* Hide arrows on mobile, swipe is better */
    }

    .testimonial-stars {
        font-size: 24px;
    }
}