/* ===============================
   ABOUT EDUNET - PROFESSIONAL LAYOUT
================================= */
section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* HERO / ABOUT SECTION */
.about-section {
    max-width: 880px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* .about-gallery {
    flex: 1 1 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-gallery img {
    width: 100%;
    height: 260px;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.about-gallery img:hover {
    transform: scale(1.05);
} */

/* MISSION & VISION */
.mission-vision-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    background: #f9fafc;
    border-radius: 30px;
}

.mission,
.vision {
    flex: 1 1 500px;
    padding: 40px;
}

.mission h2,
.vision h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 15px;
}

.mission p,
.vision p {
    color: #555;
    line-height: 1.7;
}

/* JOURNEY TIMELINE */
.journey-section {
    text-align: center;
}

.journey-timeline {
    position: relative;
    margin-top: 50px;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #2563eb;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 40px 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #2563eb;
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-content {
    width: 45%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 30px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    color: #2563eb;
    margin-bottom: 8px;
}

/* TRUSTED SECTION */
.trusted-section {
    text-align: center;
    background: linear-gradient(135deg, #f0f4ff, #e4ebff);
    border-radius: 30px;
    padding: 20px;
}

.trusted-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;

}

.trusted-stats div {
    padding: 20px 10px;
    border-radius: 8px;
}

.trusted-stats h3 {
    font-size: 2rem;
    color: #2563eb;
}

/* VALUES SECTION */
.values-section {
    text-align: center;
}

.values-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
}

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

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

/* TEAM SECTION */
.team-section {
    text-align: center;
}

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

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card h3 {
    margin-top: 15px;
    color: #111827;
    font-size: 1.2rem;
}

.team-card p {
    color: #555;
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .about-section,
    .mission-vision-section {
        flex-direction: column;
        text-align: center;
    }

    .timeline-content {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .about-gallery img {
        height: 200px;
    }

    .timeline-content {
        width: 90%;
    }

    .trusted-stats {
        gap: 20px;
    }
}
