/* ================= RESET ================= */

body {
  background: #fff;
  font-family: "Mukta Mahee", arial, sans-serif;
  font-weight: 200;
  letter-spacing: .5px; 
  word-spacing: 2px; 
  font-size: 16px;
  line-height: 1.8;
  color: #6c757d;
}

html, body {
  overflow-x: hidden;
}


/* ================= HERO ================= */

.about-hero {
    width: 100%;
    padding: 100px 5% 70px;
    text-align: center;
    background: linear-gradient(to right, #f5f7fa, #ffffff);
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    /* line-height: 1.3; */
    color: #111;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.15);
}


/* ================= MAIN ================= */

.about-main {
    width: 100%;
    padding: 60px 5%;
}

.container {
    /* max-width: 1200px; */
    margin: auto;
}

.about-block {
    margin-bottom: 40px;
}

.about-block h2 {
    font-size: 26px;
    color: #143b8f;
    margin-bottom: 15px;
}

.about-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}


/* ================= STATS ================= */

.stats-section {
    width: 100%;
    padding: 70px 5%;
    background: #fafafa;
}

.stats-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.stats-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0a2540;
}

.stats-box {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
}

.stat-item p {
    color: #666;
}




/* ================= TRAINING ================= */

.training-section {
    width: 100%;
    padding: 70px 5%;
    background: #fafafa;
}

.training-container {
    display: flex;
    gap: 30px;
    align-items: center;
}


/* Left */

.training-list {
    flex: 1.3;
}

.training-list h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #0a2540;
}

.training-list ul {
    padding-left: 20px;
}

.training-list li {
    font-size: 15px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 6px;
}


/* Middle */

.training-image {
    flex: 1;
}

.training-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: opacity 0.3s ease;
}

.training-image img:hover {
    opacity: 0.7;
}


/* Right */

.training-highlight {
    flex: 0.9;
    background: linear-gradient(to bottom right, #00c6ff, #0072ff);
    color: #fff;
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    
}

.training-highlight h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
}


/* ================= VENTURES ================= */

.ventures-section {
    width: 100%;
    padding: 70px 5%;
    background: #ffffff;
}

.ventures-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.venture-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.venture-item i {
    font-size: 22px;
    color: #bdbdbd;
}

.venture-item p {
    font-size: 17px;
    font-weight: 500;
}

/* ================= SOCIAL MEDIA ================= */

.social-section {
    width: 100%;
    padding: 30px 0;
    background: #ffffff;
    border-top: 1px solid #eee;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social:hover {
    transform: scale(1.1);
}


/* Individual Colors */

.linkedin {
    background: #0077b5;
}

.pinterest {
    background: #bd081c;
}

.instagram {
    background: #222;
}

.facebook {
    background: #4267B2;
}




/* ================= RESPONSIVE ================= */


@media (max-width: 900px) {

    .hero-title {
        font-size: 32px;
    }

    .stats-container,
    .training-container {
        flex-direction: column;
        text-align: center;
    }

    .stats-box {
        justify-content: center;
    }

    .ventures-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 500px) {

    .hero-title {
        font-size: 24px;
    }

    .stat-item h3 {
        font-size: 34px;
    }

    .ventures-title {
        font-size: 28px;
    }


}
