/* ================= HERO FORM ================= */
.hero-form {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-form h4 {
    font-weight: 700;
    color: #0b2c4d;
    font-size: 20px;
    text-align: center;
}

.hero-form .form-control {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
}

.hero-form button {
    font-weight: 700;
    font-size: 16px;
}

/* ================= HERO SECTION ================= */
.hero-section {
    background: linear-gradient(135deg, rgba(11, 44, 77, 0.85), rgba(18, 63, 107, 0.85)),
        url('../images/hero.jpg') center/cover no-repeat;
    padding: 60px 15px;
    color: #fff;
    position: relative;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #ffd24d;
    transition: 0.3s;
}

.hero-content h1 span:hover {
    color: #ff6b00;
    transform: scale(1.05);
}

.hero-sub,
.hero-location {
    margin-top: 10px;
    opacity: 0.9;
    font-size: 16px;
}

.hero-actions .btn {
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.hero-actions .btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ================= FEATURE STRIP ================= */
.feature-strip {
    background: white;
    padding: 60px 15px;
}

.feature-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    background: #ffc107;
    color: #000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #222;
}

.feature-text p {
    margin: 0;
    color: #555;
    line-height: 1.5;
    font-size: 14px;
}

/* ================= ABOUT SHORT ================= */
.about-short {
    padding: 70px 15px;
    text-align: center;
    background: #f4f6f9;
}

.about-short h2 {
    font-weight: 800;
    color: #0b2c4d;
    margin-bottom: 20px;
    position: relative;
    font-size: 28px;
}

.about-short h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #ffd24d;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.about-short p {
    max-width: 700px;
    margin: auto;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.about-short img {
    max-width: 100%;
    border-radius: 15px;
}

/* ================= COUNTERS ================= */
.counters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
}

.counter h3 {
    font-size: 24px;
    color: #0b2c4d;
    font-weight: 800;
}

.counter p {
    font-size: 13px;
    color: #555;
}

.highlights {
    background-color: white;
    padding: 70px;
}

/* ================= HIGHLIGHTS / COURSES ================= */
.highlight-box,
.course-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
}

.highlight-box h5,
.course-card h4 {
    font-weight: 700;
    color: #0b2c4d;
    margin-bottom: 12px;
    font-size: 18px;
}

.highlight-box p,
.course-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}


/* ================= ROADMAP ================= */
.methodology-roadmap {
    background: #f4f6f9;
    padding: 60px 15px;
}

.roadmap {
    max-width: 900px;
    margin: auto;
    position: relative;
}

.roadmap::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ffc107, #ff9800);
    border-radius: 10px;
}

.roadmap-step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #ffc107;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.step-content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    flex: 1;
}

/* ================= FAQ ================= */
.accordion-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: none;
}

.accordion-button {
    background: #0b2c4d;
    color: #ffd24d;
    font-weight: 700;
    font-size: 14px;
    padding: 15px 20px;
}

/* ================= CTA ================= */
.cta-section {
    background: linear-gradient(120deg, #0b2c4d, #123f6b);
    color: #fff;
    padding: 80px 15px;
    text-align: center;
}

.cta-section h2 {
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 24px;
}

.cta-section .btn-warning {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
}

/* ================= ICONS ================= */
.icon {
    font-size: 40px;
    color: #0b2c4d;
    margin-bottom: 10px;
    transition: transform 0.3s, color 0.3s;
}

.icon:hover {
    transform: scale(1.2);
    color: #ffd24d;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-sub,
    .hero-location {
        font-size: 15px;
    }

    .highlights {
        padding: 10px;
    }

    .step-content p {
        font-size: 12px;
    }

    .step-content h3 {
        font-size: 14px;
    }

    .step-number {
        width: 25px;
        height: 25px;
        background: #ffc107;
        color: #000;
        font-size: 12px;
        font-weight: 700;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .roadmap-step {
        gap: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .feature-wrapper {
        grid-template-columns: 1fr;
    }

    .roadmap-step {
        flex-direction: column;
    }

    .roadmap::before {
        left: 10px;
    }

    .hero-section {
        padding: 40px 15px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-actions .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-sub,
    .hero-location {
        font-size: 14px;
    }

    .cta-section h2 {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {

    .feature-wrapper,
    .row.g-4 {
        grid-template-columns: repeat(3, 1fr);
        /* large tablets */
    }
}

@media (max-width: 992px) {

    .feature-wrapper,
    .row.g-4 {
        grid-template-columns: repeat(2, 1fr);
        /* tablets */
    }

    .feature-item h3,
    .course-card h4 {
        font-size: 16px;
        /* smaller font */
    }

    .feature-item p,
    .course-card p {
        font-size: 13px;
    }

    .hero-form {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {

    .feature-wrapper,
    .row.g-4 {
        grid-template-columns: 1fr;
        /* single column mobile */
    }

    .feature-item h3,
    .course-card h4 {
        font-size: 14px;
        /* small mobile font */
    }

    .feature-item p,
    .course-card p {
        font-size: 12px;
    }
}