/* VenJS 5.0 starter stylesheet */

@media screen and (min-width: 900px) {
    
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: white;
    color: #0f172a;
}

header{
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-image: linear-gradient(to right, #121214, #4A0856, #6B117B) ;
    color: white;
    position: fixed;
    z-index: 1000;
}

.logo{
    width: 120px;
    height: auto;
}

.mobile{
    display: none;
}

.mobile-nav-close{
    display: none;
}

nav{
    width: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav p{
    cursor: pointer;;
}

nav p:hover{
    color: navy;
}

.auth-buttons{
    padding: 8px 16px;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    width: 250px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.login-btn{
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100px;
    height: 40px;
    border-radius: 30px;
}

.signup-btn{
   background: white;
    color: #0f172a;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100px;
    height: 40px;
    border-radius: 30px;
}

.main-title{
    font-size: 5rem;
    font-weight: 700;
    margin-top: 40px;
    color: black;
    text-align: center;
    font-weight: 800;
}

.highlight{
    color: #EAB308;
}

main{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sub{
    color: rgb(168, 162, 162);
    text-align: center;
}

.hero-image{
    width: 80%;
    height: auto;
    border-radius: 30px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
}

.active-learner{
    width: 200px;
    height: 70px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.527);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
   /* margin-top: 550px;*/
   z-index: 1000;
}

.active-learner-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #EAB308;
    padding: 5px;
}

.al-content{
    display: flex;
    flex-direction: column;
    color: white;
}

.al-content p:first-child{
    font-weight: 600;
    font-size: 25px;
}

.al-content p:last-child{
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.btn-group{
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto;
    gap: 20px;
    height: auto;
}

.explore{
    width: 230px;
    height: 60px;
    background-image: linear-gradient(to right, #6B117B, #EC4899);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    gap: 10px;
    border: none;
    font-size: 18px;
    font-weight: 600;
}

.join{
    width: 230px;
    height: 60px;
    background-image: linear-gradient(to right, #121214, #4A0856, #6B117B);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    gap: 10px;
    border: none;
    font-size: 18px;
    font-weight: 600;
}

/*Continued*/

section{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.aside-left{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aside-text{
    color: black;
    font-size: 1.5rem;
}

.aside-sub{
    color: black;
    font-size: 14px;
}

.aside-right{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: right;
    padding-right: 20px;
}

.left-btn{
    width: 50px;
    height: 50px;
    border: 1px solid rgb(243, 241, 241);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    background-color: transparent;
}


.right-btn{
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-image: linear-gradient(to right, #6B117B, #EC4899);
}

/* Container for the cards */
.course-cards {
    display: flex;
    overflow-x: auto; /* Enables horizontal scroll */
    gap: 2rem;
    justify-content: space-evenly;
    padding: 2rem 1rem;
    scroll-snap-type: x mandatory; /* Makes cards snap into place */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #312e81 #050505; /* MVA scrollbar colors */
}

/* Custom Scrollbar for Chrome/Safari */
.course-cards::-webkit-scrollbar {
    height: 6px;
}
.course-cards::-webkit-scrollbar-track {
    background: #050505;
}
.course-cards::-webkit-scrollbar-thumb {
    background: #312e81; /* Indigo 800 */
    border-radius: 10px;
}

/* Individual Card Styling */
.card {
    flex: 0 0 320px; /* Prevents cards from shrinking */
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.03); /* Glass effect */
    backdrop-filter: blur(12px);
    border: 1px solid #6B117B;
    border-radius: 2rem;
    padding: 1.5rem;
    transition: all 0.5s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.4); /* Indigo 600 glow */
    background: rgba(255, 255, 255, 0.05);
}

/* Card Content */
.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #6B117B;
}

.card-description {
    color: #9ca3af; /* Gray 400 */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Enrollment Button */
.enroll-btn {
    width: 100%;
    padding: 0.8rem;
    background-image: linear-gradient(to right, #6B117B, #EC4899); /* Indigo 600 */
    color: white;
    font-weight: 700;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.enroll-btn:hover {
    background: #818cf8; /* Indigo 400 */
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}


.hero-our{
    width: 100%;
    height: auto;
    padding: 20px;
}

.ocm{
    display: flex;
    justify-content: center;
    gap:10px;
    align-items: center;
}

.content-side{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.content-side h2{
    font-size: 2rem;
    font-weight: 700;
    color: #6B117B;
}

.content-side p{
    color: black;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.mission-image{
    width: 100%;
    height: auto;
    border-radius: 30px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
}


.our-title{
    font-size: 2rem;
    font-weight: 700;
    color: #6B117B;
}

.our-sub{
    color: black;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.live-image{
    width: 80%;
    height: auto;
    border-radius: 30px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    margin: 30px auto;
    display: flex;
}

.gta{
    width: 200px;
    height: 50px;
    border-radius: 30px;
    background-color: #6B117B;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    border: none;
    margin: 10px auto;
}

.testimonials{
    width: 100%;
    height: 550px;
    padding-top: 50px;
    padding-bottom: 30px;
    background-image: linear-gradient(to right, #121214, #4A0856, #6B117B);
}






.testimonials-section {
    width: 100%;
    padding: 80px 20px;
    background: #0a0a0a; /* Slightly lighter than body for contrast */
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-title {
    font-size: 2.5rem;
    color: #EAB308;
    font-weight: 800;
    margin-bottom: 15px;
}

.testimonial-subtitle {
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.t-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 24px;
    transition: 0.3s ease;
}

.t-card:hover {
    border-color: #4f46e5;
    background: rgba(79, 70, 229, 0.05);
}

.highlight-card {
    border-color: rgba(79, 70, 229, 0.3);
    background: rgba(79, 70, 229, 0.05);
}

.t-rating {
    color: #fbbf24; /* Gold stars */
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.t-text {
    color: #e5e7eb;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #EAB308;
}

.t-name {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.t-location {
    color: #6b7280;
    font-size: 0.85rem;
}

.how-we{
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    color: white;
    margin-top: 40px;
}

.how-title{
    color: #EAB308;
}

.teaching-methods{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 40px;
}

.method{
    width: 300px;
    height: 160px;
    background-image:/* rgba(255, 255, 255, 0.03)*/ linear-gradient(to right, #6B117B, rgba(107, 17, 123, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.03);
}

.method:hover{
    transform: translateY(-10px);
}

.method h3{
    font-size: 18px;
    font-weight: 700;
    color: #EAB308;
    margin-bottom: 10px;
}

.method p{
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

.suber{
    font-size: 14px;
    color: black;
}

.common{
    width: 100%;
    min-height: 200px;
    background-color: rgba(255, 255, 255, 0.03);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;

    flex-direction: column;
}

.faq-container{
    width: 100%;
    max-width: 800px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.faq-item{
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid #6B117B;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover{
    border-color: rgba(79, 70, 229, 0.4);
}

.faq-item.active{
    border-color: #EAB308;
}

.faq-question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: white;
}

.faq-question h3{
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    color: black;
}

.faq-icon{
    color: #818cf8;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-item.active .faq-icon{
    transform: rotate(180deg);
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    color: #27292a;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer{
    max-height: 200px;
    padding: 0 20px 20px;
}
footer{
    background-image: linear-gradient(to right, #121214, #4A0856, #6B117B);
    width: 100%;
    min-height: 200px;
    padding: 1em;
}

.footer{
    background-image: linear-gradient(to right, #121214, #4A0856, #6B117B);
    width: 100%;
    min-height: 200px;
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
}

.school{
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    color: white;
    padding: 20px;
}

.expl{
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    color: white;
    padding: 20px;
}

.expl h3{
font-weight: 400;
font-size: 13px;
}



.academy{
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    color: white;
    padding: 20px;
}

.update{
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    color: white;
    padding: 20px;
}

.academy h3{
font-weight: 400;
font-size: 13px;
}

.update h3{
font-weight: 400;
font-size: 15px;
}


.link{
    color: grey;
    text-decoration: none;
    font-family: "IBM Plex Sans", sans-serif;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 500;
}

.link:hover{
    color: #818cf8;
}

.upd{
    color: grey;
    text-decoration: none;
    font-family: "IBM Plex Sans", sans-serif;
    cursor: pointer;
    font-weight: 500;
    margin-top: 10px;
}

.input-field{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid grey;
}

.input{
    width: 72%;
    height: 50px;
    border: none;
    background-color: transparent;
    outline: none;
    color: grey;
    padding: 10px;
}

.send-btn{
    width: 25%;
    height: 40px;
    border: none;
    border-radius: 10px;
    background-image: linear-gradient(to right, #6B117B, #EC4899);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line{
    width: 100%;
    height: 2px;
    background-color: grey;
}

.footer-text{
    margin: 20px auto;
    color: grey;
    display: block;
    text-align: center;
    font-weight: 500;
    font-size: 12px ;
}


.built{
    color: grey;
    display: block;
    text-align: center;
}


/*
******************************
About us page styling
***********************************

*/

.about-hero{
    width: 100%;
    height: 350px;
    background-image:linear-gradient(to right, #121214, #4A0856, #6B117B);
    border-bottom: 1px solid #3730a3;
    padding: 20px;
}

.about-hero-text{
    width: 130px;
    height: 30px;
    display: flex;
    border: 1px solid #3730a3;
    border-radius: 20px;
    padding: 5px 10px;
    color: white;
    justify-content: center;
    gap: 5px;
    background-color: #3830a360;
    margin: 20px auto;
}

.about-title{
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    width: 600px;
    flex-flow: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    gap: 5px;
}

.about-sub{
    color: rgb(233, 233, 233);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    width: 600px;
    margin: 20px auto;
}

.about-content{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #6B117B;
}

.about-content-item{
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    background-image: linear-gradient(to right, #121214, #4A0856, #6B117B);
    border: 1px solid #EAB308;
    transition: all 0.3s ease;
}

.about-content-item:hover{
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.4);
    background: grey;
}

.about-content-item h3{
    font-size: 30px;
    font-weight: 700;
    color: #EAB308;
    margin-bottom: 10px;
}

.about-content-item p{
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

.from-about{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    gap: 10px;
    border-bottom: 1px solid #3730a3;
}

.map-container{
    width: 40%;
    height: 300px;
    background-image: linear-gradient(to right, #6B117B, #EC4899);
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.map-container:hover{
    transform: translateY(-10px);
    border-color: none;
    background: #EAB308;
    color: black;
}

.map-container i{
    font-size: 50px;
    color: #EAB308;
}

.map-container p{
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

.about-desc{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.about-desc h2{
    font-size: 2rem;
    font-weight: 700;
    color: #6B117B;
    margin-bottom: 20px;
}

.about-desc p{
    color: rgb(18, 18, 18);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.drive{
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
}

.driv{
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
}

.drive h1{
    font-size: 2rem;
    font-weight: 700;
    color: #EAB308;
    text-align: center;
    margin-bottom: 5px;
}

.drive p{
    color: #6B117B;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    text-align: center;
}

.drive-place{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
}

.drive-item{
    width: 30%;
    height: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 20px;
    background-image:linear-gradient(to right, #121214, #4A0856, #6B117B) ;
    transition: all 0.3s ease;
}

.drive-item:hover{
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.drive-item i{
    width: 50px;
    height: 50px;
    border-radius: 20px;
    background-color: #EAB308;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B117B;
}

.text-h{
    font-size: 20px;
    font-weight: 700;
    color: #EAB308;
}

.drive-desc{
    font-size: 12px;
    line-height: 1.6;
    color: rgb(133, 129, 129);
}

.mentors{
    background-color: rgb(220, 220, 220);
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    margin-top: 50px;
}

.mentor-title{
    color: #6B117B;
    text-align: center;
    font-size: 30px;
}

.mentor-sub{
    text-align: center;
    color: black;
}

.mentor-item{
    width: 30%;
    min-height: 150px;
    background-color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.mentor-con{
    padding: 20px;
    width: 100%;
}

.mentor-img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border: none;
    margin-bottom: 10px;
    border-top-left-radius:15px ;
    border-top-right-radius: 15px;
}

#mentor-slider .racket-viewport-wrapper{
    flex: 0 0 100%;
    max-width: 100%;
}

#mentor-slider .racket-track .mentor-item{
    width: 100%;
}

#mentor-slider .racket-track > div{
    min-width: calc(100% / 3);
}

.join--{
    width: 100%;
    min-height: 300px;
    background-image:linear-gradient(to right, #121214, #4A0856, #6B117B);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.join-- h1{
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.join-- p{
    color: white;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.exc{
    width: 200px;
    height: 50px;
    border: none;
    border-radius: 30px;
    background-color: #eab308;
    color:white ;
    font-weight: 600;
    cursor: pointer;
}

.cont-btn{
    width: 150px;
    height: 50px;
    border: none;
    background-color: white ;
    color: #0f172a;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 600;
}

/*Tab active indicator*/
.active{
    border-bottom: 2px solid #9D4EDD;
    font-weight: 600;
    color: #EAB308;
}

.search-field{
    width: 400px;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid grey;
    justify-content: center;
}

.search-input{
    width:300px ;
    height: 40px;
    border: none;
    background-color: transparent;
    outline: none;
    color: grey;
    padding: 10px;
}


.search-btn{
    width: 100px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background-image: linear-gradient(to right, #6B117B, #EC4899);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cdi{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    padding: 20px;
}

.cdi-item{
    width: 30%;
    height: 110px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.cdi-item:hover{
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.4);
}

.cdi-item h2{
    font-size: 2em;
    font-weight: 800;
    color: #EAB308;
    margin-bottom: 0px;
}

.cdi-item p{
    color: rgb(168, 168, 168);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.popular{
    width: 80%;
    height: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    flex-direction: column;
    background-image: linear-gradient(to right, #6B117B, rgba(107, 17, 123, 0.7));
    border-radius: 30px;
    margin: 20px auto;
    justify-content: first baseline;
}

.mpc{
    width: 160px;
    height: auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: #eab308;
    gap: 5px;
    border: 1px solid #eab20865;
}

.mpc p{
    font-size: 12px;
    font-weight: 600;
}

.popular h2{
    color: white;
    font-size: 18px;
    font-weight: 700
}

.pop-p{
    color: rgb(206, 206, 206);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;

}

.pop-btn{
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 30px;
    background-color: #ffffff;
    color: #0f172a;
    font-weight: 600;
    cursor: pointer;
}


.course-list{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    flex-direction: column;
    flex-flow: wrap;
    gap: 20px;
}

.course-carf{
  width: 320px;
  height: 460px auto;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #6B117B;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 1em;
}

.course-carf:hover{
  transform: translateY(-10px);
  border-color: rgba(79, 70, 229, 0.4);
}

.course-carf img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}


.pop-c{
    width: 70px;
    height: auto;
    border-radius: 120px;

}

.found-mentor{
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: wrap;
    justify-content: space-evenly;
    padding: 10px;
    align-items: center;
    gap: 20px;
}

.found-mentor-item{
    width: 30%;
    height: 550px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 20px;
    background-color: white;
    border: 1px solid #6B117B;
    transition: all 0.3s ease;
}

.found-mentor-item:hover{
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.4);
}

.found-mentor-item h2{
    font-size: 2em;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0px;
}

.found-mentor-item p{
    color: rgb(168, 168, 168);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;    
}

.mentor-btn{
    width: 90%;
    height: 40px;
    border: none;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid #4f46e5;
    color: #4f46e5;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
}

.mentors-img{
    width: 98%;
    height: auto;
    border-radius: 20px;
    object-fit: cover
}

.mentors-name{
    color: rgb(28, 28, 28);
}


.contact-infos{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px
}

.contact-info{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10px;
  width: 48%;
  height: auto;
}

.contact-card{
    width: 90%;
    height: 100px auto;
    border-radius: 10px;
    background-color:#6B117B ;
    border: 1px solid rgba(255, 255, 255, 0.01);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.align{
    width: 100%;
    height: auto;
    display: flex;
    gap: 10px;
}

.contact-form{
    width: 49%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;

}

.con{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #EAB308;
    display: flex;
    justify-content: center;
    color: #6B117B;
    padding: 12px;
    flex-direction: column;
    font-size: 23px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}


.conw{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #EAB308;
    display: flex;
    justify-content: center;
    color: #6B117B;
    padding: 14px;
    flex-direction: column;
    font-size: 23px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}


.conl{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #EAB308;
    display: flex;
    justify-content: center;
    color: #6B117B;
    padding: 14px;
    flex-direction: column;
    font-size: 23px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}


.seperate{
    display: flex;
    flex-direction: column;
}


.seperate h3{
    color: #EAB308;
    font-size: 15px;
}

.seperate p{
    color: rgb(192, 187, 187);
    font-size: 12px;
}

.a{
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
}

/*contact form*/
.form{
    width: 100%;
    height:100px auto;
    background-color: rgb(43, 40, 40);
    border: 1px solid rgba(255, 255, 255, 0.08);;
    display: block;
    color: white;
    padding: 1em;
    border-radius: 10px;
    ;
}

.inputt{
    width: 90%;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px;
    color: rgb(196, 196, 196);
    margin: 5px;
}

.textarea{
    width: 90%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px;
    color: rgb(196, 196, 196);
    margin: 5px;
}

.cs-btn{
    width: 95%;
    height: 40px;
    border-radius: 10px;
    background-color: #6B117B;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin: 10px auto;
}


/*
*******************
Login Page
*******************
*/

.loginBody{
    background-color: #818cf8;
    width: 100%;
    height: 100vh;
    display: block;
    position: fixed;
    overflow-y: scroll;
}

.emulator{
    width: 400px;
    height: 600px;
    border-radius: 20px;
    background-color: #4f46e5;
    display: flex;
    flex-direction: column;
    margin: 40px auto;
    justify-content: space-between;
}



.formSide{
    width: 100%;
    height: 400px;
    background-color: white;
    bottom: 0;
    display: flex;
    flex-direction: column;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-top: 30px;
    padding-left: 12px;
    padding-right: 12px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.epD{
    width: 100%;
    height: 100px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5em;
    gap: 10px;
}

.Linput{
    width: 100%;
    height: 50px;
    border: 2px solid #4f46e5;
    background-color: transparent;
    padding: 10px;
    border-radius: 10px;
    margin: 5px auto;
    color: black;
    outline: none;
}

.Linput::placeholder{
    color: grey;
}

.Lbtn{
    width: 95%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 1em;
    background-color: #4f46e5;
    color: white;
    align-items: center;
    border: none;
    justify-content: center;
    margin: 20px auto;
    cursor: pointer;
}

.Lbtn:disabled{
    cursor: not-allowed;
    opacity: 0.75;
}

.auth-status{
    width: 95%;
    min-height: 18px;
    margin: 8px auto 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.auth-status.info{
    color: #4f46e5;
}

.auth-status.success{
    color: #047857;
}

.auth-status.error{
    color: #dc2626;
}

.footing{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}


.dha{
    font-size: 13px;
}

.flink{
    color: blue;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
}

.emulatorr{
    width: 400px;
    height: 600px auto;
    border-radius: 20px;
    background-color: #4f46e5;
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    justify-content: space-between;
}


.formSider{
    width: 100%;
    height: 400px auto;
    background-color: white;
    bottom: 0;
    display: flex;
    flex-direction: column;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-top: 30px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom:20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.ced{
    display:flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.LRinput{
    width: 100%;
    height: 50px;
    border: 2px solid #4f46e5;
    background-color: transparent;
    padding: 10px;
    border-radius: 10px;
    margin: 5px auto;
    color: black;
    outline: none;
    position: relative;
}

.courses{
    position: absolute;
    display: none;/*initial display flex*/
    flex-direction: column;
    width: 370px;
    height: 100px auto;
    background-color:rgb(241, 241, 241);
    border-radius: 0px;
    padding: 1em;
    margin-top:19px;
    margin-left: 3px;
}

.course-holder{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 35px;
}

.course-holder input{
    width: 18px;
    height: 18px;
    color: blue;
    background-color: blue ;
    cursor: pointer;
}

.course-holder p{
    font-weight: bold;
}

.cta{
    width:80px;
    height: 30px;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid black;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-left: 250px;
    cursor: pointer;
}

.cta:hover{
    background-color: #3730a3;
    border: none;
    color: white
}











}




























/* VenJS 5.0 starter stylesheet */

@media screen and (max-width: 899px) {
    
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: white;
    color: #0f172a;
}

header{
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-image: linear-gradient(to right, #121214, #4A0856, #6B117B) ;
    color: white;
    position: fixed;
    z-index: 1000;
}

.logo{
    width: 80px;
    height: auto;
}

.mobile{
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.8);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile:hover{
    background: rgba(255,255,255,.12);
}

.mobile:hover i{
    color:#fbbf24;
}

.mobile i{
    font-size: 18px;
    color: white;
    transition: color .2s ease;
}

nav{
    width: 100%;
    max-width: 280px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 0;
    background: #111827;
    padding: 10px 24px 32px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.25,1,.5,1);
    z-index: 1001;
    overflow-y: auto;
}

body.mobile-nav-open nav{
    transform: translateX(0);
}

.nav-close-btn{
    align-self: flex-end;
    background: none;
    border: none;
    color: #e5e7eb;
    font-size: 22px;
    cursor: pointer;
    padding: 8px 4px;
    line-height: 1;
    margin-bottom: 20px;
    transition: color .15s ease;
}

.nav-close-btn:hover{
    color: #818cf8;
}

nav p{
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    color: #d1d5db;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: color .15s ease, padding-left .15s ease;
}

.mobile-nav-close{
    cursor: pointer;
    font-size: 16px;
    color: #d1d5db;
    text-align: right;
    padding: 10px 0 0;
    border-bottom: none;
    border-top: 1px solid rgba(255,255,255,.08);
    transition: color .15s ease;
}

.mobile-nav-close:hover{
    color: #818cf8;
}

nav p.active{
    color: #818cf8;
    font-weight: 600;
}

.auth-buttons{
    padding: 8px 16px;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    width: 190px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.login-btn{
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 90px;
    height: 40px;
    border-radius: 30px;
}

.signup-btn{
   background: white;
    color: #0f172a;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100px;
    height: 40px;
    border-radius: 30px;
    font-size: 12px;
}

.main-title{
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 40px;
    color: black;
    text-align: center;
    font-weight: 800;
    margin-bottom: 10px;
}

.highlight{
    color: #EAB308;
}

main{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.sub{
    color: rgb(168, 162, 162);
    text-align: center;
}

.hero-image{
    width: 100%;
    height: auto;
    border-radius: 30px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
}

.active-learner{
    width: 200px;
    height: 70px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.527);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-top: 100px;
    z-index: 1000;
}

.active-learner-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #EAB308;
    padding: 5px;
}

.al-content{
    display: flex;
    flex-direction: column;
    color: white;
}

.al-content p:first-child{
    font-weight: 600;
    font-size: 25px;
}

.al-content p:last-child{
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.btn-group{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto;
    gap: 20px;
    height: auto;
    flex-direction: column;
}

.explore{
    width: 230px;
    height: 60px;
    background-image: linear-gradient(to right, #6B117B, #EC4899);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    gap: 10px;
    border: none;
    font-size: 18px;
    font-weight: 600;
}

.join{
    width: 230px;
    height: 60px;
    background-image: linear-gradient(to right, #121214, #4A0856, #6B117B);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    gap: 10px;
    border: none;
    font-size: 18px;
    font-weight: 600;
}







/*Continued*/

section{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    flex-direction: column;
}

.aside-left{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aside-text{
    color: black;
    font-size: 1.5rem;
}

.aside-sub{
    color: black;
    font-size: 14px;
}

.aside-right{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: right;
    padding-right: 20px;
    margin-top: 30px;
}

.left-btn{
    width: 40px;
    height: 40px;
    border: 1px solid rgb(243, 241, 241);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    background-color: transparent;
}

.aside-text{
    font-size: 30px;
}



.right-btn{
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-image: linear-gradient(to right, #6B117B, #EC4899);
}

.aside-text{
    font-size: 30px;
}




.right-btn{
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-image: linear-gradient(to right, #6B117B, #EC4899);
}

/* Container for the cards */
.course-cards {
    display: flex;
    overflow-x: auto; /* Enables horizontal scroll */
    gap: 2rem;
    justify-content: space-evenly;
    padding: 2rem 1rem;
    scroll-snap-type: x mandatory; /* Makes cards snap into place */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #312e81 #050505; /* MVA scrollbar colors */
    flex-direction: row;
}

/* Custom Scrollbar for Chrome/Safari */
.course-cards::-webkit-scrollbar {
    height: 6px;
}
.course-cards::-webkit-scrollbar-track {
    background: #050505;
}
.course-cards::-webkit-scrollbar-thumb {
    background: #312e81; /* Indigo 800 */
    border-radius: 10px;
}

/* Individual Card Styling */
.card {
    flex: 0 0 320px; /* Prevents cards from shrinking */
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.03); /* Glass effect */
    backdrop-filter: blur(12px);
    border: 1px solid #6B117B;
    border-radius: 2rem;
    padding: 1.5rem;
    transition: all 0.5s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.4); /* Indigo 600 glow */
    background: rgba(255, 255, 255, 0.05);
}

/* Card Content */
.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #6B117B;
}

.card-description {
    color: #9ca3af; /* Gray 400 */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Enrollment Button */
.enroll-btn {
    width: 100%;
    padding: 0.8rem;
    background-image: linear-gradient(to right, #6B117B, #EC4899);
    color: white;
    font-weight: 700;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.enroll-btn:hover {
    background: #818cf8; /* Indigo 400 */
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}


.hero-our{
    width: 100%;
    height: auto;
    padding: 20px;
}

.ocm{
    display: flex;
    justify-content: center;
    gap:10px;
    align-items: center;
    flex-direction: column;
}

.content-side{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.content-side h2{
    font-size: 2rem;
    font-weight: 700;
    color: #6B117B;
}

.content-side p{
    color: black;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.mission-image{
    width: 100%;
    height: auto;
    border-radius: 30px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
}


.our-title{
    font-size: 2rem;
    font-weight: 700;
    color: #6B117B;
}

.our-sub{
    color: black;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.live-image{
    width: 100%;
    height: auto;
    border-radius: 30px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    margin: 30px auto;
    display: flex;
}

.gta{
    width: 200px;
    height: 50px;
    border-radius: 30px;
    background-color: #6B117B;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    border: none;
    margin: 10px auto;
}

.testimonials{
    width: 100%;
    height: auto;
    padding-top: 50px;
    padding-bottom: 30px;
    background-image: linear-gradient(to right, #121214, #4A0856, #6B117B);
}






.testimonials-section {
    width: 100%;
    padding: 80px 20px;
    background: #0a0a0a; /* Slightly lighter than body for contrast */
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-title {
    font-size: 2.5rem;
    color: #EAB308;
    font-weight: 800;
    margin-bottom: 15px;
}

.testimonial-subtitle {
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.t-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 24px;
    transition: 0.3s ease;
}

.t-card:hover {
    border-color: #4f46e5;
    background: rgba(79, 70, 229, 0.05);
}

.highlight-card {
    border-color: rgba(79, 70, 229, 0.3);
    background: rgba(79, 70, 229, 0.05);
}

.t-rating {
    color: #fbbf24; /* Gold stars */
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.t-text {
    color: #e5e7eb;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #EAB308;
}

.t-name {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.t-location {
    color: #6b7280;
    font-size: 0.85rem;
}

.how-we{
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    color: white;
    margin-top: 40px;
    flex-direction: column;
}

.how-title{
    color: #EAB308;
}

.teaching-methods{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 40px;
    flex-direction: column;
}

.method{
    width: 90%;
    height: auto;
    background-image: linear-gradient(to right, #6B117B, rgba(107, 17, 123, 0.7));
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.method:hover{
    transform: translateY(-10px);
}

.method h3{
    font-size: 18px;
    font-weight: 700;
    color: #EAB308;
    margin-bottom: 10px;
}

.method p{
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

.suber{
    font-size: 14px;
}

.common{
    width: 100%;
    min-height: 200px;
    background-color: rgba(255, 255, 255, 0.03);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;

    flex-direction: column;
}















.faq-container{
    width: 100%;
    max-width: 800px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.faq-item{
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid #6B117B;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover{
    border-color: rgba(79, 70, 229, 0.4);
}

.faq-item.active{
    border-color: #EAB308;
}

.faq-question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: white;
}

.faq-question h3{
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    color: black;
}

.faq-icon{
    color: #818cf8;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-item.active .faq-icon{
    transform: rotate(180deg);
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.active .faq-answer{
    max-height: 200px;
    padding: 0 20px 20px;
}




footer{
    background-image: linear-gradient(to right, #121214, #4A0856, #6B117B);
    width: 100%;
    min-height: 200px;
    padding: 1em;
}

.footer{
    background-image: linear-gradient(to right, #121214, #4A0856, #6B117B);
    width: 100%;
    min-height: 200px;
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
    flex-direction: column;
}

.school{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    color: white;
    padding: 20px;
}

.expl{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    color: white;
    padding: 20px;
}

.expl h3{
font-weight: 400;
font-size: 13px;
}



.academy{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    color: white;
    padding: 20px;
}

.update{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    color: white;
    padding: 20px;
}

.academy h3{
font-weight: 400;
font-size: 13px;
}

.update h3{
font-weight: 400;
font-size: 15px;
}


.link{
    color: grey;
    text-decoration: none;
    font-family: "IBM Plex Sans", sans-serif;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 500;
}

.link:hover{
    color: #818cf8;
}

.upd{
    color: grey;
    text-decoration: none;
    font-family: "IBM Plex Sans", sans-serif;
    cursor: pointer;
    font-weight: 500;
    margin-top: 10px;
}

.input-field{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 0px;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin: 10px auto;
    padding: 5px;
    border: 1px solid grey;
}

.input{
    width: 80%;
    height: 50px;
    border: none;
    background-color: transparent;
    outline: none;
    color: grey;
    padding: 10px;
}

.send-btn{
    width: 20%;
    height: 40px;
    border: none;
    border-radius: 10px;
    background-image: linear-gradient(to right, #6B117B, #EC4899);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line{
    width: 100%;
    height: 2px;
    background-color: grey;
}

.footer-text{
    margin: 20px auto;
    color: grey;
    display: block;
    text-align: center;
    font-weight: 500;
    font-size: 12px ;
}


.built{
    color: grey;
    display: block;
    text-align: center;
}




/*
******************************
About us page styling
***********************************

*/

.about-hero{
    width: 100%;
    height: 350px auto;
    background-image:linear-gradient(to right, #121214, #4A0856, #6B117B);
    border-bottom: 1px solid #3730a3;
    padding: 20px;
}

.about-hero-text{
    width: 130px;
    height: 30px;
    display: flex;
    border: 1px solid #3730a3;
    border-radius: 20px;
    padding: 5px 10px;
    color: white;
    justify-content: center;
    gap: 5px;
    background-color: #3830a360;
    margin: 20px auto;
}

.about-title{
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    width: 95%;
    flex-flow: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    gap: 5px;
}

.about-sub{
    color: rgb(233, 233, 233);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    width: 95%;
    margin: 20px auto;
}

.about-content{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #3730a3;
}

.about-content-item{
    width: 95%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    background-image: linear-gradient(to right, #121214, #4A0856, #6B117B);
    border: 1px solid #EAB308;
    transition: all 0.3s ease;
}

.about-content-item:hover{
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.about-content-item h3{
    font-size: 30px;
    font-weight: 700;
    color: #EAB308;
    margin-bottom: 10px;
}

.about-content-item p{
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

.from-about{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    gap: 10px;
    border-bottom: 1px solid #3730a3;
}

.map-container{
    width: 95%;
    height: 300px;
    background-image: linear-gradient(to right, #6B117B, #EC4899);
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.map-container:hover{
    transform: translateY(-10px);
    border-color: none;
    background: #EAB308;
    color: black;
}

.map-container i{
    font-size: 50px;
    color: #EAB308;
}

.map-container p{
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

.about-desc{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.about-desc h2{
    font-size: 2rem;
    font-weight: 700;
    color: #6B117B;
    margin-bottom: 20px;
}

.about-desc p{
    color: rgb(211, 211, 211);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.drive{
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
}

.driv{
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
}

.drive h1{
    font-size: 2rem;
    font-weight: 700;
    color: #EAB308;
    text-align: center;
    margin-bottom: 5px;
}

.drive p{
    color: #6B117B;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    text-align: center;
}

.drive-place{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    gap: 20px;
}

.drive-item{
    width: 95%;
    height: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 20px;
    background-image:linear-gradient(to right, #121214, #4A0856, #6B117B) ;
    transition: all 0.3s ease;
}

.drive-item:hover{
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.drive-item i{
    width: 50px;
    height: 50px;
    border-radius: 20px;
    background-color: #EAB308;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B117B;
}

.text-h{
    font-size: 20px;
    font-weight: 700;
    color: #EAB308;
}

.drive-desc{
    font-size: 14px;
    line-height: 1.6;
    color: rgb(211, 211, 211);
}

.mentors{
    background-color: rgb(220, 220, 220);
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    margin-top: 50px;
}

.mentor-title{
    color: #6B117B;
    text-align: center;
    font-size: 25px;
}

.mentor-sub{
    text-align: center;
}

.mentor-item{
    width: 30%;
    min-height: 150px;
    background-color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.mentor-con{
    padding: 20px;
    width: 100%;
}

.mentor-img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border: none;
    margin-bottom: 10px;
    border-top-left-radius:15px ;
    border-top-right-radius: 15px;
}

#mentor-slider .racket-viewport-wrapper{
    flex: 0 0 100%;
    max-width: 100%;
}

#mentor-slider .racket-track .mentor-item{
    width: 100%;
}

#mentor-slider .racket-track > div{
    min-width: calc(100% / 3);
}

.join--{
    width: 100%;
    min-height: 300px;
    background-image:linear-gradient(to right, #121214, #4A0856, #6B117B);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.join-- h1{
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.join-- p{
    color: white;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.exc{
    width: 200px;
    height: 50px;
    border: none;
    border-radius: 30px;
    background-color: #eab308;
    color:white ;
    font-weight: 600;
    cursor: pointer;
}

.cont-btn{
    width: 150px;
    height: 50px;
    border: none;
    background-color: white ;
    color: #0f172a;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 600;
}

/*Tab active indicator*/
.active{
    border-bottom: 2px solid #9D4EDD;
    font-weight: 600;
    color: #EAB308;
}

.search-field{
    width: 95%;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid grey;
    justify-content: space-between;
}

.search-input{
    width:80% ;
    height: 40px;
    border: none;
    background-color: transparent;
    outline: none;
    color: grey;
    padding: 10px;
}


.search-btn{
    width: 20%;
    height: 40px;
    border: none;
    border-radius: 10px;
    background-image: linear-gradient(to right, #6B117B, #EC4899);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cdi{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    padding: 20px;
}

.cdi-item{
    width: 95%;
    height: 110px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.cdi-item:hover{
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.4);
}

.cdi-item h2{
    font-size: 2em;
    font-weight: 800;
    color: #EAB308;
    margin-bottom: 0px;
}

.cdi-item p{
    color: rgb(168, 168, 168);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.popular{
    width: 95%;
    height:  auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    flex-direction: column;
    background-image: linear-gradient(to right, #6B117B, rgba(107, 17, 123, 0.7));
    border-radius: 30px;
    margin: 20px auto;
    justify-content: first baseline;
}

.mpc{
    width: 160px;
    height: auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: #eab308;
    gap: 5px;
    border: 1px solid #eab20865;
}

.mpc p{
    font-size: 12px;
    font-weight: 600;
}

.popular h2{
    color: white;
    font-size: 18px;
    font-weight: 700
}

.pop-p{
    color: rgb(206, 206, 206);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;

}

.pop-btn{
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 30px;
    background-color: #ffffff;
    color: #0f172a;
    font-weight: 600;
    cursor: pointer;
}


.course-list{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    flex-direction: column;
    flex-flow: wrap;
    gap: 20px;
}

.course-carf{
  width: 320px;
  height: 460px auto;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #6B117B;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 1em;
}

.course-carf:hover{
  transform: translateY(-10px);
  border-color: rgba(79, 70, 229, 0.4);
}

.course-carf img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}


.pop-c{
    width: 70px;
    height: auto;
    border-radius: 120px;

}

.found-mentor{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-flow: wrap;
    justify-content: space-evenly;
    padding: 10px;
    align-items: center;
    gap: 20px;
}

.found-mentor-item{
    width: 95%;
    height: 550px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid #6B117B;
    transition: all 0.3s ease;
}

.found-mentor-item:hover{
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.4);
}

.found-mentor-item h2{
    font-size: 2em;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0px;
}

.found-mentor-item p{
    color: rgb(168, 168, 168);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;    
}

.mentor-btn{
    width: 90%;
    height: 40px;
    border: none;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid #4f46e5;
    color: #4f46e5;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
}

.mentors-img{
    width: 98%;
    height: auto;
    border-radius: 20px;
    object-fit: cover
}

.mentors-name{
    color: rgb(214, 214, 214);
}


.contact-infos{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px
}

.contact-info{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10px;
  width: 100%;
  height: auto;
}

.contact-card{
    width: 90%;
    height: 100px auto;
    border-radius: 10px;
    background-color:#6B117B ;
    border: 1px solid rgba(255, 255, 255, 0.01);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.align{
    width: 100%;
    height: auto;
    display: flex;
    gap: 10px;
}

.contact-form{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;

}

.con{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #EAB308;
    display: flex;
    justify-content: center;
    color: #6B117B;
    padding: 12px;
    flex-direction: column;
    font-size: 23px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}


.conw{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #EAB308;
    display: flex;
    justify-content: center;
    color: #6B117B;
    padding: 14px;
    flex-direction: column;
    font-size: 23px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}


.conl{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #EAB308;
    display: flex;
    justify-content: center;
    color: #6B117B;
    padding: 14px;
    flex-direction: column;
    font-size: 23px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}


.seperate{
    display: flex;
    flex-direction: column;
}


.seperate h3{
    color: white;
    font-size: 15px;
}

.seperate p{
    color: gray;
    font-size: 12px;
}

.a{
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
}

/*contact form*/
.form{
    width: 100%;
    height:100px auto;
    background-color: rgb(43, 40, 40);
    border: 1px solid rgba(255, 255, 255, 0.08);;
    display: block;
    color: white;
    padding: 1em;
    border-radius: 10px;
    ;
}

.inputt{
    width: 90%;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px;
    color: rgb(196, 196, 196);
    margin: 5px;
}

.textarea{
    width: 90%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px;
    color: rgb(196, 196, 196);
    margin: 5px;
}

.cs-btn{
    width: 95%;
    height: 40px;
    border-radius: 10px;
    background-color: #6B117B;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin: 10px auto;
}




















}
