@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", serif;
}

/* ////////////////////// */
.highlight-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease;
}

.highlight-image:hover {
    transform: scale(1.03);
}

.image-container {
    overflow: hidden;
}

/* /////////////////////////////// */
.educontainer {
    background-color: #f9f9f9;
}

.eduheader {
    background-color: #01427A;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
}

.highlight {
    color: #FFC107;
}

.main-content {
    padding: 40px 15px;
}

.text-section {
    color: #333;
}

.text-section h4 {
    font-weight: 700;
    color: #01427A;
}

.register-btn {
    background-color: #01427A;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    transition: background 0.3s;
}

.register-btn:hover {
    background-color: #012e55;
}

.upcoming-classes {
    background-color: #FFE082;
    padding: 20px;
    border-left: 6px solid #01427A;
    margin-top: 40px;
    border-radius: 8px;
}

.upcoming-classes h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #01427A;
    margin-bottom: 15px;
}

.upcoming-classes p {
    font-size: 1rem;
    color: #333;
    margin: 5px 0;
}

.upcoming-classes .note {
    font-weight: 600;
    color: #000;
    margin-top: 20px;
    font-size: 1.1rem;
}

.illustration img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .text-section {
        text-align: center;
    }

    .register-btn {
        display: block;
        margin: 20px auto 20px;
    }

    .main-content {
        padding: 30px 10px;
    }
}

/* ////////////////////////////////////////// */
.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.course-img {
    height: 180px;
    /* object-fit: cover; */
     width: 100%;

}

.course-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
}

.btn-course {
    background-color: #01427A !important;
    color: #fff !important;
    font-weight: 600;
}

.btn-course:hover {
    background-color: #01427A !important;
    color: #fff !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #01427A;
    text-align: center;
    margin-bottom: 40px;
}

.app-section {
    background: #f8f9fa;
    padding: 60px 15px;
    margin-top: 60px;
    border-top: 2px solid var(--primary-color);
    position: relative;
}

.app-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.app-buttons .btn {
    margin: 10px 5px;
    font-weight: 600;
    padding: 12px 20px;
    transition: transform 0.3s ease;
}

.app-buttons .btn:hover {
    transform: scale(1.05);
}

.app-img {
    max-width: 100%;
    height: auto;
}

/* ///////////////////////////////////// */

.highlight {
    background-color: #01427A;
    color: white;
    padding: 0.2rem 0.5rem;
    font-weight: bold;
    border-radius: 4px;
}

.feature-list li::before {
    content: "\2714\0020";
    color: #01427A;
    font-weight: bold;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.cta-button {
    background-color: #01427A;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #012f57;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #01427A;
}

/* //////////////////// */
.course-box {
    background-color: #f9f9f9;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.register-btn {
    background-color: #01427A;
    border: none;
    font-weight: bold;
    color: #fff;
    padding: 10px 25px;
    font-size: 18px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.register-btn:hover {
    background-color: #012e55;
}

.course-box ul {
    list-style-type: none;
    padding-left: 0;
}

.course-box ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.course-box ul li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #000;
}

/* /////////////////////////////////////////////////////////// */
:root {
    --primary-color: #01427A;
    --highlight-color: #FFB300;
}

.header-section {
    background-color: var(--highlight-color);
    text-align: center;
    padding: 20px;
}

.header-section h5 {
    margin: 0;
    color: #000;
    font-weight: 400;
}

.header-section h2 {
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: bold;
}

.feature-box {
    background-color: var(--highlight-color);
    border-radius: 15px;
    padding: 30px 20px;
    margin: 15px 0;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-title {
    font-weight: 600;
    color: #000;
}

@media (min-width: 768px) {
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}