    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

    /*------------------------header--------------------------------*/
    header {
      background-color: #fff;
      .logo {
        width: 100px;

        img {
          width: 100%;
        }
      }

      nav {
        ul {
          li {
            display: inline-block;
            font-size: 18px;
            padding: 0 20px;

            &:hover {
              a {
                color: var(--theme-color1);
              }
            }

            a {
              color: var(--theme-color2);

              &.active {
                color: var(--theme-color1);
              }
            }
          }
        }
      }

      .toggle {
        display: none;

        i {
          font-size: 24px;
          border: 2px solid var(--theme-color1);
          padding: 5px 10px;
          color: var(--theme-color2);
        }
      }
    }

    .mobile-nav {
      position: fixed;
      overflow: scroll;
      top: 0;
      right: -100%;
      width: 270px;
      height: 100%;
      background: linear-gradient(135deg, #fdfbfb, #ebedee);
      border-left: 5px solid #04744e;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
      display: flex;
      flex-direction: column;
      padding: 60px 20px;
      transition: right 0.3s ease;
      z-index: 999;
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav ul {
      flex-direction: column;
      gap: 15px;
    }

    .mobile-nav ul li {
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 10px;
      margin-bottom: 10px;
      position: relative;
    }

    .mobile-nav a {
      font-size: 16px;
      color: #333;
      font-weight: 500;
      padding: 8px 0;
      display: inline-block;
    }

    .dropdown-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .submenu {
      max-height: 0;
      overflow: hidden;
      flex-direction: column;
      gap: 10px;
      padding-left: 15px;
      transition: max-height 0.3s ease;
    }

    .mobile-nav li.open>.submenu {
      max-height: 500px;
    }

    .dropdown-icon {
      color: #04744e;
      margin-left: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
      transform: rotate(0deg);
    }

    .mobile-nav li.open>.dropdown-toggle>.dropdown-icon {
      transform: rotate(180deg);
    }

    .submenu a:hover {
      background-color: #f0f9f6;
      border-radius: 4px;
      padding-left: 5px;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 24px;
      cursor: pointer;
      color: #04744e;
    }

    @media (max-width: 1024px) {
      header nav {
        display: none;
      }

      header .toggle {
        display: block;
      }

      header .button {
        display: none;
      }
    }

    .banner {
      position: relative;
      z-index: 1;

      .slide {
        position: relative;

        &::after {
          position: absolute;
          content: "";
          top: 0;
          left: 0;
          bottom: 0;
          right: 0;
          background-color: #000;
          opacity: 0.6;
          z-index: 1;
        }

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

        .img-content {
          position: absolute;
          display: inline-block;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 85%;
          z-index: 2;

          h6 {
            position: relative;
            z-index: 9999;
            color: #f38e27;
            margin-bottom: 20px;
            letter-spacing: 1px;
            display: inline-block;
            border-radius: 5px;
          }

          h1 {
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.4;
          }

          p {
            color: #fff;
            max-width: 700px;
          }
        }

      }

    }

    .treatment-section {
      padding: 60px 20px;
      text-align: center;

      .image-wrapper {
        margin-bottom: 10px;

        img {
          padding: 20px;
        }
      }

      h4 {
        margin-bottom: 10px;
      }
    }

    /*---------------------why people trust us -------------------------*/
    .why-trust {
      padding: 30px 0;

      .col-img {
        img {
          border-radius: 20px;
        }
      }

      .col-content {
        .svg-icon {
          display: flex;
          justify-content: center;
          align-items: center;
          height: 50px;
          width: 50px;
          border-radius: 50%;
          background-color: var(--theme-color2);
          margin-bottom: 10px;

          .svg-logo {
            height: 25px;
            width: 25px;
          }
        }
      }
    }

    /*--------------------why people trust us -----------------------------*/
    /*-----------------------services section ------------------------------*/
    .service-container {
      padding: 60px 0;
    }

    .card {
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 20px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
      transition: box-shadow 0.3s ease;
      height: 400px;
    }

    .card:hover {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-top-left-radius: 16px;
      border-top-right-radius: 16px;
    }

    .card-content {
      padding: 20px;
    }

    /*-----------------------services section ------------------------------*/
    /*-----------------------why choose ------------------------------*/
    .why-choose {
      font-family: 'Inter', sans-serif;
      padding: 30px 0;
    }

    .why-choose .left {
      flex: 1;
      min-width: 300px;
      margin-bottom: 30px;
    }

    .why-choose .left h2 {
      font-weight: 500;
      line-height: 1.4;
      margin-bottom: 20px;
      color: #0a0e63;
    }

    .why-choose .left ul {
      list-style: disc;
      padding-left: 20px;
      margin-bottom: 30px;
    }

    .why-choose .left ul li {
      list-style: disc;
      margin-bottom: 26px;
      font-weight: 500;
      color: #0a0e63;
    }

    .why-choose .left .btn:hover {
      background: #ff9654;
    }

    .why-choose .right {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 20px;
    }

    .why-choose .circle {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      text-align: center;
      font-weight: 500;
      color: #191970;
      overflow: hidden;
      transition: all 0.5s ease;
    }

    .why-choose .circle .text {
      position: absolute;
      z-index: 2;
      transition: opacity 0.4s ease;
    }

    .why-choose .circle .image {
      position: absolute;
      bottom: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      z-index: 1;
      transition: bottom 0.6s ease;
    }

    .why-choose .circle:hover .text {
      opacity: 0;
    }

    .why-choose .circle:hover .image {
      bottom: 0;
    }

    .why-choose .sports {
      &:hover {
        .image {
          bottom: 100%;
        }

        .text {
          opacity: 1;
        }
      }

      .image {
        bottom: 0;
      }

      .text {
        opacity: 0;
      }
    }

    .why-choose .spinal {
      &:hover {
        .image {
          bottom: 100%;
        }

        .text {
          opacity: 1;
        }
      }

      .image {
        bottom: 0;
      }

      .text {
        opacity: 0;
      }
    }

    .rehab {
      background-color: #fef4ea;
    }

    .postnatal {
      background-color: #d7f2dc;
    }

    .acupuncture {
      background-color: #eef4ff;
    }

    .massage {
      background-color: #6366f1;
      color: white;
    }

    .why-choose .img1 {
      background-image: url('../images/img1.jpg');
    }

    .why-choose .img2 {
      background-image: url('../images/img2.png');
    }

    .why-choose .img3 {
      background-image: url('../images/img3.jpg');
    }

    .why-choose .img4 {
      background-image: url('../images/img4.png');
    }

    .why-choose .img5 {
      background-image: url('../images/img5.png');
    }

    .why-choose .img6 {
      background-image: url('../images/img-6.jpeg');
    }

    /*-----------------------muscle section----------------------------------*/
    .muscle-strain-section {
      display: flex;
      flex-wrap: wrap;
      min-height: 100vh;
      width: 100%;
    }

    .muscle-strain-section .left {
      flex: 1;
      min-width: 300px;
    }

    .muscle-strain-section .left img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .muscle-strain-section .right {
      flex: 1;
      min-width: 300px;
      background-color: #f1f7ff;
      color: #1b2172;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 80px 40px;
      text-align: center;
    }

    .muscle-strain-section .right h2 {
      max-width: 500px;
    }

    .muscle-strain-section .right p {
      line-height: 1.6;
      margin-bottom: 35px;
      color: #1b2172;
      max-width: 480px;
    }

    .muscle-strain-section .right .btn {
      background-color: var(--theme-color2);
      color: white;
      border-radius: 4px;
    }

    .muscle-strain-section .right .btn:hover {
      background-color: #232a9e;
    }

    @media (max-width: 768px) {

      .why-choose .circle {
        width: 180px;
        height: 180px;
      }

      .expertise-wrapper {
        flex-direction: column;
      }

      .expertise-image,
      .expertise-content {
        flex: 1 1 100%;
        width: 100%;
      }

      .expertise-content h2 {
        font-size: 28px;
        text-align: center;
      }

      .expertise-content p {
        /* text-align: center; */
        padding: 0 10px;
      }

      .expertise-item h4 {
        font-size: 16px;
      }

      .expertise-item p {
        padding-left: 14px;
        font-size: 14px;
      }

      .play-button {
        bottom: 15px;
        left: 15px;
        padding: 10px 16px;
        font-size: 14px;
      }

      .play-button i {
        font-size: 14px;
      }

      .footer-column {
        width: 100%;
      }

      .logo-column p {
        max-width: none !important;
      }

      .testimonial {
        padding: 30px 5px !important;
      }

      .card {
        max-width: 100%;
      }

      .muscle-strain-section {
        flex-direction: column;
      }

      .muscle-strain-section .right {
        padding: 60px 20px;
      }

      .muscle-strain-section .right h2 {
        font-size: 30px;
      }

      .about-banner {
        height: 50vh !important;

        .img-content {
          h1 {
            color: #fff;
            font-size: 35px;
          }

          ul {
            li {
              font-size: 16px !important;
            }
          }
        }
      }

      .contact {
        background-color: #f7fdfb;
        padding: 20px 5px !important;
      }

      .contact-form {
        gap: 12px !important;
        padding: 0 !important;
      }

      .title {
        h2 {
          font-size: 32px;
          margin-bottom: 20px;
          text-transform: capitalize;
        }
      }

      .case-studies {
        padding: 10px 0 !important;
      }

      .why-choose {
        padding: 10px 0 !important;
      }

      .expertise-section {
        padding: 20px 0 !important;
      }

      .why-choose .left h2 {
        font-size: 32px;
        font-weight: 700;
      }

      .why-choose .circle{
        margin-top: 15px;
      }

      .why-trust {
        padding: 20px 0;

        .col-img {
          img {
            display: none;
            border-radius: 20px;
            margin-bottom: 15px;
          }
        }
      }

      .our-team {
        padding: 20px 10px;

        .box {
          margin-top: 20px;
        }
      }
      .banner {
    .slide {
        img {
            width: 100%;
            height: 80vh;
            object-fit: cover;
        }
        h1{
          margin-bottom: 10px !important;
        }
        h6{
          margin-bottom: 10px !important;
        }
    }
}
.step-box {
  margin-top: 15px;
}
.testimonial2 {
    .box {
       margin-top: 15px;
    }
}

    }

    @media (max-width: 480px) {
      .muscle-strain-section .right h2 {
        font-size: 26px;
      }

      .muscle-strain-section .right p {
        font-size: 15px;
      }
    }

    /* -------------------- MOBILE NAV STYLING -------------------- */
    .mobile-nav {
      position: fixed;
      overflow: scroll;
      top: 0;
      right: -100%;
      width: 270px;
      height: 100%;
      background: linear-gradient(135deg, #fdfbfb, #ebedee);
      border-left: 5px solid #04744e;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
      display: flex;
      flex-direction: column;
      padding: 60px 20px;
      transition: right 0.3s ease;
      z-index: 999;
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav ul {
      flex-direction: column;
      gap: 15px;
    }

    .mobile-nav ul li {
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 10px;
      margin-bottom: 10px;
      position: relative;
    }

    .mobile-nav a {
      color: #333;
      font-weight: 500;
      padding: 8px 0;
      display: inline-block;
    }

    .dropdown-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .submenu {
      max-height: 0;
      overflow: hidden;
      flex-direction: column;
      gap: 10px;
      padding-left: 15px;
      transition: max-height 0.3s ease;
    }

    .mobile-nav li.open>.submenu {
      max-height: 500px;
    }

    .dropdown-icon {
      color: #04744e;
      margin-left: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
      transform: rotate(0deg);
    }

    .mobile-nav li.open>.dropdown-toggle>.dropdown-icon {
      transform: rotate(180deg);
    }

    .submenu a:hover {
      background-color: #f0f9f6;
      border-radius: 4px;
      padding-left: 5px;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      cursor: pointer;
      color: #04744e;
    }

    @media (max-width: 991px) {
      header nav {
        display: none;
      }

      header .toggle {
        display: block;
      }
    }

    /*--------------------------exercise section -------------------------*/
    .exercise-section {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      width: 100%;
    }

    .exercise-box {
      position: relative;
      overflow: hidden;
      height: 300px;
      cursor: pointer;
    }

    .exercise-image,
    .exercise-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .exercise-image {
      background-size: cover;
      background-position: center;
    }

    .exercise-content {
      background-color: #e0f0ff;
      color: #002b6b;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
    }

    .exercise-content h3 {
      margin-bottom: 10px;
    }

    .exercise-content a {
      color: #002b6b;
      text-decoration: none;
    }

    /* 1st & 3rd: image default, content hidden initially */
    .show-image .exercise-content {
      transform: translateY(100%);
      z-index: 2;
    }

    .show-image .exercise-image {
      z-index: 1;
    }

    .show-image:hover .exercise-image {
      transform: translateY(-100%);
    }

    .show-image:hover .exercise-content {
      transform: translateY(0);
    }

    /* 2nd & 4th: content default, image hidden initially */
    .show-content .exercise-image {
      transform: translateY(100%);
      z-index: 2;
    }

    .show-content .exercise-content {
      z-index: 1;
    }

    .show-content:hover .exercise-image {
      transform: translateY(0);
    }

    .show-content:hover .exercise-content {
      transform: translateY(-100%);
    }

    @media (max-width: 1024px) {
      .exercise-section {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .exercise-section {
        grid-template-columns: 1fr;
      }
    }

    /*----------------------------footer-------------------------------*/
    .site-footer {
      background-color: var(--theme-color2);
      /* You can switch to --theme-color1 or 3 if needed */
      color: white;
      padding: 60px 30px 20px;
      font-family: 'Inter', sans-serif;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1300px;
      margin: auto;
    }

    .footer-column {
      flex: 1;
      min-width: 200px;
    }

    .footer-column h4 {
      color: #fff;
      margin-bottom: 30px;
    }
.footer-column li{
  margin-bottom: 15px;
}
    .footer-column p,
    .footer-column li,
    .footer-column a {
      color: white;
      line-height: 1.6;
      text-decoration: none;
    }


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

    .footer-logo {
      width: 130px;
      margin-bottom: 15px;
      padding: 4px;
      border-radius: 10px;
      background-color: #fff;
    }

    .logo-column p {
      max-width: 200px;
      color: #fff;
    }
    .logo-column{
        flex: 1;
        min-width: 200px;
    }

    /* Responsive */


    /*-------------------------------about-banner--------------------------*/
    .about-banner {
      background-image: url('../images/about.jpg');
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 75vh;
      position: relative;

      .img-content {
        position: absolute;
        display: inline-block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;

        h1 {
          color: #fff;
        }

        ul {
          li {
            /* font-size: 20px; */

            span {
              padding-right: 5px;
            }

            a {
              color: #fff;
            }
          }
        }
      }
    }

    /*-----------------------------------------------------------*/
    .appointment-steps {
      padding: 60px 0px;
      text-align: center;
    }

    .step-box {
      border-radius: 20px;
      position: relative;
      overflow: hidden;
    }

    .step-box img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      margin-bottom: 30px;
    }

    .step-number {
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      /* font-size: 20px; */
      border-radius: 50%;
      color: #fff;
      font-weight: bold;
      margin: -60px auto 15px;
      position: relative;
      z-index: 2;
      /* font-size: 16px; */
    }

    .step-box h5 {
      /* font-size: 18px; */
      font-weight: 700;
      color: var(--theme-color2);
      margin-bottom: 10px;
    }

    .step-box p {
      /* font-size: 14px; */
      color: #555;
      padding: 0 10px 10px 10px;
    }

    .appointment-btn {
      margin-top: 40px;
    }

    /*------------------------------our-team-----------------------------*/
    .our-team {
      padding: 60px 0px;

      .box {
        background-color: #f0f4ff;
        box-shadow: 0 0 10px #f0f4ff;
        margin-bottom: 20px;
        .img-content {
          padding: 20px 0 10px;
          text-align: center;
        }
      }
    }

    /*----------------------------case-studies---------------------------*/
    .case-studies {
      padding: 60px 0;

      .image {
        margin-bottom: 20px;

        img {
          border-radius: 15px;
          display: block;
        }
      }
    }

    /*---------------------------our-expertisse--------------------------*/
    .expertise-section {
      padding: 60px 0;
    }

    .expertise-wrapper {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }

    /* Left Image Section */
    .expertise-image {
      flex: 1;
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .expertise-image img {
      width: 100%;
      display: block;
      border-radius: 20px;
    }

    /* Play button */
    .play-button {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background-color: #186fd6;
      color: #fff;
      padding: 12px 20px;
      border-radius: 10px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
      /* font-size: 16px; */
    }

    .play-button i {
      font-size: 16px;
    }

    /* Right Text Content */
    .expertise-content {
      flex: 1;
    }

    .expertise-content h2 {
      color: #0d223f;
      margin-bottom: 20px;
    }

    .expertise-content p {
      color: #555;
      line-height: 1.7;
      margin-bottom: 30px;
    }

    /* List Items */
    .expertise-item {
      margin-bottom: 20px;
    }

    .expertise-item h5 {
      color: #18b884;
      margin-bottom: 8px;
      position: relative;
    }

    .expertise-item h4 span {
      color: #18b884;
      margin-right: 10px;
    }

    .expertise-item p {
      color: #555;
      margin: 0;
      padding-left: 18px;
      border-left: 2px solid #18b884;
    }

    @media (max-width: 480px) {
      .expertise-content h2 {
        font-size: 24px;
      }

      .expertise-item h4 {
        font-size: 15px;
      }

      .expertise-item p {
        font-size: 13px;
      }

      .play-button {
        padding: 8px 12px;
      }
    }

    /*-----------------------------expertise sectio end here --------------------------*/
    .why-choose {
      .box {
        background-color: #f1f1f1;
        box-shadow: 0 0 20px #fff2e6;
        height: 486px;
        margin-bottom: 20px;
        .img-content {
          text-align: center;
          padding: 20px;

          h4 {
            color: var(--theme-color2);
            margin-bottom: 10px;
          }
        }
      }
    }
    @media(min-width:440px) and (max-width:576px){
      .why-choose {
    .box {
      height: 550px !important;
    }
  }
}
    /*------------------------------contact------------------------------*/
    .contact {
      background-color: #f7fdfb;
      padding: 60px 0;
    }

    .contact-form {
      background-color: #fff;
      border-radius: 20px;
      padding: 20px 0px 0px 20px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group.half {
      flex: 1;
      min-width: 120px;
    }

    .form-group label {
      margin-bottom: 10px;
    }

    input,
    textarea {
      padding: 10px;
      background: #fafafa;
      border: 1px solid #ccc;
      border-radius: 4px;
      /* font-size: 16px; */
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    .required {
      color: red;
    }

    /* Contact Info */
    .contact-info-box {
      display: flex;
      flex-direction: column;
    }

    .info-top-box {
      background-color: var(--theme-color2);
      color: white;
      padding: 30px;
      border-radius: 6px 6px 0 0;
    }

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

    .info-content h3 {
      color: #fff;
      margin-bottom: 5px;
    }

    .info-content p {
      color: #ffff;
    }

    .btn-outline {
      display: inline-block;
      margin-top: 15px;
      border: 1px solid #fff;
      padding: 8px 16px;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
    }

    /* Bottom Image */
    .info-image {
      width: 100%;
      height: auto;
      border-radius: 0 0 6px 6px;
      object-fit: cover;
    }

    /*-------------------contact--------------------------*/
    .contact {
      .col-content {
        padding: 20px;

        .col-icon {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          background-color: var(--theme-color3);
          display: flex;
          justify-content: center;
          align-items: center;
          margin-bottom: 20px;

          i {
            color: #fff;
          }
        }

        h5 {
          margin-bottom: 10px;
        }
      }
    }

    /*-----------------------testimonials----------------------------*/
    .testimonial {
      padding: 60px 0;

      .col-content {
        h2 {
          margin-bottom: 10px;
        }

        h6 {
          margin-bottom: 10px;
        }

        .slider-sec {
          .client {
            i {
              color: var(--theme-color3);
            }
          }
        }
      }
    }

    .slider-sec {
      position: relative;
      overflow: hidden;
      width: 100%;
      /* max-width: 100%; */
    }

    .slider-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .client {
      min-width: 100%;
      box-sizing: border-box;
      padding: 0px 10px 0px 10px;
    }

    .client-info {
      display: flex;
      gap: 20px;
      padding: 30px 0;
      /* justify-content: space-evenly; */
    }

    .client img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
    }

    .client-name {
      line-height: 1.5;
      margin-top: 30px;
    }

    /* .quote a {
      font-size: 50px;
    } */

    .dots {
      text-align: center;
      margin-top: 15px;
    }

    .dots span {
      display: inline-block;
      width: 12px;
      height: 12px;
      margin: 0 5px;
      background-color: #ccc;
      border-radius: 50%;
      cursor: pointer;
    }

    .dots .active {
      background-color: #000;
    }
    /*------------appontment form ---------------------------*/
    .popup-overlay {
      position: fixed;
      overflow-y: scroll;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background-color: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
}

 .popup-overlay .popup-form {
  background: #fff;
  width: 80%;
  max-width: 900px;
  border-radius: 10px;
  position: relative;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.popup-overlay .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #000;
}


/* Image */
.popup-overlay .popup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

/* Form */
.popup-overlay .form-area {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup-overlay .form-area h2 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #444;
}
.popup-overlay form input,
.popup-overlay form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.popup-overlayv form button {
  padding: 10px;
  background: #007B55;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.popup-overlay form button:hover {
  background: #005a3c;
}

.popup-overlay select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .popup-overlay .popup-form {
    padding: 15px;
  }
  .popup-overlay .popup-img {
    border-radius: 10px 10px 0 0;
    height: 200px;
  }
}

    /*-----------------------testimonial2 ----------------------------*/
    @media(max-width:1024px){
      .testimonial2{
        .box{
          height: auto;
        }
      }
    }
    @media(max-width:768px){
      .testimonial2{
        .box{
          height: auto;
        }
      }
    }
    .testimonial2 {
      padding: 60px 0px;
      .box {
        border-radius: 0 0 20px 0;
        height: 340px;
        padding: 20px;
        border: 2px solid var(--theme-color1);
        margin-bottom: 20px;
        .top-content {
          margin-bottom: 30px;

          .top-icon {
            i {
              color: var(--theme-color3);
            }
          }

          svg {
            height: 30px;
            width: 30px;
          }
        }

        .bottom-content {
          display: flex;
          align-items: center;
          margin-top: 30px;

          .image {
            img {
              width: 80px;
              height: 80px;
              border-radius: 50%;
            }
          }

          .img-cont {
            padding-left: 15px;

            h6 {
              margin-bottom: 5px;
            }
          }
        }
      }
    }
    @media(max-width:768px){
      .testimonial .image {
        margin-bottom: 20px;
      }
      .testimonial2{
        padding: 30px 0;
      }
      .client-info{
        padding: 15px 0;
      }
    }
    @media(max-width:576px){
      .banner .slider .img-content{
        width: 95%;
        h6{
          font-size: 14px;
        }
        h1{
          font-size: 26px;
          line-height: 1.3 !important;
        }
        p{
          font-size: 13px;
          line-height: 1.5;
        }
        .buttons a{
          font-size: 14px;
          padding: 0px 10px;
        }
      }
    }
    .footer-bottom {
      width: 100%;
      text-align: center;
      padding: 7px 0px;
      font-size: 12px;
      background-color: #034f55;
      letter-spacing: 0.7px;
      color: #fff;
      a{
        color: #fff;
        text-decoration: underline;
      }
  }
.mission{
  .col-img{
    margin-bottom: 20px;
    img{
      height: 500px;
      object-fit: cover;
    }
  }
}
@media(max-width:1024px){
  section{
    padding: 30px 0 !important;
  }
  .mission{
  .col-img{
    img{
      height:auto;
      object-fit: cover;
    }
  }
}
}
@media(max-width:768px){
  section{
    padding: 30px 0 !important;
  }
  .site-footer{
    padding: 30px 0px !important;
  }
  .testimonial2 .box{
    height: auto;
  }
}
@media(min-width:768px) and (max-width:1024px){
  .why-trust{
    .col-img{
      img{
        display: none;
      }
    }
  }
  .why-choose{
    .left{
      h2{
        font-size: 34px;
      }
      ul{
        li{
          margin-bottom: 16px;
        }
      }
    }
    .circle{
      width:150px;
      height: 150px;
    }
  }
  .service-container{
    .card{
      height: 380px !important;
    }
  }
  .step-box{
  height: 500px;
}
}

select{
        width: 100%;
    padding: 15px;
    color: #7a7a7e;
    border-radius: 4px;
    height: 47px;
    border: 1px solid #ccc;
  }
  .section{
    padding: 60px 0;
  }
  @media(max-width:768px){
    .section{
      padding: 30px 0;
    }
  }