* {
    padding: 0;
    margin: 0;
}

body,
html {
    width: 100%;
    height: 100%;
    font-family: sans-serif;
}



/* Header */

header{
    position: fixed;
    top: 0%;
    z-index: 2;
    width: 100%;
}

.navbar {
    height: 100%;
    background-color: #FFFFFF;
    z-index: 2;
    width: 100%;
    padding: 0% !important;
}

.container-fluid {
    margin: 0px 40px;
}

.navbar-brand {
    padding-top: 0px;
}

.nav-logo {
    height: 100px;
    width: 100px;
    margin-left: 40px;
}

.logo {
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    mix-blend-mode: multiply;
}

.navbar-nav {
    margin: 0px 40px;
    width: 100%;
    display: flex;
    justify-content: end;
    gap: 40px;

}


.nav-item a {
    display: flex;
    justify-content: center;
    margin: 0px 10px;
    font-size: 15px;
    color: #1A3F5A;
    font-weight: bold;
}



.navbar-icons {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 35px;
    z-index: 2;
}

a.nav-link {
    margin: 0;

}

.nav-icon {
    font-size: 18px;
    color: white;
    text-decoration: none;
}

.nav-icon:hover i {
    color: rgb(255, 187, 0);
}

.ab {
    display: flex;
    justify-content: center;
}

.ab span {
    display: flex;
    align-items: center;
    color: #1A3F5A;
    font-weight: bold;
}



/*------------------- vedio-container----------------- */


.fixed-video {
    position: relative;
    width: 100%;
    overflow: hidden;
    object-fit: contain;
    /* padding-top: 30px; */
}

.video-1 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the entire area */
}


@media (max-width : 576px) {
    .container-fluid {
        margin: 0px;
    }

    .navbar-nav {
        margin: 0px;
        gap: 15px;

    }

    .nav-logo {
        margin-left: 10px;
    }

    .img-1 img {
        height: 250px;
    }
}

/*------------------- Our-courses------------- */


.courses-container {
    background-color: #B0E5EC;
}

.all-courses {
    padding: 60px 60px;
    margin: 0;
}

.main {
    border: 1px solid #000000;
    border-radius: 20px;
}

.main-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1A3F5A;
    padding: 20px 50px;
    border-radius: 20px;
    /* border: 2px solid #000000; */
}

.heading h1 {
    color: white;
    margin: 0;
}

/* Search Container */
.search-container {
    display: flex;
    align-items: center;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 30px;
    width: 300px;
    height: 40px;
    position: relative;
    padding: 10px;
}

.search-container input {
    flex: 1;
    border: none;
    background-color: transparent;
    color: white;
    font-size: 16px;
    padding-left: 10px;
    outline: none;
}

.search-container input::placeholder {
    color: white;
}

.search-container button {
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-icon,
.search-icon {
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s;
}

.dropdown-icon {
    margin-left: 10px;
    display: none;
}

/* Hide the search icon initially */
.search-icon {
    display: block;
}

/* When search is active, show the search icon and hide dropdown icon */
.search-container.active .dropdown-icon {
    display: none;
}

.search-container.active .search-icon {
    display: block;
}

/* Courses Dropdown */

.courses-name {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.all-name {
    border-bottom: 3px solid #1A3F5A;
    padding: 30px;
    display: flex;
    gap: 40px;
}

.all-name a {
    display: flex;
    gap: 70px;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #1A3F5A;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;

}

.all-name a.active,
.all-name a:focus,
.all-name a:hover {
    background-color: #1A3F5A;
    color: white;
    outline: none;
    /* Remove default focus outline */
}


.courses-name.show {
    display: block;
    opacity: 1;
    visibility: visible;
}







.slider {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px;
    padding-bottom: 20px;
}

/* Card Styling */
.card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    margin: 10px;
    border-radius: 20px !important;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 4px -2px gray;
}

.card:hover {
    transform: translateY(-10px);
    cursor: pointer;
    /* box-shadow: 0 6px 8px -2px #00B0AD; */
}

/* Ensuring the image also respects the card's border-radius */

.card img {
    border-radius: 5px;
}

.card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-top-left-radius: 20px;
    /* Match card border-radius */
    border-top-right-radius: 20px;
    /* Match card border-radius */
    mix-blend-mode: multiply;
}

/* Card Content */
.card-body {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #B0E5EC;
    /* border-bottom-left-radius: 20px; */
    /* Match card border-radius */
    /* border-bottom-right-radius: 20px; */
    /* Match card border-radius */
}

.card-image img {
    height: 45px;
    width: 45px;
}

.title {
    font-size: 18px;
    margin: 0;
}

.title h6 {
    margin: 0;
    font-size: 18px;
}

.title p {
    margin: 0;
    font-size: 15px;
}



/* ---- */

.card-body-0 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 5px;
    background-color: #B0E5EC;
    gap: 15px;
}

.price-1 h3 {
    font-size: 15px;
    margin: 0;
    font-weight: bold;
}

.price-1 p {
    color: orange;
    font-size: 15px;
    margin: 0;
}

.price-1 p span {
    color: rgb(0, 0, 0);
}

.con-1 {
    font-size: 15px;
    margin: 0;
    font-weight: bold;
}

/* Media Queries for Improved Responsiveness */
/*  */

.dots-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
    /* Space between dots */
}

.dot {
    width: 15px;
    height: 15px;
    /* background-color: #00B0AD; Default color */
    border: 2px solid #00B0AD;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.3s, background-color 0.3s;
}

.dot.active {
    opacity: 1;
    background-color: #008C89;
    /* Active color */
}

.dot:hover {
    cursor: pointer;
    background-color: #008C89;
    /* Darker shade on hover */
    opacity: 1;
}


.hidden {
    display: none !important;
}




.slick-prev,
.slick-next {
    background-color: #00B0AD;
    border: none;
    color: white;
    padding-top: 1px;
    border-radius: 50%;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: #008C89;
}


.hidden {
    display: none !important;
}

/* Lazy-loading effect */
img[data-src] {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

img.loaded {
    opacity: 1;
}


@media (width : 1024px) {

    .all-courses {
        padding: 60px 20px;
        margin: 0;
    }

    .all-name {
        border-bottom: 3px solid #1A3F5A;
        padding: 10px 15px;
        display: flex;
        gap: 10px;
    }

    .all-name a {
        display: flex;
        padding: 5px 10px;
        border-radius: 10px;
        text-decoration: none;
        color: #1A3F5A;
        font-size: 13px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;
    }

    .card-body {
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }


    .title {
        font-size: 15px;
        text-align: center;
    }

    .title h6 {
        font-size: 15px;
    }

    .title p {
        font-size: 15px;
    }


    .card-body-0 {
        flex-direction: column;
        gap: 5px;
    }

    .price-1 {
        text-align: center;
    }

    .price-1 h3 {
        font-size: 15px;
        margin: 0;
        font-weight: bold;
    }

    .price-1 p {
        font-size: 15px;
    }

    .price-1 p span {
        color: rgb(0, 0, 0);
    }

    .con-1 {
        font-size: 15px;
        text-align: center;
    }
}



@media (min-width: 768px) and (max-width: 992px) {

    .fixed-video {
        height: 0%;
    }

    /* .all-courses {
        padding: 30px 20px 30px 20px;
    }

    .all-name {
        border-bottom: 3px solid #1A3F5A;
        padding: 20px;
        display: flex;
        gap: 30px;
    }

    .all-name a {
        display: flex;
        gap: 70px;
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        color: #1A3F5A;
        font-size: 18px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;

    } */

    .main-head {
        padding: 20px 30px;
    }

    .search-container {
        width: 45%;
    }

    .courses-name {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 54%;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        border-radius: 0px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 97%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1;
        padding: 0;
    }

    .all-name {
        border-bottom: 3px solid #1A3F5A;
        padding: 10px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .all-name a {
        display: flex;
        gap: 70px;
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        color: #1A3F5A;
        font-size: 20px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;

    }

    .all-courses {
        padding: 30px 10px;
    }

    .dropdown-icon {
        display: block;
    }

    /* Hide the search icon initially */
    .search-icon {
        display: none;
    }

    .card-body {
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }


    .title {
        font-size: 15px;
        text-align: center;
    }

    .title h6 {
        font-size: 15px;
    }

    .title p {
        font-size: 15px;
    }





    .card-body-0 {
        flex-direction: column;
        gap: 5px;
    }

    .price-1 {
        text-align: center;
    }

    .price-1 h3 {
        font-size: 15px;
        margin: 0;
        font-weight: bold;
    }

    .price-1 p {
        font-size: 15px;
    }

    .price-1 p span {
        color: rgb(0, 0, 0);
    }

    .con-1 {
        font-size: 15px;
        text-align: center;
    }
}

@media(width:853px) {

    .main-head {
        padding: 20px 30px;
    }

    .search-container {
        width: 45%;
    }

    .courses-name {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 78.5%;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        border-radius: 0px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 96.5%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1;
        padding: 0;
    }

    .all-name {
        border-bottom: 3px solid #1A3F5A;
        padding: 10px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .all-name a {
        display: flex;
        gap: 70px;
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        color: #1A3F5A;
        font-size: 20px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;

    }

    .all-courses {
        padding: 30px 10px;
    }

    .dropdown-icon {
        display: block;
    }

    /* Hide the search icon initially */
    .search-icon {
        display: none;
    }

}


@media(width:820px) {
    .courses-name {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 57%;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        border-radius: 0px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 96.5%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1;
        padding: 0;
    }
}


@media (max-width: 768px) {

    /* .all-courses {
        padding: 30px 20px 30px 20px;
    }

    .all-name {
        border-bottom: 3px solid #1A3F5A;
        padding: 20px;
        display: flex;
        gap: 30px;
    }

    .all-name a {
        display: flex;
        gap: 70px;
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        color: #1A3F5A;
        font-size: 18px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;

    } */

    .main-head {
        padding: 20px 30px;
    }

    .search-container {
        width: 45%;
    }

    .courses-name {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 63.5%;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        border-radius: 0px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 96.5%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1;
        padding: 0;
    }

    .all-name {
        border-bottom: 3px solid #1A3F5A;
        padding: 10px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .all-name a {
        display: flex;
        gap: 70px;
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        color: #1A3F5A;
        font-size: 20px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;

    }

    .all-courses {
        padding: 30px 10px;
    }

    .dropdown-icon {
        display: block;
    }

    /* Hide the search icon initially */
    .search-icon {
        display: none;
    }
}




/* Mobile adjustments */
@media (max-width: 576px) {
    .main-head {
        flex-direction: column;
        padding: 15px 5px;
        gap: 25px;
    }

    .search-container {
        width: 95%;
    }

    .courses-name {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 70.5%;
        left: 50%;
        width: 95.9%;
        transform: translateX(-50%);
        background-color: white;
        border-radius: 0px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 94%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1;
        padding: 0;
    }

    .all-name {
        border-bottom: 3px solid #1A3F5A;
        padding: 10px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .all-name a {
        display: flex;
        gap: 60px;
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        color: #1A3F5A;
        font-size: 16px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;

    }

    .all-courses {
        padding: 30px 10px;
    }

    .dropdown-icon {
        display: block;
    }

    /* Hide the search icon initially */
    .search-icon {
        display: none;
    }

    .card-body-0 {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 5px;
        background-color: #B0E5EC;
        gap: 15px;
    }

    .price-1 h3 {
        font-size: 13px;
        margin: 0;
        font-weight: bold;
    }

    .price-1 p {
        color: orange;
        font-size: 13px;
        margin: 0;
    }

    .price-1 p span {
        color: rgb(0, 0, 0);
    }

    .con-1 {
        font-size: 13px;
        margin: 0;
        font-weight: bold;
    }



}

@media (width:540px) {
    .main-head {
        flex-direction: column;
        padding: 15px 5px;
        gap: 25px;
    }

    .search-container {
        width: 95%;
    }

    .courses-name {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 78%;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        border-radius: 0px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 95.5%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1;
        padding: 0;
    }

    .all-name {
        border-bottom: 3px solid #1A3F5A;
        padding: 10px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .all-name a {
        display: flex;
        gap: 70px;
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        color: #1A3F5A;
        font-size: 20px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;

    }

    .all-courses {
        padding: 30px 10px;
    }

    .dropdown-icon {
        display: block;
    }

    /* Hide the search icon initially */
    .search-icon {
        display: none;
    }

}

@media (min-width: 430px) and (max-width: 435px) {
    .main-head {
        flex-direction: column;
        padding: 15px 5px;
        gap: 25px;
    }

    .search-container {
        width: 95%;
    }

    .courses-name {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 54%;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        border-radius: 0px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 94%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1;
        padding: 0;
    }

    .all-name {
        border-bottom: 3px solid #1A3F5A;
        padding: 10px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .all-name a {
        display: flex;
        gap: 70px;
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        color: #1A3F5A;
        font-size: 20px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;

    }

    .all-courses {
        padding: 30px 10px;
    }

    .dropdown-icon {
        display: block;
    }

    /* Hide the search icon initially */
    .search-icon {
        display: none;
    }
}

@media (min-width: 410px) and (max-width: 429px) {
    .main-head {
        flex-direction: column;
        padding: 15px 5px;
        gap: 25px;
    }

    .search-container {
        width: 95%;
    }

    .courses-name {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 53.5%;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        border-radius: 0px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 94%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1;
        padding: 0;
    }

    .all-name {
        border-bottom: 3px solid #1A3F5A;
        padding: 10px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .all-name a {
        display: flex;
        gap: 70px;
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        color: #1A3F5A;
        font-size: 20px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;

    }

    .all-courses {
        padding: 30px 10px;
    }

    .dropdown-icon {
        display: block;
    }

    /* Hide the search icon initially */
    .search-icon {
        display: none;
    }
}

@media (min-width: 390px) and (max-width: 393px) {
    .main-head {
        flex-direction: column;
        padding: 15px 5px;
        gap: 25px;
    }

    .search-container {
        width: 95%;
    }

    .courses-name {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 56.5%;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        border-radius: 0px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 94%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1;
        padding: 0;
    }

    .all-name {
        border-bottom: 3px solid #1A3F5A;
        padding: 10px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .all-name a {
        display: flex;
        gap: 70px;
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        color: #1A3F5A;
        font-size: 20px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;

    }

    .all-courses {
        padding: 30px 10px;
    }

    .dropdown-icon {
        display: block;
    }

    /* Hide the search icon initially */
    .search-icon {
        display: none;
    }
}

@media (width: 360px) {

    .main-head {
        flex-direction: column;
        padding: 15px 5px;
        gap: 25px;
    }

    .search-container {
        width: 95%;
    }

    .courses-name {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 62%;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        border-radius: 0px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 94%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1;
        padding: 0;
    }

    .all-name {
        border-bottom: 3px solid #1A3F5A;
        padding: 10px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .all-name a {
        display: flex;
        gap: 70px;
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        color: #1A3F5A;
        font-size: 20px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;

    }

    .all-courses {
        padding: 30px 10px;
    }

    .dropdown-icon {
        display: block;
    }

    /* Hide the search icon initially */
    .search-icon {
        display: none;
    }
}

@media (width: 344px) {

    .main-head {
        flex-direction: column;
        padding: 15px 5px;
        gap: 25px;
    }

    .search-container {
        width: 95%;
    }

    .courses-name {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 61.5%;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        border-radius: 0px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 93%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1;
        padding: 0;
    }

    .all-name {
        border-bottom: 3px solid #1A3F5A;
        padding: 10px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .all-name a {
        display: flex;
        gap: 70px;
        padding: 10px 15px;
        border-radius: 10px;
        text-decoration: none;
        color: #1A3F5A;
        font-size: 20px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s;

    }

    .all-courses {
        padding: 30px 10px;
    }

    .dropdown-icon {
        display: block;
    }

    .search-icon {
        display: none;
    }



    .price-1 h3 {
        font-size: 12px;
        margin: 0;
        font-weight: bold;
    }

    .price-1 p {
        font-size: 12px;
    }

    .price-1 p span {
        color: rgb(0, 0, 0);
    }

    .con-1 {
        font-size: 12px;
    }

}
















/* @media (max-width: 600px) {
    .type {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-all-btn {
        margin-top: 10px;
      
    }

    .type h3 {
        font-size: 18px;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .type h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .type {
        flex-direction: row;
    }

    .view-all-btn {
        margin-top: 15px;
    }
} */








/* ------------------categories -----------------------*/




.categories-container {
    padding-top: 30px;
}

.categories {
    display: flex;
    align-items: center;
    justify-content: center;
}

.double-line {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 50%;
    /* margin-top: 30px; */
}

.double-line .line {
    border: 3px #1a3f5a solid;
    width: 100%;

}

.banner {
    background-color: #1b3f56;
    color: white;
    border-radius: 50px;

}

.banner .heading {
    width: 350px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner h1 {
    font-size: 2em;
    margin: 0;
    font-weight: 700;
}

.join {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
    height: 0;
    margin: 15px;
}

.join p {
    font-size: 50px;
    margin: 0;

}


/* Centering the label inside its container */
/* Centering the label inside its container */
.hero-label-container {
    display: flex;
    justify-content: center;
    align-items: center;

}

/* Styling the label */
.hero-label {
    display: inline-block;
    padding: 5px 50px;
    font-size: 22px;
    font-weight: 600;
    color: #1A3F5A;
    /* Dark blue text */
    border: 1.5px solid #1A3F5A;
    /* Subtle border */
    border-radius: 16px;
    /* Smooth rounded corners */
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Soft shadow for depth */
    text-align: center;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
    /* Slight spacing for readability */
    line-height: 1.5;
    /* Comfortable line height */
    transition: all 0.3s ease;
    /* Smooth hover effect */
}

/* Hover effect for better interaction */

.hero-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 20px;
}

.card-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* width: 450px; */
    width: 500px;
}

.card-content img {
    height: 600px;
}

.card-content-1 img {
    height: 225px;
}

.card-container .card {
    /* max-width: 550px; */
    max-width: 580px;
    height: 200px;
    /* max-width: 500px; */
}

.card-body-1,
.card-body-2 {
    display: flex;
    justify-content: space-around;
    /* align-items: center; */
    padding: 20px;
    background-color: #B0E5EC;
}

.price h3,
p {
    margin: 0;
    font-weight: bold;
}

.price p {
    color: orange;
}

.price p span {
    color: rgb(0, 0, 0);
}

.price h3 {
    font-size: 18px;
}

.price {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.con {
    font-size: 15px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .hero-section {
        gap: 5px;
    }

    .join {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 200px;
        height: 0;
        margin: 15px;
    }

    .join p {
        font-size: 50px;
        margin: 0;

    }
}


@media (max-width: 992px) {
    .hero-section {
        flex-direction: row;
        gap: 5px;
    }

    .card-container {
        width: 500px;
        gap: 5px;
    }

    .card-content img {
        height: 530px;
    }

    .card-content-1 img {
        height: 183px;
    }

    .card-container .card {
        /* max-width: 550px; */
        max-width: 480px;
        height: 200px;
        /* max-width: 500px; */
    }

    .card-body-1,
    .card-body-2 {
        flex-direction: column;
        text-align: center;
    }

    .price {
        gap: 0px;
    }

    .join {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 200px;
        height: 0;
        margin: 15px;
    }

    .join p {
        font-size: 50px;
        margin: 0;

    }

}

@media (max-width: 768px) {

    .hero-section {
        gap: 0px;
    }

    .card-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0px;
        /* width: 450px; */
        width: 100%;
    }

    .card-content-1 img {
        height: 186px;
    }

    .card-container .card {
        /* max-width: 550px; */
        max-width: 100%;
        height: 200px;
        /* max-width: 500px; */
    }

    .join {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 150px;
        height: 0;
        margin: 15px;
    }

    .join p {
        font-size: 50px;
        margin: 0;

    }

}



@media (max-width: 576px) {


    .banner .heading {
        height: 60px;
        width: 280px;
    }

    .heading h1 {
        font-size: 1.4em;
    }

    .hero-label {
        padding: 5px 20px;
        font-size: 18px;
    }

    .hero-section {
        flex-direction: column;
        margin: 10px 0px 10px 0px;
        gap: 5px;
    }

    .card-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        /* width: 450px; */
        width: 100%;
        padding: 10px 20px 0px 20px;
    }


    .card-container .card {
        width: 550px;
        max-width: 100%;
        height: 200px;
        /* max-width: 500px; */
    }

    .card-content img {
        height: 225px;
    }

    .card-body-1,
    .card-body-2 {
        flex-direction: column;
        text-align: center;
    }

    .price {
        gap: 0px;
    }

}




@media (width: 540px) {

    .join {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 150px;
        height: 0;
        margin: 15px;
    }

    .join p {
        font-size: 50px;
        margin: 0;

    }

}



/*------------------- success----------------- */

.Success-container {
    padding-top: 30px;
    background-color: #B0E5EC;
}

.Success {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content {
    padding: 40px 300px;
}

.success-data p {
    text-align: center;
    line-height: 35px;
}

.abc {
    display: flex;
    justify-content: space-between;
    padding: 20px 150px;
}

.carousel-item {
    border: 5px solid #1a3f5a;
    /* display: flex; */
}


.slider-content {
    /* display: flex; */
}

.profile-conatiner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px 20px 0px;
}

.profile {
    display: flex;
    gap: 20px;
}

.profile-image {
    height: 80px;
    width: 80px;
    border: 2px solid white;
    border-radius: 50%;
}


.profile-image img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}


.rating-1 {
    font-size: 20px;
    color: orange;
}


.image-1 {
    height: 450px;
    width: 370px;
    /* border-radius: 20px !important; */
}

.image-1 img {
    height: 100%;
    width: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.profile-msg {
    padding: 50px 50px 50px 0px;
}

.msg {
    text-align: justify;
    line-height: 25px;
}

.carousel-control-next,
.carousel-control-prev {
    width: 10%;
}


@media (max-width: 1024px) {
    .success-content {
        padding: 30px 60px;
    }

    .abc {
        padding: 20px 50px;
        gap: 30px;
    }

    .success-data p {
        text-align: center;
        line-height: 30px;
    }

    .profile-conatiner {
        display: flex;
        align-items: center;
        flex-direction: row;
        /* gap: 20px; */
        padding: 20px 20px 20px 0px;
    }


    .profile-msg {
        padding: 0px;
    }

    .rating-1 p {
        margin-left: 0px;
        font-size: 20px;
        color: orange;
    }

    .carousel-control-next,
    .carousel-control-prev {
        width: 5% !important;
    }
}

@media (max-width: 768px) {
    .msg {
        line-height: 22px;
    }

    .success-data p {
        text-align: center;
        line-height: 25px;
    }
}




@media (max-width: 992px) {
    .success-content {
        padding: 30px 50px;
    }

    .success-data p {
        text-align: center;
        line-height: 25px;
    }

    .abc {
        padding: 20px 50px;
        gap: 30px;
    }

    .profile-conatiner {
        display: flex;
        align-items: start;
        flex-direction: column;
        /* gap: 20px; */
        padding: 20px 20px 20px 0px;
    }


    .profile-msg {
        padding: 0px;
    }

    .rating-1 p {
        margin-left: 90px;
        font-size: 15px;
        color: orange;
    }

    .carousel-control-next,
    .carousel-control-prev {
        width: 8% !important;
    }
}

@media (max-width: 768px) {
    .msg {
        line-height: 22px;
    }
}



@media (max-width: 576px) {
    .success-content {
        padding: 30px 20px;
        font-size: 15px;
    }

    .success-data p {
        line-height: 25px;
    }

    .banner .heading {
        height: 60px;
        width: 280px;
    }

    .heading h1 {
        font-size: 1.4em;
    }

    .hero-label {
        padding: 5px 20px;
        font-size: 18px;
    }

    .msg {
        line-height: 22px;
        font-size: 15px;
    }

    .abc {
        display: flex;
        flex-direction: column;
        padding: 25px 25px;
        gap: 10px;
    }

    .profile-conatiner {
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    .proflie-name h5 {
        font-size: 20px;
    }

    .rating-1 p {
        margin-left: 0px;
        font-size: 20px;
        color: orange;
    }


    .profile {
        gap: 10px;
    }

    .profile-msg {
        padding: 15px 0px 15px 0px;
    }

    /* .image-1 img {
        height: 350px;
        width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    } */

    .image-1 {
        height: 400px;
        width: 100%;
        /* border-radius: 20px !important; */
    }

    .image-1 img {
        height: 100%;
        width: 100%;
        border-radius: 20px !important;
        display: flex;
        justify-content: center;
    }

    .profile-conatiner {
        padding: 0px;
    }

    .carousel-control-next,
    .carousel-control-prev {
        width: 8% !important;
    }

    .carousel-item {
        border: 3px solid #1a3f5a;
        /* display: flex; */
    }

}

/* ------------------faq -----------------------*/




.faq-container {
    padding-top: 30px;
}

.faq {
    display: flex;
    align-items: center;
    justify-content: center;
}

.double-line {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 50%;
    /* margin-top: 30px; */
}

.double-line .line {
    border: 3px #1a3f5a solid;
    width: 100%;

}

.banner {
    background-color: #1b3f56;
    color: white;
    border-radius: 50px;

}

.banner .heading {
    width: 350px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner h1 {
    font-size: 2em;
    margin: 0;
    font-weight: 700;
}

.faq-section {
    text-align: center;
    padding: 100px 50px;
}

.faq-section h5 a {
    text-decoration: none;
}

.faq-questions {
    flex: 1;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}


/* Icon Styling */
.toggle-icon {
    transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    /* Rotates the plus icon to a cross */
}

/* Hidden Answer by Default */
.faq-item p {
    font-weight: 400;
    display: none;
    font-size: 1rem;
    color: #333;
    padding-top: 8px;
    line-height: 1.6;
    animation: fadeIn 0.3s ease-in-out;
    text-align: justify;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}




.read-more-btn {
    background: linear-gradient(45deg, #1b3b5a, #5ccfe6);
    border: none;
    border-radius: 25px;
    color: white;
    padding: 10px 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
}

.read-more-btn:hover {
    background: linear-gradient(45deg, #16354a, #4ab9d4);
}


@media (max-width : 576px) {
    .faq-section {
        padding: 30px 20px;
    }

    .double-line .line {
        border: 2px #1a3f5a solid;
        width: 100%;
    
    }    

    .banner .heading {
        width: 280px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .banner h1 {
        font-size: 1.4rem;
    }
}





.docs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}


.resources-section {
    text-align: center;
    margin-bottom: 30px;
}

.study-resources {
    text-align: center;
    margin-bottom: 40px;
}



/* Cards Container */
.resource-cards {
    display: flex;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Individual Cards */
.card-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: transform 0.3s;
    width: 350px;
    height: 430px;
}



.view-data h2 {
    margin: 10px 0;
    text-align: justify;
    font-size: 1.5rem;
    color: #1a3f5a;
}

.view-data p {
    display: flex;
    align-items: start;
    color: black;
    text-align: left;
    margin-top: 15px;
}

/* Images inside Cards */
.img-1 {
    width: 220px;
    height: 100%;
    margin-top: 20px;
}

.img-1 img {
    width: 100%;
    height: 100%;
    /* mix-blend-mode: multiply; */
}

/* Colors for Cards */
.notes {
    background-color: #b2ebf2;
    ;
}

.reference-books {
    background-color: #b2ebf2;
    ;
}

.ncert-solutions {
    background-color: #b2ebf2;
    ;
}

/* Hover Effect */
.card-view:hover {
    transform: translateY(-5px);
}

.study-para #p{
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    font-size: 18px;
 }

/* Responsive Design */

@media (max-width: 1200px) {
    .resource-cards{
        display: flex;
        gap: 10px;
        padding: 10px;
        
    }

    .card-view {
        padding: 20px;
        border-radius: 10px;
        width: 320px;
        height: 450px;
    }

    .img-1 {
        width: 200px;
        height: 100%;
        margin-top: 10px;
    }

    .study-para #p{
        padding: 10px;
     }

    .view-data h2 {
        margin: 10px 0;
        text-align: justify;
        font-size: 1.8rem;
        color: #1a3f5a;
    }
    
    .view-data p {
        display: flex;
        align-items: start;
        color: black;
        text-align: justify;
        margin-top: 15px;
        font-size: 18px;
        font-weight: 500;
    }
}


@media (max-width: 992px) {
    .resource-cards{
        display: flex;
        gap: 10px;
        padding: 10px;
        
    }

    .card-view {
        padding: 10px;
        border-radius: 10px;
        width: 280px;
        height: 430px;
    }

    .img-1 {
        width: 200px;
        height: 100%;
        margin-top: 10px;
    }

    .study-para #p{
        padding: 10px;
     }

    .view-data h2 {
        margin: 10px 0;
        text-align: justify;
        font-size: 1.5rem;
        color: #1a3f5a;
    }
    
    .view-data p {
        display: flex;
        align-items: start;
        color: black;
        text-align: justify;
        margin-top: 15px;
        font-size: 15px;
        font-weight: 400;
    }
}


@media (max-width: 576px) {
    .resource-cards{
        display: flex;
        flex-direction: column;
        padding: 10px 30px;
    }

    .card-view {
        padding: 20px;
        border-radius: 10px;
        width: 100%;
        height: 430px;
    }

    .view-data h2 {
        font-size: 1.5rem;
    }

    .view-data p {
        display: flex;
        align-items: start;
        color: black;
        text-align: justify;
        margin-top: 15px;
        font-size: 15px;
        font-weight: 400;
    }
}


/* -------------------footer-section --------------*/

footer {
    /* margin-top: 20px; */
    background-color: #b2ebf2;
    padding: 50px 100px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    /* border-radius: 30px 30px 0 0; */
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.footer-logo img {
    width: 110px;
    height: 110px;
    /* border-radius: 50%; */
    margin-bottom: 20px;
    mix-blend-mode: multiply;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons a img {
    width: 300px;
    height: 30px;
    margin:top 20px;
}

.social-icons a:hover img {
    filter: none;
}

.footer-column {
    color: #333;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    background-color: #023b5d;
    padding: 10px 20px;
    border-radius: 15px;
    display: inline-block;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #023b5d;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    line-height: 1.6;
    font-weight: 380;
}

.contact-info p img {
    width: 27px;
    height: 23px;
    margin-right: 10px;
}

.contact-info p svg {
    margin-right: 15px;
}

/* Media Query for Responsiveness */

@media (max-width: 1200px) {
    footer {
        padding: 40px 80px;
        flex-direction: row;
        display: flex;
        gap: 20px;
        justify-content: space-between;
        align-items: start;
    }
}

@media (max-width: 992px) {
    footer {
        padding: 30px 40px;
        flex-direction: row;
        display: flex;
        gap: 20px;
        justify-content: space-between;
        align-items: start;
    }
}

@media (max-width: 768px) {

    footer {
        padding: 40px 30px;
        flex-direction: row;
        display: flex;
        gap: 20px;
        justify-content: space-between;
        align-items: start;
    }

}

@media (max-width: 576px) {
    footer {
        padding: 50px 40px;
        flex-direction: column;
        display: flex;
        gap: 20px;
        /* justify-content: space-around; */
        align-items: start;
    }

    .footer-logo,
    .footer-column {
        text-align: start;
        margin-bottom: 30px;
    }

    .footer-logo .social-icons {
        display: flex;
        gap: 20px;
    }
}