
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Nunito:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    margin:0;
    padding:0;
}
:root{
    --color-primary:#6c63ff;
    --color-success:#00bf8e;
    --color-warning:#f7c94b;
    --color-danger-variant:rgba(247,88,66,0.4);
    --color-white:#fff;
    --color-light:rgba(255,255,255,0.7);
    --color-black:#000;
    --color-bg:#1f2641;
    --color-bg1:#2e3267;
    --color-bg2:#424890;
    
}

.front-look{
    min-height: 80vh;
    background: var(--color-bg);
    margin:0px;
}
.first-bar{
    display:flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    text-align: center;
    background:var(--color-bg);
    overflow: hidden;
    position:relative;
    margin-bottom: 0px;
   
}
.title{
    background-size: cover;
    position: relative;
    top:0;
}
.topic
{
    padding-left: 20px;
    font-size: 30px;
    text-decoration: solid;
    color:var(--color-white);
    z-index: 1000;
}
.link-topic{
    display:flex;
    justify-content: space-around;
    gap:30px;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    margin-right: 10px;
    font-size: 20px;
    z-index: 1000;
    

}
.link-topic a {
    color: var(--color-white);
    position: relative;
    padding: 5px 10px;
    text-decoration: none;
    transition: color 0.3s ease-out;
}

.link-topic a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease-out;
}

.link-topic a:hover {
    color: var(--color-primary);
}

.link-topic a:hover::after {
    width: 100%;
}
.h{
    color:var(--color-white);
    position:absolute;
    text-align: left;
    align-items: center;
    font-size: 30px;
    top:190px;
    left:95px;
}
.p1{
    color:var(--color-white);
    position:absolute;
    font-size: 20px;
    top:300px;
    left:95px;
    width:500px;
    height:100px;
}
.button {
    width: 200px; /* Fixed width */
    min-height: 4vh;
    background-color: orangered;
    border: 1px solid transparent;
    border-radius: 14px;
    color: var(--color-white);
    position: absolute;
    top: 400px;
    left: 100px;
    padding: 20px 20px; 
    box-sizing: border-box; 
    text-align: center; 
    font-size: 19px;
    cursor: pointer; 
    transition: background-color 0.3s ease; 
}

.button:hover {
    background-color: #f3653a; /* Slightly lighter shade on hover */
}
.image1{
    width:700px;
    min-height: 500px;
    height:90px;
    object-fit: cover;
    position:absolute;
    top:50px;
    left:500px;
    overflow: hidden;
}
.categories{
    background: var(--color-bg1);
    min-height: 60vh;
    color: var(--color-white);
    position:absolute;
}
.box{
    border:1px solid transparent;
    display:flex;
    flex-direction: column;
    gap:30px;
    padding-left:100px;
    padding-top: 100px;
    padding-right:70px;
    text-align: left;
    width:500px;
}
.box h3{
    font-size: 35px;
}
.box p{
    font-size:15px;
}
.box button {
    width: 200px; 
    min-height: 4vh;
    background-color: var(--color-white);
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 10px 5px; 
    box-sizing: border-box; 
    text-align: center; 
    font-size: 15px;
    cursor: pointer; 
}

.som{
    background: var(--color-bg);
    min-height: 100vh;
    
}
.mm{
    width:200px;
    height:auto;
    border: 1px solid transparent;
    background-color: var(--color-bg2);
    display: flex;
    flex-direction: column;
    gap:10px;
    padding:15px;
    border-radius: 25px;
    
    transition: background-color 0.3 ease ;
}
.mm:hover{
    background-color: var(--color-bg1);
 }

.mm p{
    font-size: 13px;
}
.mm h3{
    font-size: 16px;
}
.small-icons{
    display: flex;
    justify-content: flex-start;
    flex-wrap:wrap;
    gap:25px;
}
.n1{
    border:1px solid transparent;
    width:30px;
    padding:4px;
    border-radius: 10px;
    background-color: var(--color-primary);
    position:relative;
    margin-left:60px;
    
}
.n2{
    border:1px solid transparent;
    width:30px;
    padding:4px;
    border-radius: 10px;
    background-color: var(--color-danger-variant);
    position:relative;
    margin-left:60px;
}

.n3{
    border:1px solid transparent;
    width:30px;
    padding:4px;
    border-radius: 10px;
    background-color: var(--color-success);
    position:relative;
    margin-left:60px;
}

.n4{
    border:1px solid transparent;
    width:30px;
    padding:4px;
    border-radius: 10px;
    background-color: var(--color-warning);
    position: relative;
    margin-left:60px;
}

.n5{
    border:1px solid transparent;
    width:30px;
    padding:4px;
    border-radius: 10px;
    background-color: var(--color-success);
    position: relative;
    margin-left:60px;
}

.n6{
    border:1px solid transparent;
    width:30px;
    padding:4px;
    border-radius: 10px;
    background-color: var(--color-primary);
    position:relative;
    margin-left:60px;
}
.categories{
    display:flex;
    justify-content: flex-start;
    gap:30px;
    
}
#m1{
    position:relative;
    top:50px;
    right:20px;
}
#m2{
    position:relative;
    top:50px;
    right:-20px;
}

#m3{
    position:relative;
    top:50px;
    right:-60px;
}

#m4{
    position:relative;
    top:75px;
    right:20px;
    z-index: 1;
}

#m5{
    position:relative;
    top:75px;
    right:-20px;
    z-index: 1;
}
#m6{
    position:relative;
    top:75px;
    right:-60px;
    z-index: 1;
}

.front-look{
    position:relative;
}
.popular{
    background:var(--color-bg);
    min-height: 80vh;
    overflow: hidden;
}
.popular h3{
    color: var(--color-white);
    font-size: 45px;
    align-items: center;
    text-align: center;

}
.c{
    border:2px solid var(--color-bg1);
    width:300px;
    height:420px;
    justify-content: center;
    align-items: center;
    background-color: var(--color-bg1);
    margin-top:30px;
    margin-left: 65px;
    border-radius: 20px;
    transition: background-color 0.3 ease;
}
.c:hover{
    background-color: var(--color-bg);
}

.imgg{
    width:100%;
    height:auto;
    object-fit: cover;
    border-radius: 20px;
}
.c h3{
    color:var(--color-white);
    font-size: 17px;
    text-align: center;
}
.c p{
    color:var(--color-white);
    font-size: 15px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.butt{
    align-items: center;
    text-decoration: none;
    width:150px;
    padding-left:10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left:70px;
    background-color: orangered;
    border-radius: 40px;
    margin-top: 20px;
    color:var(--color-white);
    font-size: 17px;
    transition: background-color 0.3 ease;
    cursor: pointer;
}
.butt:hover{
    background-color: rgb(181, 59, 15);

}
.courses{
    display: flex;
    justify-content: flex-start;
    gap:30px;
    margin-left: 30px;
}
.y{
    margin-top: 0;
    padding-top: 0;
}
.faq{
    background: var(--color-bg1);
    min-height: 80vh;
    position:relative;
    overflow: auto;
}
.faq h3{
    color: var(--color-white);
    font-size: 45px;
    padding-top:45px;
    padding-bottom: 45px;
    text-align: center;
    align-items: center;

}
.pp{
    color: var(--color-white);
    font-size: 15px;
   

}
.q{
    border:1px solid transparent;
    width:500px;
    min-height: 80px;
    background-color: var(--color-primary);
    align-items: center;
    padding:20px;
}
.list-box{
    display:flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap:20px;
    margin-left:110px;
}
.svgg{
    cursor: pointer;
}
.q p{
    color: var(--color-white);
    font-size:15px;
    text-align: left;

}
.ssi{
    display: flex;
    justify-content: flex-start;
    gap:25px;

}
.stfeedbacks{
    background:var(--color-bg);
    overflow: auto;
    min-height: 90vh;
    position: relative;
}
.stfeedbacks h3{
    color:var(--color-white);
    font-size: 45px;
    text-align: center;
    padding:40px;
}
.stfeedbacks p{
    color:var(--color-white);
    font-size:15px;

}
.immm{
    width:100px;
    height:100px;
    border: 1px solid transparent;
    border-radius: 100px;
    object-fit: cover;
}
.fee{
    border:1px solid transparent;
    width:550px;
    height:140px;
    background-color: var(--color-primary);
    padding:25px;

}
.g1{
    border: 1px solid transparent;
    width:600px;
    align-items: center;
    position: relative;
}
.swiper {
    width: 600px;
    height: 300px;
}
/* Container for the testimonials */


/* Swiper container styles */
.swiper-container {
    width: 100%;
    height: 400px; /* Height of the slider */
    position: relative;
}

.swiper-wrapper {
    display: flex;
    align-items: center; /* Center content vertically */
}

.swiper-slide {
    border:1px solid transparent;
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center; /* Center the content */
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    max-width: 100%; /* Make sure the image fits within the container */
    height: auto;
    border-radius: 50%; /* Optional: makes the image round */
    margin-bottom: 20px;
}

.swiper-slide p.fee {
    font-size: 1em;
    color: var(--color-white);
    max-width: 80%;
    margin: 0 auto;
}

/* Navigation buttons (previous/next) */
.swiper-button-prev,
.swiper-button-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

/* Pagination dots */
.swiper-pagination-bullet {
    background-color: #bbb;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background-color: #007bff;
}


