/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



/* Prevent Horizontal Scrolling 
html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
} */

/* About Banner */
.about-banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: 110px;
}

/* About Content */
.about-content {
    text-align: center;
    padding: 50px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background-color: #F5F5F2;
    text-align: center;
    padding: 50px 20px;
}

.team-section h2 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 30px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    max-width: 100%;
    overflow: hidden; /* Prevents scrolling */
}

.team-member {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 150px;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

/* Team Member Image */
.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Team Member Name */
.team-member p {
    font-size: 14px;
    color: #333;
}

/* Hover effect for team members */
.team-member:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.team-member:hover p {
    color: var(--white);
}

/* Info Section */
.info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
    background-color: var(--white);
    max-width: 100%;
    overflow: hidden; /* Prevents horizontal scrolling */
}

.info-card {
    width: 30%;
    min-width: 250px;
    background: var(--accent-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

.info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.info-card h3 {
    color: #CB202D;
    font-size: 18px;
    margin: 15px 0;
}

.info-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* Hover effect for info cards */
.info-card:hover {
    background-color: #CB202D;
    color: white;
}

.info-card:hover h3,
.info-card:hover p {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-section {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .info-card {
        width: 100%;
    }
}



/* Footer Section - Full Width */
.footer {
    width: 100%;
    background: rgb(202, 201, 201);
    color: black;
    padding: 40px 0; /* Increased padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}
