/* Base CSS File */

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Root variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --background-color: #f8f9fa;
    --text-color: #212529;
    --border-radius: 5px;
    --font-size: 16px;
    --heading-font-size: 24px;
    --paragraph-font-size: 14px;
    --container-width: 90%;
    --max-container-width: 1200px;
    --transition-speed: 0.3s;
    --Footer-bgcolor: #231f20;
    --Footer-color: #ffffff;
    --yellow-color: #ffcb05;
    --yellow-color2:#fdb926;
}

/* Body styles */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: var(--font-size);
}

li {
    list-style-type: none;
}

/* Container */
.container {
    width: var(--container-width);
    max-width: var(--max-container-width);
    margin: 0 auto;
    padding: 20px;
}

/* Button Styles */
.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background var(--transition-speed);
}

.button:hover {
    opacity: 0.5;
    /* background-color: darken(var(--primary-color), 10%); */
}




/* Footer Styles */
.footer {
    width: 100%;
    height: 100px;
    background: url('/mnt/data/footer.png') no-repeat center center/cover;
    position: fixed;
    bottom: 0;
    left: 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}





/* Home */


.Home {
    padding: 2vh 6vw;
}



/* Footer */

.Footer {
    background-color: var(--Footer-bgcolor);
    padding: 0vh 6vw;
}

.Footer-First-section>ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: var(--Footer-color);
    padding: 6vh 0vw;

}

.Footer-last-section>ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: var(--Footer-color);
    padding: 3vh 0vw 10vh;
    border-top: 1px solid rgba(59, 44, 27, 0.356);
}

.Footer-First-section>ul>li {
    border-right: 1px solid white;
    display: flex;
    justify-content: center;
    padding: 0vh 2vw 0vh 0vw;
    width: calc(100%/4);
}

.Footer-First-section>ul>li:nth-child(4) {
    border-right: none !important;
}

.Footer-First-section>ul>li>div {
    display: flex;
    flex-direction: column;
    gap: 8px;

}

.Footer-First-section>ul>li>div>h4 {
    text-transform: uppercase;
}

.Footer-First-section>ul>li>div>a {
    color: var(--Footer-color);
    text-decoration: none;
    font-size: var(--paragraph-font-size);
}

.Footer-First-section>ul>li>div>a>img {
    width: 100%;
}

.Footer-First-section>ul>li>div>div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.Footer-First-section>ul>li>div>div>a {
    color: var(--Footer-color);
    font-size: 25px;
}

.Footer-last-section>ul>li {
    display: flex;
    gap: 10px;
}

.Footer-last-section>ul>li>a {
    text-decoration: none;
    color: var(--Footer-color);

}





/* Header Styles */


.header {
    display: flex;
    flex-direction: column;
    background-color: white;
}

.header>ul {
    padding: 1vh 6vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);

}

.header>ul>li {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.header>ul>li>a>img {
    width: 19vw;
}

.header>ul>div:first-child {
    display: none;
}

.header>ul>li:nth-child(3)>button {
    color: var(--primary-color);
    padding: 13px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--font-size);
    font-weight: 600;
    gap: 3px;
    background-color: #eff8ff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.header>ul>li:nth-child(3)>div {
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: #eff8ff;
    border-radius: 35px;
    padding: 15px 10px;
    box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.75);
}

.header-search {
    background-color: transparent;
    border: none;
    width: 20vw;
}

.header-search:focus {
    border: none;
    outline: none;
}

.header-search::-webkit-search-cancel-button {
    display: none;
}


.header>ul>li:nth-child(4)>button:nth-child(1) {
    color: var(--primary-color);
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--font-size);
    font-weight: 600;
    gap: 3px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid cadetblue;
}

.header>ul>li:nth-child(4)>button:nth-child(2) {
    color: var(--background-color);
    padding: 13px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--font-size);
    font-weight: 600;
    gap: 3px;
    border: none;
    border-radius: 5px;
    cursor: pointer;

    background-color: var(--primary-color);
}

.header>ul>li:nth-child(1) {
    display: none;
}

.header>ul>li:nth-child(5) {
    display: none;
}



.Mobile-Menu-Show {
    display: none;
    z-index: 400;
}

.Mobile-Menu-Search {
    display: none;
}






.Programs {
    padding: 4vh 6vw;
    color: black;
    animation: slideDown 0.5s ease forwards;
    background-color: white;
    position: absolute;
    z-index: 99;
    top: 11%;
    width: 98.78vw;
    background-color: var(--background-color);
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);

}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-0px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.Course-list>ul {
    display: grid;
    grid-template-columns: 25vw 1fr;
    /* 30% for the first box, 1fr (remaining space) for the second box */
    gap: 10px;
    /* Optional: Adds space between the boxes */
    width: 100%;

}

.Course-list>ul>li:nth-child(1)>ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: white;
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    padding: 1vw;
    font-family: 'Roboto';

}

.Course-list>ul>li:nth-child(1)>ul>li {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 15px;
    padding: 2vh 1vw;
    border-radius: 5px;
    cursor: pointer;

}

.Course-list>ul>li:nth-child(1)>ul>li:hover {
    background-color: #c7c7c78a;
}

.Course-list>ul>li:nth-child(1)>ul>li>div {
    background-color: rgba(255, 182, 193, 0.39);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 1vh;
}

.course-icon {
    width: 30px;

}

.Course-list>ul>li:nth-child(1)>ul>li>p {
    font-family: 'Roboto';
    font-weight: 600;
}

.close-button-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 25px;
    left: 95%;
    border-radius: 50%;
    background-color: var(--Footer-color);
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.75);
}

.close-button {
    font-size: 25px;
    cursor: pointer;

}

.close-button-header:hover {
    background-color: var(--primary-color);
    color: var(--Footer-color);
    border: none;
}


.Course-list>ul>li:nth-child(2)>ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    padding: 1vw;
    font-family: 'Roboto';
    height: 130.5vh;

}







/* Hiring-Partners */


.HiringPartners {
    display: flex;
    gap: 10px;
    background-color: #eaf3fa;
    padding: 1vw;
    border-radius: 10px;
    margin: 5vh 0vw;
    flex-direction: column;
}

.HiringPartners>ul {
    display: flex;
    flex-direction: row;
    background-color: var(--Footer-color);
    justify-content: center;
    border-radius: 10px;

}

.HiringPartners>ul>li:nth-child(1) {
    width: 25%;

    border-right: 1px solid lightgray;
}

.HiringPartners>ul>li:nth-child(2) {
    width: 75%;
}

.Stats-Hiring>div>h2 {
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 500;
}

.Stats-Hiring>div>h4 {
    color: var(--primary-color);
    font-size: 20px;
}

.Stats-Hiring {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 25px;
    padding: 3vw 2vw 5vw 3vw;

}

.HiringPartnersImage>ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 3vw 2vw 5vw;
}

.HiringPartnersImage>ul>li:nth-child(1)>h3 {
    color: var(--primary-color);
    text-align: center;
    font-family: "Roboto";
    font-size: 25px;
}

.HiringPartnersImage>ul>li:nth-child(2)>ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;

}

.HiringPartnersImage>ul>li:nth-child(2)>ul>li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(96%/4);
    height: 100px;
}


.HiringPartnersImage>ul>li:nth-child(2)>ul>li>img {
    width: 40%;
}


/* Join- Placement */



.JoinPlacement>ul {
    background-color: var(--yellow-color);
    display: flex;
    flex-direction: row;
    padding: 3vh 3vw;
    border-radius: 10px;
}

.JoinPlacement>ul>li {
    width: calc(100%/2);
}


.JoinPlacement>ul>li:nth-child(1)>h1 {
    font-size: 50px;
    width: 23vw;
    font-weight: 900;
    font-family: "Roboto";
}

.JoinPlacement>ul>li:nth-child(2)>p {
    font-family: "Roboto";
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.JoinPlacement>ul>li:nth-child(2)>button {
    padding: 4vh 2vw;
    background-color: var(--primary-color);
    color: var(--Footer-color);
    border: none;
    font-weight: 500;
    width: 25vw;
    font-size: 19px;
    border-radius: 10px;


}

.Section1 {
    padding: 1vw;
}

.Section1>ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;

}

.Section1>ul>li {
    width: calc(97%/2);
    height: 60vh;
    border-radius: 10px;
}


.Section1>ul>li:nth-child(1)>h1 {
    font-size: 50px;
    font-weight: 800;
    width: 30vw;
}

.Section1>ul>li:nth-child(1)>p {
    font-family: "Roboto";
    font-size: 17px;
    font-weight: 600;
    width: 28vw;

}

.Section1>ul>li:nth-child(3) {
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: var(--primary-color);
}

.Section1>ul>li:nth-child(3)>ul {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.Section1>ul>li:nth-child(3)>ul>li:nth-child(1)>h2 {
    font-size: 35px;
    color: white;
    margin-bottom: 7vh;
}

.Section1>ul>li:nth-child(3)>ul>li:nth-child(2)>div {
    background-color: var(--Footer-color);
    border-radius: 10px;
    display: flex;

}

.Section1>ul>li:nth-child(3)>ul>li:nth-child(2)>div>input {
    border: none;
    background-color: transparent;
    width: 100%;
    padding: 1vw;

}

.Section1>ul>li:nth-child(3)>ul>li:nth-child(2)>div>input:focus {
    outline: none;
    border: none;
}

.Section1>ul>li:nth-child(3)>ul>li:nth-child(2)>div>button {
    background-color: black;
    color: white;
    border: none;
    padding: 1.4vw;
    width: 6vw;
    border-radius: 0px 10px 10px 0px;
}

.Section1>ul>li:nth-child(3)>ul>li:nth-child(3) {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.Section1>ul>li:nth-child(3)>ul>li:nth-child(3)>p {
    font-weight: 600;
    color: white;
}

.Section1>ul>li:nth-child(3)>ul>li:nth-child(4)>p {
    font-weight: 600;
    color: white;
}

.Section1>ul>li:nth-child(4) {
    background-size: cover;
    background-Position: 'center';
    background-repeat: no-repeat;
}

.Section1>ul>li:nth-child(4)>ul {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    right: 0%;
    top: 75%;

}

.Section1>ul>li:nth-child(4)>ul>li {
    background-color: var(--primary-color);
    color: white;
    padding: 2vh 1vw;
    border-radius: 5px;
    width: 10vw;
    text-align: center;
}


.slider-section {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
    overflow: hidden;
}

.slider-image {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    /* Start with hidden images */
    transition: opacity 0.5s ease-in-out;
    /* Fade transition */
}

.slider-image.active {
    opacity: 1;
    /* Show the active image */
}

.slider-navigators {
    text-align: center;
    position: relative;
    margin-top: -27px;
    z-index: 10;
}

.slider-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.slider-dot.active {
    background-color: #333;
}



.Section2>ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    border-radius: 10px;
    padding: 4vh 0vw;


}

.Section2>ul>li {
    display: flex;
    justify-content: center;
    width: calc(100%/2);

}

.Section2>ul>li:nth-child(1)>div {
    display: flex;
    flex-direction: column;

}

.Section2>ul>li:nth-child(1)>div>h1 {
    font-size: 60px;
    font-weight: 600;
}


.Section2>ul>li:nth-child(1)>div>p {
    font-size: 25px;
    font-weight: 600;
}

.Section2>ul>li:nth-child(1)>div>ul>li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}


.Section2>ul>li:nth-child(1)>div>ul>li>p {
    font-weight: 600;
    font-size: 20px;
}

.Video-home {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}






/* ===============================SLIDER================================ */



.slider {
    height: 250px;
    margin: auto;
    position: relative;
    display: grid;
    width: 100%;
    place-items: center;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: calc(250px*18);
    animation: scroll 40s linear infinite;
}

.slide-track:hover {
    animation-play-state: paused;
}

.slide {
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
    mix-blend-mode: multiply;

    perspective: 100px;
}

.slide>img {
    width: 70%;
    mix-blend-mode: color-burn;
    transition: transform 1s;
}

.slide>img:hover {
    transform: translateZ(20px);
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px*9));
    }

}

.Slide-box>h1 {
    padding: 2vw;
    text-align: center
}

.Slide-box {
    padding: 3vw;
}





/* ==============================Carousel==================================== */



.carousel-main {
    min-height: 100vh;
    min-width: 100%;
    background-color: #777 !important;
    border-radius: 10px;
}

.carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: 70vw 100vh;
    background-repeat: no-repeat;
    min-width: 100%;
    box-sizing: border-box;
    text-Align: center;

}

.carousel-item p {
    color: #fff;
    font-size: 50px;
    position: relative;
    z-index: 99999;
}



.carousel-inner {
    min-height: 100vh;
    min-width: 100vh;


}

.carousel-item {
    color: #fff;
    position: relative;
    background-size: cover;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    animation: carouselimagezoom 70s infinite alternate;
    z-index: 1;
}

.carousel-item::before {
    z-index: 1;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background: rgb(17, 12, 14);
    background: radial-gradient(circle, #110c0e74 100%, rgba(238, 174, 202, 1) 100%, rgba(0, 0, 0, 1) 100%);
}


.Crousel-button {
    position: absolute;
    z-index: 10;
    border-radius: 5px;



    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ed5713;
    padding: 3vh 2vw;
    gap: 3px;
    color: white;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;

}

.Crousel-button:active {
    color: white;

}

.carousel-main {
    display: flex;
    justify-content: center;
    align-items: center;
}



@media (max-width: 768px) {


    .carousel-inner {
        min-height: 50vh;
        min-width: 100vh;
    }

    .carousel-main {
        min-height: 50vh;
        min-width: 100%;
        background-color: #777 !important;
    }

    .carousel-item p {
        color: #fff;
        font-size: 35px;
        max-width: 100vw;
        position: relative;
        z-index: 9;
    }
}




.CourseCard {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-radius: 3px;
}

.CourseCard>ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 21vw;
    height: 100%;
    border-radius: 4px;
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.75);
    transition: 1s ease-in-out;
    padding: 1vw;

}

.CourseCard>ul>li {
    display: flex;
    flex-direction: row;
    gap: 2px;
    align-items: center;
}

.CourseCard>ul>li>img {
    width: 100%;
    border-radius: 4px;
    height: 25vh;
}


.CourseCard>ul>li>a {
    color: var(--text-color);
    text-decoration: none;
    font-size: var(--font-size);
    font-weight: 600;
}


.CourseCard>ul>li>p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    color: #777;
    font-weight: 500;
}

.description-heading {
    color: black;
}





/* CourseDetails */

.CourseDetails {
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.course-hero-section {
    background-color:var(--yellow-color2); 
    height: 90vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80% 100%;
}

.course-hero-section>ul {
    padding: 8vw;
}

.course-hero-section>ul>li {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.course-hero-section>ul>li>button {
    padding: 3vh 4vw;
    background-color: var(--primary-color);
    color: var(--Footer-color);
    border: none;
    border-radius: 5px;
    font-size: 15px;
    max-width: 15vw;
    margin: 2vh 0vw;
}

.course-hero-section>ul>li>p {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.Curriculum-main {
    /* background-color: #dae5f1;
    background-image: linear-gradient(135deg, #dae5f1 0%, #E0C3FC 13%, #ffffff 53%);Remind
    ;
    */
    padding: 3vh 10vw;
}

.Curriculum-main>h1 {
    font-size: 70px;
}

.Curriculum {
    padding: 1vw;
    border-radius: 10px;
    border: 1px solid rgba(14, 57, 151, .53);

}

.section {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
}

.section-header h3 {
    margin: 0;
    font-size: 18px;
}

.icon {
    transition: transform 0.3s ease;
}

.icon.rotate {
    transform: rotate(45deg);
}

.section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background-color: #fff;
    padding: 0px 15px;
}

.section-content.open {
    max-height: 500px;
    /* Adjust based on content height */

}

.section-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.section-content li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.section-content li:last-child {
    border-bottom: none;
}


.Certificate {
    padding: 3vh 10vw;
    background-color: #afbce4;
    background-image: linear-gradient(135deg, #afbce4 3%, #f0e9f3 33%);

}

.Certificate>ul>li:nth-child(1) {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}

.Certificate>ul>li:nth-child(1)>div {
    width: calc(100%/2);
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 2vh 0vw;
    justify-content: center;
}

.Certificate>ul>li:nth-child(1)>div>button {
    max-width: 15vw;
    background-color: #21D4FD;
    background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);

    padding: 4vh 3vw;
    border: none;
    border-radius: 5px;
    color: var(--Footer-color);
    font-size: 15px;
}

.Certificate>ul>li:nth-child(1)>div>h1 {
    font-size: 70px;
    color: var(--primary-color);
}


.Certificate>ul>li:nth-child(1)>div>p {
    font-size: 20px;
    font-weight: 600;
}

.Certificate>ul>li:nth-child(1)>div>img {
    width: 100%;
}

.Certificate>ul>li:nth-child(2)>ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}



.Cardsection1 {
    padding: 2vh 0vw;

}

.Cardsection1>h2 {
    color: #1d1d1d;
}

.Cardsection1>ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 5vh 0vw;


}


.Cardsection1>ul>li {
    border: 1px solid rgba(52, 124, 208, .38);
    border-radius: 10px;
    padding: 25px;
    position: relative;
    z-index: 1;
    background: #ffffff5e;
    margin-bottom: 15px;
}



.Cardsection1>ul>li>img {
    width: 80px;

}

.Cardsection1>ul>li>h3 {
    color: #181818;
    font-size: 22px;
    padding: 2vh 0vw;
}

.Cardsection1>ul>li>p {
    color: #777;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.Faqs {
    display: flex;
    flex-direction: row;
}


.Remind {
    padding: 3vh 10vw;
}


.Remind>ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.Remind>ul>li:nth-child(1)>ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

.Remind>ul>li:nth-child(1)>ul>li:nth-child(1)>h1 {
    font-size: 50px;
}

.Remind>ul>li:nth-child(1)>ul>li:nth-child(2)>button {
    max-width: 15vw;
    background-color: #21D4FD;
    background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
    padding: 3vh 3vw;
    border: none;
    border-radius: 5px;
    color: var(--Footer-color);
    font-size: 15px;
}

.Remind>ul>li:nth-child(2)>ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.Remind>ul>li:nth-child(2)>ul>li {
    width: calc(100%/3);
    height: 50vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.Remind>ul>li:nth-child(2)>ul>li>ul {
    display: flex;
    flex-direction: column;

    background-color: #007bff4d;
    position: relative;
    top: 61%;

    padding: 5vh 1vw;

}

.Remind>ul>li:nth-child(2)>ul>li>ul>li>h3 {
    font-size: 24px;

}

.Remind>ul>li:nth-child(2)>ul>li>ul>li>a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}




/* Container for the entire component */
.payment-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    padding: 3vh 10vw;
}



/* Heading style */
.payment-container h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

/* Wrapper for the list and content */
.content-wrapper {
    display: flex;
    width: 100%;
    margin-top: 20px;
}

/* Left Side: List of Options */
.options-list {
    flex: 1;
    margin-right: 20px;
}

.options-list ul {
    list-style-type: none;
    padding: 0;
}

.options-list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 23px;
    cursor: pointer;
    background-color: #fff;
    margin-bottom: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.options-list li:hover {
    background-color: #f0f0f0;
}

.options-list li.selected {
    background-color: var(--yellow-color);
}

/* Right Side: Content for the Selected Option */
.content-display {
    flex: 2;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.content-display h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.content-display p {
    font-size: 16px;
    color: #333;
}













.Curriculum-main-payment {
    /* background-color: #dae5f1;
    background-image: linear-gradient(135deg, #dae5f1 0%, #E0C3FC 13%, #ffffff 53%);Remind
    ;
    */
    padding: 3vh 10vw;
}

.Curriculum-main-payment>h1 {
    font-size: 70px;
}

.Curriculum-payment {
    padding: 1vw;
    border-radius: 10px;
    border: 1px solid rgba(14, 57, 151, .53);

}

.section-payment {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.section-header-payment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
}

.section-header-payment h3 {
    margin: 0;
    font-size: 18px;
}

.icon-payment {
    transition: transform 0.3s ease;
}

.icon-payment.rotate {
    transform: rotate(90deg);
}

.section-content-payment {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background-color: #fff;
    padding: 0px 15px;
}

.section-content-payment.open {
    max-height: 500px;
    /* Adjust based on content height */

}

.Payment1 {
    display: none;
}

.section-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.section-content li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.section-content li:last-child {
    border-bottom: none;
}











/*====================================CONTACT US==============================*/


section {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8vh 7vw 8vh;
}


.container {
    position: relative;
    display: flex;
}

.container .contactInfo {
    top: 0px;
    background-color: #00598e;
    padding: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container .contactInfo h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

.container .contactInfo ul.info {
    position: relative;
    margin: 20px 0;
}

.container .contactInfo ul.info li {
    position: relative;
    list-style-type: none;
    display: flex;
    margin: 20px 0;
    cursor: pointer;
    align-self: flex-start;
}

.container .contactInfo ul.info li span:nth-child(1) {
    width: 30px;
    min-width: 30px;
}

.container .contactInfo ul.info li span img {
    max-width: 100%;
    filter: invert(1);
    opacity: 0.5;
}

.container .contactInfo ul.info li span:nth-child(2) {
    color: #fff;
    margin-left: 10px;
    font-weight: 300;
    opacity: 0.5;
}

.container .contactInfo ul.info li:hover span img,
.container .contactInfo ul.info li:hover span:nth-child(2) {
    opacity: 1;
}

.container .contactInfo ul.socialIcon {
    position: relative;
    display: flex;
}

.container .contactInfo ul.socialIcon li {
    list-style-type: none;
    margin-right: 15px;
}

.container .contactInfo ul.socialIcon li a img {
    filter: invert(1);
    opacity: 0.5;
}

.container .contactInfo ul.socialIcon li a img:hover {
    opacity: 1;
}

.container .contactForm {
    background-color: #fff;
    padding: 52px;
}

.container .contactForm h2 {
    color: #0f3959;
    font-size: 24px;
    font-weight: 500;
}

.container .contactForm .formBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}

.container .contactForm .formBox .inputBox {
    position: relative;
    margin: 0 0 35px 0;
}

.container .contactForm .formBox .inputBox.w50 {
    width: 47%;
}

.container .contactForm .formBox .inputBox.w100 {
    width: 100%;
}

.inputBox>textarea::placeholder {
    width: 100%;
    resize: none;
    font-size: 17px;
    color: #333333b0;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
}

.container .contactForm .formBox .inputBox input,
.container .contactForm .formBox .inputBox textarea {
    width: 100%;
    resize: none;
    padding: 10px 5px;
    font-size: 18px;
    color: #333;
    border: none;
    outline: none;
    border-bottom: 1px solid #777;
}

.container .contactForm .formBox .inputBox span {
    position: absolute;
    left: 5px;
    padding: 5px 0;
    pointer-events: none;
    font-size: 17px;
    font-weight: 300;
}


.container .contactForm .formBox .inputBox input[type="submit"] {
    position: relative;
    cursor: pointer;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px;
}

.container .contactForm .formBox .inputBox input[type="submit"]:hover {
    background-color: #ed5713;
    font-weight: 500;
}




@media (max-width: 768px) {
    .container {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    section {
        background-color: rgb(255, 255, 255);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2vh 1vw 2vh;
    }
    .container {
    width: var(--container-width);
    max-width: var(--max-container-width);
    margin: 0 auto;
    padding: 0px;
}

}






/*----------------------------------------------------Header */


.Blog {
    width: 100%;
    height: 80vh;
    color: #fff;
    position: relative;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    animation: carouselimagezoom 35s infinite alternate;
    z-index: 1;
}

.Blog::before {
    z-index: 1;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background: rgb(17, 12, 14);
    background: radial-gradient(circle, rgba(17, 12, 14, 0.418) 100%, rgba(238, 174, 202, 1) 100%, rgba(0, 0, 0, 1) 100%);
}

.carousel-inner {
    width: 100%;
    height: 80vh;
    color: #fff;
    position: relative;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    animation: carouselimagezoom 35s infinite alternate;
    z-index: 1;
}

.carousel-inner::before {
    z-index: 1;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background: rgb(17, 12, 14);
    background: radial-gradient(circle, rgba(17, 12, 14, 0.418) 100%, rgba(238, 174, 202, 1) 100%, rgba(0, 0, 0, 1) 100%);
}


.Blog:hover::before {
    z-index: 1;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background: rgb(17, 12, 14);
    background: radial-gradient(circle, rgba(17, 12, 14, 0.576) 100%, rgba(238, 174, 202, 1) 100%, rgba(0, 0, 0, 1) 100%);
}

.Blog>ul {
    top: 22%;
    left: 8%;
    display: flex;
    flex-direction: column;
    height: inherit;
    /* justify-content: start; */
    /* align-items: start; */
    z-index: 2;
    /* height: 75vh; */
    position: relative;
    /* width: 100%; */
}

.Blog>ul>li {
    display: flex;
    flex-direction: column;
}

.Blog>ul>li>h1 {
    text-align: start;
    padding-bottom: 3vh;
}

.Blog-top>ul {
    display: flex;
    flex-direction: column;
    text-align: start;
}

.Blog-top>ul>li {
    max-width: 480px;
    text-align: left;
    z-index: 3;
    pointer-events: none;
}

.Blog-top>ul>li:nth-child(3) {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.Blog-top>ul>li:nth-child(3)>p {
    font-size: 15px;
    margin-right: 5px;
}

.Blog-top>ul>li:nth-child(2)>p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 6;
    /* Limit to 3 lines */
    text-overflow: ellipsis;
}

.Blog-top>ul>li:nth-child(1)>h1 {
    padding-bottom: 2vh;
}

.Blog-top>ul>li:nth-child(2)>p {
    line-height: 4vh;
}






@media (max-width: 768px) {
    .CourseCard>ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 95vw;
    }
    .Blog>ul {
        top: 22%;
        left: 0%;
        display: flex;
        flex-direction: column;
        height: inherit;
        z-index: 2;
        position: relative;
        max-width: 100vw;
        padding: 6vw;
    }
}



/* ===========================ABOUT US */


.grid {
    padding: 10vh 5vw;
}

.grid>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 0.75);
}

.grid>ul>div {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: calc(100% / 3);
    height: 60vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 1vw;
    gap: 20px;
}

.grid>ul>div>p {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}



@media (max-width:786px) {
    .grid {
        padding: 5vh 5vw;
    }

    .grid>ul>div {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        height: 50vh;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        padding: 2vw;
        gap: 20px;

    }
  

    .container .contactForm .formBox .inputBox.w50 {
        width: 100%;
    }

    .container .contactForm {
        background-color: #fff;
        padding: 15px;
        border: 1px solid #00598e;
    }

}


.nave-logo{
    width: 100px;
}
























