/* General Body and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}



/* About Section Styling */
.about-section {
    padding: 60px 0;
    overflow: hidden; /* Prevents scrollbars during animations */
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Column: Content */
.about-content {
    flex: 1; /* Takes up 50% of the space */
    padding-right: 20px;
}

.section-title {
    font-size: 2.5rem; /* 40px */
    color: #C04745; /* Reddish color from the image */
    margin-bottom: 20px;
    font-weight: 700;
}

.section-paragraph {
    font-size: 1rem; /* 16px */
    margin-bottom: 20px;
    text-align: justify;
}

/* Right Column: Image */
.about-image {
    flex: 1; /* Takes up 50% of the space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 37rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    
}


/* Mission and Vision Boxes */
.info-boxes-container {
    margin-top: 30px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info-box.mission-box {
    margin-bottom: 20px; /* Space between mission and vision */
}

.info-box-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #E17D27;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.info-box-text h3 {
    font-size: 1.5rem; /* 24px */
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.info-box-text p {
    font-size: 0.95rem; /* ~15px */
    margin: 0;
    color: #555;
}

/* Responsive Design */

/* For Tablets */
@media (max-width: 992px) {
    .about-section .container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .info-box {
        text-align: left; /* Keep text left-aligned inside boxes */
    }
}

/* For Mobile Phones */
@media (max-width: 576px) {
    .section-title {
        font-size: 2rem; /* 32px */
    }

    .info-box {
        flex-direction: column;
        text-align: center;
    }

    .info-box-icon-wrapper {
        margin-bottom: 15px;
    }

    .info-box-text h3 {
        font-size: 1.25rem; /* 20px */
    }
}

/* Hero Section */
.services-hero {
    background-image: url('images/frameless.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}



.banner h2 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 600;
}
.banner .caption {
    font-size: 3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-align: center;
}
.banner .sub-caption {
    font-size: 1.2rem;
    color: #FFFFFF;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* About Description Section */
.about-description {
    padding: 40px 60px;
    background-color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
}

.about-description p {
    margin-bottom: 20px;
    text-align: justify;
}


/* Statistics Section */
.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
    background-color: #f4f4f4;
}


/* What We Offer Section */
.offer-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
}

.offer-section h2 {
    font-size: 2.2rem;
    color: rgba(27, 116, 88, 0.89);
    margin-bottom: 15px;
}

.offer-section p {
    color: #000000;
    max-width: 600px;
    margin: 0 auto 40px;
}

.offer-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.offer-card {
    background: #ffffff;
    background-image: linear-gradient(180deg, #1B7458C7, #E17D27BA);
    color: white;
    flex: 1 1 250px;
    max-width: 280px;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card-icon {
    background: white;
    color: rgba(27, 116, 88, 0.89);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}


/* --- Responsive Design --- */

/* Tablet and Smaller Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    .left-content {
        padding: 40px;
    }

    .left-content h1 {
        font-size: 2.2rem;
    }

    .list-item {
        font-size: 1.1rem;
    }

    .stats {
        flex-wrap: wrap;
    }

    .stat-box {
        flex-basis: calc(50% - 20px);
        margin-bottom: 20px;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .banner h2 {
        font-size: 2.2rem;
    }

    .about-description {
        padding: 30px 20px;
    }

    .full-section {
        flex-direction: column;
    }

    .right-image {
        min-height: 250px;
        width: 100%;
    }

    .left-content {
        padding: 30px 20px;
        text-align: center;
    }

    .list-item {
        
        padding-left: 6.25rem;
    }

    .toggle-buttons {
        justify-content: center;
    }

    .mission-vision-text {
        max-width: 100%;
        text-align: center;
    }

    .stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-box {
        flex-basis: 100%;
        margin-bottom: 0;
    }

    .offer-cards {
        
        align-items: center;
    }

    .offer-card {
        width: 100%;
        max-width: 400px;
    }
}