* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.online-course-hero {
    max-width: 1440px;
    height: 510px;
    /* Explicit height */
    background: url('../../uploads/template_images/smallkid.png');
    background-position: center;
    background-size: cover;
    /* Ensures full coverage */
    background-repeat: no-repeat;
    margin-bottom: 2rem;
    display: flex;
    /* Enables flexbox */
    align-items: center;
    /* Centers content vertically */
    padding-left: 80px;
}

.online-course-hero-tagline {

    h2 {
        font-size: 65px;
        font-family: "Fredoka", sans-serif;
        font-weight: 600;
        color: white;
    }

    .online-course-hero-title {
        display: flex;
        gap: 10px;
    }

    p {
        font-size: 20px;
        font-family: "Onset", sans-serif;
        font-weight: 400;
        color: white;

    }

    span {
        font-size: 20px;
        font-family: "Onset", sans-serif;
        font-weight: 400;
        color: white;
        opacity: 60%;
    }
}


.online-course-main-section {
    display: flex;
    /* Enables flexbox for side-by-side layout */
    max-width: 1440px;
    margin: 0 auto;
    gap: 20px;
    /* Adds space between filter and course sections */
    padding: 20px;
    position: relative;
}



.filter-section {
    width: 25%;
    /* Adjust width as needed */
    background-color: #f4f4f4;
    /* Temporary background to visualize */
    padding: 20px;
}

.filter-section {
    max-width: 310px;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f4f4f4;
    /* Temporary background to visualize */
    padding: 20px;
}

.filter-section-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.filter-section-top h2 {
    margin: 0;
    font-size: 1.5rem;
}

.filter-section-top p {
    color: blue;
    cursor: pointer;
    margin: 0;
}

.filter-section h2 {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 10px;
    cursor: pointer;
}

.course-section {
    width: 100%;
    /* Takes remaining space */
    display: flex;
    flex-direction: column;
    /* Stacks topbar & main vertically */
    gap: 20px;
    /* Space between topbar and main */



}

.course-section-topbar {
    height: 60px;
    /* Adjust as needed */
    /* background-color: #ddd;  */

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px;

    h2 {
        font-size: 24px;
        font-family: "Fredoka", sans-serif;
        font-weight: 600;
    }

    .course-section-topbar-side {
        background-color: #eee;
        display: flex;


    }

    .course-section-topbar-side button {
        outline: none;

        padding: 10px 20px;

        background-color: rgb(228, 223, 223);
        font-size: 14px;
        font-weight: 400;
        border: 1px solid #E7E5E4
    }


}

.course-section-main {
    flex-grow: 1;
    /* Takes remaining space */
    /* background-color: #eee; Temporary background */
    padding: 20px;
}


.line {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);

}

/* Header with "Filters" on one side and "Clear All" on the other */
.filter-section>div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;

    h2 {
        font-size: 16px;
        font-weight: 600;
        font-family: "Onset", sans-serif;
        letter-spacing: -2%;
    }

    p {
        font-size: 14px;
        font-weight: 500;
        font-family: "Onset", sans-serif;
        letter-spacing: -2%;
    }


}

/* Categories section */
.filter-section .filter-section-category {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* max-height: 200px; */
    /* Set max height to prevent overflow */
    /* overflow-y: auto; */
    /* Enables scrolling */

    border-radius: 8px;


    h2 {
        font-size: 16px;
        font-weight: 600;
        font-family: "Onset", sans-serif;
        letter-spacing: -2%;
    }


}

/* Category checkboxes container */
/* .filter-section .filter-section-category div {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns layout */
/* gap: 8px; */
/* } */
*/ .filter-section-category {
    width: 250px;
    /* Adjust width as needed */
}

.category-container {
    max-height: 200px;
    /* Fixed height */
    overflow-y: auto;
    /* Enable scrolling */
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
}

.category-container label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    cursor: pointer;
    font-size: 14px;
    font-family: "Onset", sans-serif;
    font-weight: 500;
}

.category-container input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Search by Course section */
.filter-section .filter-section-search {
    display: flex;
    flex-direction: column;
    gap: 10px;

    h2 {
        font-size: 16px;
        font-weight: 600;
        font-family: "Onset", sans-serif;
        letter-spacing: -2%;
    }
}

.search-container {
    border-radius: 3px;
    display: flex;
    align-items: center;
    /* background-color: #f1ebeb; */
    border: 1px solid #D6D3D1;
    padding: 6px 10px;
}

#search {
    background-color: transparent;

    padding: 8px;
    outline: none;
    border: none;
    /* border: 1px solid #D6D3D1 */
    /* border: 1px solid #ccc; */
    /* border-radius: 5px; */
}

/* Customer Rating */
.filter-section .filter-section-rating {
    display: flex;
    flex-direction: column;
    gap: 10px;

    h2 {
        font-size: 16px;
        font-weight: 600;
        font-family: "Onset", sans-serif;
        letter-spacing: -2%;
    }
}

.filter-section .filter-section-rating div {
    display: flex;
    flex-direction: column;
    gap: 5px;

}

.filter-heading{
    font-size: 1.5rem !important;
    font-weight: 700;
     
    
}

.rating-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-wrapper label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.rating-wrapper input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.stars {
    font-size: 24px;
    letter-spacing: 2px;
}

.stars::before {
    content: "★★★★★";
    /* Default 5 Stars */
    color: gray;
    /* Default all gray */
}

.stars[data-rating="1"]::before {
    content: "★☆☆☆☆";
    /* 1 gold, 4 gray */
    color: #FBBF24;
    ;
}

.stars[data-rating="2"]::before {
    content: "★★☆☆☆";
    /* 2 gold, 3 gray */
    color: #FBBF24;
    ;
}

.stars[data-rating="3"]::before {
    content: "★★★☆☆";
    /* 3 gold, 2 gray */
    color: #FBBF24;
    ;
}

.stars[data-rating="4"]::before {
    content: "★★★★☆";
    /* 4 gold, 1 gray */
    color: #FBBF24;
    ;
}

.stars[data-rating="5"]::before {
    content: "★★★★★";
    /* All 5 gold */
    color: #FBBF24;
    ;
}


.card {
    display: flex;
    flex-direction: column;
    box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.2);
}

.card-image {
    position: relative;
}

.card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-tag {
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px 22px;
    color: white;
    background: #43AECA;
}

.card-content {
    padding: 8px 10px;
}

.card-content span {
    font-size: 12px;
    opacity: 60%;
    font-family: "Onset", sans-serif;
}

.card-content h2 {
    font-size: 24px;
    font-family: "Fredoka", sans-serif;
}

.card-content h1 {
    font-size: 16px;
    opacity: 60%;
    font-family: "Onset", sans-serif;
}

.card-content p {
    font-size: 16px;
    opacity: 60%;
    font-family: "Onset", sans-serif;
    max-width: 350px;
}

.lesson-play {
    margin-left: 10px;
    font-size: 16px;
    opacity: 60%;
    font-family: "Onset", sans-serif;
}

.course-section-pagination {

    display: flex;
    justify-content: space-between;
}

.course-section-pagination-right {
    display: flex;

    gap: 8px;
    /* Adjust spacing */
}

.course-section-pagination-right svg {
    display: flex;
    align-items: center;
    /* Ensures SVG aligns properly */
}

.number {
    color: black;


    font-size: 14px;
    font-weight: 400;
    font-family: "Onset", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    /* Matches SVG height */
    line-height: 32px;
    /* Ensures vertical centering */
}

.number.active {
    background: linear-gradient(265.52deg, #39A9E3 -0.8%, #57DAAA 95.88%),
        linear-gradient(85.52deg, #3FC3CC 4.12%, #4D7FC6 100.8%);
    color: white;

}

.number-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}



.course-section-pagination-left {

    p {
        font-size: 14px;
        font-weight: 400;
        font-family: "Onset", sans-serif;
    }
}



.contact-us {

    display: flex;
    flex-direction: column;

}

.contact-us-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 30px auto;
}

.contact-us-top-heading {
    text-transform: uppercase;
    text-align: center;
    font-size: 25px;
    font-family: "Onset", sans-serif;
    font-weight: 600;
}

.contact-us-top-main {
    text-align: center;

    font-size: 55px;
    font-family: "Fredoka", sans-serif;
    font-weight: 500;


}

.contact-us-top-para {
    font-size: 20px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    max-width: 646px;
    text-align: center;
}

.contact-us-main {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 1275px;
    margin: 2rem auto;
    flex-wrap: wrap;
    /* Allows elements to wrap on smaller screens */
    justify-content: center;
    /* Centers content */
}

.personal-detail {
    display: flex;
    flex-direction: column;
    gap: 1rem;

}

.personal-detail-box {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    padding: 25px;
    background: rgba(247, 247, 249, 1);
    width: 564px;
    height: 102px;
    gap: 1rem;

}

.personal-detail-box div {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */

}

.personal-detail-box div h2 {
    font-size: 18px;
    font-family: "Onset", sans-serif;
    font-weight: 700;
}

.personal-detail-box div p {
    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
}

.icon-div {
    padding: 15px;
    background: rgba(247, 247, 249, 1);
    border-radius: 74px;
    max-width: 390px;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 676px;

}

.contact-form-input {
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 20px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    padding: 20px;
    height: 73px;
    width: 100%;
    max-width: 676px;
    color: rgba(5, 18, 60, 0.8);



}

.contact-form-textarea {
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 20px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    /* padding: 20px; */
    height: 272px;
    width: 100%;
    max-width: 676px;
}

.contact-form-btn {
    background: linear-gradient(265.52deg, #39A9E3 -0.8%, #57DAAA 95.88%),
        linear-gradient(85.52deg, #3FC3CC 4.12%, #4D7FC6 100.8%);
    padding: 1rem 2rem;
    font-size: 22px;
    font-weight: 700;
    font-family: "Onset", sans-serif;
    color: white;
    border: none;
    outline: none;
    box-shadow: 0px 0px 8px 0px rgba(103, 199, 236, 0.6);

}


/* Responsive Design */
@media (max-width: 1024px) {
    .contact-us-main {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .contact-form,
    .personal-detail {
        width: 90%;
        max-width: 676px;
    }

    .contact-form-input,
    .contact-form-textarea {
        font-size: 16px;
        /* Reduced font size */
        padding: 15px;
    }

    .contact-form-btn {
        font-size: 18px;
        /* Reduced font size */
        padding: 0.8rem 1.5rem;
    }

    .personal-detail-box {
        width: 100%;
        padding: 20px;
    }

    /* Reduced font size for headings */
    .contact-us-top-heading {
        font-size: 20px;
    }

    .contact-us-top-main {
        font-size: 40px;
    }

    .contact-us-top-para {
        font-size: 17px;
    }

    /* Smaller fonts inside contact details */
    .personal-detail-box h2 {
        font-size: 17px;
    }

    .personal-detail-box p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .contact-us-top-main {
        font-size: 32px;
    }

    .why-choose-us-main {
        display: unset !important
    }

    .contact-us-top-para {
        font-size: 16px;
    }

    .contact-form-input,
    .contact-form-textarea {
        font-size: 15px;
    }

    .contact-form-btn {
        font-size: 17px;
    }

    .personal-detail-box h2 {
        font-size: 16px;
    }

    .personal-detail-box p {
        font-size: 14px;
    }

    .nav_topbar {
        margin-top: 0px !important;
    }

    .footer-upper-call {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .contact-us-top-heading {
        font-size: 18px;
    }

    .contact-us-top-main {
        font-size: 26px;
    }

    .contact-us-top-para {
        font-size: 14px;
    }

    .contact-form-input,
    .contact-form-textarea {
        font-size: 14px;
    }

    .contact-form-btn {
        font-size: 16px;
    }

    .personal-detail-box h2 {
        font-size: 15px;
    }

    .personal-detail-box p {
        font-size: 13px;
    }
}


.map-container {
    width: 100%;
    /* Adjust based on layout */
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    /* Prevents iframe overflow */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    /* Adjust height as needed */
    border: none;
}



.teacher-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    margin: 60px auto;
    width: 100%;


}

.teacher-heading {
    font-size: 55px;
    font-weight: 600;
    font-family: "Fredoka", sans-serif;
    text-align: center;
}

.teacher-para {
    font-size: 20px;
    font-weight: 400;
    font-family: "Onset", sans-serif;
    text-align: center;
    max-width: 594px;
    margin: 0 auto;
}

.teacher-main-section {
    width: 100%;
    max-width: 1300px;
    margin: 2rem auto;

    display: flex;
    flex-wrap: wrap;
    gap: 1rem;

    box-shadow: 0px 6px 74px 0px rgba(0, 0, 0, 0.06);

}

.teacher-main-section-img {

    width: 434px;
    height: 672px;
}

.teacher-main-section-img img {
    width: 434px;
    height: 672px;
    object-fit: cover;
}

.teacher-main-section-personal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    max-width: 370px;
    border-right: 1px solid rgba(0, 0, 0, 0.185);

}



.teacher-main-section-personal-heading h2 {
    font-size: 32px;
    font-weight: 600;
    font-family: "Onset", sans-serif;

}

.teacher-main-section-personal-heading p {
    font-size: 16px;
    opacity: 0.6;
    font-weight: 400;
    font-family: "Onset", sans-serif;

}

.teacher-main-section-personal-history h2 {
    font-size: 20px;

    font-weight: 600;
    font-family: "Onset", sans-serif;

}

.teacher-main-section-personal-history p {
    font-size: 16px;

    font-weight: 400;
    font-family: "Onset", sans-serif;

}

.teacher-btn {
    background: linear-gradient(265.52deg, #39A9E3 -0.8%, #57DAAA 95.88%),
        linear-gradient(85.52deg, #3FC3CC 4.12%, #4D7FC6 100.8%);
    padding: 1rem 2rem;
    color: white;
    border: none;
    width: 184px;
    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 700;
    box-shadow: 0px 0px 8px 0px rgba(103, 199, 236, 0.6);

}

.teacher-main-section-profesional {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    max-width: 370px;
}

.teacher-professional-detail-container {
    display: flex;
    flex-direction: column;
}



.teacher-professional-heading {
    font-size: 20px;
    font-weight: 600;
    font-family: "Onset", sans-serif;

}

.teacher-professional-detail {
    padding-bottom: 170px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.205);
}

.teacher-professional-detail p {
    font-size: 16px;
    font-weight: 400;
    font-family: "Onset", sans-serif;

}

.teacher-professional-detail span {
    opacity: 0.6;
}

.teacher-social-section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.teacher-social-section h2 {
    font-size: 20px;
    font-weight: 600;
    font-family: "Onset", sans-serif;

}

@media (max-width: 1024px) {
    .teacher-section {
        padding: 2rem 1rem;
        margin: unset !important
    }

    .teacher-heading {
        font-size: 45px;
    }

    .teacher-para {
        font-size: 18px;
        max-width: 500px;
    }

    .teacher-main-section {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
    }

    .teacher-main-section-img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .teacher-main-section-img img {
        width: 100%;
        height: auto;
    }

    .teacher-main-section-personal {
        max-width: 90%;
        /* text-align: center; */
        border-right: none;
    }

    .teacher-main-section-profesional {
        max-width: 90%;
        /* text-align: center; */
    }

    .teacher-professional-detail {
        padding-bottom: 1rem;

    }

    .teacher-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .teacher-heading {
        font-size: 38px;
    }

    .teacher-para {
        font-size: 16px;
    }

    .teacher-main-section {
        gap: 1.5rem;
    }

    .teacher-main-section-personal-heading h2 {
        font-size: 26px;
    }

    .teacher-main-section-personal-history h2,
    .teacher-professional-heading {
        font-size: 18px;
    }

    .teacher-main-section-personal-history p,
    .teacher-professional-detail p {
        font-size: 14px;
    }

    .teacher-btn {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .teacher-heading {
        font-size: 32px;
    }

    .teacher-para {
        font-size: 14px;
    }

    .teacher-main-section {
        padding: 1rem;
        gap: 1rem;
    }

    .teacher-main-section-img {
        max-width: 300px;
    }

    .teacher-main-section-personal-heading h2 {
        font-size: 22px;
    }

    .teacher-main-section-personal-history h2,
    .teacher-professional-heading {
        font-size: 16px;
    }

    .teacher-main-section-personal-history p,
    .teacher-professional-detail p {
        font-size: 13px;
    }

    .teacher-btn {
        font-size: 13px;
        width: 100%;
        max-width: 200px;
    }
}


button {
    font-family: "Onset", sans-serif;
    font-size: 20px;
}

.topbar {
    width: 100%;
    /* Full width */
    height: 45px;
    /* Fixed height */
    background: linear-gradient(265.52deg, #39A9E3 -0.8%, #57DAAA 95.88%),
        linear-gradient(85.52deg, #4D7FC6 4.12%, #3FC3CC 100.8%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Ensures vertical centering */
    padding: 0 20px;
    /* Adds spacing */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    color: white;
    /* Ensures text is visible */
}

.topbar-para {
    font-size: 14px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    color: white;
    flex: 1;
    /* Makes sure text and icons take appropriate space */
    margin-left: 6rem;
    /* Centers text horizontally */
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

@media (max-width:1366px) {
    .testimonial-image img {
        max-width: 233px !important;
    }
}

.footer-bottom-icons a {
    color: white;
    font-size: 16px;
}

.footer-bottom-icons a:hover {
    opacity: 0.8;
}


.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 0.8rem;
}

.navbar .nav-titles {
    max-width: 774px;
    /* min-width: 50%; */
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    /* background-color: red; */


    a {
        text-decoration: none;
        color: black;
        font-size: 16px;
        text-transform: capitalize;
        font-family: "Onset", sans-serif;
        font-weight: 400;
    }

    a:hover {
        color: rgb(70, 67, 67);
    }
}

.logo-section {
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
}

.cta-button {
    padding: 1rem 2rem;
    color: white;
    border-radius: 3px;
    border: none;
    background: linear-gradient(265.52deg, #39A9E3 -0.8%, #57DAAA 95.88%),
        linear-gradient(85.52deg, #3FC3CC 4.12%, #4D7FC6 100.8%);



    transition: all 0.2s linear;
    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 700;


}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    background: none;
    border: none;
}


/* Mobile & Tablet Navigation */
/* Styling for Mobile Menu */

@media (max-width: 768px) {
    .nav-titles {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 65vh;
        background: #fff;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
        transition: left 0.4s ease-in-out;
    }

    .navbar .nav-titles {
        gap: 0rem;
        justify-content: space-evenly;
    }

    /* Show menu when active */
    .nav-titles.active {
        left: 0;
        /* Slide into view */
        z-index: 50;

    }

    /* Hamburger button styling */
    .hamburger {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    /* Hide CTA button on small screens */
    .cta-section {
        display: none;
    }
}

.cta-button-two {
    padding: 1rem 2rem;
    color: white;
    border-radius: 3px;
    border: none;
    background: linear-gradient(85.52deg, #79C13C 4.12%, #51C89D 100.8%);



    transition: all 0.2s linear;
}

.cta-button-two:hover {
    transform: scale(0.95);
}

.cta-button:hover {

    transform: scale(0.95);
}


.hero-section {
    background: rgb(2, 0, 36);
    background: linear-gradient(257.71deg, #FFB100 24.42%, #FE594F 97.03%);
    font-family: "Onset", sans-serif;
    position: relative;
}

.hero-section-content {
    padding: 5rem 1rem;
}

.hero-section-heading {
    color: white;
    font-size: 25px;
}

.hero-section-tagline {
    font-family: "Fredoka", sans-serif;
    color: white;
    font-size: 65px;
    /* max-width: 658px; */
    min-width: 722px;
    line-height: 100%;
    font-weight: 600;
}

.hero-section-tagline-small {
    color: rgb(219, 217, 217);
    font-size: 20px;
    width: 100%;
    max-width: 522px;
}

.hero-section-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-section-image {
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hero-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 2rem;
    }

    .hero-section-content {
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .hero-section-tagline {
        font-size: 50px;
        min-width: unset !important;
    }

    .hero-section-tagline-small {
        font-size: 18px;
    }

    .hero-section-cta {
        justify-content: center;
    }

    .hero-section-image {
        position: relative;
        width: 100%;
        height: 400px;
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section-tagline {
        font-size: 40px;
    }

    .hero-section-tagline-small {
        font-size: 16px;
    }

    .hero-section {
        min-height: auto;
        padding: 3rem 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .hero-section-tagline {
        font-size: 35px;
    }

    .hero-section-tagline-small {
        font-size: 14px;
    }

    .hero-section-image img {
        max-width: 90%;
    }

    .cta-button,
    .cta-button-two {
        width: 50%;
        /* Full width buttons on very small screens */
        padding: 9px;
        font-size: 15px;
    }

    .hero-section-image {
        height: unset !important;
    }

    .hero-section-image img {
        max-width: 90%;
        height: 246px;
        /* display: none !important; */
        /* height: 344px !important; */
    }
}




.second-section {
    width: 100%;
    max-width: 1280px;
    height: auto;
    margin: 100px auto;
    display: flex;
    gap: 1rem;
}

.second-section-right {
    display: grid;
    gap: 1rem;
    max-width: 900px;
}

.second-section-right-headings {
    display: grid;
    gap: 25px;
    max-width: 600px;
}

.second-section-right-heading {
    font-size: 55px;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    line-height: 100%;
}

.second-section-right-para {
    font-size: 20px;
    opacity: 60%;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    line-height: 100%;
}

.second-section-box {
    display: flex;
    gap: 1rem;
}

.svg-container {
    width: 100px;
    height: 100px;
}

.second-section-box-tagline svg {
    margin-bottom: 13px;
}

.second-section-box-tagline {
    h2 {
        font-size: 28px;
        font-family: "Fredoka", sans-serif;
    }

    p {
        font-size: 16px;
        font-family: "Onset", sans-serif;
        opacity: 60%;
    }
}

.second-section-left .img-div {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 204px;
    width: 34%;
    height: 26%;
    /* border-left: 5px solid #5cc681; */
    border-bottom: 5px solid #59c688;
}

.second-section-left {
    width: 387px;
    height: 474px;
    position: relative;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    svg {
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

@media (max-width: 991px) {
    .second-section {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 2rem;
    }

    .second-section-right-heading {
        font-size: 40px;
        /* Adjusted for smaller screens */
    }

    .second-section-right-para {
        font-size: 18px;
    }

    .second-section-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .svg-container {
        width: 80px;
        /* Scales down SVG size */
        height: 80px;
    }

    .second-section-left {
        width: 300px;
        height: auto;
    }

    .second-section-left img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .second-section-right-heading {
        font-size: 32px;
    }

    .second-section-right-para {
        font-size: 16px;
    }

    .second-section-box-tagline h2 {
        font-size: 22px;
    }

    .second-section-box-tagline p {
        font-size: 14px;
    }

    .svg-container {
        width: 60px;
        height: 60px;
    }

    .second-section-left {
        width: 250px;
    }
}

.about-us {
    width: 100%;
    height: auto;
    background: linear-gradient(265.52deg, #39A9E3 -0.8%, #57DAAA 95.88%),
        linear-gradient(85.52deg, #3FC3CC 4.12%, #4D7FC6 100.8%);
    display: flex;
    justify-content: center;
}

.about-us-image {
    height: auto;
}

.about-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us-content-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-content {
    width: 100%;
    max-width: 660px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 40px 20px;
}

.about-us-content h2 {
    color: white;
    font-size: 25px;
    font-family: "Onset", sans-serif;
    font-weight: 600;
}

.about-us-content h1 {
    font-size: 65px;
    color: white;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    max-width: 450px;
}

.about-us-content p {
    font-size: 20px;
    color: white;
    font-family: "Onset", sans-serif;
    font-weight: 400;
}

.about-us-content li {
    color: white;
}

.about-us-content button {
    background: linear-gradient(218.02deg, #FFB100 11.84%, #FE594F 85.3%);
    padding: 1rem 2rem;
    box-shadow: 0px 0px 8px 0px #ECB56799;
    color: white;
    border: none;
    width: 180px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .about-us {
        flex-direction: column;
    }

    .about-us-image {
        width: 100%;
        display: none;
        /* Hide the image on smaller screens */
    }

    .about-us-content-container {
        width: 100%;
    }

    .about-us-content h1 {
        font-size: 40px;
    }

    .about-us-content p {
        font-size: 18px;
    }
}

.online-class {
    max-width: 1280px;
    /* margin: 2.5rem auto; */
    margin: 4.5rem auto;
}

.online-class .online-class-heading {
    font-size: 55px;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    text-align: center;
}

.online-class .online-class-para {
    font-size: 20px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    text-align: center;
    opacity: 60%;
}

.online-class .online-class-link {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 auto;
    max-width: 555px;
}

.online-class .online-class-link a {
    font-size: 20px;
    font-family: "Onset", sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: black;
}

.online-class .card {
    display: flex;
    flex-direction: column;
    box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.2);
}

.online-class img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.online-class .card-image {
    position: relative;
}

.online-class .card-tag {
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px 22px;
    color: white;
    background: #43AECA;
}

.online-class .card-content {
    /* padding: 8px 10px; */
    padding: 8px 20px;
}

.online-class .card-content span {
    font-size: 16px;
    opacity: 60%;
    font-family: "Onset", sans-serif;
}

.online-class .card-content h2 {
    font-size: 24px;
    font-family: "Fredoka", sans-serif;
}

.online-class .card-content h1 {
    font-size: 16px;
    opacity: 60%;
    font-family: "Onset", sans-serif;
}

.online-class .lesson-play {
    /* margin-left: 10px; */
    margin-left: 18px;
    font-size: 16px;
    opacity: 60%;
    font-family: "Onset", sans-serif;
}

.online-class .card-content p {
    font-size: 16px;
    opacity: 60%;
    font-family: "Onset", sans-serif;
    max-width: 350px;
}

.online-class .course-btn {
    display: grid;
    place-content: center;
    margin-top: 2rem;
}

.online-class .course-btn button {
    background: linear-gradient(265.52deg, #39A9E3 -0.8%, #57DAAA 95.88%),
        linear-gradient(85.52deg, #3FC3CC 4.12%, #4D7FC6 100.8%);
    padding: 1rem 2rem;
    color: white;
    border: none;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .online-class .online-class-heading {
        font-size: 40px;
        /* Reduce heading size */
    }

    .online-class .online-class-para {
        font-size: 18px;
    }

    .online-class .online-class-link {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .online-class .online-class-link a {
        font-size: 18px;
    }

    .online-class .card {
        width: 100%;
    }

    .online-class .card-content h2 {
        font-size: 22px;
    }

    .online-class .card-content p {
        font-size: 14px;
        max-width: 100%;
    }

    .online-class .lesson-play {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .online-class {
        padding: 1rem;
    }

    .meet-staff-image img {

        width: 90% !important;

    }

    .meet-staff-image {
        justify-content: unset !important;
        height: 560px !important;

    }

    .online-class .online-class-heading {
        font-size: 32px;
    }

    .online-class .online-class-para {
        font-size: 16px;
    }

    .online-class .online-class-link a {
        font-size: 16px;
    }

    .online-class .card-content h2 {
        font-size: 20px;
    }

    .online-class .card-content p {
        font-size: 14px;
    }

    .online-class .course-btn button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .online-class .online-class-heading {
        font-size: 28px;
    }

    .meet-staff-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }

    .online-class .online-class-para {
        font-size: 14px;
    }

    .online-class .card-content h2 {
        font-size: 18px;
    }

    .online-class .card-content p {
        font-size: 12px;
    }

    .online-class .course-btn button {
        font-size: 14px;
        padding: 0.8rem 1.5rem;
    }
}


.meet-staff {
    /* padding: 4rem 0; */
    padding: 3rem 0 1rem;
    display: grid;
    place-content: center;
    background: linear-gradient(85.52deg, #79C13C 4.12%, #51C89D 100.8%);
    position: relative;
}

.meet-staff-inside {
    max-width: 1375px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meet-staff-heading {
    text-align: center;
    font-size: 55px;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    color: white;
}

.meet-staff-para {
    color: white;
    width: 100%;
    max-width: 594px;
    font-size: 20px;
    font-weight: 400;
    opacity: 60%;
    font-family: "Onset", sans-serif;
    text-align: center;
    margin: 0 auto;
    line-height: 24px;
}

.meet-staff-corousel.owl-carousel {
    display: block;
    /* Override grid for Owl */
    padding: 20px;
    max-width: 1200px;
    margin: 12px auto 0;
    position: relative;
}

.meet-staff-corousel-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.meet-staff-image {
    width: 100%;
    height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meet-staff-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

button.left,
button.right {
    position: absolute;
    top: 531px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

button.left {
    left: 115px;
}

button.right {
    right: 115px;
}


@media (max-width: 768px) {
    .meet-staff-corousel {
        grid-template-columns: 1fr;
        /* Forces stacking */
    }


    button.left,
    button.right {
        display: none;
        /* Hide buttons */
    }
}

@media (max-width: 480px) {


    .meet-staff-image {
        height: 300px;
        /* Reduce image size on small screens */
    }

    button.left,
    button.right {
        display: none;
        /* Hide buttons on very small screens */
    }
}



.meet-staff-description {
    color: white;
}

.meet-staff-description h2 {
    margin-top: 8px;
    font-size: 24px;
    font-family: "Onset", sans-serif;
    font-weight: 600;
    letter-spacing: -4%;
}

.meet-staff-description p {
    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    opacity: 60%;
}


/* Responsive adjustments */
@media (max-width: 767.98px) {
    .meet-staff .meet-staff-heading {
        font-size: 40px;
    }

    .meet-staff .meet-staff-para {
        font-size: 18px;
    }
}


.testimonials {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.testimonials-heading {
    text-align: center;
    font-size: 25px;
    font-family: "Onset", sans-serif;
    font-weight: 600;
}

.testimonials-tagline {
    text-align: center;
    font-size: 65px;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
}

.testimonials-container {
    margin-top: 3rem;
}

.testimonials-container>div {
    display: flex;
    gap: 1rem;
    align-items: center;
    /* overflow-x: hidden;
    overflow-y: hidden; */
}

.testimonials-container-item {
    width: 780px;
    height: 486px;
    flex: none;
    order: 0;
    flex-grow: 0;
    display: flex;
    gap: 1rem;
    min-width: 780px;
    height: 486px;
}

.testimonials-container-item-img {
    height: 100%;
}

.testimonials-container-item-img img {
    width: 360px;
    height: 100%;
    /* Corrected to maintain aspect ratio */
    object-fit: cover;
}

.testimonials-container-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonials-container-item-content p {
    font-size: 18px;
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
    max-width: 325px;
    line-height: 28px;
}

.testimonials-container-item-content-author {
    gap: 1rem;
}

.testimonials-container-item-content-author h2 {
    font-size: 20px;
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
}

.testimonials-container-item-content-author span {
    font-size: 14px;
    font-family: "Onset", sans-serif;
    font-weight: 500;
    opacity: 80%;
}

.testimonials-container-footer {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials-container-footer .testimonials-container-footer-toggle {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.testimonials-container-footer .testimonials-container-footer-button button {
    padding: 1rem 2rem;
    color: white;
    border: none;
    background: linear-gradient(265.52deg, #39a9e3 -0.8%, #57daaa 95.88%),
        linear-gradient(85.52deg, #3fc3cc 4.12%, #4d7fc6 100.8%);
}




@media (max-width: 991px) {
    .testimonials {
        margin-top: 2rem;
    }

    .testimonials-tagline {
        font-size: 48px;
    }

    .testimonials-container-item {
        flex-direction: column;
        width: 100%;
        min-width: unset;
        height: auto;
    }

    .testimonials-container-item-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .testimonials-container-item-content {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .testimonials-container-item-content p {
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .testimonials-heading {
        font-size: 22px;
    }

    .owl-carousel .item {
        flex-direction: column;
        margin: 0 !important;
    }

    .testimonials-tagline {
        font-size: 36px;
    }

    .testimonials-container {
        overflow: hidden;
    }

    .testimonials-container>div {
        flex-direction: column;
    }

    .testimonials-container-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .testimonials-container-item-img {
        width: 100%;
        height: auto;
    }

    .testimonials-container-item-img img {
        width: 100%;
        height: auto;
    }

    .testimonials-container-item-content p {
        font-size: 14px;
        line-height: 22px;
    }

    .testimonials-container-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .testimonials-heading {
        font-size: 20px;
    }

    .testimonials-tagline {
        font-size: 28px;
    }

    .testimonials-container-item-content p {
        font-size: 14px;
        line-height: 22px;
    }

    .testimonials-container-footer-toggle .slide-count {
        font-size: 14px;
    }

    .testimonials-container-footer-button button {
        width: 100%;
        padding: 0.8rem;
        font-size: 14px;
    }
}

.blogs-container {
    width: 100%;
    min-height: 800px;
    padding: 2rem;
    display: grid;
    place-content: center;
    background: linear-gradient(85.52deg, #9066E3 4.12%, #CA48EE 100.8%);
}

.blogs {
    width: 1280px;
    height: 700px;
}

.blogs-heading {
    font-size: 25px;
    font-family: "Onset", sans-serif;
    font-weight: 600;
    color: white;
    text-align: center;
}

.blogs-tagline {
    font-size: 65px;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    color: white;
    text-align: center;
}

.blogs-card-container {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
}

.blogs-card {
    width: 410px;
    height: 500px;
    display: flex;
    flex-direction: column;
    background-color: white;
}

.blogs-card-image {
    width: 100%;
}

.blogs-card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blogs-card-content {
    padding: 1rem;
}

.blogs-card-content h2 {
    font-size: 24px;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
}

.blogs-card-content p {
    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    opacity: 60%;
}

.blogs-card-footer {
    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    opacity: 60%;
    padding: 1rem;
    border-top: 1px solid #c8c8c8;

}

@media (max-width: 991px) {
    .blogs-container {
        margin-top: 2rem;

    }

    .blogs {
        width: 100%;
        height: auto;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .blogs-tagline {
        font-size: 50px;
    }

    .blogs-card-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .blogs-card {
        width: 100%;
        max-width: 380px;
        height: auto;
    }

    .blogs-card-content h2 {
        font-size: 22px;
    }

    .blogs-card-content p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .blogs-container {
        padding: 1rem;
    }

    .blogs-tagline {
        font-size: 40px;
    }

    .blogs-card-container {
        flex-direction: column;
        align-items: center;
    }

    .blogs-card {
        width: 90%;
    }

    .blogs-card-image img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .blogs-heading {
        font-size: 20px;
    }

    .blogs-tagline {
        font-size: 30px;
    }

    .blogs-card {
        width: 100%;
    }

    .blogs-card-image img {
        height: 200px;
    }

    .blogs-card-content h2 {
        font-size: 20px;
    }

    .blogs-card-content p {
        font-size: 14px;
    }

    .blogs-card-footer {
        font-size: 14px;
    }
}



.live-classes {
    max-width: 1280px;
    margin: 6rem auto;
}

.live-classes-heading {
    font-size: 55px;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    text-align: center;
}

.live-classes-description {
    font-size: 20px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    opacity: 60%;
    text-align: center;
    width: 630px;
    margin: 0 auto;
}

.live-classes-card-container {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.7rem;
}

.live-classes-card-container .owl-nav {
    display: none;
}

.live-classes-card {
    width: 413px;
    height: 254px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    /* box-shadow: 0px 6px 74px 0px #0000000F; */
    box-shadow: 0px 5px 30px 0px #0000000F;
    padding: 1rem 0.7rem;
}

.live-classes-card h2 {
    font-size: 24px;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
}

.live-classes-card-container .owl-stage {
    min-height: 300px;
    margin-top: 10px;
}

.live-classes-card p {
    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
}

.live-classes-card-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.live-classes-card-button button {
    border: none;
    background-color: transparent;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .live-classes-card-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .live-classes-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .live-classes-heading {
        font-size: 45px;
    }

    .live-classes-description {
        font-size: 18px;
        width: 90%;
    }

    .testimonial-content p {
        margin-bottom: 20px !important;
        padding-left: 11px !important;
        font-size: 14px !important;

    }

    .quote-icon {
        width: 38px !important;
        margin-top: 20px;
        height: 44px !important;
    }

    .live-classes-card {
        width: 96% !important;
    }
}



@media (max-width: 576px) {
    .live-classes-heading {
        font-size: 35px;
    }

    .live-classes-description {
        font-size: 16px;
    }
}



.footer {
    background: #05123C;
    color: white;

    /* .footer-upper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-evenly;
        padding: 1rem;
    } */

    .footer-upper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 20px 10px;
        justify-content: space-between;
    }

    .footer-upper-call {
        display: flex;
        gap: 0.8rem;
        /* height: 39px; */
        margin-top: 16px;
        align-items: center;
        justify-content: center;
        padding-right: 1rem;
    }

    .mid-line {
        border-right: 1px solid gray;
        height: 39px;
    }

    .footer-upper-call-icon {
        width: 48px;
        height: 48px;
    }

    .call-me {
        font-size: 14px;
        font-family: "Onset", sans-serif;
        font-weight: 400;
    }

    .phone {
        font-size: 20px;
        font-family: "Fredoka", sans-serif;
        font-weight: 400;
        /* +44 20 3693 4454 */


        font-style: normal;
        font-weight: 500;

        line-height: 24px;
        text-align: center;

        color: #FFFFFF;



    }

}

@media (max-width:640px) {
    .footer-upper-call-icon svg {
        width: 38px;
        height: 38px;
    }

    .footer-upper-call {
        margin-top: unset !important;
        height: unset !important;
    }

    .footer .mid-line {
        display: none !important;
    }

    .testimonial-author {
        text-align: center;
        margin-bottom: 23px;

    }


    .footer-upper {
        padding: 20px !important;
        margin-left: 0 !important;
    }

    .live-classes-card h2 {
        font-size: 16px;
    }

}

.horizantal-line {
    margin: 0 auto;
    max-width: 90%;
    background-color: #ffefef73;
    height: 1px;
    opacity: 50%;
}

.footer-bottom {}

.footer-bottom-logo {
    font-size: 35px;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;

}

.footer-bottom-para {
    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    color: white;
    opacity: 80%;
    letter-spacing: -4%;

}

.footer-bottom-icons i {
    color: white;
    font-size: 16px;

}

.footer-bottom-quicklink {
    color: white;
    font-size: 18px;
    font-family: "Onset", sans-serif;
    font-weight: 600;
    letter-spacing: -4%;


}

.list-unstyled {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-unstyled a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    opacity: 80%;
    letter-spacing: -4%;
}

.footer-bottom-newsletter {

    font-size: 18px;
    font-family: "Onset", sans-serif;
    font-weight: 600;
    letter-spacing: -4%;
}

.footer-bottom-newsletter-para {
    font-size: 18px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    letter-spacing: -4%;
    opacity: 80%;
    line-height: 24px;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    padding: 5px;
    display: flex;
    color: white;
}

.newsletter-input-field {
    background: transparent;
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 8px;
    color: white;
}

.newsletter-input-field::placeholder {
    /* Add this line */
    color: white;
}

.newsletter-button {
    font-family: "Fredoka", sans-serif;
    color: white;
    border-radius: 5px;
    border: none;
    padding: 8px 15px;
    background: linear-gradient(265.52deg, #39A9E3 -0.8%, #57DAAA 95.88%),
        linear-gradient(85.52deg, #3FC3CC 4.12%, #4D7FC6 100.8%);
}

.newsletter-section {
    gap: 1.5rem;
}

/* Let's talk: */

.copyright {
    padding: 1rem;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    font-family: "Onset", sans-serif;
    opacity: 80%;

}


.pricing {

    /* gap: 4rem; */

}

.pricing-heading-box {

    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 594px;
    margin: 0 auto;
    margin-top: 5rem;


}

.pricing-heading-top {
    font-size: 25px;
    font-weight: 600;
    font-family: "Onset", sans-serif;
    text-align: center;
}

.pricing-heading-main {
    text-align: center;
    font-size: 55px;
    font-weight: 600;
    font-family: "Fredoka", sans-serif;
}

.pricing-heading-para {
    font-size: 20px;
    font-weight: 400;
    font-family: "Onset", sans-serif;
    opacity: 0.6;
    text-align: center;
}

.pricing-area {
    box-shadow: 0px 6px 74px 0px #0000000F;
    max-width: 1280px;
    width: 100%;
    min-height: 791px;
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
}

.pricing-area-heading-container {

    border-right: 1px solid #0000001A;

    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
}

.pricing-area-heading {
    font-size: 24px;
    font-weight: 500;
    font-family: "Fredoka", sans-serif;
    max-width: 258px;

}

.pricing-area-lists {
    margin-top: 5.3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-area-lists p {

    font-size: 16px;
    font-weight: 400;
    font-family: "Onset", sans-serif;
    opacity: 60%;
    border-bottom: 1px solid #000000;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.pricing-parents {
    border-right: 1px solid #0000001A;
    max-width: 436px;
    width: 100%;
}

.pricing-parents-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 183px;
    background: linear-gradient(263.26deg, #ffb30034 23.37%, #fe584f25 89.85%);
    gap: 1rem;
    /* opacity: 0.1; */
}

.pricing-parents-top svg {
    width: 100%;
    max-width: 436px;
}

.pricing-parents-top-heding {
    font-size: 24px;
    font-family: "Fredoka", sans-serif;
    font-weight: 400;
}


.pricing-parents-top-list {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-parents-top-list p {

    text-align: center;
    font-size: 16px;
    font-weight: 400;
    font-family: "Onset", sans-serif;
    opacity: 60%;
    border-bottom: 1px solid #000000;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}


.pricing-button-get {
    /* background: linear-gradient(218.02deg, #FFB100 11.84%, #FE594F 85.3%); */
    background: linear-gradient(218.02deg, #fdb719 11.84%, #FE594F 85.3%);
    padding: 1rem 2rem;
    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 700;
    color: white;
    border: none;
}

.pricing-schools-top {
    background: linear-gradient(85.52deg, #3fc3cc3d 4.12%, #4d7fc63f 100.8%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 183px;
    gap: 1rem;
}

.pricing-schools-top svg {
    width: 100%;
    /* max-width: 436px; */
}

.pricing-schools {
    border-right: 1px solid #0000001A;
    max-width: 436px;
    width: 100%;
}

.pricing-button-get-school {

    /* background: linear-gradient(265.52deg, #39A9E3 -0.8%, #57DAAA 95.88%),
    linear-gradient(85.52deg, #3FC3CC 4.12%, #4D7FC6 100.8%); */
    background: linear-gradient(265.52deg, #39A9E3 -0.8%, #57DAAA 95.88%), linear-gradient(85.52deg, #3FC3CC 4.12%, #2d78e3 100.8%);
    padding: 1rem 2rem;
    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 700;
    color: white;
    border: none;
}

/* Responsive Fix - Keep Pricing Table Horizontal */
@media (max-width: 1024px) {
    .pricing-area {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .pricing-area-heading-container,
    .pricing-parents,
    .pricing-schools {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 320px;
        scroll-snap-align: start;
    }

    .pricing-area-heading-container {
        text-align: center;
        border-right: none;
    }

    .pricing-area-lists {
        margin-top: 2rem;
    }

    .pricing-parents,
    .pricing-schools {
        border-right: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pricing-parents-top,
    .pricing-schools-top {
        padding: 20px;
    }

    .pricing-parents-top svg,
    .pricing-schools-top svg {
        max-width: 100%;
    }

    .pricing-button-get,
    .pricing-button-get-school {
        width: 80%;
    }
}

/* Mobile Screens - Ensure Proper Scrolling */
@media (max-width: 768px) {
    .pricing-area {
        overflow-x: auto;
        display: flex;
        flex-wrap: nowrap;
    }

    .pricing-area-heading-container,
    .pricing-parents,
    .pricing-schools {
        flex: 0 0 90%;
        max-width: 90%;
    }

    .pricing-heading-main {
        font-size: 40px;
    }

    .pricing-heading-para {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .pricing-heading-main {
        font-size: 32px;
    }

    .pricing-heading-para {
        font-size: 16px;
    }

    .pricing-area {
        padding: 10px;
    }

    .pricing-parents-top,
    .pricing-schools-top {
        padding: 15px;
    }

    .pricing-parents-top-list p {
        font-size: 14px;
    }

    .pricing-button-get,
    .pricing-button-get-school {
        padding: 0.8rem 1.5rem;
        font-size: 14px;
    }
}


.video-class {

    max-width: 1280px;
    margin: 2rem auto;
}

.video-class-image {
    width: 100%;
    /* Make it span full width */
    max-width: 1280px;
    /* Limit max width for larger screens */
    height: auto;
    /* Maintain aspect ratio */
    margin: 2rem auto;
}

.video-class-image img {
    width: 100%;
    /* Ensure full width */
    height: auto;
    /* Maintain aspect ratio */
    object-fit: cover;
    /* Keep proper scaling */
    border-radius: 20px;
    /* Keep rounded corners */
}

.video-class-first {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.336);

}

.video-class-heading {
    font-size: 40px;
    font-weight: 600;
    font-family: "Fredoka", sans-serif;
    margin-bottom: 1rem;
}

.video-class-para {
    font-size: 20px;
    font-weight: 400;
    font-family: "Onset", sans-serif;
    line-height: 20px;
    opacity: 0.6;
}

.video-class-svg {
    font-size: 14px;
    font-weight: 400;
    font-family: "Onset", sans-serif;

    opacity: 0.6;

}

.video-class-lesson {
    display: flex;
    gap: 2rem;
    font-size: 14px;
    font-weight: 400;
    font-family: "Onset", sans-serif;



}

.video-class-second {
    margin-top: 2rem;

}


.video-class-second-heading {
    font-size: 24px;
    font-weight: 600;
    font-family: "Fredoka", sans-serif;
}

.video-class-second-list li {

    font-size: 20px;
    font-weight: 400;
    font-family: "Onset", sans-serif;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}


.video-class-lesson-new {
    margin-top: 2rem;
    box-shadow: 0px 6px 74px 0px rgba(0, 0, 0, 0.06);
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;

}

.video-class-lesson-top {
    /* background-color: red; */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-class-lesson-top h2 {

    font-size: 24px;
    font-weight: 600;
    font-family: "Fredoka", sans-serif;
}

.video-class-lesson-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.video-class-lesson-main-clip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.247);
    padding-bottom: 1rem;

    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 500;
}

.video-class-lesson-main-clip div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .video-class {
        padding: 2rem 1rem;
    }

    .video-class-image {
        max-width: 100%;
        margin: 1.5rem auto;
    }

    .video-class-heading {
        font-size: 36px;
        text-align: center;
    }

    .video-class-para {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }

    .video-class-lesson {
        /* flex-direction: column;
        gap: 1rem;
        text-align: center; */
    }

    .video-class-second {
        text-align: center;
    }

    .video-class-second-list {
        padding: 0 0.5rem;
        text-align: left;
    }

    .video-class-lesson-new {
        padding: 1rem;
    }

    .video-class-lesson-main-clip {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .video-class-heading {
        font-size: 30px;
    }

    .video-class-para {
        font-size: 16px;
        line-height: 22px;
    }

    .video-class-lesson-new {
        gap: 1rem;
    }

    .video-class-lesson-main-clip {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .video-class-heading {
        font-size: 26px;
    }

    .video-class-para {
        font-size: 14px;
        line-height: 20px;
    }

    .video-class-lesson-main-clip {
        font-size: 13px;
    }

    .video-class-lesson-top h2 {
        font-size: 20px;
    }
}


.online-class-heading-two {
    font-size: 40px;
    font-weight: 600;
    font-family: "Fredoka", sans-serif;
}

.reviews {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    /* flex-wrap: wrap; */
    gap: 2rem;
}

.customer-reviews {
    box-shadow: 0px 6px 74px 0px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 409px;
    height: 344px;
    padding: 1rem;
    box-sizing: border-box;
}

.customer-reviews h2 {
    font-size: 24px;
    font-weight: 600;
    font-family: "Fredoka", sans-serif;
}

.customer-reviews span {
    font-size: 16px;
    font-weight: 400;
    font-family: "Onset", sans-serif;
}

.customer-reviews-rating {
    margin-top: 1rem;
    width: 100%;
    max-width: 400px;
}

.customer-comments {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 845px;
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 10px;

}

.customer-comments-only {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(229, 229, 229, 1)
}

.customer-comments-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* justify-content: center; */
}

.customer-profile {
    width: 40px;
    height: 40px;

}

.customer-profile img {
    object-fit: cover;
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.customer-comments-top h2 {
    font-size: 16px;
    font-weight: 500;
    font-family: "Onset", sans-serif;
}

.customer-comments-rate {
    display: flex;
    gap: 1rem;
    font-size: 14px;
    font-weight: 400;
    font-family: "Onset", sans-serif;
}

.customer-comments-para {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    font-family: "Onset", sans-serif;
}

.customer-comments-pagination {
    display: flex;
    padding: 1rem 2rem;
    justify-content: space-between;
    align-items: center;
}

.customer-comments-pagination-left {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.customer-comments-pagination-left p {
    font-size: 16px;
    font-weight: 400;
    line-height: 2opx;
    font-family: "Onset", sans-serif;
}

.customer-comments-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Centers content vertically */
    padding: 1rem;
    /* background: #f7f7f7; */
    border-radius: 10px;
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
}

/* Left Section */
.customer-comments-pagination-left {
    display: flex;
    align-items: center;
    /* Vertically center */
    gap: 10px;
}

/* Select Box with Arrow */
.custom-select {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-select select {
    appearance: none;
    /* Removes default arrow */
    padding: 10px 40px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    background: white;
}

/* Custom Down Arrow */
.custom-select .arrow {
    position: absolute;
    right: 10px;
    pointer-events: none;
    font-size: 14px;
    color: #555;
}

/* Right Section */
.customer-comments-pagination-right {
    display: flex;
    align-items: center;
    /* Center numbers vertically */
}

/* Pagination Numbers */
.pagination-numbers {
    display: flex;
    gap: 8px;
}

.page-number {
    padding: 13px 18px;
    /* border-radius: 5px; */
    /* background: #ddd; */
    border: 1px solid rgba(0, 0, 0, 0.253);
    cursor: pointer;
    font-weight: bold;
    color: rgba(38, 38, 38, 1);

    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 400;

}

.page-number.active {

    background: linear-gradient(265.52deg, #39A9E3 -0.8%, #57DAAA 95.88%),
        linear-gradient(85.52deg, #3FC3CC 4.12%, #4D7FC6 100.8%);

    color: white;
}

/* Responsive */
@media (max-width: 600px) {

    .customer-comments-pagination {
        flex-direction: column;
        gap: 1rem;
    }

    .customer-reviews-rating svg {
        /* max-width: 300px; */
        width: 100%;
        height: 190px;
    }

    .customer-comments-pagination-left,
    .customer-comments-pagination-right {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .reviews {
        flex-wrap: wrap;
    }

    .customer-comments-only {
        padding: 0 1rem;
    }

}


.about-hero {
    height: 510px;
    /* Explicit height */
    background: url('../../uploads/template_images/smallkid.png');
    background-position: center;
    background-size: cover;
    /* Ensures full coverage */
    background-repeat: no-repeat;
    margin-bottom: 2rem;
    display: flex;
    /* Enables flexbox */
    align-items: center;
    /* Centers content vertically */
    padding-left: 80px;
}

.about-hero-tagline {

    h2 {
        font-size: 65px;
        font-family: "Fredoka", sans-serif;
        font-weight: 600;
        color: white;
    }

    .about-hero-title {
        display: flex;
        gap: 10px;
    }

    p {
        font-size: 20px;
        font-family: "Onset", sans-serif;
        font-weight: 400;
        color: white;

    }

    span {
        font-size: 20px;
        font-family: "Onset", sans-serif;
        font-weight: 400;
        color: white;
        opacity: 60%;
    }
}


.about-section {
    width: 100%;
    max-width: 1280px;
    height: auto;
    margin: 100px auto;

}



.about-section-headings {
    display: grid;
    gap: 25px;
    /* max-width: 600px; */
}

.about-section-heading {
    font-size: 55px;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
}

.about-section-para {
    text-align: center;
    font-size: 20px;
    opacity: 60%;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    line-height: 100%;
    max-width: 594px;
    margin: 0 auto;
}

.about-box-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 255px;
    height: 236px;
}

.svg-container {
    width: 100px;
    height: 100px;
}

.about-box-tagline {
    display: flex;
    /* background-color: red; */
    flex-direction: column;
    justify-content: center;
    align-items: center;

    h2 {

        text-align: center;
        font-size: 28px;
        font-family: "Fredoka", sans-serif;
    }

    p {
        margin-top: 1rem;
        font-size: 16px;
        font-family: "Onset", sans-serif;
        opacity: 60%;
        text-align: center;
    }
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .about-section {
        margin: 50px auto;
        /* padding: 0 20px; Ensure no extra right padding */
    }

    .about-box-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        /* Center content properly */
        gap: 20px;
        padding: 0;
    }

    .about-box {
        /* background-color: red; */
        margin: 0 auto;
        width: 100%;
        max-width: 300px;
        /* Prevent stretching */
    }
}

@media (max-width: 768px) {
    .about-section {
        text-align: center;
        /* padding: 0 15px; */
    }

    .about-section-heading {
        font-size: 36px;
    }

    .about-section-para {
        font-size: 18px;
    }

    .about-box-container {
        justify-content: center;
    }

    .about-box {
        width: 90%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .about-section {
        margin: 30px auto;
        /* padding: 0 10px; */
    }

    .about-section-heading {
        font-size: 28px;
    }

    .about-box-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .about-box {
        width: 100%;
        max-width: 250px;
    }
}

.about-meet-staff {
    margin-top: 2rem;
    padding: 1rem 0;
    display: grid;
    place-content: center;
    background-color: white;
}

.about-meet-staff-heading {
    text-align: center;
    font-size: 55px;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    color: black;
}

.about-meet-staff-para {
    color: black;
    width: 100%;
    max-width: 594px;
    font-size: 20px;
    font-weight: 400;
    opacity: 60%;
    font-family: "Onset", sans-serif;
    text-align: center;
    margin: 0 auto;
    /* line-height: 100%; */
}

.about-meet-staff-description {
    color: black;
    margin-top: 21px;
}

.about-meet-staff-description h2 {
    font-size: 19px;
}


.why-choose-us {
    background: linear-gradient(257.71deg, #FFB100 24.42%, #FE594F 97.03%);

    min-height: 580px;
}

.why-choose-us-heading {
    padding-top: 80px;
    font-size: 55px;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    text-align: center;
    color: white;
}

.why-choose-us-para {
    color: white;
    margin-top: 20px;
    font-size: 20px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
    max-width: 594px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-us-main {
    max-width: 1228px;
    margin: 0 auto;
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 7rem;
    align-items: center;
    justify-content: center;
}

.why-choose-us-main-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-choose-us-main-box-heading {
    font-size: 65px;
    font-weight: 600;
    font-family: "Fredoka", sans-serif;
    color: white;
}

.why-choose-us-main-box-para {
    font-size: 20px;
    font-weight: 600;
    font-family: "Onset", sans-serif;
    color: white;
}


.about-hero-tagline h2 {
    font-size: clamp(35px, 5vw, 65px);
}

.about-hero-tagline p,
.about-hero-tagline span {
    font-size: clamp(16px, 2vw, 20px);
}

.about-section-heading,
.about-meet-staff-heading,
.why-choose-us-heading {
    font-size: clamp(35px, 5vw, 55px);
}

.about-section-para,
.about-meet-staff-para,
.why-choose-us-para {
    font-size: clamp(16px, 2vw, 20px);
}

.about-box-tagline h2 {
    font-size: clamp(20px, 3vw, 26px);
}

.about-box-tagline p {
    font-size: clamp(14px, 2vw, 16px);
}

.why-choose-us-main-box-heading {
    font-size: clamp(35px, 5vw, 65px);
}

.why-choose-us-main-box-para {
    font-size: clamp(16px, 2vw, 20px);
}


.feature-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 90px;


}

.feature-section-heading {
    /* margin-top: 2rem; */
    margin-top: 4rem;
    text-align: center;
    font-size: 55px;
    font-size: clamp(35px, 5vw, 55px);
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
}

.feature-section-para {
    text-align: center;
    /* font-size: 20px; */
    font-size: clamp(16px, 2vw, 20px);

    font-family: "Onset", sans-serif;
    font-weight: 400;
    opacity: 60%;
    max-width: 590px;
    margin: 0 auto;
}

.feature-section-card-container {
    max-width: 1280px;
    margin: 2rem auto;

    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    /* Aligns cards nicely */
}

.feature-card {

    /* flex: 1 1 413px; Prevents shrinking, maintains width */
    width: 413px;
    height: 254px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    /* box-shadow: 0px 6px 74px 0px #0000000F; */
    box-shadow: 0px 6px 74px 0px #00000017;
    padding: 1rem 1.5rem;
}

.feature-card h2 {
    font-size: 24px;
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
}

.feature-card p {
    font-size: 16px;
    font-family: "Onset", sans-serif;
    font-weight: 400;
}

.faq-section {
    max-width: 1020px;
    margin: 4rem auto;
    margin-bottom: 6rem;
}

.faq-section-heading {
    text-align: center;
    /* font-size: 55px; */
    font-size: clamp(30px, 5vw, 55px);
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
}

.faq-section-para {
    max-width: 728px;
    margin: 0 auto;
    text-align: center;
    /* font-size: 20px; */
    font-size: clamp(16px, 2.5vw, 20px);
    font-family: "Onset", sans-serif;
    font-weight: 400;
    opacity: 60%;
}

/* FAQ Styles */
.faq-section-main {
    margin-top: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: none;
}

.accordion-button:not(.collapsed) {
    color: unset !important;
    background-color: unset !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    z-index: 3;
    /* border-color: #86b7fe; */
    outline: 0;
    box-shadow: none !important;
}

.accordion-body {
    padding: 1rem 3.25rem;
    color: #484d5e;
    border-top: 1px solid #8080801c;
}



.faq-question {
    width: 100%;
    background: none;
    border: none;
    /* font-size: 20px; */
    font-size: clamp(18px, 2.5vw, 22px);
    font-family: "Fredoka", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.faq-toggle-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Hidden answer with smooth transition */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    font-size: clamp(16px, 2vw, 18px);
    font-family: "Onset", sans-serif;
    opacity: 0.8;
    transition: max-height 0.2s ease-out, padding 0.15s ease;
}

/* Active state */
.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

/* Frame */


.nav_topbar {
    margin-top: 3rem;
}

.second-section-left img {
    position: relative;
    display: inline-block;
}

.second-section-left::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -5px;
    width: 90%;
    height: 90%;
    border-left: 5px solid #5cc681;
    border-bottom: 5px solid #59c688;
}

.tab-link.active {
    color: #43aeca !important;
}

/*********************************************/

#carrousel {
    padding: 40px 0;
}

.owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    /* Space between items */
}

.owl-carousel img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

button {
    /* margin: 10px; */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.owl-carousel.client-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.testimonial-card {
    display: flex;

    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 10px;
    text-align: left;
    background: aliceblue !important;

    box-sizing: border-box;
}

.testimonial-image {
    flex-shrink: 0;
    /* Prevent image from shrinking */
    margin-right: 30px;
}

.testimonial-image img {
    max-width: 400px;
    /* Increased image size */
    height: 100%;
    /* Increased image size */
    border-radius: 0;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    flex-grow: 1;
    position: relative;
}

.quote-icon {
    /* position: absolute; */
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    fill: url(#paint0_linear_2009_346);
    /* Use fill with gradient */
    z-index: 1;
    /* Ensure it's above the text */
}

.testimonial-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
    margin-top: 20px;
    /* Space for the quote icon */
    margin-bottom: 20px;
    padding-right: 20px;
}

.testimonial-author h3 {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}

.testimonial-author span {
    font-size: 0.9em;
    color: #888;
    display: block;
}


/* date 4/7 course page  */

/* Styles for screens below 1048px */


/* Custom styles for the course section main container */
.course-section-main {
    background-color: #ffffff;
    /* Equivalent to bg-white */
    border-radius: 0.5rem;
    /* Equivalent to rounded-lg */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Equivalent to shadow */
    padding: 1.5rem;
    /* Equivalent to p-6, using a fixed value for simplicity */
    flex-grow: 1;
}

/* Custom styles for the course top bar */
.course-section-topbar {
    padding-bottom: 1rem;
    /* Equivalent to pb-4 */
    border-bottom: 1px solid #e5e7eb;
    /* Equivalent to border-b border-gray-200 */
    margin-bottom: 1.5rem;
    /* Equivalent to mb-6 */
}

.course-section-topbar h2 {
    font-size: 1.5rem;
    /* Equivalent to text-2xl */
    font-weight: 600;
    /* Equivalent to font-semibold */
    color: #1f2937;
    /* Equivalent to text-gray-800 */
}

.course-section-topbar-side .btn {
    padding: 0.5rem 1rem;
    /* Equivalent to px-4 py-2 */
    border-radius: 0.375rem;
    /* Equivalent to rounded-md */
    transition: background-color 0.2s ease-in-out;
    /* Equivalent to transition-colors duration-200 */
}

.course-section-topbar-side .btn-light-custom {
    background-color: #e5e7eb;
    /* Equivalent to bg-gray-200 */
    color: #4b5563;
    /* Equivalent to text-gray-700 */
    border: none;
}

.course-section-topbar-side .btn-light-custom:hover {
    background-color: #d1d5db;
    /* Equivalent to hover:bg-gray-300 */
}

.course-section-topbar-side .btn-primary-custom {
    background-color: #3b82f6;
    /* Equivalent to bg-blue-500 */
    color: #ffffff;
    /* Equivalent to text-white */
    border: none;
}

.course-section-topbar-side .btn-primary-custom:hover {
    background-color: #2563eb;
    /* Equivalent to hover:bg-blue-600 */
}

/* Custom styles for individual course cards */
.course-card {
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    height: 400px;
}

.course-card img {
    width: 100%;
    /* Equivalent to w-full */
    height: 10rem;
    /* Equivalent to h-40 (160px) */
    object-fit: cover;
    /* Equivalent to object-cover */
}

.course-card .relative-container {
    position: relative;
}

.course-card .tag {
    position: absolute;
    top: 0;
    /* Equivalent to top-2 */
    left: 0;
    /* Equivalent to left-2 */
    background-color: #3b82f6;
    /* Equivalent to bg-blue-500 */
    color: #ffffff;
    /* Equivalent to text-white */
    font-size: 0.75rem;
    /* Equivalent to text-xs */
    font-weight: 500;
    /* Equivalent to font-medium */
    padding: 0.4rem 0.7rem;
    /* Equivalent to px-2 py-1 */
    border-radius: 3px;
    /* Equivalent to rounded-full */
}

.course-card .card-content {
    padding: 1rem;
    /* Equivalent to p-4 */
}

.course-card .rating-info {
    font-size: 0.875rem;
    /* Equivalent to text-sm */
    color: #4b5563;
    /* Equivalent to text-gray-600 */
    margin-bottom: 0.5rem;
    /* Equivalent to mb-2 */
}

.course-card .stars {
    color: #facc15;
    /* Equivalent to text-yellow-400 */
    margin-right: 0.5rem;
    /* Equivalent to mr-2 */
}

.course-card .stars::before {
    display: none;
}

.course-card h3 {
    font-size: 1.125rem;
    /* Equivalent to text-lg */
    font-weight: 800;
    /* Equivalent to font-semibold */
    color: #1f2937;
    /* Equivalent to text-gray-900 */
    margin-bottom: 0.5rem;
    /* Equivalent to mb-2 */
}

.course-card .last-updated {
    font-size: 0.875rem;
    /* Equivalent to text-sm */
    color: #6b7280;
    /* Equivalent to text-gray-500 */
    margin-bottom: 0.75rem;
    /* Equivalent to mb-3 */
}

.course-card .description {
    color: #374151;
    /* Equivalent to text-gray-700 */
    font-size: 0.875rem;
    /* Equivalent to text-sm */
    margin-bottom: 1rem;
    /* Equivalent to mb-4 */
    /* Custom line-clamp for description */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-card .meta-info {
    font-size: 0.875rem;
    /* Equivalent to text-sm */
    color: #4b5563;
    /* Equivalent to text-gray-600 */
}

.course-card .meta-info i {
    margin-right: 0.25rem;
    /* Equivalent to mr-1 */
}

#clear {
    background-color: rgb(214, 48, 48);
    padding: 0.5rem 1rem;
    color: white;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: auto;
}
.course-detail-image{
    height: 200px;
    width: 200px;
    object-fit: cover;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1048px) {
    .online-course-main-section {
        flex-direction: column;
        /* Stack filter and courses vertically */
    }

    .filter-section {
        width: 70%;
        /* Set the desired width */
        max-width: 350px;
        /* Optional maximum width for the sidebar */
        position: fixed;

        top: 0;
        left: -70%;
        /* Hide it off-screen initially */
        height: 100%;
        background-color: #f4f4f4;
        z-index: 1000;
        /* Ensure it's on top */
        overflow-y: auto;
        /* Enable internal scrolling */
        transition: left 0.3s ease;
        padding-top: 50px;
        /* Add padding for the close button */
    }

    .filter-section.open {
        left: 0;
        /* Slide it in */
    }

    /* Toggle button for filter */
    .filter-toggle-button {
        display: block;

        /* Frame 1707479231 */

        background: linear-gradient(85.52deg, #3FC3CC 4.12%, #4D7FC6 100.8%), linear-gradient(265.52deg, #39A9E3 -0.8%, #57DAAA 95.88%);


        /* Example color */
        color: white;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        position: absolute;
        /* Fixed position relative to the viewport */
        top: 10px;
        /* left: 10px; */
        /* z-index: 1001; */
        /* Ensure it's above the content */
        border-radius: 5px;
    }

    /* Hide the toggle button when the filter section has the 'open' class */
    .filter-section.open~.filter-toggle-button {
        display: none !important;
    }

    /* Close button inside the filter section */
    .filter-close-button {
        display: block;
        /* Make sure it's visible on these screen sizes */
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1002;
        /* Ensure it's above the filter content */
        color: #333;
        /* Adjust color as needed */
    }

    .filter-section-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background-color: #ddd;
        /* Optional background for the top bar */
        position: sticky;
        /* top: 50px; */
        /* Push below the close button */
        z-index: 1002;
    }

    .filter-section-top h2 {
        margin: 0;
        font-size: 1.2rem;
    }

    .filter-section-top p {
        color: blue;
        cursor: pointer;
        margin: 0;
        font-size: 0.9rem;
    }

    .filter-section>div {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .filter-section>div:last-child {
        border-bottom: none;
    }

    .filter-section h2 {
        font-size: 1rem;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .course-section-main {
        margin-top: 2rem;
    }

    .course-section-topbar {
        /* width: 70%; */
        flex-direction: column;
        justify-content: start;
        align-items: start;
        /* margin-bottom: 1rem; */
    }

    .course-grid {
        margin-top: 1rem;
    }

    .filter-toggle-button {
        right: 20px;
        top: 30px;
    }
}

/* Ensure the toggle button is hidden on desktop */
@media (min-width: 1049px) {

    .filter-toggle-button,
    .filter-close-button.d-md-none {
        display: none;
    }
}


/********************************/

.star{
    cursor:pointer;
    font-size:50px;
}

/* for giving font size and blinking effect*/
#rating-error{
    font-size :10px;
    color: red;
    animation: blink 1s infinite;
}
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

