@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}
h1, h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

h3, .navbar, .nav-link, .dropdown-menu, .btn, p {
    font-family: 'Poppins', sans-serif;
}


.sticky-top {
    z-index: 1020;
}

.navbar-brand img {
    width: 250px;
    margin-left: 80px;
    margin-top: 0;
    margin-bottom: 0;
}
.navbar-contact{
    margin-right: 80px;
}

/*.navbar {
    height: 101px;
}*/
.navbar-contact img {
    width: 32px;
    height: 32px;
}
@media (min-width: 1024px) {


    .navbar-contact img {
        width: 32px;
        height: 32px;
    }

    .navbar-contact .phone-number {
        font-size: 16px;
        font-weight: 600;
        color: #0f0f0f;
        margin-left: 5px;
    }

    .navbar-contact .lines {
        width: 1px;
        height: 30px;
    }
}


.bg-light {
    background-color: #fff !important;
}

.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 400;
}
.navbar-nav .nav-link {
    font-size: 18px;
    padding: 20px 15px; /* Adjust spacing */
    color: #000; /* Set your desired color */
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #011d42; /* Hover color */
}


@media screen and (max-width: 767px) {
    .navbar-brand img {
        width: 200px;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .navbar-nav .nav-link {
        font-size: 18px;
        padding: 10px 15px;
    }

    .navbar-contact {
        padding-left: 10px;
        padding-bottom: 20px;
        width: 100% !important;
    }
    .navbar-contact .lines {
        width: 1px;
        height: 30px;
    }



}
a {
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-nav .nav-item {
    margin-right: 20px; /* adjust as needed */
}

.navbar-nav .nav-item:last-child {
    margin-right: 0;
}

 .navbar {
     display: flex;
     background: #333;
     padding: 10px;
 }

.nav-item {
    position: relative;
    position: relative;
    margin-right: 20px;
    list-style: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 10px 0;
    min-width: 150px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: black;
    text-decoration: none;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.main-slider {
    background: #EEF2FA;
    padding-bottom: 167px;
}

.navbar-nav,.navbar-contact {
    background-color: white;
}



.promo-banner {
    background-color: #ffffff;

    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    padding: 40px 20px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 20px auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    bottom: 175px;
}

.promo-title {
    font-size: 36px;
    font-weight: 600;
    color: #011D42;
    margin-bottom: 32px;
}

.promo-features {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}

.promo-feature {
    flex: 1;
    min-width: 260px;
    padding: 0 10px;
}

.promo-feature h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
}

.promo-feature p {
    font-size: 14px;
    color: #717171;
    line-height: 1.5;
}

.promo-divider {
    width: 1px;
    background-color: #ccc;
    height: auto;
    min-height: 80px;
    align-self: center;
}

@media (max-width: 767px) {

    .promo-banner {
        background-color: #ffffff;
        background-repeat: no-repeat;
        background-position: left;
        background-size: contain;
        padding: 40px 20px;
        border-radius: 12px;
        max-width: 1200px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
        text-align: center;
        position: relative;
        margin: 25px;
    }

    .promo-features {
        flex-direction: column;
        gap: 32px;
    }



    .promo-title {
        font-size: 25px;
        font-weight: 600;
        color: #011D42;
    }

    .promo-feature h3 {
        font-size: 18px;
        font-weight: 700;
    }

    .promo-feature p {
        font-size: 14px;
        font-weight: 400;
    }

    .promo-feature {
        border-bottom: 1px solid #ddd;
        padding-bottom: 24px;
        margin-bottom: 0;
    }

    /* Remove bottom border for the last feature */
    .promo-feature:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    /* Hide vertical dividers */
    .promo-divider {
        display: none;
    }

    .course-section {
        border-radius: 0 !important;

    }
}





.course-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    background-color: #f1f5fd;
    border-radius: 16px;
    margin-top: -152px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #011D42;
    font-weight: 700;
    margin-bottom: 32px;
}

.course-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.course-image {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.course-image img {
    width: 527px;
    border-radius: 16px;
    display: block;
}
.course-options a {
    text-decoration: none;
}
.course-options {
    flex: 1;
    max-width: 555px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-right: 20px;
}

.course-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.03);
    transition: background-color 0.3s ease, color 0.3s ease;
    color: #011D42;
}

.course-card:hover {
    background-color: #011D42;
    color: white;
}



.course-card.active .card-text h3,
.course-card.active .card-action span {
    color: #ffffff;
}

.course-card .card-text h3,
.course-card .card-action span {
    transition: color 0.3s ease;
}

.card-text h3 {
    font-size: 29px;
    margin: 0;
    font-weight: 600;
}

.card-text p {
    font-size: 13px;
    color: #fdfbfb;
    margin: 4px 0 0;
    text-align: left;
}
.course-card p:hover {
    color: white;
}
.card-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: inherit;
}

.arrow {
    font-size: 18px;
}

@media (max-width: 767px) {
    .card-text p {
        font-size: 13px;
        color: #fdfbfb;
        margin: 4px 0 0;
    }

    .card-text h3 {
        font-size: 28px;
        margin: 0;
        font-weight: 600;
        text-align: left;
    }
    .course-card {
        background-color: #011d42;
        border-radius: 12px;
        padding: 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.03);
        transition: background-color 0.3s ease, color 0.3s ease;
        color: #FFF;
        width: 100%;
    }

    .course-options {
        flex: 1;
        max-width: 555px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-right: 0;
    }
    .section-title {
        text-align: center;
        font-size: 28px;
        color: #011D42;
        font-weight: 600;
        margin-bottom: 32px;
    }

    .course-content {
        flex-direction: column;
        text-align: center;
    }

    .card-action {
        justify-content: center;
    }

    .course-image img {
        width: 100%;
        border-radius: 16px;
        display: block;
    }

    .course-options {
        order: 1;
    }

    .course-image {
        order: 2;
    }
    .arrow {
        font-size: 18px;
        color: #c1e251;
    }
}

