body, html {
      height: 100%;
      margin: 0;
    }

    h1 {
      font-weight: 400;
      font-size: 2.5rem;
      line-height: 1.2;
    }
    p {
      font-size: 1rem;
    }
    .container{
      max-width: 1440px !important;
      padding: 0 20px !important;
      margin: 0 auto !important;
    }

    .navbar-expand-lg .navbar-nav{
        gap: 35px;
    }

    .navbar-expand-lg .navbar-nav .nav-link{
        font-size: 17px;
        color: #fff;
        font-weight: 500;
    }
.site_logo {
    width: 60px;
    border-radius: 10px;
}
     .navbar.scrolled {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        background-color: #6da544 !important; /* Change as needed */
        transition: all 0.3s ease-in-out;
        z-index: 1030;
        box-shadow: 0 4px 12px rgb(66 65 65 / 39%);
    }

   .hero-section {
      /*background: url('../images/image 1.jpg') no-repeat center center/cover;*/
      height: 100vh;
      position: relative;
      color: white;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-overlay {
      background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .btn-outline-light-custom {
      border: 2px solid white;
      color: white;
      padding: 10px 25px;
      border-radius: 30px;
      font-weight: 500;
      transition: background-color 0.3s ease;
    }

    .btn-outline-light-custom:hover {
      background-color: white;
      color: black;
    }
    /* how it works section css*/
    .how-it-works-section{
        background: linear-gradient(to bottom, #d0ebc3, #b2dfb5);
        color: #000;
    }
    .info-card {
      background-color: #fefefe;
      border-radius: 20px;
      padding: 20px;
      text-align: center;
      height: 100%;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .info-card img {
      height: 60px;
      margin-bottom: 15px;
    }

    .card-title {
      color: #73ad5a;
      font-weight: 600;
    }

    .owl-carousel .item img {
      width: 100%;
      height: auto;
    }

    .btn-view-all {
      background-color: #73ad5a;
      color: white;
      padding: 10px 30px;
      font-weight: 600;
      border: none;
      border-radius: 30px;
    }

    .btn-view-all:hover {
      background-color: #5b9549;
    }

    .section-title {
      font-weight: bold;
      font-size: 2rem;
    }
    
    #our_model_section .owl-carousel .item img{
        border-radius: 30px !important;
      height: 100% !important;
      max-height: 320px !important;
      object-fit: cover;
      object-position: top;
      min-height: 320px;
    }

    /* Custom position for owl nav buttons */
    .wp-block-heading {
        font-weight: 700;
    }
    /* dropdown menu css */
.menu li ul,
.sub-menu {
    display: none;
    position: absolute;
    background: #fff; /* or your preferred background */
    z-index: 9999;
    margin-top: 0;
    padding: 0;
    list-style: none;
}

/* Position the submenus */
.navbar-nav li {
    position: relative;
}

/* Show submenu on hover */
.navbar-nav li:hover > ul,
.navbar-nav li:hover > .sub-menu {
    display: block;
}

/* Optional: submenu styling */
.navbar-nav li ul li,
.sub-menu li {
    padding: 10px;
    white-space: nowrap;
}
.sub-menu li .nav-link {
    color: #000 !important;
}
/* Optional: improve appearance on hover */
.navbar-nav li ul li:hover,
.sub-menu li:hover {
    background-color: #f0f0f0;
}
    
    /* model page css */
    
    .main_models_div{
        margin-top: 4rem !important;
        margin-bottom: 8rem !important;
    }
    
    .models-container .btn-custom {
        background-color: #5B9549;
        color: white;
        font-size: 0.75rem;
        padding: 0.25rem 1rem;
        border-radius: 0.25rem;
        border: none;
    }
   .models-container .btn-custom:hover,
   .models-container .btn-custom:focus {
        background-color: #4a7a3a;
        color: white;
   }
   .models-container .model-img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 1.5rem;
   }
   .models-container .model-name {
        font-weight: 600;
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
   }
   .models-container .model-text {
        font-size: 1rem;
        line-height: 1.5rem;
        margin-bottom: 1.5rem;
        max-width: 400px;
   }
   .models-container h1 {
        font-weight: 500;
        font-size: 2rem;
        margin-bottom: 2.5rem;
        text-align: center;
   }
   @media (min-width: 576px) {
    .models-container h1 {
        font-size: 1.125rem;
    }
   }
   @media (min-width: 768px) {
    .models-container h1 {
        font-size: 1.25rem;
    }
   }
   @media (min-width: 992px) {
    .models-container h1 {
        font-size: 2rem;
        font-weight: 500;
    }
   }
   .models-container .model-card {
        background-color: #f9fdf6;
        padding: 2rem 1.5rem 2.5rem;
        border-radius: 0.5rem;
        box-shadow: 0 0 8px rgb(0 0 0 / 0.05);
        transition: box-shadow 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: space-between;
   }
   .models-container .model-card:hover {
        box-shadow: 0 4px 15px rgb(91 149 73 / 0.3);
   }
   
   #loadMore{
       max-width: 275px;
       width: 100%;
       background: #157347;
   }
   
   #loadMore:hover{
       background: #75AF49;
       color: #fff;
   }
    
    /* models page css ends here */
    
    
    /* conact page css */
    
    .main_contact_cls{
        margin-top: 4rem !important;
        margin-bottom: 8rem !important;
        color: #4a4a4a;
        background-color: #fff;
    }
    
    .main_contact_cls h2,
    .main_contact_cls h3 {
      color: #6da544;
    }
    .main_contact_cls label {
      font-weight: 600;
      color: #4a4a4a;
    }
    .main_contact_cls .form-control::placeholder {
      color: #a0a0a0;
    }
    .main_contact_cls .form-select {
      color: #a0a0a0;
    }
    .main_contact_cls .form-select option:disabled {
      color: #a0a0a0;
    }
    .main_contact_cls .required-star {
      color: #d63333;
    }
    .main_contact_cls .btn-submit {
      background-color: #6da544;
      color: white;
      font-weight: 700;
      font-size: 0.75rem;
      text-transform: uppercase;
      padding: 0.375rem 2rem;
      border-radius: 50px;
      letter-spacing: 0.05em;
      border: none;
    }
    .main_contact_cls .btn-submit:hover,
    .main_contact_cls .btn-submit:focus {
      background-color: #5a8a36;
      color: white;
    }
    .main_contact_cls .table thead th,
    .main_contact_cls .table tbody td {
      vertical-align: middle;
    }
    .main_contact_cls .table-striped > tbody > tr:nth-of-type(odd) {
      background-color: #f3f6f1;
    }
    .main_contact_cls a {
      color: #6da544;
      text-decoration: none;
    }
    .main_contact_cls a:hover,
    .main_contact_cls a:focus {
      text-decoration: underline;
      color: #5a8a36;
    }
    .main_contact_cls .form-check-label {
      font-size: 0.75rem;
      color: #4a4a4a;
    }
    .main_contact_cls iframe {
      border-radius: 0.375rem;
      max-width: 100%;
      width: 100%;
      height: 350px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    
    /* contact page css ends here */

    /* benifits section css*/

    .benifits-section{
        background-color: #f7f8e9;
    }
    .accordion-button {
      background-color: #6da544;
      color: white;
      font-weight: 400;
      position: relative;
    }
    .accordion-button:not(.collapsed) {
      color: white;
      background-color: #6da544;
      box-shadow: none;
    }
    .accordion-button.collapsed {
      /*color: #e07a6a;*/
      /*background-color: transparent;*/
      /*border: 1px solid #6da544;*/
      /*box-shadow: none;*/
      color: #fff;
      background-color: #6da544;
      border: 1px solid #6da544;
      box-shadow: none;
    }
    .accordion-item {
      border: 1px solid #6da544;
      margin-bottom: 10px;
      border-radius: 0.25rem;
    }
    /* Remove default arrow */
    .accordion-button::after {
      display: none;
    }
    /* Add plus/minus icons */
    .accordion-button::before {
      content: "+";
      font-weight: 700;
      font-size: 1.25rem;
      color: inherit;
      position: absolute;
      right: 1.25rem;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 0.2s ease;
    }
    .accordion-button:not(.collapsed)::before {
      content: "−";
    }

    /* massage experience section css*/

    .massage_experience_section{
        font-family: 'Inter', sans-serif;
        background: linear-gradient(to bottom, #6da544, #a4c57a);
        color: white;
        padding: 2rem 1rem;
    }

    .massage_experience_section h2, h3{
        font-weight: 400;
    }

    .underline-svg {
      margin-top: 0.25rem;
      margin-bottom: 1.5rem;
      display: flex;
      justify-content: center;
    }
    .btn-outline-light {
      text-align: left;
      font-weight: 600;
      white-space: normal;
    }

    /* therapy section css */

    .therapy_partner_section {
      background-color: #dce9cd;
      font-family: 'Inter', sans-serif;
      padding: 1.5rem 1rem;
    }
    .therapy_partner_section h1 {
      font-weight: 400;
    }
    
    .therapy_partner_section .d-flex{
        z-index: 1;
    }
    .therapy_partner_section .small-text {
      font-size: 0.875rem;
      line-height: 1.3;
    }
    .therapy_partner_section .subtitle {
      font-weight: 700;
    }
    .therapy_partner_section .info-box {
      background: #fff;
      box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
      padding: 1.5rem 1.5rem 1.5rem 1.5rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .therapy_partner_section .info-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgb(0 0 0 / 0.15);
      z-index: 10;
    }
    .therapy_partner_section .icon-wrapper {
      color: #f28c82;
      width: 2.5rem;
      height: 2.5rem;
      flex-shrink: 0;
    }
    .therapy_partner_section .info-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .therapy_partner_section .info-title {
      font-size: 1rem;
      font-weight: 700;
      margin: 0;
      line-height: 1.2;
    }
    .therapy_partner_section .verified {
      font-weight: 900;
      display: block;
      margin-top: 0.15rem;
    }
    .therapy_partner_section .info-text {
      font-size: 0.875rem;
      line-height: 1.3;
      color: #222;
      flex-grow: 1;
    }
    .therapy_partner_section .img-wrapper {
      height: 100%;
      max-height: 500px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .therapy_partner_section img.custom-img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      display: block;
    }
    @media (max-width: 767.98px) {
      .therapy_partner_section .info-box {
        padding: 1rem;
      }
      .therapy_partner_section .icon-wrapper {
        width: 2rem;
        height: 2rem;
      }
      .therapy_partner_section .info-title {
        font-size: 0.9rem;
      }
      .therapy_partner_section .img-wrapper {
        max-height: 300px;
      }
    }


    /* price section css */

    #price_section {
      background: linear-gradient(180deg, #bcd9a7 0%, #d9e8c3 100%);
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      padding: 3rem 1rem 4rem;
      text-align: center;
    }

    #price_section h1 {
      font-weight: 400;
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
      color: #000;
    }

    #price_section p.description {
      font-size: 0.9rem;
      max-width: 720px;
      margin: 0 auto 2rem;
      color: #000;
    }

    /* Tabs styling */
    #price_section .nav-tabs {
      justify-content: center;
      margin-bottom: 3rem;
      border-bottom: none;
      background-color: #8bbf5f;
      border-radius: 9999px;
      display: inline-flex;
      padding: 0.25rem;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }

    #price_section .nav-tabs .nav-link {
      border: none;
      border-radius: 9999px;
      color: #fff;
      font-weight: 500;
      padding: 0.375rem 1.5rem;
      background-color: transparent;
      transition: background-color 0.3s ease, color 0.3s ease;
      font-size: 0.9rem;
      user-select: none;
    }

    #price_section .nav-tabs .nav-link.active {
      background-color: #fff;
      color: #8bbf5f;
      box-shadow: none;
    }

    #price_section .nav-tabs .nav-link:not(.active):hover {
      background-color: #a4d06a;
      color: #fff;
    }

    /* Cards container */
    #price_section .tab-content {
      max-width: 1080px;
      margin: 0 auto;
    }

    /* Card styling */
    #price_section .card {
      border-radius: 1.5rem;
      background-color: #f7f9f0;
      border: none;
      padding: 1.75rem 1.5rem 2rem;
      text-align: left;
      color: #6a994e;
      box-shadow: none;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: start;
    }

    #price_section .card h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
      color: #8bbf5f;
    }

    #price_section .card p.duration {
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 1.25rem;
      color: #8bbf5f;
    }

    #price_section .card p.session-text {
      font-size: 0.75rem;
      text-align: center;
      margin-bottom: 0.5rem;
      color: #8bbf5f;
    }

    #price_section .card p.price {
      font-weight: 700;
      font-size: 2.25rem;
      color: #4a7c2b;
      text-align: center;
      margin-bottom: 1.5rem;
    }

    #price_section .card p.price .old-price {
      font-weight: 400;
      font-size: 1.25rem;
      color: #a3c17a;
      text-decoration: line-through;
      margin-right: 0.5rem;
    }

    #price_section .card button, #price_section .card a {
      background-color: #8bbf5f;
      border: none;
      border-radius: 9999px;
      color: #fff;
      font-weight: 500;
      padding: 0.5rem 0;
      width: 100%;
      font-size: 1rem;
      margin-bottom: 1.5rem;
      transition: background-color 0.3s ease;
    }

    #price_section .card button:hover,
    #price_section .card button:focus, #price_section .card a:hover,
    #price_section .card a:focus {
      background-color: #6a994e;
      outline: none;
      box-shadow: none;
    }

    /* List styling */
    #price_section .card ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
      font-size: 0.75rem;
      color: #8bbf5f;
    }

    #price_section .card ul li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
      line-height: 1.2rem;
    }

    #price_section .card ul li i {
      margin-top: 0.15rem;
      color: #8bbf5f;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 576px) {
      #price_section h1 {
        font-size: 1.5rem;
      }
      #price_section p.description {
        font-size: 0.85rem;
      }
      #price_section .card h2 {
        font-size: 1.5rem;
      }
      #price_section .card p.price {
        font-size: 1.75rem;
      }
      #price_section .nav-tabs {
        width: 100%;
        justify-content: center;
      }
      #price_section .nav-tabs .nav-link {
        padding: 0.375rem 1rem;
        font-size: 0.85rem;
      }
    }

    /* faq section css */

    #faq_section h1 {
      color: #7ba544;
      font-weight: 600;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      margin-bottom: 2rem;
      text-align: center;
      font-size: 2.25rem;
    }
    #faq_section .accordion-button {
      background-color: #7ba544;
      color: white;
      font-size: 1rem;
      font-weight: 400;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }
    #faq_section .accordion-button:not(.collapsed) {
      color: white;
      background-color: #7ba544;
      box-shadow: none;
    }
    #faq_section .accordion-item {
      border: none;
      margin-bottom: 0.5rem;
    }
    #faq_section .accordion-body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      font-size: 1rem;
      color: #333;
    }
    #faq_section .accordion-flush .accordion-item {
      border-bottom: 1px solid transparent;
    }
    /* Override Bootstrap's default plus/minus icons with a downward arrow */
    #faq_section .accordion-button::before{
      content: "";
    }
    #faq_section .accordion-button::after {
      content: "";
      display: inline-block;
      width: 1em;
      height: 1em;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: center;
      transition: transform 0.2s ease-in-out;
      transform-origin: center;
    }
    #faq_section .accordion-button:not(.collapsed)::after {
      transform: rotate(180deg);
    }
    @media (min-width: 576px) {
      #faq_section .accordion-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1.5rem;
      }
      #faq_section .accordion-item {
        margin-bottom: 0;
      }
    }

    /* testimonial section css */

    #review_section {
      user-select: none;
    }

    #review_section > h1 {
      color: #6da544;
      font-weight: 800;
      font-size: 2rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    #review_section .top-box {
      border: 1px solid #8eb04a;
      border-radius: 1rem;
      background-color: #f9fcf9;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 3rem;
      width: 100%;
      box-sizing: border-box;
    }

    #review_section .top-box .left {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    #review_section .top-box .left img.google-logo {
      width: 75px;
      /*height: 53px;*/
      height: auto;
      object-fit: contain;
    }

    #review_section .top-box .left .rating {
      color: #b94a3a;
      font-weight: 600;
      font-size: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    #review_section .top-box .left .rating span.count {
      font-size: 0.75rem;
      font-weight: 400;
    }

    #review_section .top-box button, #review_section .top-box > a {
      background-color: #6da544;
      border: none;
      border-radius: 9999px;
      color: white;
      font-weight: 700;
      padding: 0.75rem 2rem;
      white-space: nowrap;
      transition: background-color 0.3s ease;
      cursor: pointer;
      text-decoration: none;
    }

    #review_section .top-box button:hover {
      background-color: #5a8a34;
    }

    #review_section .reviews-row {
      display: flex;
      justify-content: center;
      gap: 4.66rem;
      flex-wrap: wrap;
    }

    #review_section .review-card {
      border: 1px solid #8eb04a;
      border-radius: 1rem;
      background-color: #f9fcf9;
      padding: 1rem;
      max-width: 220px;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    #review_section .review-card .header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
      position: relative;
    }

    #review_section .review-card .header img.profile {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      position: relative;
      z-index: 1;
    }

    #review_section .review-card .header .name-date {
      position: relative;
      flex-grow: 1;
    }

    #review_section .review-card .header .name-date h2 {
      color: #6da544;
      font-weight: 800;
      font-size: 1rem;
      margin: 0;
      line-height: 1;
      user-select: none;
    }

    #review_section .review-card .header .name-date p {
      color: #8eb04a;
      font-weight: 600;
      font-size: 9px;
      margin: 0;
      line-height: 1;
      user-select: none;
    }

    #review_section .review-card .header .google-icon {
      position: absolute;
      bottom: -12px;
      left: -28px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 2px solid white;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    #review_section .review-card .header .google-icon svg {
      width: 18px;
      height: 18px;
    }

    #review_section .review-card .stars {
      color: #d18e2f;
      margin-bottom: 0.5rem;
      user-select: none;
    }

    #review_section .review-card .review-text {
      color: #8eb04a;
      font-size: 0.75rem;
      line-height: 1.2;
      margin-bottom: 0.75rem;
      user-select: text;
      white-space: normal;
    }

    #review_section .review-card .read-more {
      color: #6da544;
      font-weight: 800;
      font-size: 0.75rem;
      cursor: pointer;
      user-select: none;
    }

    @media (max-width: 768px) {
      #review_section .reviews-row {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      #review_section .top-box {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
      }

      #review_section .top-box button {
        width: 100%;
      }

      #review_section .reviews-row {
        gap: 1rem;
      }

      #review_section .review-card {
        max-width: 100%;
      }
    }

    /* historic blog section css */

    #blog_section {
      padding: 5rem 0;
      display: flex;
      gap: 2rem;
      align-items: flex-end;
      min-height: 520px;
      margin-bottom: 3rem;
    }

    #blog_section .left-col {
      flex: 1 1 33.3333%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    #blog_section h1 {
      font-weight: 900;
      font-size: 2.75rem;
      line-height: 1.1;
      margin-bottom: 0;
      letter-spacing: -0.02em;
    }

    #blog_section p.lead {
      font-size: 1.25rem;
      line-height: 1.5;
      color: #5f8a1e;
      margin-bottom: 0;
    }

    #blog_section p.lead a {
      color: #5f8a1e;
      text-decoration: underline;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    #blog_section p.lead a:hover {
      color: #3a5a0c;
      text-decoration: none;
    }

    #blog_section .left-image {
      border-radius: 1rem;
      width: 100%;
      height: 320px;
      object-fit: cover;
      box-shadow: 0 8px 20px rgb(93 129 0 / 0.25);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    #blog_section .left-image:hover {
      transform: scale(1.03);
    }

    #blog_section .btn-add-post {
      background: linear-gradient(135deg, #6da544 0%, #8bc34a 100%);
      border: none;
      font-weight: 700;
      font-size: 1.125rem;
      padding: 0.85rem 3rem;
      border-radius: 50px;
      color: white;
      box-shadow: 0 6px 12px rgb(139 195 74 / 0.5);
      cursor: pointer;
      align-self: flex-start;
      transition: box-shadow 0.3s ease, transform 0.2s ease;
      margin-top: auto;
    }

    #blog_section .btn-add-post:hover {
      box-shadow: 0 10px 20px rgb(139 195 74 / 0.7);
      transform: translateY(-2px);
    }

    #blog_section .right-col {
      flex: 1 1 66.6667%;
      max-width: 720px;
      position: relative; /* ✅ Fix to anchor nav */
      display: flex;
      align-items: flex-end;
      height: 100%;
    }

    #blog_section .owl-carousel .item {
      background: white;
      border-radius: 1rem;
      box-shadow: 0 8px 20px rgb(93 129 0 / 0.15);
      padding: 0;
      display: flex;
      flex-direction: column;
      height: 420px;
      cursor: pointer;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    #blog_section .owl-carousel .item:hover {
      box-shadow: 0 16px 40px rgb(93 129 0 / 0.3);
      transform: translateY(-6px);
      z-index: 10;
    }

    #blog_section .owl-carousel .item img {
      border-top-left-radius: 1rem;
      border-top-right-radius: 1rem;
      height: 180px;
      width: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    #blog_section .owl-carousel .item:hover img {
      transform: scale(1.05);
    }

    #blog_section .owl-carousel .item h2 {
      color: #4a7a1f;
      font-weight: 700;
      font-size: 1.25rem;
      margin: 1rem 1.5rem 0.5rem 1.5rem;
      line-height: 1.2;
    }

    #blog_section .owl-carousel .item p {
      color: #6da544;
      font-size: 0.95rem;
      line-height: 1.4;
      margin: 0 1.5rem 1.5rem 1.5rem;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 6;
      -webkit-box-orient: vertical;
    }
#blog_section .owl-carousel .item h2 a {
    color: #4a7a1f;
    text-decoration: none;
}
    
.single-post .content_wrapper {
    text-align: justify;
    margin-bottom: 65px;
}

.single-post .content_wrapper ul.wp-block-list {margin-left: 27%;}
    
    .blog-slider .owl-prev{
        position: absolute;
      left: 0;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 30px;
      height: 30px;
      background: transparent;
      border-radius: 50px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center;
      border: 1px solid #000 !important;
      font-size: 16px;
      z-index: 9;
    }
    .blog-slider .owl-next{
        position: absolute;
      right: -15px;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 30px;
      height: 30px;
      background: transparent;
      border-radius: 50px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center;
      border: 1px solid #000 !important;
      font-size: 16px;
      z-index: 9;
    }
    

    #blog_section .owl-theme .owl-nav [class*=owl-]:hover{
      background:none;
      color: #000;
    }

    @media (max-width: 991.98px) {
      #blog_section {
        flex-direction: column;
        max-width: 100%;
        margin: 2rem auto;
        min-height: auto;
      }

      #blog_section .left-col,
      #blog_section .right-col {
        max-width: 100%;
        flex: 1 1 100%;
      }

      #blog_section .right-col {
        margin-top: 2rem;
        height: auto;
        align-items: center;
      }

      #blog_section .owl-carousel .item {
        height: 380px;
        width: 90vw !important;
        max-width: 320px !important;
      }

      #blog_section .owl-nav {
        padding: 0 1rem;
      }
    }

    /* Custom styles for background and positioning */
    .full-width-background {
      width: 100%;
    }

    /* To make the form appear 30px above the background, we can use negative margin */
    .full-width-background .form-container {
      margin-top: -100px;
      z-index: 1;
      position: relative;
    }

    .v_tour{
       background: #fff;
      border: none;
      max-width: 370px;
      border-radius: 50px;
      font-size: 24px;
      font-weight: 600;
      color: #75AF49;
    }
    
    .v_tour:hover{
        background: #157347;
    }

    /* footer section css */
    .footer_section {
      color: white;
      font-size: 14px;
    }
    .footer_section .footer_logos ul {
        list-style: none;
    }
    
    .footer_section .footer_logos ul li {
		display: inline-block;
		margin-left: 10px;
		width: 101px;
		vertical-align: top;
	}
	.footer_section .footer_logos ul li p {
		text-align: center;
	}

	.footer_section .footer_logos ul li p a {
		font-size: 10px;
	}
    .footer_section .footer_logos ul li img {
        width: 95px;
        height: auto;
        border-radius: 10px;
    }
    .footer_section h6 {
          margin-bottom: 1rem;
    font-family: Inter;
    font-size: 28px;
    line-height: 100%;
    vertical-align: middle;
    }
     .footer-widget ul li{
      margin-bottom: 20px;
      font-family: Inter;
    font-weight: 500;
    font-size: 19px;
    line-height: 100%;
    vertical-align: middle;
     }
    .footer-widget ul li a{
    font-family: Inter;
    font-weight: 500;
    font-size: 19px;
    line-height: 100%;
    vertical-align: middle;
    color: #fff;
    text-decoration: none;
    }
    .footer-widget p{
      font-family: Inter;
    font-weight: 500;
    font-size: 19px;
    line-height: 100%;
    vertical-align: middle;
    margin-bottom: 20px;
    }

    .footer_section ul li span {
      float: right;
    }

    .footer_bottom {
      background: #000000; /* black background for copyright section */
    }

    .footer_section img {
      height: 30px;
    }


    .banner-item{
      position: relative;
    }
    .banner-item:after{
        position: absolute;
        content: '';
        background: #00000052;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
    .banner-item img{
      height: 945px !important;
      object-fit: cover;
    }
    .banner-content{
          position: absolute;
      top: 50%;
      left: 50%;
      max-width: 1000px;
      transform: translate(-50%, -50%);
      margin: 0 auto;
      text-align: center;
      z-index: 2;
    }
    .banner-content h2{
      font-family: Inter;
      font-weight: 700;
      font-style: Bold;
      font-size: 57px;
      line-height: 70px;
      text-align: center;
      color: #fff;
      text-shadow: 10px 10px 13px #00000070;
    }
    .banner-btn-bx {
      margin-top: 60px;
      display: flex;
      margin-bottom: 30px;
      justify-content: center;
      align-items: center;
    }
    .banner-btn-bx a{
      font-family: Inter;
    font-weight: 400;
    font-size: 31px;
    line-height: 100%;
    text-align: center;
    color: #fff;
    text-decoration: none;
    text-shadow: 10px 10px 13px #00000070;
    border: 1px solid #fff;
    padding: 15px 50px;
    border-radius: 50px;
    display: inline-block;
    }
    body.home .banner-content p{
        font-family: Inter;
        font-weight: 400;
        font-size: 22px;
        line-height: 27px;
        text-align: center;
        color: #fff;
        text-shadow: 10px 10px 13px #00000070;
    }
    .banner-content p{
        font-family: Inter;
        font-weight: 400;
        font-size: 31px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        color: #fff;
        text-shadow: 10px 10px 13px #00000070;
    }

    .banner-slider .owl-prev{
      position: absolute;
      left: 5%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 45px;
      height: 45px;
      background: #ffffff8f !important;
      border-radius: 50px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center;
    }
    .banner-slider .owl-next{
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 45px;
      height: 45px;
      background: #ffffff8f !important;
      border-radius: 50px !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
    }
    .owl-theme .owl-nav{
      margin: 0;
    }


    .model-slider .owl-prev {
      position: absolute;
      left: -4%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 45px;
      height: 45px;
      background: transparent; !important;
      border-radius: 50px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center;
      border: 1px solid #000 !important;
    }
    .model-slider .owl-next {
          position: absolute;
          right: -8%;
          top: 50%;
          transform: translate(-50%, -50%);
          width: 45px;
          height: 45px;
          background: transparent; !important;
          border-radius: 50px !important;
          display: flex !important;
          align-items: center !important;
          justify-content: center;
          border: 1px solid #000 !important;
    }

    .benefit-content h2{
      font-family: Inter;
        font-weight: 500;
        font-size: 53px;
        line-height: 100%;
    }
    .benefit-content p{
          font-family: Inter;
        font-weight: 400;
        font-size: 19px;
        line-height: 26px;
    }
    .gradient-bg{
     background: linear-gradient(0deg,rgba(117, 175, 73, 1) 40%, rgba(183, 213, 159, 1) 76%);
    }
    .form-top{
          background: #75AF49;
        padding: 2rem 2rem 4rem 2rem;
    }
    .form-top h5{
          font-family: Inter;
        font-weight: 700;
        font-size: 46px;
        line-height: 100%;
        text-align: center;
        vertical-align: middle;
        margin-bottom: 10px;
    }
    .form-top small{
      font-family: Inter;
        font-weight: 700;
        font-size: 34px;
        line-height: 100%;
        text-align: center;
        vertical-align: middle;
    }
    .or-text span{
          font-family: Inter;
        font-weight: 700;
        font-size: 34px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        color: #DD7564;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 70px;
        margin: 0 auto;
        top: -50px;
        position: relative;
    }
    .footer-form{
      padding: 0 2rem 2rem 2rem;
    }
    .footer-form .form-control{
      height: 60px;
        border-radius: 0;
        font-family: Inter;
        font-weight: 400;
        font-size: 21px;
        line-height: 100%;
        vertical-align: middle;
        color: #01010180;
        border: 0;
    }
    .footer-form textarea{
      height: 215px !important;
      resize: none;
    }
    .form-btn{
      background: #75AF49;
        height: 60px;
        border-radius: 50px;
        max-width: 370px;
        margin: 0 auto;
        display: block;
        border: 0;
        margin-top: 30px;
        font-family: Inter;
        font-weight: 700;
        font-size: 24px;
        line-height: 100%;
        text-align: center;
        vertical-align: middle;
    }
    
    @media only screen and (max-width: 991px){
      .navbar{
        background-color: #6da544 !important;
      }
      .navbar-expand-lg .navbar-nav {
          gap: 10px;
      } 
      .banner-content h2 {
        font-size: 30px;
        line-height: 36px;
      }
      .banner-item img {
        height: 445px !important;
      }
      .banner-btn-bx {
        margin-top: 20px;
        margin-bottom: 15px;
      }
      .banner-btn-bx a {
        font-size: 16px;
        padding: 10px 18px;
      }
      .banner-content p {
        font-size: 16px;
      }
      .model-slider .owl-prev, .model-slider .owl-next, .banner-slider .owl-next, .banner-slider .owl-prev, .blog-slider .owl-next, .blog-slider .owl-prev{
        display: none !important;
      }
      h2 {
        font-size: 30px !important;
      }
    }

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////// who we are page css //////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/



    .wwa_main_banner_section{
        height: 77.1vh;
    }
    /*  message treatments section css */
    .msg_treatments_section .gradient-bg {
      background: linear-gradient(to bottom, #c9dcb3, #a4be6f);
      color: black;
      text-align: center;
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
    .msg_treatments_section .gradient-btn {
      background: linear-gradient(to bottom, #6ea23f, #3a4a1a);
      color: white;
      border-radius: 50rem;
      border: none;
      padding: 0.5rem 3rem;
      transition: filter 0.3s ease;
    }
    .msg_treatments_section .gradient-btn:hover {
      filter: brightness(1.1);
      color: white;
    }
    .msg_treatments_section .input-rounded {
      border-radius: 50rem 0 0 50rem;
      border: 1px solid black;
      padding-left: 1rem;
      height: 2.5rem;
      max-width: 320px;
    }
    .msg_treatments_section .btn-rounded {
      border-radius: 0 50rem 50rem 0;
      height: 2.5rem;
      border: none;
    }
    .msg_treatments_section form {
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }
    .msg_treatments_section .icon-text {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 600;
      font-size: 1rem;
    }
    .msg_treatments_section .icon-text img {
      width: 64px;
      height: 64px;
      flex-shrink: 0;
    }
    .msg_treatments_section .treatments-section {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
    .msg_treatments_section h2 {
      margin-left: auto;
      margin-right: auto;
    }
    .msg_treatments_section p {
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      font-size: 1.125rem;
      line-height: 1.75rem;
    }
    .msg_treatments_section .btn-explore {
      max-width: 320px;
      width: 100%;
      margin-top: 3rem;
    }
    @media (min-width: 576px) {
      .msg_treatments_section .gradient-bg h1 {
        font-size: 2.5rem;
        line-height: 2.8rem;
      }
      .msg_treatments_section .gradient-bg h2 {
        font-size: 2.75rem;
        line-height: 3rem;
      }
    }
    
    /* who we are section css */
    
    .who_we_are_main_section {
/*      background: linear-gradient(to bottom, #8fc26e, #6da64a);*/
    background: linear-gradient(180deg, #ccf1b0 0%, #75AF49 41.63%, #ccf1b0 88.66%);

      color: white;
      min-height: 70vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      text-align: center;
    }
    .who_we_are_main_section h2 {
      font-weight: 800;
      font-size: 2.5rem;
      margin: 0 0 0.5rem 0;
      line-height: 1.1;
    }
    @media (min-width: 576px) {
      .who_we_are_main_section h2 {
        font-size: 3rem;
      }
    }
    .who_we_are_main_section svg {
      margin: 0 auto 1.5rem auto;
      display: block;
      max-width: 320px;
      width: 100%;
      height: 20px;
    }
    .who_we_are_main_section p.description {
      max-width: 48rem;
      margin: 0 auto 3rem auto;
      font-size: 1rem;
      padding: 0 0.5rem;
    }
    .who_we_are_main_section .card {
      background-color: #f9fbee;
      border-radius: 0.5rem;
      padding: 1.5rem 1rem;
      color: black;
      border: none;
      text-align: center;
      box-shadow: none;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: start;
      width: 100%;
    }
    .who_we_are_main_section .card i {
      color: #1f3a5f;
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    .who_we_are_main_section .card h2 {
      font-weight: 600;
      font-size: 1.25rem;
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }
    .who_we_are_main_section .card p {
      font-size: 0.875rem;
      max-width: 14rem;
      margin: 0 auto;
    }
    /* Center cards on smaller screens */
    @media (max-width: 767.98px) {
      .who_we_are_main_section .row.justify-content-center {
        justify-content: center !important;
      }
      .who_we_are_main_section .col-12 {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
      }
      .msg_treatments_section .icon-text img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
    .who_we_are_main_section h2 {
        font-size: 20px !important;
    }
    .form-top h5 {
    font-size: 30px;
  }
  .form-top small {
    font-size: 20px;
}
    }
    
    /* benifits of msg therapy section */
    .benifits_msg_therapy_section {
      background: linear-gradient(to bottom, #f0f5e4, #f9fcf9);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 1rem;
    }
    .benifits_msg_therapy_section .check-circle {
      width: 40px;
      height: 40px;
      border: 4px solid #0f3a6e;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #5ed400;
      font-size: 1.25rem;
    }
    .benifits_msg_therapy_section .benefit-text {
      max-width: 160px;
      line-height: 1.2;
    }
    .benifits_msg_therapy_section h1,
    .benifits_msg_therapy_section p {
      font-family: sans-serif;
    }
    .benifits_msg_therapy_section h1 {
      font-size: 1.875rem;
    }
    .benifits_msg_therapy_section p.fs-5 {
      font-size: 1.25rem;
    }
    .benifits_msg_therapy_section p.description {
      /*max-width: 700px;*/
      margin-left: auto;
      margin-right: auto;
    }

    .book-content h2{
          font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 51px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    }
    .book-content  p{
        font-family: Inter;
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    }
    .book-content .btn-explore{
      background: linear-gradient(to bottom, #6ea23f, #3a4a1a);
    color: white;
    border-radius: 50rem;
    border: none;
    padding: 0.5rem 3rem;
    transition: filter 0.3s ease;
    }
    .book-sec{
      padding-bottom: 150px;
          background: linear-gradient(0deg, #b7d59f 40%, #ffffff 76%);
    }
    
    .ft_social a{
        font-size: 30px;
        position: relative;
        margin-right: 10px;
    }
    
    @media only screen and (max-width: 1560px){
      .model-slider .owl-prev{
        left: 0;
      }
      .model-slider .owl-next{
        right: -4%;
      }
    }
    
    .exp_btn_link{
        background: linear-gradient(to bottom, #6ea23f, #3a4a1a);
        color: white;
        border-radius: 50rem;
        border: none;
        padding: 0.5rem 3rem;
        transition: filter 0.3s ease;
        text-align: center;
        text-decoration: none;
    }
    
    .text-success {
        color: #0e3b08 !important;
    }

    @media only screen and (max-width: 991px){
      .banner-slider .owl-dots{
            position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
      }
    }