/* Font Face Declaration */
@font-face {
    font-family: 'Acumin';
    src: url('../public/assets/fonts/Acumin-RPro.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Custom CSS Variables */
:root {
    --primary-color: #952624;
    --primary-hover: #7e1f1d;
    --secondary-color: #f9e6e0;
    --text-dark: #3C3C3C;
    --text-light: #545454;
    --background-light: #FFFFFF;
    --border-color: #f4e9e9;
    --shadow: 0px 2px 35.2px rgba(89, 89, 89, 0.1);
    --neon-pink:#EA3957;
    --pink: #E0BAC0;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: 'Acumin' !;
}


.dropdown-submenu .dropdown-item:focus,
.dropdown-submenu .dropdown-item:active {
    color: white !important;
    background-color: var(--primary-color) !important;
    /* Remove the background color */
}
.swiper-wrapper 

    {
padding-bottom: 50px !important;
    }

/* Form Validation Styles - Remove green ticks and ensure proper validation */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #198754;
    background-image: none !important;
    padding-right: 0.75rem;
}

.form-control.is-valid:focus,
.form-select.is-valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background-image: none !important;
    padding-right: 0.75rem;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #198754;
    background-image: none !important;
    padding-right: 0.75rem;
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
    background-image: none !important;
    padding-right: 0.75rem;
}

/* Additional styles to ensure no green ticks appear */
.form-control:valid,
.form-select:valid {
    background-image: none !important;
    padding-right: 0.75rem;
}

.form-control:invalid,
.form-select:invalid {
    background-image: none !important;
    padding-right: 0.75rem;
}

/* Ensure invalid feedback is only visible when form is submitted with errors */
.invalid-feedback {
    display: none;
}

.was-validated .form-control:invalid~.invalid-feedback,
.was-validated .form-select:invalid~.invalid-feedback {
    display: block;
}

body {
    font-family: 'Acumin', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Acumin', sans-serif;
    font-weight: 700;
    margin-bottom: .7rem;
}

.swiper-slide {
    padding-bottom: 52px !important;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--primary-color) !important;
}

.ani {
    width: 0%;
    height: 2px;
    /* You can change the height to your preference */
    background-color: white;
    margin: 20px auto;
    /* Adjust margins to position the divider */
    animation: fillDivider 2s forwards;
    /* Animation duration and fill effect */
}

@keyframes fillDivider {
    0% {
        width: 0%;
        /* Starts with 0% width */
    }

    100% {
        width: 15%;
        /* Ends with 100% width */
    }
}


.para {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.maroon-btn {
    background-color: var(--primary-color);
    border: none;
    padding: .4rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1.25rem;
    transition: background-color 0.3s ease;
    color: var(--background-light) !important;
}
.neon-pink-btn {
    background-color: var(--neon-pink);
    border: none;
    padding: .6rem 1.8rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1.25rem;
    transition: background-color 0.3s ease;
    color: var(--background-light);
}

.maroon-btn:hover {
    background-color: var(--primary-hover);
}

.section-title {
    font-size: 2.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .7rem;
}

.section-divider {
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 1rem 0;
}

/* Header Styles */
.header-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    height: 60px;
    width: auto;
}

.navbar {
    max-width: 1300px;
}

.navbar-nav .nav-link {
    font-family: 'Acumin', sans-serif;
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.search-container {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #697077;
    z-index: 2;
}

.search-input {
    padding-left: 40px;
    background-color: #f2f4f8;
    border: none;
    border-radius: 8px;
    width: 200px;
    height: 44px;
}

.call-btn {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.call-btn:hover {
    background-color: var(--primary-hover);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: -1; */
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(149, 38, 36, 0.6) 100%);
    /* z-index: -1; */
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(149, 38, 36, 0.4) 100%),
        url('../public/hero-image.png') center/cover;
    z-index: -1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Statistics Section */
.stats-section {
    /* padding: 4rem 0; */
    background-color: var(--primary-color);
}


.stats-background {
    background-image: url('../public/assets/images/patterns.png');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
}

.stat-card {


    text-align: center;
    color: white;
    padding: 1rem;
    margin: 0px 10px;

    width: 200px;
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;

}

.stat-label {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

/* Appointment Section */
.appointment-section {
    padding: 4rem 0;
    background-color: #fff;
}

.appointment-card {

    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    background-image: url('../public/assets/images/form-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.appointment-title {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.appointment-form .form-select,
.appointment-form .form-control {
    height: 50px;
    border: 1px solid var(--text-dark);
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 500;
    background-color: transparent;
}

.submit-btn {
    background-color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.25rem;
}

.submit-btn:hover {
    background-color: var(--primary-hover);
}

/* Excellence Section */
.excellence-section {
    padding: 4rem 0;
    background: linear-gradient(360deg, #F9E6E0 0%, #FFF4F1 100%);
}

.excellence-card {
    text-align: center;
    /* padding: 1rem; */
}

.excellence-icon {
    width: 90px;
    height: 90px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.excellence-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Vision Section */
.vision-section {
    padding: 4rem 0;
    background-color: #fff;
}

.vision-card {
    background-image: url('../public/assets/images/mission-vission-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 3rem;
    min-height: 460px;
    display: flex;
    align-items: center;
}

.vision-title {
    font-size: 2.125rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.vision-divider {
    width: 240px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 1rem 0;
}

.vision-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.know-more-btn {
    background-color: var(--primary-color);
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.25rem;
}

.know-more-btn:hover {
    background-color: var(--primary-hover);
}

/* Locations Section */
.locations-section {
    padding: 4rem 0;
    background-color: #fff;
}

.location-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-image {
    height: 230px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-content {
    padding: 1.5rem;
}

.location-city {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.location-count {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: .5rem;
}

.location-link {
    color: var(--text-light);
    text-decoration: underline;
    font-size: 1.25rem;
    font-weight: 500;
}

.view-all-btn {
    background-color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.25rem;
}

.view-all-btn:hover {
    background-color: var(--primary-hover);
}

/* News Section */
.news-section {
    padding: 4rem 0;
    background: linear-gradient(360deg, #F9E6E0 0%, #FFF4F1 100%);
}

.news-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height:100%;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    /* height: 200px; */
    overflow: hidden;
}

.news-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1rem;
    font-weight: 400;
    color: black;
    margin-bottom: 1rem;
}

.news-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.news-link {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background-color: #fff;
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    /* height: 300px; */
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Video Section */
.testimonials-video-section {
    padding: 4rem 0;
    background: linear-gradient(360deg, #F9E6E0 0%, #FFF4F1 100%);

}

.video-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: auto;
    aspect-ratio: 16/9;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    aspect-ratio: 16/9;
    border: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background-color: white;
}

/* Awards Section */
.awards-section {
    padding: 4rem 0;
    background-color: #fff;
}

.award-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.award-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* FAQ Section */
.faq-section {
    /* padding: 4rem 0; */
    background-color: var(--primary-color);
}

.faq-background {
    background-image: url('../public/assets/images/Patterns.png');
    background-size: cover;
    background-position: center;
    padding: 2rem 0;
}


.faq-accordion {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 1rem;
    backdrop-filter: blur(51px);
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 0.5rem;
    background-color: transparent !important;
}

.faq-accordion .accordion-button {
    background-color: transparent;
    border: none;
    font-size: 1.4rem;
    font-weight: 500;
    color: #444;
    padding: 1.25rem 1rem;
}

.faq-accordion .accordion-button:focus,
.faq-accordion .accordion-button:active,
.faq-accordion .accordion-button:not(.collapsed) {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

.faq-accordion .accordion-button {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.faq-accordion .accordion-body {
    padding: 1rem;
    color: #444;
}

/* Footer Section */
.footer-section {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pink-btn {
    background-color: var(--pink);
    border: none;
    padding: .2rem .7rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1.25rem;
    transition: background-color 0.3s ease;
    color: var(--text-dark);
    width: 100px;
    text-align: center;
}

.pink-btn:hover {
    background-color: var(--pink);
    color: var(--text-dark);
}

.footer-text {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--secondary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* width: 45px; */
    /* height: 45px; */
    /* background-color: rgba(255, 255, 255, 0.1); */
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 1.7rem;
}

/* .social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
} */

.footer-divider {
    border-color: rgba(255, 255, 255);
    margin: 2rem 0 1rem;
}

.copyright {
    font-size: 1rem;
    margin: 0;
    opacity: 0.8;
}

/* Fixed Appointment Button */
.fixed-appointment-btn {
    position: fixed;
    right: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    z-index: 1000;
}

.fixed-appointment-btn .btn {
    background-color: var(--primary-color);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px 8px 0 0;
    font-weight: 700;
    font-size: 1.125rem;
    white-space: nowrap;
}

.main-nav {
    width: 100%;

}

.centers-section {

    padding: 4rem 0;
    background: linear-gradient(360deg, #F9E6E0 0%, #FFF4F1 100%);
}




.specialty-card {


    border-radius: 15px;
    padding: 10px 20px;
    text-align: center;

    /* height: 100%; */

    /* margin-bottom: 20px; */
}

.specialty-icon {
    border: 2px solid #e74c3c;
    border-radius: 15px;
    padding: 20px 20px;
    text-align: center;
    margin-bottom: 20px;
}



.specialty-icon {
    font-size: 3rem;
    /* margin-bottom: 20px; */
    /* display: block; */
}



.specialty-title {
    color: #3C3C3C;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.know-more {
    color: #3C3C3C;
    /* text-decoration: none; */
    font-size: 16px;
    transition: color 0.3s ease;
}

.know-more:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.news-logo1 {
    width: 87.04907989501953px;
    height: 34.4393196105957px;
    margin-bottom: 15px;

}

.news-logo2 {
    width: 115.60000610351562px;
    height: 34px;

    margin-bottom: 15px;


}

.news-logo3 {

    width: 160px;
    height: 18px;


    margin-bottom: 15px;

}

.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    /* flex:1; */
}



/* Responsive adjustments */
@media (max-width: 1400px) {
    .navbar-nav .nav-link {

        padding: .5rem .5rem !important;

    }

    .call-us {
        padding: .4rem .4rem;
        max-width: fit-content;
        white-space: nowrap;
        font-size: 1.1rem;
    }

    /* .call-i
    {
      display: none;
    } */



}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .specialty-card {
        padding: 20px 10px;
    }

    .specialty-icon {
        font-size: 2rem;
    }
}
@media (max-width: 1400.98px) {


.main-nav {
       
        padding: 0px 20px;

    }

 }




/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .navbar-nav .nav-link {

        padding: .5rem .5rem !important;

    }

    .main-nav {
        display: flex;
        /* flex-wrap: wrap; */
        justify-content: space-between;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }


    .appointment-title {
        font-size: 2.5rem;
    }

    .vision-card {
        padding: 2rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .appointment-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .vision-title {
        font-size: 1.875rem;
    }

    .vision-text {
        font-size: 1rem;
    }

    .fixed-appointment-btn {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 70vh;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        max-width: 1200px;
        /* You can adjust the max-width as needed */
        margin: 0 auto;
        /* Center the container */
        padding: 20px;
        /* Optional, adds space inside the container */
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .appointment-card {
        padding: 2rem 1rem;
    }

    .appointment-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .vision-card {
        background-image: url('../public/assets/images/vision-mission-responsive.png');
        /* background-size: cover; */
        /* background-position: center; */
        border-radius: 24px;
        padding: 2rem 1.2rem;
        /* min-height: 460px; */
        display: flex;
        align-items: flex-start;
        height: 80vh;
    }

    .form-row {
        margin-top: 5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stats-background {

        padding: 0rem 0;
    }



    .excellence-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .excellence-title {
        font-size: 1rem;
    }



    .vision-title {
        font-size: 1.5rem;
    }

    .location-city {
        font-size: 1.25rem;
    }

    .location-count {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .video-card {
        height: 200px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .stat-card {

        width: 170px;
        margin: 0px;
    }

    .stats-section,
    .appointment-section,
    .excellence-section,
    .vision-section,
    .locations-section,
    .news-section,
    .blog-section,
    .testimonials-video-section,
    .awards-section,
    .faq-section {
        padding: 2rem 0;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .appointment-card {

        border-radius: 20px;
        /* padding: 3rem; */
        box-shadow: var(--shadow);
        background: linear-gradient(to top, #fff4f1, #fff4f1, #fff4f166), url('../public/assets/images/form-bg-responsive.png');
        background-size: auto;
        background-position: top;
        background-repeat: no-repeat;



    }

    .appointment-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.375rem;
    }

    .appointment-form .form-select,
    .appointment-form .form-control {
        height: 45px;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 0.75rem 2rem;
        font-size: 1.125rem;
    }

    .excellence-icon {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .vision-divider {
        width: 150px;
    }

    .know-more-btn {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }

    .view-all-btn {
        padding: 0.75rem 2rem;
        font-size: 1.125rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }
}

/* Animation and Transitions */
.card,
.location-card,
.news-card,
.video-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn {
    transition: all 0.3s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

.testimonials-swiper {
    padding-bottom: 40px !important;
    position: relative;
}

.testimonials-swiper .swiper-pagination {
    bottom: 0 !important;
    position: absolute;
}

.testimonials-swiper .swiper-slide {
    padding-bottom: 0 !important;
}

.testimonials-swiper .video-card {
    margin: 0;
}

@media (max-width: 767.98px) {
    .testimonials-swiper .video-card {
        aspect-ratio: 16/9;
        height: auto;
        margin: 0 auto;
    }

    .testimonials-swiper .testimonial-video {
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------ */




