* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}
body{
    font-family: "Poppins", sans-serif;
    background-color: #ffff;
    overflow-x:hidden;
    
}
html{
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}
/* navbar section start */

/* navbar section end */




/* hero section start */

/* Desktop view (unchanged) */
.hero {
    position: relative;
    background-color: #ffff;
    padding: 50px 20px;
    text-align: center;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #4a0d67;
    margin-bottom: 15px;
}

.hero-content h1 span {
    color: #ffa500;
}

.hero-content p {
    font-size: 1.1rem;
    width: 80%;
    color: #7b7b7b;
    margin-bottom: 25px;
}

.rating-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    
}

.student-info {
    display: flex;
    align-items: center;
    gap: 50px;
    font-size: 1.2rem;
}

.student-info img.avatar {
    width: 65px;
    border-radius: 50%;
}

.rating h3 {
    font-size: 1.6rem;
    color: #4a0d67;
}

.rating span {
    font-size: 1rem;
    color: #7b7b7b;
}

.button-group {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
}

.button-group .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.student-btn {
    background-color:  #49126A;    ;
    
}

.teacher-btn {
    background-color: #ffa500;
}

.image-section {
    position: relative;
   
}

.boy-image {
    width: 100%; /* Kept bigger image as per previous request */
    margin: 0 auto;
    display: block;
}

.floating-box {
    position: absolute;
    top: 30%;
    left: 6%;
   background: transparent;
    padding: 1px 2px;
    border-radius: 15px;
   
    font-size: 1rem;
    color: #7b7b7b;
}

.floating-box img {
    height: 120px;
}

.decor-plane {
    position: absolute;
    top: 40%;
    left: -200px; /* Plane sticking to the left side (out of boundary) */
    height: 300px;
    width: 300px;
}

.decor-star-left {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 40px;
}

.decor-star-right {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 40px;
}

/* Add responsive styles only for smaller screens */

/* Tablets and smaller screens */
@media (max-width: 1001px) {
    .student-btn {
        background-color: #6e33ff;
        font-size: 10px;
    }
    
    .teacher-btn {
        background-color: #ffa500;
        font-size: 10px;
    }
    .student-info{
        gap: 10px;
    }
    .floating-box {
        position: absolute;
        top: 50%;
        left: 6%;
        background-color: #fff;
        padding: 1px 2px;
        border-radius: 15px;
        padding-bottom: 100px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        font-size: 0.9rem;
        color: #7b7b7b;
    } 
    .floating-box img {
        height: 80px;
        display: none !important;
    }
    
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero{
        margin-bottom: 0px;
    }
    .floating-box {
        position: absolute;
        top: 120%;
        left: 25%;
        margin-bottom: 30px;
        background-color: #fff;
        padding: 1px 2px;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        font-size: 0.9rem;
        color: #7b7b7b;
    } 
    .floating-box img {
        height: 80px;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .rating-section {
        flex-direction: column; /* Stack vertically on smaller screens */
        gap: 10px;
    }

    .button-group {
        flex-direction: column;
        top: 30%;
        gap: 15px;
    }

    .image-section {
        margin-top: 20px;
    }

    .boy-image {
        max-width: 100%; /* Reduce image size for smaller screens */
    }

    .floating-box img {
        height: 100px;
    }

    .decor-plane {
        height: 200px;
        width: 200px; /* Scale down the plane */
    }

    .decor-star-left,
    .decor-star-right {
        width: 30px; /* Scale down stars */
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .swiper-slide {
        width: 294.125px !important;
    }
    .hero-content p {
        font-size: 0.85rem;
    }

    .rating-section {
        flex-direction: column;
    }

    .button-group {
        flex-direction: column;
        top: 35%;
    }

    .button-group .btn {
        padding: 8px 15px; /* Adjust button size */
        width: 100%;
        max-width: 250px;
    }

    .boy-image {
        max-width: 100%; /* Smaller boy image */
    }

    .floating-box img {
        height: 80px;
    }

    .decor-plane {
        height: 150px;
        width: 150px; /* Plane smaller */
    }

    .decor-star-left,
    .decor-star-right {
        width: 20px; /* Small stars */
    }
    .per100{
        width: 100%;
        padding-top: 50px;
        padding-bottom: 40px !important;
    }
    .req100{
        padding-bottom: 60px !important;
    }
}
/* hero section end */







/* clients section start  */
/* Overall Section Styling */
.trusir-section {
    margin-top: 0px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffff;
    padding-bottom: 100px;
}

.brands {
    width: 80%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows images to wrap on smaller screens */
}

.brands img {
    max-width: 100%; /* Ensures images scale down */
    height: auto; /* Maintains aspect ratio */
    margin: 10px; /* Adds spacing between images */
}

.content {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
   
}

.text-box {
    width: 60%;
    margin-left: 20px;
}

.text-box p {
    font-size: 18px;
}

.highlight {
    font-size: 33px;
    color: #8b0ac7;
}

.content img {
    height: 400px;
}

#cub {
    height: 50px;
}
#contact-us-client{
    display: inline-flex;
    align-items: center;
    padding: 0px;
    cursor: pointer;
    position: relative;
    justify-content: center;
}
#contact-us-client button{
padding: 18px 40px;
background-color: #8300cf;
border: 2px solid #8806d3;
border-radius: 30px;
color: white;
font-size: 1.2rem;
}
#contact-us-client img{
    height: 60px;

    position: absolute;
    left: 90%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .brands {
        width: 100%;
        justify-content: center; /* Center the images */

    }
    .swiper-slide {
        width: 294.125px !important;
    }
#contact-us-client img{
    height: 100px;
    display: none;
    position: absolute;
    left: 90%;
}
    .text-box {
        width: 100%;
        margin-left: 0;
        text-align: center;
        margin-top: 35px;
        margin-bottom: 0px;
    }

    .content {
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center items */
        justify-content: center;
    }

    .content img {
        height: auto; /* Adjust image height for responsiveness */
        width: 100%; /* Make image full width */
    }
    
    #cub {
        height: 30px; /* Adjust button height */
    }
}

@media (max-width: 480px) {
    .text-box p {
        font-size: 14px; /* Smaller font size for mobile */
        text-align: left;
    }
    .section-description {
        font-size: 15px !important;
        line-height: 1.5;
    }
    .faq-intro h2 {
        font-size: 32px !important;


    }
    .faq-intro p {
        margin: 5px 0;
        color: #666;
        font-size: 15px !important ;
    }
    .per100 {
        width: 100%;
        padding-top: 10px !important;
        padding-bottom: 100px;
        display: flex;
        justify-content: space-around;
    }
    .swiper-slide {
        width: 296.125px !important;
    }
    .highlight {
        font-size: 31px; /* Smaller highlight font size */
    }
    #contact-us-client button {
        padding: 10px 40px;
    }
    h2{
        font-size: 32px;
    }
    .bullet-point{
        display: flex;
        align-items: baseline !important;
    }

    .bullet-point img {
        height: 29px !important;
    }
    .intro-section p {
        font-size: 15px !important;
    }
    .intro-section p {
        font-size: 15px !important;
    }
    .intro-section h2 {
        font-size: 40px!important;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }
    .description {
        max-width: 800px;
        font-size: 15px !important;
        margin: 0 auto 20px;
        text-align: left;
    }
    .service-overview{
        margin-left: 20px;
        margin-right: 20px;
        
    }
    .trusir-section{
        padding-bottom: 7px !important;
    }
    #cub {
        height: 20px; /* Further adjust button height for mobile */
    }
}
/* client section end  */








/* service section start  */
.service-overview {
    text-align: center;
    padding: 20px;
}

.highlight {
    color: #a655e0;
}

.description {
    max-width: 800px;
    font-size: 20px;
    margin: 0 auto 20px;
}

.card-container {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 10px 0;
}

.card {
    background-color: #121212;
    color: white;
    border-radius: 10px;
    padding: 60px 50px;
    width: 400px;
    height: 350px;
    text-align: left;
    font-size: 14px;
    position: relative;
}

.purple-card {
    background-color: #a655e0;
    padding: 40px 60px;
    text-align: left;
    font-size: 14px;
}

.icon {
    width: 30px;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    
.card {
    background-color: #121212;
    color: white;
    border-radius: 10px;
    padding: 40px 60px;
    width: 280px;
    text-align: left;
    font-size: 12px;
    position: relative;
    margin-bottom: 20px;
}
.service-verview-sec{
    text-align: left;
}
h2 {
    text-align: left;
}

.purple-card {
    background-color: #a655e0;
    padding: 40px 60px;
    text-align: left;
    font-size: 12px;
    margin-bottom: 20px;
}
}
/* service section end  */







/* why section start  */
.iso{
    display: none;
}
.intro-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    
    position: relative;
}

.intro-section .content {
    max-width: 400px;
}

.intro-section h2 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.intro-section h2 span {
    color: #A14AF2; /* Purple color */
}

.intro-section p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1.5rem;
}
.contents{
    width: 40%;
}
.learn-more-button {
    display: flex;
    align-items: center;
    background-color: #A14AF2;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.learn-more-button .arrow-icon {
    margin-left: 8px;
    width: 16px;
    height: 16px;
}
.intro-section img{
    height: 700px;
}
/* Image with Gradient Background */
.make-intro-90{
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.learn-more-button{
    position: relative;
}
#arrow-icon{
    position: absolute;
    top: 75%;
    height: 120px;
}
.glowBox {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bubbleCard {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    max-width: 400px;
    width: 100%;
    position: relative;
    margin-top: 30px; /* Ensures space for the icon popping out */
}

.iconWrapper {
    position: absolute;
    top: -25px;
    left: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.iconWrapper img {
    width: 40px;
    height: 40px;
}

.textArea {
    margin-left: 70px;
}

.textArea h3 {
    font-size: 1.2em;
    color: #6b4cc9;
    margin-bottom: 8px;
}

.textArea p {
    color: #555;
    font-size: 0.9em;
    line-height: 1.5;
}
@media (max-width: 1200px) {

    
    .intro-section
    .intro-section .contents img{
        height: 300px;
        display: block;
    }
   .iso{
    display: flex;
 
    margin-top: 30px;
   }
   .iso-desk{
    display: none;
   }
}
@media (max-width: 1000px) {

    
    .intro-section
    .intro-section .contents img{
        height: 250px;
        display: block;
    }
    .intro-section img{
       
        overflow: hidden;
    }
    .make-intro-90{
        flex-direction: column;
    }
    #arrow-icon{
        position: absolute;
        top: 75%;
        height: 40px;
    }
    .contents{
        width: 100%;
    }
}
@media (max-width: 700px) {
.textArea{
    margin-left: 20px;
    margin-top: 20px;
}
    
    .intro-section
    .intro-section .contents img{
        height: 150px;
        display: block;
    }
    .intro-section img{
        
        overflow: hidden;
    }
    .make-intro-90{
        flex-direction: column;
    }
    #arrow-icon{
        position: absolute;
        top: 75%;
        height: 40px;
    }
    .contents{
        width: 100%;
    }
}
/* why-section end  */









/* testimonail section start  */
#test-100{
    width: 100%;
    display: flex;
    justify-content: center;
}
.section-testmonials {
    width: 80%;
   
    display: flex;
flex-direction: column;
padding-bottom: 100px;
    gap: 20px;
    justify-content: space-between;

}

.column-testmonials {
    display: flex;
   justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.section-details {
    border-left: 10px solid #a200ff;
    padding-left: 20px;
}


.name-section {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 50px;
    color: #6e33ff !important;
    line-height: 1.2em;
    margin: 0;
    margin-bottom: 10px;
}

.title-section b {
    color: #650061;
}

.title-section {
    color: #000;
   
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.navigation-testmonials {
    display: flex;
    gap: 10px;
}


.swiper-testmonials {
    width: 100%;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .section-testmonials {
        flex-direction: column;
        align-items: flex-start;
    }
    .column-testmonials {
        display: flex;
    flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .swiper-testmonials {
        width: 100%;
    }
    .name-section {
        font-weight: 800;
        text-transform: uppercase;
        font-size: 31px;
        margin-bottom: 5px;;
        color: #6e33ff !important;
        line-height: 1.2em;
        margin: 0;
        margin-bottom: 7px;

    }
}

.swiper-testmonials .swiper-slide {
    border-radius: 25px;
   
    color: #000;
    display: flex;
    padding: 35px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transform: scale(0.9) !important;
    filter: blur(1px) grayscale(0.5);
    transition: 0.2s;
}

.border-color1{
    border: 18px solid #FFDD8D;
}
.border-color2{
    border: 18px solid #C68FF1;
}

.swiper-testmonials .swiper-slide * {
    margin: 0;
}

.swiper-testmonials .swiper-slide-active {
    filter: blur(0px) !important;
    transform: scale(1) !important;
}

.card-slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.head-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-slide {
    display: flex;
    align-items: center;
    gap: 20px
}

.title-slide h4 {
    color: black;
    font-size: 20px;
    font-weight: 700;
}

.title-slide h6 {
    color: #616161;
    font-size: 16px;
    font-weight: 500;
}

.text-slide {
    color: black;
  
    font-size: 17px;
    /* font-style: italic; */
    font-weight: 400;
    line-height: normal;
}

.swiper-button-testmonials-next,
.swiper-button-testmonials-prev {
    cursor: pointer;
}


@media (max-width: 768px) {
    .header-slide svg {
        width: 50px;
    }

    .title-slide h4 {
        font-size: 14px;
    }

    .swiper-testmonials .swiper-slide {
        padding: 20px;
    }
}
/* testimonails end here  */









/* tutor section start here  */
.test-100-work{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
}
.per90{
    width: 80%;
    display: flex;
    height: auto;
    justify-content: space-between;
    
}
.per90-img{
    height: 600px;
}
.per50{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}
.per50 h2{
    font-size: 36px;
    font-weight: bolder;

}
.bullet-point{
    display: flex;
    align-items: center;
 

}
.bullet-point img{
    height: 50px;
    margin-left: 20px;
    margin-bottom: 25px;
    margin-right: 10px;
}
.bullet-point p{
    padding-top: 10px;
}
.bullet-point h3{
    margin-top: 20px;
}
@media (max-width: 1200px) {
    .per90-img{
        width: auto;
        height: 350px;
        margin: 30px;
    }
    .per50{
        width: 60%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    
    }
}
@media (max-width: 1000px) {
    .per90{
        flex-direction:column-reverse;
        align-items: center;
    }
    .per90-img{
        width: 400px;
    }
    .per50{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    
    }
}
@media (max-width: 400px) {
    .per90{
        flex-direction: column-reverse;
        align-items: center;
    }
    .per90-img{
        width: 320px;
    }
    .per50{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    
    }
    .star-100{
        margin-left: 20px;
        margin-right: 20px;
    }
}
/* Tutor ends here  */









/* star start from here  */
.star-100{
    width: 100%;
    display: flex;
    
    justify-content: center;
    margin-bottom: 30px;
}
.star-90{
    width: 80%;
  
   
}
.foty-forty{
    width: 100%;
    display: flex;

    
}
.forty{
    width: 40%;
    display: flex;
    align-items: start;
    justify-content: start;
}
.forty1 {
    width: 60%;
    display: flex;
    align-items: start;
    justify-content: start;
}
.teacher{
    width: 100%;
    padding-top: 100px;
    display: flex;
}
.profile-card {
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   
}

.profile-image-container {
   
    background-color: #b2f0c9; /* Adjust background color as needed */
    padding: 20px;
}

.profile-image-container img {
    width: 80%;
    border-radius: 50%;
}

.profile-details {
    padding: 10px;
}

.profile-name {
    font-size: 1.2rem;
    color: #333;
    margin: 0px 0 5px;
}

.profile-title {
    font-size: 0.9rem;
    color: #777;
}

.star-100 {
    padding: 20px;
}

.foty-forty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.teacher-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-top: 30px;
}

.profile-card {
    width: 243px;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   
    transition: transform 0.2s;
}

.profile-card:hover {
    transform: scale(1.05);
}

.profile-image-container {
    background-color: #C3F6B6; /* Customize as needed */
    padding: 5px;
}
.profile-image-container1 {
    background-color: #B0E3FF; /* Customize as needed */
    padding: 5px;
}
.profile-image-container2 {
    background-color: #FFE0B0; /* Customize as needed */
    padding: 5px;
}
.profile-image-container3 {
    background-color: #FFC0DE; /* Customize as needed */
    padding: 5px;
}
.profile-image-container4 {
    background-color: #ADEDCE; /* Customize as needed */
    padding: 5px;
}
.profile-image-container img {
    width: auto !important;
    height: 180px !important;
    border-radius: 50%;
}
.profile-image-container1 img {
    width: auto;
    height: 180px;
    border-radius: 50%;
}
.profile-image-container2 img {
    width: auto !important;
    height: 180px !important;
    width: 100%;
    border-radius: 50%;
}
.profile-image-container3 img {
    width: auto !important;
    height: 180px !important;
    border-radius: 50%;
}
.profile-image-container4 img {
    width: auto !important;
    height: 180px !important;
    border-radius: 50%;
}
.profile-details {
    padding: 10px;
}

.profile-name {
    font-size: 1.2rem;
    color: #333;
    
   
}

.profile-title {
    font-size: 0.9rem;
    color: #777;
}
.star-100{
    width: 100%;
    display: flex;
    margin-bottom: 30px;
    justify-content: center;
}
.star-90{
    width: 80%;
 
   
}
.star-901{
    width: 80%;
    display: flex;
    justify-content: space-between;
}
.foty-forty{
    width: 100%;
    display: flex;

    
}
.forty{
    width: 40%;
    display: flex;
    align-items: start;
    justify-content: start;
}
.forty1 {
    width: 60%;
    display: flex;
    align-items: start;
    justify-content: start;
}
.teacher{
    width: 100%;
}
.text-40{
    width: 40%;
}
.text-50{
    width: 50%;
}
/* Responsive Styling */
@media (max-width: 768px) {
    .profile-card {
        width: 100%;
        max-width: 300px;
    }
    .meeting-des{
        text-align: left;
        padding: 10px;

    }
    .test-100-work{
        
    padding-bottom: 10px !important;
    }
    .teacher-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-around;
        margin-top: 30px;
    }
    .star-901{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .text-40{
        width: 90%;
        font-size: 0.9rem;

    }
    .ourstardes {
        font-size: 15px !important;
        text-align: left;
    }
    .star-100 {
        margin-left: 0px!important;
    }
    .heading{
        font-size: 32px!important;
    }
    .text-50{
        margin-top: 30px;
        width: 90%;
        text-align: center;
        
    }
}
/* star end here  */











/* teacher start here  */
.class100{
    width: 100%;
}
.section-wrapper {
    display: flex;
  justify-content: space-between;
    position: relative;
    padding: 20px;
    width: 80%;;
    margin: auto;
}

.text-contentss {
    width: 50%;
    margin-right: 20px;
}

.role-badge {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

.heading {
    font-size: 40px;
    font-weight: bold;
}

.highlight-text {
    color: #8e44ad;
}

.section-description {
    font-size: 20px;
    line-height: 1.5;
}

.cta-button {
    background-color: #8e44ad;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
}

.image-wrapper {
    position: relative;
    width: 40%;
    display: flex;
    justify-content:flex-end;
    align-items: center;
}

.profile-image {
   height: 500px;
}

.overlay-icon {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 50%;
    padding: 10px;
}
@media (max-width: 1200px) {
    .profile-image {
        height: 300px;
        display: none;
     }
}
@media (max-width: 768px) {
    .profile-image {
        height: 200px;
        display: none;
     }
    .section-wrapper {
        display: flex;
        flex-direction: column;
      justify-content: center;
        position: relative;
        padding: 20px;
        width: 90%;;
        margin: auto;
    }
    .text-contentss {
        width: 100%;
        margin-right: 20px;
    }
    .image-wrapper {
        position: relative;
        width: 100%;
        display: flex;
        margin-top: 20px;
        justify-content:flex-end;
        align-items: center;
    }
    
}
/* teacher end here  */

/* faq start here  */
.per100{
    width: 100%;
    padding-top: 50px;
    padding-bottom: 100px;
    display: flex;
    justify-content: space-around;
}
.faq-container {
    max-width: 90%;
    display: flex;
    padding: 20px;
    
    align-content: center;
    justify-content: center;
    flex-wrap: unset;

  }
  
  .faq-intro {
    text-align: left;
    margin-bottom: 30px;
    width: 40%;
  }
  
  .faq-intro h2 {
    font-size: 40px;
    font-weight: bold;
  }
  
  .faq-intro .highlight {
    color: #6c63ff;
  }
  
  .faq-intro p {
    margin: 5px 0;
    color: #666;
    font-size: 20px;
  }
  
  .learn-more-btn {
    background-color: #4a0d67 ;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
  }
  
  .learn-more-btn:hover {
    background-color: #5a53e0;
  }
  
  .faq-sections {
    width: 50%;
    display: flex;
    gap: 20px;
    justify-content: center;
   
  }
  
  .faq-card {
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    width: 400px;
  }
  
  .faq-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .faq-list {
    list-style: none;
  }
  
  .faq-question {
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 18px;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    color: #333;
    cursor: pointer;
  }
  
  .faq-question span {
    color: #6c63ff;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 10px;
    font-size: 16px;
    color: #666;
  }
  
  .faq-answer p {
    padding: 10px 0;
  }
  @media (max-width: 768px) {
    .faq-container {
        max-width: 90%;
        display: flex;
        padding: 20px;
        align-content: center;

        flex-direction: column;
      }
      .faq-intro {
        text-align: left;
        margin-bottom: 30px;
        width: 100%;
      }
      .faq-sections {
        width: 100%;
        display: flex;
        gap: 20px;
        flex-direction: column;
      
       
      }
      .faq-card{
        width: 100%;
      }
  }
  /* faq section end here  */












  /* requirment section start here  */
  .req100{
    width: 100%;
    display: flex;
    padding-bottom: 100px;
    justify-content: center;  
}
.banner{
    width: 1200px;
    height: 370px;
    background-size: contain;
    border-radius: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background: url('../images/banner.png');
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
}
.banner h1{
    color: #4a0d67;
}
/* req section end here  */
        
        /* Decorative elements */
        .footer::before {
            content: "";
            position: absolute;
            top: -80px;
            right: -80px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: rgba(253, 178, 0, 0.1);
        }
        
        .footer::after {
            content: "";
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: rgba(253, 178, 0, 0.05);
        }
        
        .wave-divider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .wave-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 35px;
            transform: rotateY(180deg);
        }

        .wave-divider .shape-fill {
            fill: #F5F5F5;
        }
        
        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 4rem 2rem 2rem;
            position: relative;
            z-index: 1;
        }
        
        .footer-section {
            flex: 1;
            min-width: 240px;
            margin: 1rem;
            position: relative;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .footer-logo-circle {
            width: 40px;
            height: 40px;
            background-color: #fdb200;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-weight: bold;
            color: #48116a;
            font-size: 18px;
        }
        
        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            letter-spacing: 1px;
        }
        
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #fdb200;
            position: relative;
            padding-bottom: 15px;
            font-weight: 600;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #fdb200, rgba(253, 178, 0, 0.2));
            border-radius: 5px;
        }
        
        .footer-section p {
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 20px;
            transition: transform 0.3s ease;
        }
        
        .footer-section ul li:before {
            content: "›";
            position: absolute;
            left: 0;
            color: #fdb200;
            font-size: 18px;
            font-weight: bold;
        }
        
        .footer-section ul li:hover {
            transform: translateX(5px);
        }
        
        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }
        
        .footer-section ul li a:hover {
            color: #fdb200;
        }
        
        .contact-info {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        
        .contact-info i {
            margin-right: 12px;
            color: #fdb200;
            margin-top: 3px;
            font-size: 16px;
            width: 20px;
            text-align: center;
        }
        
        .contact-info span {
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .social-links {
            display: flex;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background-color: rgba(255, 255, 255, 0.1);
            margin-right: 12px;
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-links a:hover {
            background-color: #fdb200;
            color: #48116a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(253, 178, 0, 0.3);
        }
        
        .newsletter-form {
            position: relative;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 30px;
            border: none;
            outline: none;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        
        .newsletter-form input:focus {
            background-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 0 2px rgba(253, 178, 0, 0.5);
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .newsletter-form button {
            padding: 12px 25px;
            background: linear-gradient(135deg, #fdb200 0%, #ffcc33 100%);
            color: #48116a;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(253, 178, 0, 0.2);
        }
        
        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(253, 178, 0, 0.4);
        }
        
        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.15);
            padding: 1.2rem 0;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .footer-bottom-content {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            flex-wrap: wrap;
        }
        
        .footer-bottom p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-bottom-links {
            display: flex;
        }
        
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.7);
            margin-left: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: #fdb200;
        }
        
        /* Scrolling animation */
        .footer-animation {
            position: absolute;
            right: 50px;
            bottom: 100px;
            width: 80px;
            height: 80px;
            background-color: rgba(253, 178, 0, 0.03);
            border-radius: 50%;
            animation: float 8s infinite ease-in-out;
        }
        
        .footer-animation:nth-child(2) {
            right: 200px;
            bottom: 140px;
            width: 60px;
            height: 60px;
            animation-delay: 1s;
        }
        
        .footer-animation:nth-child(3) {
            right: 350px;
            bottom: 80px;
            width: 40px;
            height: 40px;
            animation-delay: 2s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        /* Improved Responsiveness */
        @media screen and (max-width: 1200px) {
            .footer-section {
                min-width: 200px;
            }
        }
        
        @media screen and (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-section {
                margin-bottom: 2rem;
                flex-basis: calc(50% - 2rem);
            }
        }
        
        @media screen and (max-width: 768px) {
            .footer-content {
                justify-content: flex-start;
            }
            
            .footer-section {
                flex-basis: 100%;
                margin-bottom: 2.5rem;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .footer-bottom-links {
                margin-top: 0.5rem;
            }
            
            .footer-bottom-links a {
                margin: 0 10px;
            }
            
            .footer::before,
            .footer::after {
                display: none;
            }
        }
        
        @media screen and (max-width: 480px) {
            .footer-section h3 {
                font-size: 1.2rem;
            }
            
            .footer-logo-text {
                font-size: 1.3rem;
            }
            
            .social-links a {
                width: 32px;
                height: 32px;
            }
            
            .footer-content {
                padding: 3rem 1.5rem 1.5rem;
            }
        }
  /* end  */





  /* blog section start here  */
  .blog-100{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .blog-801{
    width: 80%;
    display: flex;
  
    align-items: center;
    justify-content: center;

  }
  .blog-80{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }
  .blog-80 p, .blog-80 h2, .blog-80 a{
    margin-left: 20px;
  }
  .sub-blog-50{
    width: 50%;

  }
  .sub-blog2-50{
    width: 50%;

  }
  .blog-20{
    width: 30%;
  }
  .blog-802{
    width: 70%;
  }
  .dis-blog-img{
    height: 200px;
  }
  .sub-blog-50 h1{
    font-size: 2.5rem;
    color: #FDB200;
  }
  .sub-blog-50 h1 span{
    color: #49126A;
  }
  .sub-blog-50 p{
    font-size: 1.2rem;
  }
  .sub-blog2-50 img{
    height: 600px;
  }
  .blog-item{
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  @media (max-width: 999px) {
    .blog-801{
        margin-top: 20px;
        flex-direction: column;
    }
    .blog-80 img{
        height: 400px;
        margin-bottom: 20px;
    }
    .sub-blog-50{
        width: 100%;

      }
      .sub-blog2-50{
        width: 100%;
    
      }
      .blog-item{
     flex-direction: column;
        justify-content: start;
      }
      .blog-20{
        width: 100%;
      }
      
      .blog-802{
        width: 100%;
      }
      .blog-80 p, .blog-80 h2, .blog-80 a{
        margin-left: 0px;
      }
  }
  @media (max-width: 770px) {
    .blog-80 img{
        height: 200px;
        margin-bottom: 20px;
    }
    .sub-blog2-50 img{
        height: 300px;
    
      }

  }



  /* form section start here  */
  .form-container {
    position: relative;
    background-color: white;
    border-radius: 8px;
   
    width: 100%;
    padding: 20px;
  
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #7b1fa2;
    cursor: pointer;
}

.close-btn:hover {
    color: #5e0d8b;
}

.form-container h2 {
    text-align: center;
    color: #7b1fa2;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #555;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 1em;
}

.phone-input {
    display: flex;
    align-items: center;
}

.phone-input select {
    width: 30%;
    margin-right: 5px;
}

.phone-input input {
    width: 70%;
}

h3 {
    font-size: 1.1em;
    color: #7b1fa2;
    margin-top: 20px;
    margin-bottom: 10px;
}

.address-group {
    display: flex;
    gap: 10px;
}

.form-group {
    flex: 1;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cancel-btn,
.add-btn {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cancel-btn {
    background-color: white;
    color: #7b1fa2;
    border: 1px solid #7b1fa2;
}

.add-btn {
    background-color: #7b1fa2;
    color: white;
}
/* style.css */
h2 {
    font-size: 2.4em;
}
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it overlays other content */
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    border-top: 30px solid #7b1fa2;
    max-width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #333;
    cursor: pointer;
}
/* This is the overlay that covers the whole screen */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark semi-transparent background */
    display: none; /* Hidden by default */
    z-index: 999; /* Make sure it stays on top of the page content */
    backdrop-filter: blur(5px); /* Apply blur effect */
}

/* Modal styles */
#formModal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(7, 7, 7, 0.484);
    padding: 20px;
    z-index: 1000; /* Ensure it is on top of the overlay */
    border-radius: 10px;
    backdrop-filter: blur(5px); 
}
 /* top of the page content */
  

/* Modal styles */
#formModal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(7, 7, 7, 0.484);
    padding: 20px;
    z-index: 1000; /* Ensure it is on top of the overlay */
    border-radius: 10px;
}

