/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Work Sans", sans-serif;
    line-height: 1.6;
}


/* Hero section */
.hero-3 {
    height: 40vh;
    background-image: url('../images/abt.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111;
    opacity: 60%;
}

.hero-content-3 {
    position: relative;
    z-index: 1;
}

.team-box,
.f-box,
.t-box,
.intro-box {
    max-width: 95%;
    margin: auto;
}

.hero-3 h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Intro section */
.intro-box {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-column h3 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.intro-column h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Parallax section */
.parallax {
    height: 30vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #e0f5ff;
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 95%;
    margin: auto;
    color:#111;
}

.parallax-content h2 {
    font-size: 1.5rem;
}

.f-box {
    padding: 2rem;
    display: grid;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
}

.feature i {
    font-size: 2rem;
    background-color: #03a9f5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    padding: 15px;
}

.feature-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Team section */
.team {
    padding: 2rem;
    text-align: center;
}

.team h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.5rem;
}

.team-members img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

/* CTA section */
.cta {
    height: 15vh;
    background-color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 5rem 1rem; 
}

.cta h2, .cta button {
    position: relative;
    z-index: 1;
    margin: 0.5rem 0;
}

.cta h2 {
    font-size: 1.65rem;
    color: #fff;
}


/* Media queries */
@media (min-width: 600px) {
    .hero-3 {
        height: 50vh;
    }
}

@media (min-width: 768px) {
    .intro-box {
        flex-direction: row;
    }

    .intro-column {
        flex: 1;
    }

    .f-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta {
        flex-direction: row;
        justify-content: space-around;
    }

    .team-box,
    .f-box,
    .t-box,
    .intro-box {
        max-width: 90%;
        margin: auto;
    }
}

@media (min-width: 1000px) {
    .hero-3 {
        height: 60vh;
    }

    .features {
        grid-template-columns: repeat(4, 1fr);
    }

    .team-box,
    .f-box,
    .t-box,
    .intro-box {
        max-width: 85%;
        margin: auto;
    }
}

@media (min-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }

    .team-box,
    .f-box,
    .t-box,
    .intro-box {
        max-width: 80%;
        margin: auto;
    }
}