:root {
    --main-bg-blue: #1f6bc5;
    --main-bg-red: #de2428;

}

body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;

}

h1, h2, h3, h4 {
    font-family: "Merriweather", serif;
}

h2 {
    font-size: 60px;
    color: var(--main-bg-blue);
}

p {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;

}

a {
    text-decoration: none;
}

/* =========================
       NAVBAR
    ========================== */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    transition: all .4s ease;
    padding: 18px 0;
    border-bottom: 1px solid transparent;
}

/* Sticky Effect */
.main-navbar.sticky {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #eee;
}

.navbar-container {
    width: 92%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
       LOGO
    ========================== */
.logo img {
    height: 100px;
    transition: .3s;
}

.main-navbar.sticky .logo img {
    height: 48px;
}

/* =========================
       MENU
    ========================== */
.nav-menu {
    display: flex;
    align-items: baseline;
    gap: 28px;
}

.nav-menu a {
    text-decoration: none;
    color: #111;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: .3s;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--main-bg-red);
    transition: .4s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--main-bg-red);
}


/* =========================
       BUTTONS
    ========================== */
.nav-btns {
    display: flex;
    align-items: center;
    gap: 5px;
}

.phone-btn {
    background: var(--main-bg-blue);
    color: #fff !important;
    text-decoration: none;
    padding: 14px 22px;
    font-size: 14px;
    transition: .3s;
}

.book-btn {
    background: var(--main-bg-red);
    color: #fff !important;
    text-decoration: none;
    padding: 14px 24px;
    font-size: 14px;
    transition: .3s;
}

.phone-btn:hover,
.book-btn:hover {
    transform: translateY(-2px);
    opacity: .9;
}

/* =========================
       TOGGLE BUTTON
    ========================== */
.menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    width: 28px;
    height: 2px;
    background: #111;
    transition: .4s;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-8px);
}

.menu-toggle span:nth-child(2) {
    transform: translateY(0px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(8px);
}

/* Toggle Active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* =========================
       MOBILE
    ========================== */
@media(max-width:991px) {

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        gap: 22px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: .4s ease;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-btns {
        display: none;
    }

    .logo img {
        height: 45px;
    }

    .nav-menu a {
        font-size: 14px;
    }
}

/* =========================
   DROPDOWN
========================= */
.dropdown {
    position: relative;
}

/* SERVICES BUTTON */
.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* DESKTOP DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;

    min-width: 240px;

    background: #fff;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: .4s ease;

    z-index: 9999;
}

.dropdown-menu a {
    display: block;
    padding: 14px 20px;
    color: #111 !important;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
    transition: .3s;
}

.dropdown-menu a:hover {
    background: #4455ad;
    color: #fff !important;
}

/* SHOW DROPDOWN */
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================
   MOBILE
========================= */
@media(max-width:991px) {

    .dropdown {
        width: 100%;
    }

    .dropdown-btn {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: relative;

        top: 0;

        opacity: 1;
        visibility: visible;

        transform: none;

        display: none;

        width: 100%;

        background: transparent;
        box-shadow: none;

        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 12px 15px;
        background: #f5f5f5;
        margin-bottom: 5px;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* =========================
       SLIDES
    ========================== */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    opacity: 0;
    visibility: hidden;
    transition: 1.2s ease-in-out;
    transform: scale(1.08);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

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

/* Overlay */
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* =========================
       CONTENT
    ========================== */
.slide-content {
    position: absolute;
    top: 40%;
    left: 12%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;

    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 500;
}

.slide-content p {
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* =========================
       ICONS
    ========================== */
.review-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.review-icons a {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 34px;
    transition: .4s ease;
}

.review-icons a:hover {
    transform: translateY(-8px) rotate(6deg);
}

.google {
    background: var(--main-bg-blue);
}

.yelp {
    background: var(--main-bg-red);
}

/* =========================
       DOTS
    ========================== */
.slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: .3s;
}

.dot.active {
    width: 35px;
    border-radius: 30px;
    background: #fff;
}

/* =========================
       ARROWS
    ========================== */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: .3s;
}

.slider-arrow:hover {
    background: #fff;
    color: #000;
}

.prev {
    left: 25px;
}

.next {
    right: 25px;
}

/* =========================
       RESPONSIVE
    ========================== */
@media(max-width:991px) {

    .hero-slider {
        height: 90vh;
    }

    .slide-content {
        left: 7%;
        width: 90%;
    }

    .slide-content h1 {
        font-size: 52px;
    }

    .review-icons a {
        width: 58px;
        height: 58px;
        font-size: 26px;
    }
}

@media(max-width:600px) {

    .hero-slider {
        height: 80vh;
    }

    .slide-content h1 {
        font-size: 38px;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }
}

/* =========================
       FEATURE SECTION
    ========================== */
.feature-section {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.feature-box {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

/* Background Image */
.feature-box img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    transition: 1s ease;
}

/* Overlay */
.feature-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: .5s;
}

/* Solid Background */
.solid-red {
    background: var(--main-bg-red);
}

.solid-blue {
    background: var(--main-bg-blue);
}

/* Content */
.feature-content {
    position: relative;
    z-index: 2;
    color: #fff;
    transition: .5s ease;
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Circle Button */
.circle-btn {
    /* width: 50px; */
    /* height: 50px; */
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: revert-rule;
    justify-content: center;
    margin: auto;
    font-size: 27px;
    transition: .5s ease;
    line-height: 35px;
    padding: 18px 15px;
    width: fit-content;
}

/* Hover Effects */
.feature-box:hover img {}

.feature-box:hover .feature-overlay {
    background: rgba(0, 0, 0, 0.55);
}

.feature-box:hover .circle-btn {
    background: #fff;
    color: #000;
    transform: rotate(45deg);
}

.feature-box:hover .feature-content {
    transform: translateY(-8px);
}

/* =========================
       RESPONSIVE
    ========================== */
@media(max-width:1200px) {

    .feature-content h3 {
        font-size: 34px;
    }

    .circle-btn {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }
}

@media(max-width:991px) {

    .feature-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-box {
        height: 280px;
    }
}

@media(max-width:600px) {

    .feature-section {
        grid-template-columns: 1fr;
    }

    .feature-box {
        height: 240px;
    }

    .feature-content h3 {
        font-size: 28px;
    }

    .circle-btn {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
}

/*   */
.our-mision {
    background: #fcf9f3;
    padding: 100px;
}

.misions {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.misions h2 {
    font-size: 60px;
    color: var(--main-bg-blue);
    font-weight: 600;
    margin: 0px 0px 25px;
}

.misions p {
    line-height: 35px;
    font-size: 16px;
}

.about_cure {
    padding: 50px;
}

.about-cure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    align-items: center;
}

.about-cont p {
    font-size: 14px;
    line-height: 28px;
}


.services-section {
    position: relative;
    width: 100%;
    padding: 100px;
    overflow: hidden;

    /* Background Attachment Scroll */
    background: url('../img/services.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Dark Overlay */
.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.096);
    backdrop-filter: blur(2px);
}

.services-wrapper {
    position: relative;
    z-index: 2;
}

/* =========================
       HEADING
    ========================== */
.services-heading {
    text-align: center;
    margin-bottom: 70px;
}

.services-heading h2 {
    color: var(--main-bg-blue);
    font-weight: 500;
    margin-bottom: 15px;
}

.services-heading p {
    color: #444;
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

/* =========================
       GRID
    ========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* =========================
       CARD
    ========================== */
.service-card {
    position: relative;
    padding: 55px 30px;
    min-height: 260px;
    background: rgba(255, 255, 255, 0.59);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    transition: .5s ease;
    overflow: hidden;
}

/* Top Gradient Hover */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg,
            rgba(82, 104, 216, 0.15),
            transparent);
    transition: .5s ease;
}

.service-card:hover::before {
    height: 100%;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* =========================
       TITLE
    ========================== */
.service-card h3 {
    font-size: 22px;
    line-height: 1.4;
    color: #111;
    margin-bottom: 35px;
    font-weight: 500;
}

/* =========================
       BUTTON
    ========================== */
.service-btn {
    width: 92px;
    height: 44px;
    border-radius: 50px;
    background: var(--main-bg-red);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;
    font-size: 28px;

    transition: .4s ease;
}

.service-card:hover .service-btn {
    width: 110px;
    background: var(--main-bg-blue);
    transform: translateY(-3px);
}

/* =========================
       FLOATING SHAPES
    ========================== */
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(82, 104, 216, 0.08);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.shape.one {
    width: 180px;
    height: 180px;
    top: 10%;
    left: 5%;
}

.shape.two {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 8%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
       RESPONSIVE
    ========================== */
@media(max-width:1200px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-heading h2 {
        font-size: 65px;
    }
}

@media(max-width:768px) {

    .services-section {
        padding: 90px 5%;
        background-attachment: scroll;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-heading h2 {
        font-size: 48px;
    }

    .services-heading p {
        font-size: 16px;
    }

    .service-card {
        min-height: 220px;
    }
}

@media(max-width:480px) {

    .services-heading h2 {
        font-size: 40px;
    }

    .service-card {
        padding: 40px 20px;
    }

    .service-card h3 {
        font-size: 20px;
    }
}

.insurances {
    padding: 80px 100px;
}

.insurance-d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.insurance-d h3 {
    font-size: 50px;
    color: var(--main-bg-red);
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    width: fit-content;
}

.insurance-d .cent {
    display: flex;
    align-items: end;
    justify-content: center;
    width: auto;
}


/* =========================
       INSURANCE SECTION
    ========================== */
.insurance-section {
    position: relative;
    padding: 50px 7% 100px;
    overflow: hidden;
    /* background:linear-gradient(
            180deg,
            #f8f8fb 0%,
            #ffffff 100%
        ); */
}

/* Background Shapes */
/* .insurance-section::before{
        content:"";
        position:absolute;
        width:500px;
        height:500px;
        border-radius:50%;
        background:rgba(83,103,216,0.06);
        top:-220px;
        right:-120px;
    }

    .insurance-section::after{
        content:"";
        position:absolute;
        width:380px;
        height:380px;
        border-radius:50%;
        background:rgba(204,49,53,0.05);
        bottom:-180px;
        left:-100px;
    } */

.insurance-wrapper {
    position: relative;
    z-index: 2;
    /* max-width:1350px;
        margin:auto; */
}

/* =========================
       HEADING
    ========================== */
.insurance-heading {
    text-align: center;
    margin-bottom: 80px;
}

.insurance-heading span {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--main-bg-red);
    margin-bottom: 18px;
    font-weight: 600;
}

.insurance-heading h2 {
    color: var(--main-bg-blue);
    font-weight: 500;
    margin-bottom: 25px;
}

.insurance-heading p {
    max-width: 760px;
    margin: auto;
    font-size: 16px;
}

/* =========================
       GRID
    ========================== */
.insurance-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* =========================
       CARD
    ========================== */
.insurance-card {
    position: relative;
    height: 150px;
    /* background:#fff; */
    border-radius: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;
    overflow: hidden;

    /* border:1px solid rgba(0,0,0,0.05); */

    transition: .5s ease;
}

/* Glass Hover Layer */
.insurance-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(83, 103, 216, 0.08),
            rgba(255, 255, 255, 0));
    opacity: 0;
    transition: .5s;
}

/* Hover */
/* .insurance-card:hover{
        transform:translateY(-12px);
        box-shadow:0 25px 60px rgba(0,0,0,0.10);
        border-color:rgba(83,103,216,0.18);
    }

    .insurance-card:hover::before{
        opacity:1;
    } */

/* Logo */
.insurance-card img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    /* filter:grayscale(100%); */
    /* opacity:.75; */
    transition: .4s ease;
}

.insurance-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06);
}

/* =========================
       BOTTOM CTA
    ========================== */
.insurance-bottom {
    margin-top: 80px;
    text-align: center;
}

.insurance-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 18px 34px;
    border-radius: 60px;

    background: #3346a5;
    color: #fff;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: .4s ease;
}

.insurance-btn:hover {
    background: #cc3135;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(204, 49, 53, 0.25);
}

.insurance-btn span {
    font-size: 22px;
}

/* =========================
       RESPONSIVE
    ========================== */
@media(max-width:1200px) {

    .insurance-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .insurance-heading h2 {
        font-size: 65px;
    }
}

@media(max-width:991px) {

    .insurance-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .insurance-heading h2 {
        font-size: 52px;
    }

    .insurance-heading p {
        font-size: 18px;
    }
}

@media(max-width:768px) {

    .insurance-section {
        padding: 90px 5%;
    }

    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .insurance-card {
        height: 130px;
    }

    .insurance-heading h2 {
        font-size: 44px;
    }
}

@media(max-width:500px) {

    .insurance-grid {
        grid-template-columns: 1fr;
    }

    .insurance-heading h2 {
        font-size: 38px;
    }

    .insurance-heading p {
        font-size: 16px;
        line-height: 1.7;
    }

    .insurance-card {
        height: 120px;
    }
}

/* =========================
       REVIEW SECTION
    ========================== */
.reviews-section {
    position: relative;
    width: 100%;
    padding: 80px 0 80px;
    background: var(--main-bg-blue);
    overflow: hidden;
}

.reviews-container {
    position: relative;
    z-index: 2;
}

/* =========================
       HEADING
    ========================== */
.reviews-heading {
    text-align: center;
    margin-bottom: 70px;
}

.reviews-heading h2 {
    color: #fff;
    font-weight: 500;
}

/* =========================
       SLIDER
    ========================== */
.reviews-slider {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    cursor: grab;
    user-select: none;
    padding-bottom: 20px;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.reviews-slider.active {
    cursor: grabbing;
}

/* =========================
       CARD
    ========================== */
.review-card {
    flex: 0 0 calc(33.33% - 19px);
    background: #f8f8f8;
    padding: 50px 45px 40px;
    position: relative;
    transition: .4s ease;
    scroll-snap-align: start;
    min-height: 380px;
}

/* .review-card:hover{
        transform:translateY(-10px);
        box-shadow:0 25px 60px rgba(0,0,0,0.18);
    } */

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: 25px;
    right: 28px;
    font-size: 75px;
    color: rgba(68, 85, 173, 0.08);
}

/* Stars */
.stars {
    margin-bottom: 30px;
}

.stars i {
    color: #f1c40f;
    margin-right: 4px;
    font-size: 17px;
}

/* Review Text */
.review-text {
    font-size: 19px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
    min-height: 150px;
}

/* Line */
.review-line {
    width: 100%;
    height: 1px;
    background: #ff8282;
    margin-bottom: 22px;
}

/* User */
.review-user {
    color: #555;
    font-size: 15px;
}

/* =========================
       DOTS
    ========================== */
.review-dots {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: .4s;
    cursor: pointer;
}

.review-dot.active {
    width: 34px;
    border-radius: 30px;
    background: #fff;
}

/* =========================
       RESPONSIVE
    ========================== */
@media(max-width:1200px) {

    .review-card {
        flex: 0 0 calc(50% - 15px);
    }

    .reviews-heading h2 {
        font-size: 65px;
    }
}

@media(max-width:768px) {

    .reviews-section {
        padding: 80px 0;
    }

    .reviews-heading {
        margin-bottom: 50px;
    }

    .reviews-heading h2 {
        font-size: 46px;
    }

    .review-card {
        flex: 0 0 100%;
        padding: 35px 28px;
        min-height: auto;
    }

    .review-text {
        font-size: 17px;
        min-height: auto;
    }
}


/*  */
.mapss {
    padding: 50px;
}

/* =========================
       LOCATION SECTION
    ========================== */
.location-section {
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 50px;
}

/* =========================
       MAP SIDE
    ========================== */
.location-map {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(5%);
}

/* =========================
       CONTENT SIDE
    ========================== */
.location-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 7%;
    position: relative;
}

.location-box {
    max-width: fit-content;
    width: 100%;
}

/* Heading */
.location-box h2 {
    font-size: 30px;
    color: var(--main-bg-red);
    font-weight: 500;
    margin-bottom: 35px;
    line-height: 1.1;
}

/* Address */
.location-address {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 30px;
}

/* Email */
.location-email {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

.location-email a {
    color: #666;
    text-decoration: none;
    transition: .3s;
}

.location-address a {
    color: #666;
    text-decoration: none;
    transition: .3s;
}

.location-email a:hover {
    color: #4455ad;
}

/* Hours */
.hours-title {
    font-size: 18px;
    color: #222;
    margin-bottom: 18px;
    font-weight: 600;
}

.hours-list {
    width: 220px;
    margin-bottom: 45px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 20px;
}

.hours-row span {
    color: #555;
    font-size: 12px;
}

/* Buttons */
.location-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.location-btn {
    padding: 14px 26px;
    background: var(--main-bg-blue);
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .4s ease;
}

.location-btn:hover {
    background: var(--main-bg-red);
    transform: translateY(-5px);
    /* box-shadow:0 15px 35px rgba(200,51,51,0.25); */
}

/* =========================
       RESPONSIVE
    ========================== */
@media(max-width:1200px) {

    .location-box h2 {
        font-size: 54px;
    }
}

@media(max-width:991px) {

    .location-section {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 500px;
    }

    .location-content {
        padding: 70px 6%;
    }

    .location-box {
        max-width: 100%;
    }
}

@media(max-width:600px) {

    .location-box h2 {
        font-size: 42px;
    }

    .location-address,
    .location-email {
        font-size: 17px;
    }

    .hours-row span {
        font-size: 14px;
    }

    .location-btn {
        width: 100%;
    }

    .location-map {
        height: 420px;
    }
}

/* =========================
       FOOTER
    ========================== */
.medical-footer {
    position: relative;
    width: 100%;
    background: #161616;
    overflow: hidden;
    color: #fff;
}

/* Gradient Overlay */
.medical-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.02),
            transparent);
}

.footer-wrapper {
    position: relative;
    z-index: 2;
    padding: 70px 75px 30px;

    display: grid;
    grid-template-columns: 375px 1fr;
    gap: 60px;
}

/* =========================
       LEFT SIDE
    ========================== */
.footer-left img {
    width: 280px;
    background: #fff;
    padding: 15px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 28px;
    font-weight: 500;
}

.footer-contact {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.9;
    color: #f1f1f1;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-contact a:hover {
    color: #5d72e9;
}

/* =========================
       RIGHT SIDE
    ========================== */
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Top Row */
.footer-top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Rating */
.footer-rating {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    width: 155px;
}

.footer-stars {
    margin-bottom: 18px;
}

.footer-stars i {
    color: #fff;
    margin-right: 4px;
    font-size: 18px;
}

.footer-score {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* Menu */
.footer-menu {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: .3s;
}

.footer-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--main-bg-red);
    transition: .4s;
}

.footer-menu a:hover::after {
    width: 100%;
}

.footer-menu a:hover {
    color: var(--main-bg-red);
}

/* =========================
       COPYRIGHT
    ========================== */
.footer-bottom {
    margin-top: 140px;
    text-align: center;

}

.footer-bottom p {
    color: #d7d7d7;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-bottom a:hover {
    color: #5d72e9;
}

/* =========================
       RESPONSIVE
    ========================== */
@media(max-width:1100px) {

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-bottom {
        margin-top: 70px;
    }
}

@media(max-width:768px) {

    .medical-footer {
        text-align: center;
    }

    .footer-left img {
        width: 240px;
    }

    .footer-title {
        font-size: 28px;
    }

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

    .footer-menu {
        justify-content: center;
        gap: 25px;
    }

    .footer-rating {
        border-left: 0;
        padding-left: 0;
        width: 100%;
    }

    .footer-stars {
        justify-content: center;
        display: flex;
    }

    .footer-score {
        text-align: center;
    }

    .footer-bottom {
        margin-top: 50px;
    }
}

@media(max-width:480px) {

    .footer-wrapper {
        padding: 60px 5% 25px;
    }

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

    .footer-bottom p {
        font-size: 15px;
    }
}


/* about page design */

.genaral-header {
    background: var(--main-bg-blue);
    padding: 50px 0;
    text-align: center;
    margin-top: 140px;
    color: #fff;

}

.abouts-header-t h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 25px;
}

.about-coll-data {
    padding: 50px 100px;
}

.about-collec-more img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top;
}

.coll-text-c {
    padding: 70px 80px 50px;
}

.coll-text-c h2 {
    margin-bottom: 30px;
}

.coll-text-c p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #535353;
    line-height: 30px;
}

/* team page */

.team-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.team-img img {
    width: 50%;
    padding: 25px;
}

.our-team h3 {
    text-align: center;
    color: var(--main-bg-blue);
    padding: 70px 0 50px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    padding-bottom: 70px;
}

.member {
    background: #f5f5f5;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.member img {
    width: 320px;
    height: 400px;
    object-fit: cover;
}

.member h3 {
    padding: 0;
    font-size: 21px;
    text-align: center;
    color: var(--main-bg-blue);

}

.member p {
    padding: 0;
    font-size: 14px;
    text-align: center;
    color: var(--main-bg-blue);


}

.team-name {
    width: 100%;
}


/* contact page */

/* =========================
       CONTACT SECTION
    ========================== */
.contact-section {
    width: 100%;
    padding: 80px 5%;
    background: #f7f7f7;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
}

/* =========================
       HEADING
    ========================== */
.contact-heading {
    text-align: center;
    margin-bottom: 60px;
}

.contact-heading span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 20px;
}

.contact-heading h2 {
    font-size: 35px;
    color: #333;
    font-family: "Open Sans", sans-serif;

    font-weight: 500;
    margin-bottom: 25px;
}

.contact-heading p {
    max-width: 850px;
    margin: auto;
    font-size: 16px;
    color: #666;
}

/* =========================
       FORM GRID
    ========================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

/* =========================
       FORM GROUP
    ========================== */
.form-group {
    margin-bottom: 35px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: #444;
    font-size: 16px;
}

.form-control {
    width: 100%;
    height: 56px;
    background: #fff;
    border: 1px solid #dddddd;
    outline: none;
    padding: 0 18px;
    font-size: 16px;
    color: #333;
}

textarea.form-control {
    height: 180px;
    resize: none;
    padding-top: 18px;
}

.form-control:focus {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(68, 85, 173, 0.15);
}

/* =========================
       CHECKBOX
    ========================== */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.checkbox-group input {
    width: 22px;
    height: 22px;
    margin-top: 5px;
    accent-color: #4455ad;
    cursor: pointer;
}

.checkbox-group p {
    font-size: 14px;
    line-height: 28px;
    color: #666;
}

.checkbox-group strong {
    color: #333;
}

/* =========================
       CAPTCHA
    ========================== */
.captcha-box {
    width: 320px;
    height: 80px;
    background: #fff;
    border: 1px solid #dcdcdc;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;
    margin-top: 35px;
}

.captcha-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.captcha-left input {
    width: 26px;
    height: 26px;
    cursor: pointer;
}

.captcha-left span {
    font-size: 16px;
    color: #222;
}

.captcha-right {
    text-align: center;
}

.captcha-right img {
    width: 38px;
    margin-bottom: 4px;
}

.captcha-right p {
    font-size: 11px;
    color: #777;
}

/* =========================
       BUTTON
    ========================== */
.submit-wrap {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    padding: 13px 40px;
    border: none;
    background: var(--main-bg-red);
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .4s ease;
    border-radius: 0px;
}

.submit-btn:hover {
    background: var(--main-bg-blue);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(68, 85, 173, 0.25);
}

/* =========================
       RESPONSIVE
    ========================== */
@media(max-width:991px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-heading h2 {
        font-size: 46px;
    }
}

@media(max-width:600px) {

    .contact-section {
        padding: 70px 5%;
    }

    .contact-heading h2 {
        font-size: 34px;
        line-height: 1.3;
    }

    .contact-heading p {
        font-size: 16px;
    }

    .captcha-box {
        width: 100%;
    }

    .checkbox-group {
        gap: 12px;
    }

    .checkbox-group p {
        font-size: 14px;
        line-height: 1.8;
    }
}


.reviews-wrapper h3 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.reviews-section-page {
    width: 100%;
    padding: 100px 6%;
    background: #c52b2f;
}

.reviews-wrapper {
    max-width: 1250px;
    margin: auto;
}

/* =========================
       GRID
    ========================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* =========================
       CARD
    ========================== */
.review-card {
    background: #f7f7f7;
    padding: 40px 28px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .4s ease;
    position: relative;
    overflow: hidden;
    gap: 25px;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Hidden Reviews */
.review-card.hidden {
    display: none;
}

/* =========================
       REVIEW TEXT
    ========================== */
.review-text {
    font-size: 16px;
    line-height: 1.4;
    color: #111;
    margin-bottom: 0px;
    min-height: auto;
}

/* Read More */
.read-more-btn {
    display: inline-block;
    margin-top: 12px;
    color: #c52b2f;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .3s;
}

.read-more-btn:hover {
    color: #4455ad;
}

/* =========================
       STARS
    ========================== */
.stars {
    margin-bottom: 10px;
}

.stars i {
    color: #f1c40f;
    margin-right: 4px;
    font-size: 17px;
}

/* =========================
       LINE
    ========================== */
.review-line {
    width: 100%;
    height: 1px;
    background: #e7a0a2;
    margin-bottom: 10px;
}

/* =========================
       USER
    ========================== */
.review-user {
    font-size: 15px;
    color: #222;
}

/* =========================
       SHOW MORE
    ========================== */
.show-more-wrap {
    text-align: center;
    margin-top: 45px;
}

.show-more-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 35px;
    cursor: pointer;
    font-size: 15px;
    transition: .4s ease;
}

.show-more-btn:hover {
    background: #fff;
    color: #c52b2f;
}

/* =========================
       RESPONSIVE
    ========================== */
@media(max-width:1200px) {

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:991px) {

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {

    .reviews-section {
        padding: 70px 5%;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: auto;
    }

    .review-text {
        font-size: 18px;
    }
}

.service-page-grid {
    padding: 100px;
    background-color: #f5f5f5;
}

.service-page-grids {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
    padding: 0px 70px;

}

.text-serv h3 {
    border-bottom: 1px solid var(--main-bg-blue);
    padding-bottom: 15px;
    color: var(--main-bg-red);
    font-size: 30px;
}

.text-serv p {
    padding-top: 25px;
    font-size: 14px;
    line-height: 30px;

}


/* =========================
       FAQ SECTION
    ========================== */
.faq-section {
    width: 100%;
    padding: 100px 6%;
    background: #fff;
}

.faq-container {
    max-width: 1100px;
    margin: auto;
}

/* Heading */
.faq-heading {
    margin-bottom: 60px;
}

.faq-heading h2 {
    font-size: 40px;
    color: var(--main-bg-red);
    font-weight: 500;
}

/* =========================
       ACCORDION
    ========================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.faq-item {
    background: #fff;
    border: 1px solid #ececec;
    overflow: hidden;
    transition: .4s ease;
}

.faq-item.active {
    /* box-shadow:0 15px 40px rgba(0,0,0,0.08); */
    /* border-color:#c83333; */
}

/* =========================
       QUESTION
    ========================== */
.faq-question {
    width: 100%;
    padding: 28px 30px;
    border: none;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;
    font-size: 20px;
    color: #222;
    text-align: left;

    transition: .3s;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question i {
    font-size: 18px;
    transition: .4s ease;
    color: var(--main-bg-red);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* =========================
       ANSWER
    ========================== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
    background: #fff;
}

.faq-answer-content {
    padding: 0 30px 35px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 28px;
    color: #555;
    margin-bottom: 15px;
}

.faq-answer ul {
    padding-left: 22px;
    margin-bottom: 30px;
}

.faq-answer ul li {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    line-height: 28px;
}

/* =========================
       RESPONSIVE
    ========================== */
@media(max-width:768px) {

    .faq-section {
        padding: 70px 5%;
    }

    .faq-heading h2 {
        font-size: 40px;
    }

    .faq-question {
        font-size: 20px;
        padding: 22px 20px;
    }

    .faq-answer-content {
        padding: 0 20px 30px;
    }

    .faq-answer p {
        font-size: 16px;
        line-height: 1.9;
    }

    .faq-answer ul li {
        font-size: 15px;
    }
}

.coll-text-c h4 {
    margin: 30px 0;
}


/* =========================
   DROPDOWN
========================= */
.dropdown {
    position: relative;
}

/* MENU */
.dropdown-menu {
    position: absolute;

    top: 100%;
    left: 0;

    width: 240px;

    background: #fff;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: .4s ease;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    z-index: 99999;
    border: none;
    border-radius: 0px;
}

/* LINKS */
.dropdown-menu a {
    display: block;

    padding: 14px 20px;

    color: #111;

    text-decoration: none;

    border-bottom: 1px solid #eee;

    transition: .3s;
}

.dropdown-menu a:hover {
    background: #4455ad;
    color: #fff;
}

/* =========================
   HOVER ACTIVE
========================= */
.dropdown:hover .dropdown-menu {

    opacity: 1;
    visibility: visible;
    display: block;
    transform: translateY(0);

}


/* =========================
   MOBILE
========================= */
@media(max-width:991px) {

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {

        position: relative;

        top: 0;

        opacity: 1;
        visibility: visible;

        transform: none;

        display: none;

        width: 100%;

        background: transparent;

        box-shadow: none;

        margin-top: 10px;
    }

    /* ACTIVE CLASS */
    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 12px 15px;
        background: #f5f5f5;
        margin-bottom: 5px;
    }

}


/* =========================
       OPEN BUTTON
    ========================== */
.open-modal-btn {
    padding: 16px 34px;
    border: none;
    background: #4455ad;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: .4s;
}

.open-modal-btn:hover {
    background: #c83333;
}

/* =========================
       MODAL
    ========================== */
.appointment-modal {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition: .4s ease;

    z-index: 999999;
}

.appointment-modal.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
       MODAL BOX
    ========================== */
.modal-box {
    width: 100%;
    max-width: 850px;

    background: #fff;

    padding: 35px 35px 30px;

    position: relative;

    max-height: 95vh;
    overflow-y: auto;

    transform: translateY(40px);

    transition: .4s ease;
}

.appointment-modal.active .modal-box {
    transform: translateY(0);
}

/* =========================
       CLOSE
    ========================== */
.modal-close {
    position: absolute;
    top: 22px;
    right: 22px;

    width: 38px;
    height: 38px;

    border: none;
    background: transparent;

    font-size: 22px;
    color: #888;

    cursor: pointer;
}

/* =========================
       TITLE
    ========================== */
.modal-title {
    font-size: 25px;
    color: #222;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e8e8e8;
}

/* =========================
       LABELS
    ========================== */
.form-label {
    display: block;
    margin-bottom: 14px;
    color: #222;
    font-size: 16px;
}

/* =========================
       RADIO
    ========================== */
.radio-wrap {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-item input {
    width: 22px;
    height: 22px;
    accent-color: #4455ad;
    cursor: pointer;
}

.radio-item label {
    font-size: 18px;
    color: #555;
    cursor: pointer;
}

/* =========================
       GRID
    ========================== */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.full-width {
    grid-column: 1/-1;
}

/* =========================
       INPUT
    ========================== */
.form-group {
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    height: 58px;

    background: #eef1f0;

    border: none;
    outline: none;

    padding: 0 18px;

    font-size: 16px;

    color: #333;
}

.form-control:focus {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(68, 85, 173, 0.15);
}

/* =========================
       CHECKBOX
    ========================== */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin-bottom: 0px;
}

.checkbox-group input {
    width: 22px;
    height: 22px;
    margin-top: 4px;
    accent-color: #4455ad;
}

.checkbox-group p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.checkbox-group a {
    color: #5b8dc8;
    text-decoration: none;
}

/* =========================
       FOOTER
    ========================== */
.modal-footer {
    margin-top: 30px;
    padding-top: 25px;

    border-top: 1px solid #e8e8e8;

    display: flex;
    justify-content: flex-end;
}

.submit-btn {
    padding: 16px 32px;

    border: none;

    background: var(--main-bg-blue);

    color: #fff;

    font-size: 18px;

    border-radius: 0px;

    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 12px;

    transition: .4s;
}

.submit-btn:hover {
    background: var(--main-bg-red);
    color: #fff;
}

/* =========================
       RESPONSIVE
    ========================== */
@media(max-width:768px) {

    .modal-box {
        padding: 25px 20px;
    }

    .modal-title {
        font-size: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkbox-group p {
        font-size: 15px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .about-cure-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 70px;
        align-items: center;
    }

    .insurance-d {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
        align-items: center;
    }

    .about-img img {
        width: 100%;
    }

    .insurances {
        padding: 25px 15px;
    }
}




/* =========================
       CHAT BUTTON
    ========================== */
.chat-widget-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: var(--main-bg-blue);
    ;

    border: none;

    color: #fff;

    font-size: 30px;

    cursor: pointer;

    z-index: 99999;

    transition: .4s ease;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.chat-widget-btn:hover {
    transform: translateY(-5px);
}

/* =========================
       OVERLAY
    ========================== */
.chat-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.6);

    opacity: 0;
    visibility: hidden;

    transition: .4s ease;

    z-index: 99998;
}

.chat-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
       CHAT POPUP
    ========================== */
.chat-popup {
    position: fixed;

    right: 15px;
    bottom: 15px;

    width: 430px;

    background: #fff;

    border-radius: 14px;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(40px);

    transition: .4s ease;

    z-index: 99999;
}

.chat-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* HEADER */
.chat-header {
    background: var(--main-bg-blue);
    ;
    padding: 25px 20px 10px;
    position: relative;
}

.chat-header h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.chat-header p {
    color: #fff;
    opacity: .9;
    font-size: 18px;
}

/* CLOSE */
.chat-close {
    position: absolute;
    right: 22px;
    top: 22px;

    background: none;
    border: none;

    color: #fff;

    font-size: 28px;

    cursor: pointer;
}

/* BODY */
.chat-body {
    padding: 28px;
}

/* OPTION */
.chat-option {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 20px;

    background: #f4f4f4;

    border-radius: 10px;

    margin-bottom: 14px;

    text-decoration: none;

    color: #555;

    transition: .4s ease;
}

.chat-option:hover {
    background: var(--main-bg-blue);
    color: #fff;
    transform: translateX(5px);
}

.chat-option-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.chat-option i {
    font-size: 24px;
}

.chat-option span {
    font-size: 18px;
    font-weight: 600;
}

/* =========================
       TEXT POPUP
    ========================== */
.text-popup,
.review-popup,
.appointment-popup {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition: .4s ease;

    z-index: 999999;
}

.text-popup.active,
.review-popup.active,
.appointment-popup.active {
    opacity: 1;
    visibility: visible;
}

/* BOX */
.popup-box {
    width: 100%;
    max-width: 500px;

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    transform: translateY(40px);

    transition: .4s ease;
}

.text-popup.active .popup-box,
.review-popup.active .popup-box,
.appointment-popup.active .popup-box {
    transform: translateY(0);
}

/* TOP */
.popup-top {
    background: var(--main-bg-blue);
    ;
    padding: 35px 30px;
    position: relative;
}

.popup-top h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
}

.popup-top p {
    color: #fff;
    font-size: 17px;
}

/* CLOSE */
.popup-close {
    position: absolute;
    top: 20px;
    right: 22px;

    background: none;
    border: none;

    color: #fff;

    font-size: 26px;

    cursor: pointer;
}

/* FORM */
.popup-form {
    padding: 28px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    height: 58px;

    background: #eef1f0;

    border: none;
    outline: none;

    margin-bottom: 18px;

    padding: 0 16px;

    font-size: 16px;
}

.popup-form textarea {
    height: 120px;
    padding-top: 18px;
    resize: none;
}

/* GRID */
.popup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* TEXT */
.popup-text {
    font-size: 13px;
    line-height: 1.9;
    color: #666;
    text-align: center;
    margin-top: 8px;
}

/* BUTTON */
.popup-submit {
    width: 100%;
    height: 58px;

    border: none;

    border-radius: 50px;

    background: var(--main-bg-blue);
    ;

    color: #fff;

    font-size: 20px;

    margin-top: 18px;

    cursor: pointer;

    transition: .4s ease;
}

.popup-submit:hover {
    background: var(--main-bg-red);
    ;
}

/* =========================
       REVIEW POPUP
    ========================== */
.review-box {
    width: 100%;
    max-width: 850px;

    background: #fff;

    border-radius: 10px;

    padding: 35px;

    position: relative;
}

.review-box h4 {
    color: #9090a7;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.review-box h2 {
    font-size: 30px;
    color: #3d3d5b;
    margin-bottom: 10px;
}

.review-box p {
    color: #666;
    margin-bottom: 25px;
}

.review-form {
    border: 1px solid #ddd;
    padding: 25px;
}

.review-form input {
    width: 100%;
    height: 50px;

    border: 1px solid #dcdcdc;

    padding: 0 15px;

    margin-bottom: 18px;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.review-next {
    width: 100%;
    height: 54px;

    background: var(--main-bg-blue);
    ;

    border: none;

    color: #fff;

    font-size: 18px;

    cursor: pointer;
}

/* =========================
       RESPONSIVE
    ========================== */
@media(max-width:600px) {

    .chat-popup {
        width: calc(100% - 20px);

        right: 10px;
        left: 10px;

        bottom: 95px;
    }

    .chat-header h2,
    .popup-top h3 {
        font-size: 32px;
    }

    .popup-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-box {
        padding: 20px;
    }

    .review-box h2 {
        font-size: 34px;
    }
}

@media(max-width:767px) {

.our-mision {
    background: #fcf9f3;
    padding: 50px 10px;
}
h2{
    font-size: 40px !important;
}
.about_cure {
    padding: 50px 10px;
}
.services-section {
    padding: 90px 0%;
    background-attachment: scroll;
}
.insurance-d h3 {
    font-size: 26px;
    color: var(--main-bg-red);
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    width: fit-content;
}
.insurance-d {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    align-items: center;
}
.insurance-grid {
    grid-template-columns: repeat(2, 1fr);
}
.location-section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding: 50px 10px;
}
.footer-top {
    display: flex;
    align-items: center;
    gap: 20px;
}
.insurance-section {
    padding: 90px 0%;
}
.about-coll-data {
    padding: 50px 0px;
}
.coll-text-c {
    padding: 50px 10px 50px;
}
.about-collec-more img {
    width: 100%;
    height:350px;
    object-fit: cover;
    object-position: top;
}
.team-members {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    padding-bottom: 70px;
}
.member {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.team-img img {
    width: 100%;
    padding: 30px 0 0;
}
.service-page-grids {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    align-items: center;
    padding: 0px;
}
.service-page-grid {
    padding: 50px 0px;
    background-color: #f5f5f5;
}
.img-ser img{
    width: 100%;
}
.faq-heading h2{
    font-size: 28px !important;
}
}


@media only screen and (min-width: 768px) and (max-width: 1024px) {

    .service-page-grids {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    align-items: center;
    padding: 0px 0px;

}
.service-page-grid {
    padding: 50px 0;
    background-color: #f5f5f5;
}
.img-ser img{
    width: 100%;
}
.services-grid {
    grid-template-columns: repeat(2, 1fr);
}
.footer-top {
    flex-direction: column;
    justify-content: center;
    align-items: anchor-center;
}
.services-section {
    padding: 90px 0%;
    background-attachment: scroll;
}
.feature-content h3 {
    font-size: 26px;
}   
.our-mision {
    background: #fcf9f3;
    padding: 100px 20px;
}
.insurance-d h3 {
    
    text-align: center;
    width: 100%;
}
.insurances {
    padding: 55px 15px;
}
.insurance-d h3 {
    font-size: 30px;
    color: var(--main-bg-red);
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    width: 100%;
}
.insurance-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.location-section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding: 50px 10px;
}
.about-coll-data {
    padding: 50px 10px;
}
.coll-text-c {
    padding: 70px 0px 50px;
}
.team-img img {
    width: 100%;
    padding: 25px 0;
}
.team-members {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    padding-bottom: 70px;
}
}
