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

/* ===========================
   HERO SECTION
=========================== */
.about-hero {
    background: url("./IT61.webp") center/cover no-repeat;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    animation: fadeDown 1.2s ease-in-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
    animation: fadeUp 1.2s ease-in-out;
}

/* ===========================
   WHO WE ARE
=========================== */
.container {
    width: 90%;
    margin: auto;
    padding: 50px 0;
}

.section-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
    color: #555;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
    margin-top: 40px;
}

.about-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease-in-out;
}

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

.about-card:hover {
    transform: translateY(-10px);
}

/* ===========================
   VALUES
=========================== */
.values {
    padding: 60px 0;
    background: #f7f7f7;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 25px;
    width: 90%;
    margin: auto;
}

.value-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.value-card img {
    width: 60px;
    margin-bottom: 10px;
}

/* ===========================
   TEAM SECTION
=========================== */
.team {
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
    width: 90%;
    margin: auto;
}

.team-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.team-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
}

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

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
