@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,300,500,700');

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),
    url('../fonts/glyphicons-halflings-regular.woff') format('woff'),
    url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),
    url('../fonts/glyphicons-halflings-regular.svg') format('svg');
}

body {
    font-family: "Helvetica Neue", Helvetica,Arial,sans-serif !important;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

.cart-toggle {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 1050;
}

.cart-btn {
    height: 42px;
}

.count-badge {
    position: absolute !important;
    top: -6px !important;
    right: 28px !important;
}
.overlay-bg{
    width:100%;
    height: 100%;
    position: absolute;
}
.cartSidebar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 350px;
    z-index: 1060;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.2);
    overflow: auto !important;
}

.full-cart {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.empty-cart {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-row-cart {
    border-radius: 12px;
    margin: 0px;
    background-color: white;
    padding: 10px;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);

    position: relative;
    overflow: hidden; /* ensures the overlay doesn’t spill out */
}

.service-row-cart:hover {
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.05);
}

/* The overlay container covering the whole row */
.service-row-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* dark overlay */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* On hover, reveal the overlay */
.service-row-cart:hover .service-row-overlay {
    opacity: 1;
}

.main-section {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    /* For content layout */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow-x: hidden;
}

/* The ::before pseudo-element will hold the "next" image. */
.main-section::before {
    content: '';
    position: absolute;
    inset: 0;  /* top:0; right:0; bottom:0; left:0; */
    background-size: cover;
    background-repeat: no-repeat;

    /* Initially hidden */
    opacity: 0;
    pointer-events: none;

    /* Smooth transition for opacity (the fade) */
    transition: opacity 1.5s ease-in-out;

    /*
     We place the "next" image via a CSS variable:
     mainSection.style.setProperty('--next-image', `url('some-image.jpg')`);
    */
    background-image: var(--next-image);
}

/* When .fade-in is added via JS, ::before’s opacity goes to 1. */
.main-section.fade-in::before {
    opacity: 1;
}

.overlay {
    /*background-color: rgba(0, 0, 0, 0.5);*/
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; /* Centers content vertically */
    position: absolute;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.navbar-nav{
    gap: 5px;
}

.nav-link {
    font-weight: 400;
    font-size: 14px;
    line-height: 16.8px;
    color: #FFFFFF;
}

.book-class-btn {
    border-radius: 6px;
    background: #FFFFFF;
    color: #010106;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 16.8px;
    text-align: center;
}

.nav-main-title {
    font-family: "Fugaz One", serif;
    font-weight: 400;
    font-size: 32px;
    color: #FFFFFF;
}

.img-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.main-titles-positions {
    position: absolute;
    top: 60%; /* to make the titles in the center with the gap 25px */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%; /* Ensures responsiveness */
    gap: 25px; /* Adds a 25px gap between direct children */
    display: flex;
    flex-direction: column;
}

.first-container-main-title {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 58px;
    line-height: 63.8px;
    text-align: center;
}

.second-container-main-title {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
}

.main-section-book-class-btn {
    min-width: 120px;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 6px;
    background: #FFFFFF;
    border-color: #FFFFFF;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 16.8px;
    text-align: center;
    color: #010106;
}

.dropdown-position {
    right: 0;
    left: auto;
}

.comments-section {
    padding: 40px 0;
}

.comments-container {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.comment {
    background: #F3F3F3;
    padding: 20px 35px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 380px;
}

.stars {
    font-size: 20px;
    margin-bottom: 10px;
}

.date-span {
    font-size: 12px;
    color: #9F9F9F;
}

.how-it-works-section {
    background-color: white;
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 38.4px;
    text-align: center;
    color: #1E1E1E;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 250px;
    padding: 24px 32px;
    gap: 5px;
    display: flex;
    flex-direction: column;
}

.circle {
    width: 86px;
    height: 86px;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
}

.step-title {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #1E1E1E;
}

.step-info {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #1E1E1E;
}

.classes-section {
    background-color: #EDEDED;
    padding: 60px 0;
    text-align: center;
}

.classes-section .section-title {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 38.4px;
    text-align: center;
    color: #070707;
}

.categories-section {
    background-color: #FFF;
    padding: 60px 0;
    text-align: center;
}

.categories-section .section-title {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 38.4px;
    text-align: center;
    color: #070707;
    margin-bottom: 20px;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.category-card {
    width: 375px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}
.category-card img {
    /*min-width: 375px;*/
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}
.category-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: left;
}
.category-title {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}
.category-text {
    font-family: "PT Sans", sans-serif;
    font-size: 14px;
    opacity: 0.8;
    white-space: nowrap;  /* Prevents text from wrapping */
    overflow: hidden;      /* Hides overflowing text */
    text-overflow: ellipsis; /* Adds three dots (...) for overflow */
    width: 100%; /* Ensures text behaves properly inside the div */
}
.category-card:hover img {
    transform: scale(1.1);
}

.grouped-services-section {
    padding: 40px 0;
}

.grouped-service-toggle-container {
    width: auto;
    border-radius: 8px;
    background-color: #ddd;
    max-width: 1140px;
    overflow-x: auto;
    white-space: nowrap;
    cursor: pointer;
}

.toggled-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    transition: 0.3s;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 550;
    font-size: 14px;
    line-height: 16.8px;
    white-space: nowrap;
}

.grouped-service-toggle-container .active {
    background-color: #000000;
    color: #FFFFFF;
}
.grouped-service-toggle-container .inactive {
    color: #BBBBBB;
    background-color: #D9D9D9;
}

.grouped-service-toggle-container .btn.focus, .btn:focus {
    outline: 0;
    box-shadow: unset;
}

.grouped-service-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    object-position: 50% 50%;
}

.grouped-service-btns-positions {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 8px;
}
.grouped-service-btn {
    background: none !important;
    border: 2px #000000 solid !important;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    color:#000000;
}

.search-section {
    display: flex;
    margin-bottom: 30px;
}
.search-wrapper {
    position: relative; /* Establish a positioning context */
    display: inline-block; /* Shrinks to the width of its content */
    padding-left: 0px;
    padding-right: 0px;
}

.search-services {
    width: 100%;
    height: 48px;
    min-height: 48px;
    border: 1px solid #dadee2 !important;
    border-radius: 8px !important;
    padding: 15px;
}

.search-services:hover,
.search-services:focus,
.search-services:focus-within,
.search-services:focus-visible {
    border: 1px solid #dadee2 !important;
    outline: unset;
}


.search-suggestions {
    text-align: left;
    position: absolute; /* Absolutely position relative to .search-wrapper */
    top: 100%;          /* Position directly below the input */
    left: 0;            /* Align with the input's left edge */
    width: 100%;        /* Match the width of the container (and the input) */
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 8px;
    background: #fff;
    border: 1px;
    border-radius: 8px;
    z-index: 1000;
}

.category-select {
    width: 100%;
    height: 48px;
    min-height: 48px;
    border: 1px solid #dadee2 !important;
    border-radius: 8px !important;
    align-items: center;
    padding: 0 15px;
    background: #ffffff;
}

.category-select:hover,
.category-select:focus,
.category-select:focus-within,
.category-select:focus-visible {
    border: 1px solid #dadee2 !important;
    outline: unset;
}

/* Toggle Buttons */
.toggle-buttons {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.toggle-container {
    display: flex;
    justify-content: center;
    width: 280px;
    border-radius: 8px;
    background-color: #ddd;
    overflow: hidden;
    cursor: pointer;
}

.toggle-option {
    flex: 1;
    text-align: center;
    padding: 10px;
    transition: 0.3s;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 550;
    font-size: 14px;
    line-height: 16.8px;
    white-space: nowrap;
}

.classes-section .active {
    background-color: #000000;
    color: #FFFFFF;
}

.classes-section .inactive {
    color: #BBBBBB;
    background-color: #D9D9D9;
}

/* Class Cards */
.classes-grid {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.class-card {
    border-radius: 10px;
    overflow: hidden;
    min-width: 360px;
    max-width: 360px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.class-card img {
    width: 362px;
    height: 290px;
    object-fit: cover;
}

.class-content {
    background-color: #1E1E1EE5;
    color: #ffffff;
    padding: 20px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.white-color {
    color: #ffffff;
}
.white-color:hover {
    color: #ffffff;
}

.class-title {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
}

.class-content .time {
    padding: 5px 10px;
    border-radius: 64px;
    border: 1px solid #FFFFFF;
    font-family: " PT Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16.8px;
    text-align: center;
}

.class-description {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16.8px;
    color: #FFFFFFB2;
    flex-grow: 1;
}

.btns-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Adjusts spacing */
    flex-wrap: wrap; /* Ensures responsiveness */
    gap: 10px;
    margin-top: auto;
}

.tags {
    display: flex;
    gap: 8px;
}

.tags span {
    background-color: #FFFFFF4D;
    padding: 6px 12px;
    border-radius: 64px;
    white-space: nowrap; /* Prevents text wrapping */
    color: #FFFFFF;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16.8px;
    text-align: center;
}

.book-btn {
    min-width: 120px;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 6px;
    background: #FFFFFF;
    border-color: #FFFFFF;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 550;
    font-size: 14px;
    line-height: 16.8px;
    text-align: center;
    color: #010106;
    width: 100%;
}

.book-btn:hover {
    background-color: #ddd;
}

/* View All Classes Link */
.view-all {
    display: block;
    padding: 12px 25px;
    margin-top: 30px;
    color: black;
    cursor: pointer;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 550;
    font-size: 14px;
    line-height: 16.8px;
    text-align: center;
    text-decoration: none;
    text-decoration-style: solid;
    text-decoration-offset: Auto;
    text-decoration-thickness: Auto;
    text-decoration-skip-ink: auto;

}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    margin: auto;
    align-items: center;
}

.about-image img,
.join-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    display: block;
}

.about-text,
.join-text {
    padding: 40px 100px;
    background-color: white;
}

.about-title,
.join-title {
    font-family: "Helvetica", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}

.about-description,
.join-description {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}

.join-btn {
    background: none !important;
    border: 2px #000000 solid !important;
    border-radius: 6px;
    padding: 10px 20px 10px 20px;
    text-align: center;
    font-size: 16px;
    color:#000000;
}

.app-section {
    padding: 60px 0;
}

.app-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
}

.app-text {
    max-width: 50%;
}

.app-text-title {
    font-family: "Helvetica", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: #1E1E1E;
}

.app-buttons img {
    width: 150px;
    height: auto;
}

.app-buttons .google-play img {
    height: 48px;
}

/* App Screenshots */
.app-images {
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
}

.app-images img {
    width: 100%;
    max-width: 80%;
}

.footer {
    background-color: #1E1E1EE5;
    color: white;
    padding-top: 26px;
    min-height: 236px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 50%;
}

.footer-left {
    max-width: 50%;
}

.footer-title {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 38.4px;
    color: #FFFFFF;
}

.footer-menu {
    display: flex;
    gap: 20px;
}

.footer-menu a {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19.2px;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-right img {
    width: 120px;
    height: auto;
}

.footer-imgs .google-play img {
    height: 39px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 3px;
    font-size: 20px;
    color: white;
    background-color: gray;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.social-icon:hover {
    background-color: #007bff;
    color: white;
    text-decoration: none;
}

.privacy-and-terms-section {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
}

.privacy-and-terms-section a {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14.4px;
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.6;
}

.footer-contact {
    border: 1px solid #00AEEF; /* Blue border */
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 250px; /* Adjust width */
    margin-bottom: 15px; /* Space before footer title */
}

.footer-contact i {
    color: #00AEEF; /* Blue icon */
    margin-right: 8px;
}

.phone-text {
    font-size: 18px;
    font-weight: bold;
    color: #00AEEF;
}

.appointments-text {
    font-size: 14px;
    color: #00AEEF;
    margin-top: 5px;
}

.footer-contact-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px; /*background: rgba(255, 255, 255, 0.1); !* Glass effect *!*/
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%; /* Make it flexible */
    max-width: 320px; /* Ensures it doesn’t stretch too much */
    transition: all 0.3s ease-in-out;
}

/* Icon Container */
.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    min-height: 50px;
    background: linear-gradient(135deg, #00AEEF, #007bff);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 174, 239, 0.3);
    flex-shrink: 0; /* Prevents the icon from shrinking */
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows text to take remaining space */
    min-width: 0; /* Prevents content from forcing expansion */
}

/* Number Styling */
.contact-number {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap; /* Ensures the number stays on one line */
    overflow: hidden;
    text-overflow: ellipsis; /* Adds "..." if number is too long */
}

/* Business Hours */
.contact-hours {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    word-break: break-word; /* Ensures text wraps properly */
    max-width: 100%; /* Ensures no overflow */
    flex-wrap: wrap;
}

/* Hover Effect */
.footer-contact-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 174, 239, 0.4);
}

/* rtl css */
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .navbar {
    justify-content: flex-end;
}

.rtl .dropdown-position {
    left: 0;
    right: auto;
}

.rtl .dropdown-toggle::after {
    margin-right: 4px;
}

.cursor-pointer {
    cursor: pointer;
}

.font-size-85 {
    font-size: 85px;
}

.font-size-34 {
    font-size: 34px;
}

.disabled-btn {
    background-color: lightgrey !important;
    border-color: lightgrey !important;
    color: gray;
    opacity: .65;
}

.disabled-btn:hover {
    color: gray;
    text-decoration: none;
}

.black-color {
    color: #212529;
}

.hidden {
    display: none;
}

.font-size-20 {
    font-size: 20px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-12 {
    font-size: 12px;
}

.black-color {
    color: #212529;
}

.black-color:hover {
    color: #212529;
}

/* Modal style */
.modal-content {
    border-radius: 12px;
    background-clip: padding-box;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    outline: 0 none;
}

.modal-title {
    font-family: "Roboto", serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #2e4051;
}

.save-btn {
    border-radius: 8px;
    padding: 12px 16px;
    font-family: "Roboto", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    background-color: white !important;
    color: black !important;
    border-color: black !important;
}

.cancel-btn {
    background-color: white !important;
    color: black !important;
    border-color: black !important;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Roboto', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
}

.form-control {
    border: 1px solid #dadee2;
    border-radius: 8px !important;
}

.tox-tinymce {
    border: 1px solid #dadee2;
    border-radius: 8px !important;
}

.disabled-toggle-btn {
    pointer-events: none;  /* Prevents any click events */
    opacity: 0.5;          /* Optional: visually indicate disabled state */
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3; /* Light gray */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Optional: Center the spinner horizontally and vertically on the page */
.loading-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 992px) {
    .mobile-nav {
        display: none;
    }
}

/* mobile view */
@media (max-width: 991px) {
    .navbar {
        z-index: 9;
        position: fixed;
    }

    .navbar-collapse{
        padding-bottom: 20px;
    }

    .desktop-nav {
        display: none;
    }

    .first-container-main-title {
        font-size: 32px;
    }

    .bg-dark-mobile {
        background-color: #343a40 !important;
    }

    .nav-main-title {
        font-size: 26px;
        line-height: 44.4px;
    }

    .navbar-collapse {
        padding-bottom: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .main-section {
        height: 135vh;
    }

    .main-titles-positions {
        top: 50%;
    }

    .comments-section {
        padding: 40px 20px;
    }

    .categories-section {
        padding: 60px 20px;
    }

    .classes-section {
        padding: 60px 20px;
    }

    .btns-container {
        flex-direction: column; /* Stack elements on smaller screens */
        align-items: stretch;
    }

    .tags {
        justify-content: center;
    }

    .book-btn {
        width: 100%; /* Makes button take full width */
    }

    .about-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .about-text,
    .join-text {
        padding: 25px 20px;
    }

    .about-image img,
    .join-image img {
        height: auto;
    }


    .app-text {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 30px;
    }

    .app-container {
        flex-direction: column;
        text-align: center;
    }

    .app-images {
        max-width: 100%;
        justify-content: center;
    }

    .footer-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
        text-align: center;
    }

    .footer-left, .footer-right {
        width: 100%; /* Make both sections take full width */
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .footer-right {
        margin-top: 20px;
    }

    .footer-menu {
        flex-direction: column;
        gap: 10px;
    }

    .footer-social-icons .d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social-icons a {
        margin: 5px;
    }

    .privacy-and-terms-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 10px;
        padding-bottom: 10px;
    }

    .mobile-scroll-container{
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* FAQ Section */
.faqs-section{
    padding: 5rem; /* Add padding around the FAQ section */
    background-color: #FFF; /* Set the background color to white */
}

/* FAQ Content and Search Styling */
.faqs-content, .faqs-search{
    max-width: 900px; /* Set the maximum width of the FAQ content */
    margin: 0 auto; /* Center the content horizontally */
    background-color: #FFF; /* Set the background color to white */
}

/* FAQ Search Section */
.faqs-search{
    display: flex; /* Use flexbox to position elements */
    justify-content: end; /* Align the search content to the right */
}

/* Styling the search input box */
.faqs-search-content{
    width: 40%; /* Set the width of the search box */
    height: 40px; /* Set the height of the search box */
    position: relative; /* Position the search box relative to the container */
    margin-bottom: 25px; /* Add margin at the bottom */
}

/* Input field inside the search box */
.faqs-search input{
    width: 100%; /* Make the input field take up 100% of the container width */
    height: 100%; /* Make the input field fill the container vertically */
    display: block; /* Display input as block element */
    border: 1px solid #039fe5; /* Blue border around the search field */
    border-radius: 30px; /* Round the corners of the input */
    padding-left: 50px; /* Add padding on the left for the search icon */
    outline: none; /* Remove the default outline when the input is focused */
    transition: .3s; /* Add transition effect for smooth interaction */
    padding-right: 10px; /* Add some padding to the right of the input field */
}

/* Hover and focus effects for the input field */
.faqs-search input:hover, .faqs-search input:focus{
    border: 2px solid #039fe5; /* Make the border a bit thicker when hovered or focused */
}

/* Positioning and styling the search icon */
.faqs-search .search-icon{
    position: absolute; /* Position the icon absolutely inside the search box */
    top: 50%; /* Center the icon vertically */
    left: 4%; /* Place the icon slightly towards the left */
    transform: translateY(-50%); /* Adjust to perfectly center the icon vertically */
}

/* FAQ Item Styling */
.faq-item {
    position: relative; /* Position each FAQ item relative to its container */
    overflow: hidden; /* Hide any content that exceeds the container */
    transition: all 0.2s ease; /* Add transition effect for smooth reveal */
}

/* Question Text Styling */
.faq-item-question-text{
    margin: 0; /* Remove default margin */
    font-size: 20px; /* Set font size for question */
    font-weight: 600; /* Make the question bold */
    line-height: 26px; /* Set line height for proper spacing */
    text-align: left;
}

/* Plus Icon for Expand/Collapse */
.faq-item-question-icon{
    cursor: pointer; /* Change cursor to pointer to indicate interactivity */
    font-size: 25px; /* Set the size of the plus icon */
    transition: all .3s; /* Add smooth transition on hover or click */
    color: #1111117a; /* Set a subtle grey color for the icon */
}

/* Answer Text Styling */
.faq-item-answer {
    color: #1111117a; /* Light grey color for the answer */
    font-size: 18px; /* Font size for the answer */
    font-weight: 400; /* Normal font weight */
    line-height: 28px; /* Set line height for proper readability */
    max-height: 0; /* Initially, the answer should be hidden */
    transition: max-height 0.3s ease; /* Smooth transition when expanding */
    overflow: hidden; /* Prevent overflow of content */
    pointer-events: none; /* Disable interaction with hidden content */
    text-align: left;
}

/* Styling the question section with some space at the bottom */
.faq-item-question{
    margin-bottom: 10px; /* Add margin below each question */
}

/* Expand answer when clicked */
.toggle-item-active .faq-item-answer {
    max-height: 500px; /* Allow the answer to expand */
    pointer-events: initial; /* Enable interaction with the expanded content */
    padding-top: 10px; /* Add padding when the answer is expanded */
    padding-left: 0; /* Remove the padding on the left when expanded */
}

/* Transition and Rotation of the Plus Icon when the question is expanded */
.faq-item-question-icon {
    transition: transform 0.3s ease;
    transform: rotate(0deg); /* Initial rotation of the icon */
}

.faq-item-question-icon:hover{
    color: #039fe5; /* Change the icon color when hovered */
}

/* Rotate the icon when the FAQ item is active (expanded) */
.toggle-item-active .faq-item-question-icon{
    transform: rotate(45deg); /* Rotate the icon to a cross when expanded */
    color: #039fe5; /* Change the color of the icon to blue */
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .main-titles-positions {
        width: 100%; /* Make the title take full width on mobile */
    }

    .first-title h1 {
        font-size: 32px; /* Adjust font size of the title for smaller screens */
    }

    .faqs-section{
        padding: 2rem 1rem; /* Adjust padding for mobile screens */
    }

    .faq-item-question-text{
        font-size: 14px; /* Decrease font size for smaller screens */
    }

    .faq-item-answer{
        font-size: 15px; /* Decrease font size of the answer for smaller screens */
    }

    .faq-item-question-icon{
        margin-left: 25px; /* Adjust position of the icon */
    }

    .faqs-search-content{
        width: 70%; /* Adjust search content width on smaller screens */
    }
}

