/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #222;
    background: #fff;
}

/* =========================
   HERO SECTION
========================= */
.hero-content-main {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url("images/collin-8FxJi5wuwKc-unsplash.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-tag {
   
    color: #ffffff;
    padding: 6px 12px;
    font-size: 52px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px black;
}

.hero-content-main h1 {
    font-size: 2.8rem;
    max-width: 800px;
    margin-bottom: 15px;
}

.hero-content-main p {
    max-width: 700px;
    font-size: 1.rem;
    color: #eee;
}

.hero-btn {
    margin-top: 80px;
    padding: 12px 25px;
    background: #F5C857;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
}

/* =========================
   ABOUT SECTION
========================= */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.about-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: rgb(20, 6, 99);
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
    color: #444;
}

.about-text button {
    padding: 10px 20px;
    border: none;
    background: #F5C857;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.about-text button:hover {
    background: rgb(20, 6, 99);
    color: #fff;
}

/* =========================
   STATS SECTION
========================= */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgb(20, 6, 99);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.stat h2 {
    font-size: 2.5rem;
    color: #F5C857;
}

.stat p {
    margin-top: 5px;
    font-size: 1rem;
}

/* =========================
   MISSION & VISION
========================= */
.mission {
    display: flex;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px;
}

.card {
    flex: 1;
    background: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
}

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

/* =========================
   WHY CHOOSE US
========================= */
.why {
    padding: 80px 20px;
    text-align: center;
    background: #fafafa;
}

.why h2 {
    margin-bottom: 30px;
    color: rgb(20, 6, 99);
    font-size: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    background: #F5C857;
}

/* =========================
   TEAM SECTION
========================= */
.team-preview {
    padding: 80px 20px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.team img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* =========================
   CTA SECTION
========================= */
.cta {
    background: #F5C857;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: rgb(20, 6, 99);
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* =========================
   ANIMATION
========================= */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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

@media (max-width: 600px) {

    .hero-content h1 {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-container {
        padding: 50px 15px;
    }
}