/* ==================================================
   HERO SECTION
================================================== */

.hero {
    position: relative;
    min-height: 420px;
    background: url("https://trainingspk.com/images/alumnipic.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    max-width: 900px;
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary {
    background: #0a7a5a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #075f46;
}

.btn-secondary {
    background: #ffffff;
    color: #0a7a5a;
}

.btn-secondary:hover {
    background: #f2f2f2;
}

/* ==================================================
   MAIN CONTENT
================================================== */

.home-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-section {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
    color: #222;
}

.content-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* ==================================================
   FEATURE GRID
================================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.feature-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 26px 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #0a7a5a;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 14px;
}

.feature-card a {
    color: #0a7a5a;
    font-weight: 600;
    text-decoration: none;
}

.feature-card a:hover {
    text-decoration: underline;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}
