/* Global body styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fa;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}



/* Hero Section Styling */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/image_1.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    position: relative;
    /* width: 100%; */
    height: 100vh;
    /* background-color: #333; */
    display: flex;
    /* justify-content: center; */
    align-items: center;
    overflow: hidden;
    /* text-align: center; */
}

.hero-container {
    position: relative;
    /* width: 100%; */
    /* height: 100vh; */
}

/* .hero-img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.5s ease;
} */



.hero-text {
    /* position: absolute; */
    /* top: 50%; */
    /* left: 10%; */
    /* transform: translate(-50%, 50%); */
    color: white;
    text-align: start;
    margin-left: 80px;
}

.hero-text h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 1.3em;
    font-weight: 300;
}

/* About Us Section */
.about-us {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* margin-top: -60px; */
}

.about-container h2 {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-container p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 30px;
}

/* Mission Section */
.mission {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.mission-container h2 {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.mission-container p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 30px;
}

/* Values Section */
.values {
    padding: 60px 20px;
    background-color: #f0f3f7;
    text-align: center;
}

.values-container h2 {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.values-container p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.values-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.values-container li {
    font-size: 1.15em;
    color: #444;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    transition: color 0.3s ease;
}

.values-container li:hover {
    color: #1a73e8;
}

.values-container li:before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-size: 1.4em;
}

/* Team Section */
.team {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.team-container h2 {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.team-container p {
    font-size: 1.15em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    width: 270px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 40px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1.1em;
    color: #777;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Adjust text sizes for tablet screens */
    .hero-text h1 {
        font-size: 2.8em;
    }

    .hero-text p {
        font-size: 1.2em;
    }

    .about-container h2,
    .mission-container h2,
    .values-container h2,
    .team-container h2 {
        font-size: 2.5em;
    }

    .team-member {
        width: 280px; /* Slightly adjust for medium screens */
    }
}

@media (max-width: 768px) {
    /* Adjust hero text for mobile */
    .hero-text h1 {
        font-size: 2.2em;
    }

    .hero-text p {
        font-size: 1.1em;
    }

    /* Smaller padding for sections */
    .about-us, .mission, .values, .team {
        padding: 40px 20px;
    }

    .about-container h2,
    .mission-container h2,
    .values-container h2,
    .team-container h2 {
        font-size: 2.2em;
    }

    .team-members {
        flex-direction: column; /* Stack team members vertically */
        align-items: center;
    }

    .team-member {
        margin-bottom: 30px;
    }

}

@media (max-width: 480px) {
    /* Adjust hero text for very small screens */
    .hero-text h1 {
        font-size: 1.8em;
    }

    .hero-text p {
        font-size: 1em;
    }

    /* Adjust padding and margins for mobile */
    .about-container h2,
    .mission-container h2,
    .values-container h2,
    .team-container h2 {
        font-size: 1.8em;
    }

    

    .team-member img {
        height: 200px; /* Adjust team member images for smaller screens */
    }
}
