/*FONTS*/

 /*! Generated by Font Squirrel (https://www.fontsquirrel.com) on June 13, 2024 */

 @font-face {
    font-family: 'tabatharegular';
    src: url('Font/tabatha-bf651e76f3dd9fa-webfont.woff2') format('woff2'),
         url('Font/tabatha-bf651e76f3dd9fa-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  
  }
  /*WEBSITE CSS & STYLING*/
  
  /*index page*/ 
  .landing-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('PICTURES/5310858-uhd_3840_2160_25fps.mp4') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0; 
  }
  .landing-overlay {
    background: rgb(7 9 9 / 60%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
  
  .landing-logo {
    width: 100%;
    height: auto;
    margin-bottom: 600px;
  }
  
  .landing-info{margin-top: -1100px;

  }
  .landing-info h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #F0EAE6;
    margin-bottom: 10px;
  }
  
  .landing-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #F0EAE6;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 173px;}


    .cta-buttons {
      display: flex
  ;
      gap: 15px;
      justify-content: center;
      margin-top: 20px;
      margin-bottom: 410px;
  }
  
      .cta-button {
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        font-weight: 400;
        color: #ffffff;
        background-color: #8A744D;
        padding: 15px 30px;
        border: none;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
  
  .cta-button:hover {
    background-color: #705C3C;
  }
  
  .cta-button.secondary {
    background-color: #2C5450; 
  }
  
  .cta-button.secondary:hover {
    background-color: #1F3D3A; 
  }
  img {
    max-width: 100%;
    height: auto;
  }
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    background-color:  #ffffff;
  
  }
  
  .navbar {
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1000;
}
  
.navbar a {
  float: left;
  display: block;
  color: #0C393C;
  text-align: center;
  padding: 90px 50px;
  text-decoration: none;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 30px;
  font-weight: 400;
}
  
  .navbar a:hover{
    text-decoration: underline;
    text-shadow: #000000;
  }
  
  .navbar a.logo {
      margin-left: 40%; 
      transform: translateX(-130px);
      position:absolute;
      align-items: center;
      justify-content: center;
      margin-top: -60px;
     
      
  }

  .navbar a.logo img {
    width: 350px;
    height: 350px;
    margin-top: -95px;
    margin-left: 90px;
}
  
  .navbar a.right {
      float: right;
  }


  
  
  .center-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: auto; 
      width: 100%;
      position: relative;
      background-color: #ffffff;
  }
  
  .center-content img {
    position: absolute;
    width: auto;
    height: 800px;
    margin-bottom: 160px;
}
  
  .landing-gene{
  display: flex;
  align-items: center;
  margin-top: 100px;
  }
  .center-content img:nth-child(1) {
      z-index: 1; /* Puts this image behind */
  }
  
  .center-content img:nth-child(2) {
      z-index: -1; /* Puts this image in front of certain content */
  }
  
  .portfolio-button {
    background-color: #8A744D;
    color: #fff;
    border: none;
    padding: 15px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 700px;
    cursor: pointer;
    transition: background-color 0.8s;
    z-index: 1;
  }
  
  .portfolio-button:hover {
    background-color: #8A744D;
    text-shadow: #000000;
  }
  #about{
    background-color: #ffffff;
  }
  /*Quote Banner*/
  .top_heading-home {
    font-family: 'tabatharegular';
    font-size: 80px;
    color: #ffffff;
    text-align: center; /* Center aligns the text */
    position: absolute; /* Positions the heading correctly */
    text-transform:uppercase;
    left: 20%; /* Position from the left */
    transform: translate(-60%, -70%); /* Center the heading */
    z-index: 2; /* Ensure it's above the image */
  }
  
  .banner-container-home {
    position: relative; /* Ensures overlay and text are positioned relative to this container */
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: #ffffff;
  }
  
  .banner-container-home img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover; 
    padding-top: 20px;
  }
  
  .banner-overlay-home {
    position: absolute;
    top: 10;
    bottom: 10;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #2C5450,#2C5450);
    margin-top: 1.3%;
    background-blend-mode:screen;
  
  }
  
  
  .quote{
    position: absolute;
    z-index: 2;
    left: 160px;
    color: #ffffff;
    font-size: 20px;
    top: 100px;
    text-align: center;
  font-weight: lighter;
  line-height: 40px;
  font-weight: bolder;
  }
  
  .About_me{
    color: #052B47;
    font-family: 'tabatharegular';
    text-transform:uppercase;
    padding-bottom: 70px;
    padding-top: 100px;
    font-size: 60px;
  }
  
  .about-text{
    color: #052B47;
    margin-top: -100px;
  }

p{color: #052B47;}


  #about {
    padding: 160px 0;
    padding-bottom: 160px;
    color: #052B47;
    background: #ffffff;; 
  }
  
  .about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    grid-gap: 20px; /* Gap between the columns */
    color: #052B47;
  
  }
  
  
  
  .about-text {
    text-align:justify;
    color:  #052B47;
  }
  
  .about-image img {
    max-width: 130%;
    height: auto;
    transform: translateX(-150px);
  
  }
  
  .about-text p{
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
  }
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
  
    .social-icons li a img {
      width: 50%;
      height: auto;
      margin-left: 19px;
  }
   
  .social-icons {
    display: flex; 
  }
  
  .social-icons li {
    margin-bottom: 10px;
  }
  
    
    .social-icons li:last-child {
      margin-right: 10px;
    }
    
    .social-icons li a {
      color: #fff;
      text-decoration: none;
    }
    .footer-section ul li {
      margin-bottom: 10px;
      margin-right: -180px;
  }
  
  
  
   
  
  
    
    .copyright {
      text-align: center;
      background-color: #8A744D;
      padding: 10px 0;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      color: #ffffff;
    }
    
    .copyright p {
      font-size: 14px;
      color: #ffffff;
    
    }
  
   
  
  /* CSS for About Pamela Section*/
  #pamela {
    width: 100vw; /* Full viewport width */
    min-height: auto;
    padding: 20px;
    margin: 0; /* Ensure no margin is applied */
    position: relative; /* Make it independent of parent positioning */
    left: 0; /* Align it to the viewport's left edge */
    right: 0; /* Ensure no overflow */
    background: linear-gradient(to bottom, #2c5450a3, #123e39, #1b3432);
    background-size: cover; /* Ensure gradient spans full width */
    background-repeat: no-repeat; /* Avoid any repetition */
    background-attachment: fixed; /* Optional for a parallax-like effect */
    box-sizing: border-box; /* Include padding in total width */
  }
  
  

  .pamela-category {
    flex-direction: column-reverse;
    padding: 10px;
    background: linear-gradient(to bottom, #8a744d00, #8a744d57, 8a744d00);
}
  
  .pamela-image {
    width: 400px;
    height: auto;
    margin-right: 20px;
  }
  
  
  .pamela-info {
    flex: -1
    ;

  }
  
  
  .pamela-info h3 {
    font-size: 49px;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'tabatharegular';
    text-transform: uppercase;
    text-decoration: none;
    text-transform: uppercase;
    margin-left: 18px;
}
  
  
  .pamela-info p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
    color:  #ffffff;
    font-family: 'Poppins', sans-serif;
    padding-top: 40px;
    padding-bottom: 40px;
    

  
  }
  .primary {
    background-color: #ffffff;
    opacity: 60%;
    color: #705c3c;
    padding: 8px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.8s;
    z-index: 1;
    background-blend-mode: color-dodge;
}
  
  .pamela-category:nth-child(even) .pamela-image {
    order: 2;
    margin-right: 0;
    margin-left: 20px;
  }
  
  .pamela-category:nth-child(even) .pamela-info {
    order: 1;
  }
  
  h2 {
    color: #ffffff;
    font-family: 'tabatharegular';
    text-transform: uppercase;
    font-size: 59px;
    padding-bottom: -29px;
    padding-top: 80px;
    margin-left: 30px;}
  
  .primary:hover{
    background-color:#ffffff;
    color:#082728;
    border:none;
    opacity: 100%;
    
  
  }
  
  
  /* Contact Page Styling */
/* Full-Page Background Styling */

/* WhatsApp Button Styling */
.whatsapp-button {
  text-align: center;
  margin-top: -39px;
  z-index: 99999999;
}

.whatsapp-button button {
  background-color: #604f34;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999999;
  margin-left: 47px;
}

.whatsapp-button button:hover {
  transform: translateY(-2px); /* Slight lift on hover */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Deeper shadow */
}
.contact-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('PICTURES/6111110-uhd_3840_2160_25fps.mp4ZZzz') no-repeat center center/cover;
}

.contact-content {
  background: #8a744db3;
  padding: 43px 104px;
  border-radius: 2005px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 77%);
  color: white;
  text-align: center;
  max-width: 720px;
  z-index: 0;
  margin-top: -50px;
}
.top_heading_contact {
  font-size: 59px;
  text-transform: uppercase;
  margin-bottom: 43px;
  color: rgb(255, 255, 255);
  margin-left: 5px;
}
.contact-info p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  line-height: 1.5; /* Ensures readable spacing between lines */
}

/* Ensure there's consistent spacing between each <p> tag */
.contact-info {
  display: flex
;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 68px;
}
.contact-info {
  display: flex
;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.contact-info a {
  color: #f9f9f9;
  text-decoration: none;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px; /* Ensure link has the same spacing as other paragraphs */
}

.contact-image {
  margin-top: 20px;
  max-width: 100%;
  border-radius: 10px;
}


.container p {
  text-align: left;
}

.footer-container {
  display: flex
;
  justify-content: space-between;
  align-items: flex-start;
  background: #705C3C;
  padding: 40px 80px;
  width: 100%;
  box-sizing: border-box;
  gap: 100px;
}

.footer-section {
  flex: 1; /* Allow sections to grow naturally */
  min-width: 200px; /* So they don't get too small */
  color: #ffffff;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-family: 'Poppins', sans-serif;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f0c14b;
  text-decoration: underline;
}

.footer-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  margin: 10px 0;
  color: #ffffff;
}

/* SOCIAL ICONS CLEANER */
.social-icons {
  display: flex
;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin-top: 15px;
  margin-left: -40px;
}

.social-icons li {
  list-style: none;
  width: 150px;
}
.social-icons li a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* MAP SECTION */
.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
}

/* FOOTER BOTTOM */
footer {
  background-color: #705C3C;
  width: 100%;
}

.copyright {
  text-align: center;
  font-size: 14px;
  padding: 15px;
  color: #ffffff;
  background: #01111b;
  font-family: 'Poppins', sans-serif;
}
  .banner-container-modalities {
    position: relative;
    width: 1440px;
    max-width: 444%;
}
  .visits {
    text-align: center;
    color: #1b3432;
    padding: 14px 0;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    z-index: 99999;
    margin-right: 30px;
    margin-left: 30px;
}
  
  .background_icon{
    z-index: -6;
    height: 190%;
    width: 190%;
    margin-top: -850px;
    margin-left: 160px;
  }

.social-icons li a img {
    width: 50%;
    height: auto;
    margin-left: 0px;
}
  
  
  /* Service list styles */

/* Modalities Section */

.landing-section-modalities {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('PICTURES/pexels-massage.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Prevents overflow if the content gets too large */
}

.landing-overlay-modalities {
  background: rgb(7 9 9 / 60%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.modalities-section {
  padding: 57px 20px;
  margin-top: -300px;
}

.container {
  max-width: 1200px;
  margin: 65px auto;
  text-align: center;
}

/* Section Title */
.section-title {
  font-size: 52px;
  font-family: 'TabathaRegular', sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-left: 26px;
}

/* Horizontal line under title */
.section-line {
  width: 10%;
  height: 3px;
  margin: 0 auto 30px auto;
  background-color: #705C3C;
  border: none;
}

/* MODALITIES  */
/* Modalities List */

.modalities-list {
  list-style: none; 
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #333333;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 100%; 
  text-decoration: none;
  
}

.modalities-list li {
  display: inline-flex;
  align-items: center;
  padding: 15px 26px;
  background-color: transparent; 
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 150px; 
  max-width: 300px;
  width: auto; 
  background-color: #ffffffbd;
  text-decoration: none;
}


.modalities-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}



.modalities-list li p {
  font-size: 14px; 
  color: #333;
  line-height: 1.5;
  margin-bottom: 10px;
  text-decoration: none;
}

/*MODALITIES EXPLANATIONS*/

/* New Section for Modality Details */
.modalities-details {
  padding: 40px 10%;
  background-color: #f9f9f9;
}

.modality-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.modality-text {
  width: 50%;
  padding: 0 20px;
}

.modality-text h2 {
  font-size: 34px;
  color:#705C3C;
  margin-bottom: 15px;
  margin-left: 2px;
}

.modality-text p {
  font-size: 20px;
  color: #666;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}
/* Image Styling */
.modality-image img {
  width: 400px; /* Set a fixed width */
  height: 400px; /* Set a fixed height */
  object-fit: cover; /* Ensures the image covers the area while maintaining aspect ratio */
  border-radius: 4px; /* Optional: border-radius for rounded corners */

}

/* Reverse Layout for alternating sides */
.modality-detail.reverse {
  flex-direction: row-reverse;
}

.modal-item{
  text-decoration: none;
}

.modal-item a{
  text-decoration: none;
  color: #061e1f;
}
html {
  scroll-behavior: smooth;
}

  
  /* Banner styles */
  .banner-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .banner-container img {
    width: 100%;
    height: 570px;
    display: block;
    object-fit: cover; 
    padding-top: 20px;
  }
  
  .banner-overlay {
    position: absolute;
    top: 10;
    bottom: 10;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #ffffffc4, #061e1f);
    margin-top: 1.3%;
  }
  
  .banner-container-home {
    position: relative; /* Ensures overlay and text are positioned relative to this container */
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .banner-container-home img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover; 
 
  }
  
  .banner-overlay-home {
    position: absolute;
    top: 10;
    bottom: 10;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #ffffff45, #2c5450);
    margin-top: 0.3%;
    background-blend-mode: screen;
}


  
  .banner-container-top {
    position: relative; /* Ensures overlay and text are positioned relative to this container */
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .banner-container-top img {
    width: 100%;
    height: 323px;
    display: block;
    object-fit: cover; 
 
  }
  
  .banner-overlay-top {
      position: absolute;
      top: 10;
      bottom: 10;
      left: 0;
      width: 100%;
      height: 323px;
      background: linear-gradient(to bottom, #08272845, #2c5450);
      margin-top: 0%;
      background-blend-mode: screen;
  }
  
  
  h6 {
    position: absolute;
    z-index: 2;
    top: 300px;
    left: 15%;
    color: #ffffff;
    font-size: 16px;
  }
  
  .portfolio-button_services {
    position: absolute;
    z-index: 3;
    top: 360px;
    left: 15%;
    background-color: rgb(217, 143, 116);
    color: #fff;
    border: none;
    padding: 15px 60px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 30px;
    cursor: pointer;
    transition: background-color 0.8s;
  }
  
  .portfolio-button_services:hover {
    background-color: rgb(167, 93, 66);
    text-shadow: #000000;
  }
  
  .services {
    max-width: 3000px;
    margin-left: 50px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  
  
  .category h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
  }
  

/* Conditions Section */
/* CSS for Conditions Section */
#conditions {
  width: 100%;
  height: auto;
  padding: 60px;
  background:#ffffff;
  margin-left: 0px;
}

.conditions-content {
  margin-top: 25px;
  font-family: 'Poppins', sans-serif;
  
}

.conditions-category {
  display: flex;
  margin-bottom: 60px;
  padding: 30px;
  padding-top: 79px;
}

.conditions-image {
  width: 300px;
  height: auto;
  margin-right: 20px;
}

.conditions-info {
  flex: -1;
}

.conditions-info h3 {
  font-size: 20px;
  margin-bottom: 50px;
  color: #57807c;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: italic;
  margin-left: 440px;
  margin-top: -18px;
}
.conditions_list {
  display: grid
;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 29px;
  padding: 0px;
  margin: 15px 0;
  list-style: none;
}

.conditions_list li {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  padding-left: 20px;
  position: relative;
  color:#061e1f;

}

.conditions_list li::before {
  content: '\2022'; /* Unicode bullet point */
  position: absolute;
  left: 0;
  color: #3c6366;
  font-size: 18px;
}


.conditions-category:nth-child(even) .pamela-image {
  order: 2;
  margin-right: 0;
  margin-left: 20px;
}

.conditions-category:nth-child(even) .pamela-info {
  order: 1;
}
/*Top page banner - Conditions */

.banner-container-top {
  position: relative; /* Ensures overlay and text are positioned relative to this container */
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.banner-container-top img {
  width: 100%;
  height: 323px;
  display: block;
  object-fit: cover; 

}

.banner-overlay-top {
    position: absolute;
    top: 10;
    bottom: 10;
    left: 0;
    width: 100%;
    height: 323px;
    
    margin-top: 0%;
    background-blend-mode: screen;
}

 

    
  .primary{
    background-color:#ffffff; opacity: 60%;
    color:#082728;
    padding:10px 30px;
    text-align: center;
    text-decoration: none;
    display:inline-block;
    font-size:16px;
    cursor: pointer;
    transition: background-color 0.8s;
    z-index: 1;
    background-blend-mode: color-dodge;
  }
  
  .primary:hover{
    background-color:#ffffff;
    color:#082728;
    border:none;
    opacity: 100%;
    
  
  }

  .banner-overlay-modalities {
    position: absolute;
    top: 10;
    bottom: 10;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, hsla(0, 0%, 100%, 0.788), #061e1f);
    margin-top: 1.3%;
    background-blend-mode:screen;
  
  }


  
  .treat_heading{
    align-content: center;
    margin-left: 431px;
    color: #1F3D3A;
  }

  .top-block{
    background-color: #2C5450;
  }
  .footer-section1 h3{
    font-family: 'Poppins', sans-serif;
  color: #ffffff
  ;
font-size: 24px;}

.footer-section2 h3{
  font-family: 'Poppins', sans-serif;
color: #ffffff
;
font-size: 24px;}

.footer-section2 p{
  font-family: 'Poppins', sans-serif;
color: #ffffff
;
font-size: 12px;}

  @media (min-width: 320px) and (max-width: 375px) {
    .navbar {
      padding: 10px;
      position: relative;
  }
    .nav-links a {
      font-size: 14px;
      margin-bottom: 5px; /* Adjust for smaller screens */
      z-index: 9999;
    }
  
    .logo img {
      max-width: 200px; /* Adjust logo size for smaller screens */
    }
  
  
    .navbar a {
      width: 100%;
      text-align: center;
      margin-bottom: 5px !important;
      padding: 6px !important;
      margin-top: 20px;
      font-size: 16px; /* Adjusted font size */
    }
  a.left{
    margin-top: 10px;
    z-index: 99999;
    position: relative;
  }
    .menu{
      margin-top: 10px;
    }
    
    .navbar a.logo img {
      width: 250px;
      height: 230px;
      margin-top: -35px;
      margin-left: 140px;
      margin-bottom: -70px;
  }
  .navbar a.logo {
    margin-left: -80px;
    position: relative;
    transform: none;
    align-items: center;
    justify-content: center;
    margin-top: -12px;
    margin-bottom: -40px;
    bottom: 20px;
    clip-path: inset(6 20 -6% 10);
}

    
    .left, .right {
      text-align: center;
      margin-bottom: 5px !important;
      margin-top: 10px !important;
    }
  
    .cta-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 20px;
      margin-bottom: 40px;
      flex-direction: column;
      width: 80%;
    }
  
    .landing-info {
      margin-top: 20px;
      padding: 20px;
    }
  
    .landing-info p {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: #F0EAE6;
      max-width: 100%;
      line-height: 1.6;
      margin-bottom: 20px;
      padding: 20px;
    }
  
    .landing-logo {
      max-width: 100%;
      height: auto;
      margin-bottom: -90px;
  }
    .about-content {
      grid-template-columns: 1fr;
      padding: 10px;
      max-width: 100%;
    }
  
    .about-image img {
      max-width: 100%;
      margin-left: 150px;
      margin-top: -130px;
      top: 10px;
  }
  
  .about-text {
    font-size: 12px;
    padding: 14px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: -103px;
}
  
    .About_me {
        font-size: 32px;
        padding-bottom: 0px;
        padding-top: 20px;
        text-align: center;
        max-width: 100%;
    }
  
    .quote {
      font-size: 14px;
      width: 90%;
      margin-left: 5%;
      margin-top: 20px;
    }
  
    .about-text p {
      font-size: 12px;
      font-family: 'Poppins', sans-serif;
      max-width: 100%;
      margin-bottom: -60px;
  }
  #pamela {
    width: 100%;
    padding: 0;
    background: #ffffff;
    background-size: cover;
}
  
    .pamela-category {
      flex-direction: column;
      padding: 15px;
    }
  
    .pamela-content {
      max-width: 100%;
      background-color: white;
    }
  
    .pamela-image {
      width: 80%;
      margin: 0 auto 20px;
    }
  
  .pamela-info h3 {
    font-size: 35px;
    color: #8a744d;
    margin-left: 52px;
}
  .pamela-info p {
    font-size: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #1b3432;
    max-width: 100%;
    text-align: center;
    background-color: white;
}

    /* Footer */
    footer {
        background-color: #8A744D;
        width: 105%;
        padding: 20px 0;
    }

  
   .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 50px;
    }
  
    .footer-section {
      margin-bottom: 20px;
    }
  
    .footer-section h3 {
      font-size: 16px;
      font-family: 'Poppins';
      margin-right: -90px;
  }
  .footer-section2 p {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 14px;
    padding-top: 10px;
    margin-top: -11px;
    padding: 20px;
    margin-bottom: -30px;
}
  .footer-section1 ul {
    padding: 25px;
    list-style-type: none;
    font-family: 'Poppins';
    font-weight: lighter;
    margin-right: -20px;
}
.footer-section2 p {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 12px;
  padding-top: 10px;
}

    .footer-section2 ul {
      padding: 25px;
      list-style-type: none;
      font-family: 'Poppins';
      font-weight: lighter;
      margin-right: 180px;}

      .footer-section ul {
        list-style: none;
        padding: 0;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        margin-right: 99px;
    }

    .social-icons li {
      margin: 10px auto;
    }
  
    .social-icons li a img {
      width: 75px;
      height: auto;
      margin-left: -130px;
  }
    .social-icons li:last-child {
      margin-right: 120px;
  }
    .copyright {
      font-size: 12px;
      padding: 10px 0;
    }
  
    .copyright p {
      font-size: 10px;
      color: #ffffff;
    }
  
    .banner-container-home {
      max-width: 100%;
      overflow: hidden;
      margin-left: 0;
      align-content: center;
    }
  
   
    .landing-section-modalities {
      position: relative;
      height: 130vh;
      background: url(PICTURES/pexels-massage.jpg) center center / cover no-repeat;
      display: flex
;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      top: 60px;
  }

    .modality-detail {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
      flex-direction: column;
    }
  
    .modalities-details {
      padding: 40px 10%;
      background-color: #f9f9f9;
      max-width: 100%;
    }
  
    .treat_heading {
      margin-left: 0;
      color: #8a744d;
      font-size: 24px;
    }
  
    .landing-section {
      margin-top: 20px;
      width: 100%;
    }
  
    .conditions-info h3 {
      font-size: 12px;
      margin-bottom: 30px;
      color: #57807c;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      font-style: italic;
      margin-left: 0;
  }
  
    .banner-container-modalities {
      width: 100%;
      max-width: 100%;
    }
  
    .contact-content {
      padding: 7px;
      max-width: 153%;
      margin-top: 32px;
      height: 280px;
  }

    
    .contact-container {
      height: 350px; /* Adjust height further for smaller screens */
      margin-top: 100px; /* Reduce margin to give more space for content */
    }
  
    .visits {
      padding: 10px 0; /* Further reduce padding */
      font-size: 10px; /* Adjust font size for small screens */
      margin-top: 10px; /* Ensure there's enough space between video and visits */
    }
  
    .visits p {
      font-size: 14px;
      text-align: center;
      max-width: 100%;
      margin-left: 0;
      margin-top: -44px;
  }
  
    .navbar a {
      font-size: 14px;
    }
  
   
    p {
      color: #052B47;
      padding: 34px;
      width: 100%;
      font-size: 18px;
    }
  
  
    .modality-text {
      width: 100%;
      padding: 0px;
  }
  
    .modality-text h2 {
      font-size: 21px;
      color: #705C3C;
      margin-bottom: 15px;
      margin-left: 0px;
      text-align: center;
  }
    .modality-detail.reverse {
      display: flex
      ;
              align-items: center;
              justify-content: space-between;
              margin-bottom: 40px;
              flex-direction: column;
          }
    
          .modality-text p {
            font-size: 9px;
            color: #666;
            line-height: 1.6;
            font-family: 'Poppins', sans-serif;
            text-align: center;
            margin-top: -40px;
        }
        .modality-image img {
          width: 200px;
          height: 200px;
          object-fit: cover;
          border-radius: 4px;
          margin-bottom: -100px;
      }
      .conditions-content {
        margin-top: 35px;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        max-width: 100%;
        text-align: center;
    }
  
    .conditions_list li {
      font-size: 12px;
      line-height: 1.6;
      text-align: left;
      padding-left: 20px;
      position: relative;
      color: #061e1f;
    }
    .conditions_list {
      display: grid
  ;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 10px;
      padding: 0px;
      margin: 15px 0;
      list-style: none;
  }
    .treat_heading {
      margin-left: 0;
      color: #8a744d;
      font-size: 24px;
      text-align: center;
  }
    .top_heading_contact {
      font-size: 26px;
      text-transform: uppercase;
      margin-bottom: 30px;
      color: rgb(255, 255, 255);
      margin-left: 5px;
    }
  
    .contact-info p {
      margin: 0;
      padding: 0px;
      font-size: 12px;
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
      text-align: center;
      line-height: 2.5;
      /* padding-block: 10px; */
      width: 100%;
  }
  
    .whatsapp-button button {
      background-color: #604f34;
      color: #ffffff;
      font-size: 12px;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      z-index: 9999999;
      margin-left: 2px;
      margin-bottom: 10px;
    }
    .cta-buttons {
      display: flex
;
      gap: 15px;
      justify-content: center;
      margin-top: 20px;
      margin-bottom: 40px;
      flex-direction: column;
      width: 80%;
      margin-left: 30px;
  }
  .landing-overlay-modalities {
    background: rgb(7 9 9 / 60%);
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 120%;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.top_heading_contact {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 0px;
  color: rgb(255, 255, 255);
  margin-left: 5px;
  /* margin: auto; */
  margin-top: -30px;
}
.button {
  margin-left: 102px;
}
.section-title {
  font-size: 33px;
  font-family: 'TabathaRegular', sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 22px;
  margin-left: 26px;
}
.social-icons li:last-child {
  margin-right: 81px;
}
.social-icons{
  margin-left: 20px;
}
.footer-section1 h3 {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 16px;
  margin-left: -160px;
}
.footer-section2 h3 {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 16px;}

  }


  @media (min-width: 376px) and (max-width: 480px) {
    .navbar {
        padding: 10px;
    }

    .nav-links a {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .logo img {
        max-width: 220px;
    }

    .navbar a {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
        padding: 8px;
        margin-top: 20px;
        font-size: 18px;
    }
    .navbar a.logo {
      margin-left: -58px;
      position: relative;
      transform: none;
      align-items: center;
      justify-content: center;
      margin-top: -12px;
      margin-bottom: -100px;
      bottom: 20px;
      clip-path: inset(0 0 20% 0); /* Top Right Bottom Left */
    
  }
  .navbar a.logo img {
        width: 250px;
        height: 220px;
        margin-top: -35px;
        margin-left: 140px;
    }

    .left, .right {
        text-align: center;
        margin-bottom: 10px;
        margin-top: 15px;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 50px;
        flex-direction: column;
        width: 85%;
    }

    .landing-info {
      margin-top: -710px;
      padding: 20px;
  }
    .landing-info p {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #F0EAE6;
        max-width: 100%;
        line-height: 1.8;
        margin-bottom: 25px;
        padding: 20px;
    }

    .landing-logo {
        max-width: 100%;
        height: auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .about-image img {
      max-width: 100%;
      margin-left: 150px;
      margin-top: -150px;
  }

  .about-text {
    font-size: 14px;
    padding: 14px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: -150px;
}
.About_me {
        font-size: 30px;
        padding-bottom: 2px;
        padding-top: 30px;
        text-align: center;
        max-width: 100%;
    }



    .quote {
        font-size: 16px;
        width: 90%;
        margin-left: 5%;
        margin-top: 25px;
    }

    .about-text p {
      font-size: 12px;
      font-family: 'Poppins', sans-serif;
      max-width: 94%;
      margin-bottom: -60px;
      text-align: center;
      margin-top: -10px;
      margin-left: 10px;
  }
    #pamela {
        width: 100%;
        padding: 0;
        background: #ffffff;
        background-size: cover;
    }

    .pamela-category {
        flex-direction: column;
        padding: 15px;
    }

    .pamela-content {
        max-width: 100%;
    }

    .pamela-image {
        width: 80%;
        margin: 0 auto 20px;
    }

    .pamela-info h3 {
      font-size: 29px;
      color: #705c3c;
      margin-left: 100px;
      margin-top: 26px;
  }

  .pamela-info p {
    font-size: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #082728;
    max-width: 100%;
    text-align: center;
}
button {
        margin-left: 100px;
    }

   .footer-container {
        display: flex
;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        padding: 10px 100px;
    }

    .footer-section ul, .footer-section1 ul, .footer-section2 ul {
      padding: 0;
      list-style: none;
      margin: 0px;
      margin-right: 170px;
  }

    .footer-section,
    .footer-section1,
    .footer-section2 {
      width: 100%;
      margin-bottom: 20px;
    }
    
    .footer-section ul,
    .footer-section1 ul,
    .footer-section2 ul {
      padding: 0;
      list-style: none;
      margin: 0;
    }
    .footer-section2 p {
      font-family: 'Poppins', sans-serif;
      color: #ffffff;
      font-size: 12px;
      margin-top: 5px;
      padding-top: 0px;
      font-size: 14px;
      /* align-content: center; */
      margin-left: 0px;
      color: white;
      padding: 7px;
  }
    
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      padding: 0;
    }
    
    .social-icons li {
      list-style: none;
    }
    
    .social-icons img {
      width: 30px;
      height: auto;
    }


    .copyright {
        font-size: 14px;
        padding: 15px 0;
    }

    .copyright p {
        font-size: 12px;
        color: #ffffff;
    }

    .banner-container-home {
        max-width: 100%;
        overflow: hidden;
        margin-left: 0;
        align-content: center;
    }

    .footer-section ul {
      align-items: center;
      align-self: center;
      align-content: center;
      margin-right: 180px;
  }

    .landing-section-modalities {
      position: relative;
      height: 120vh;
      background: url(PICTURES/pexels-massage.jpg) center center / cover no-repeat;
      display: flex
;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      top: 80px;
  }

    .modality-detail {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 50px;
        flex-direction: column;
    }

    .modalities-details {
        padding: 40px 15%;
        background-color: #f9f9f9;
    }

    .treat_heading {
        margin-left: 0;
        color: #8a744d;
        font-size: 32px;
    }

    .landing-section {
        margin-top: 30px;
        width: 100%;
    }

    .conditions-info h3 {
      font-size: 14px;
      margin-bottom: 40px;
      color: #57807c;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      font-style: italic;
      margin-left: 0;
      text-align: center;
  }


    .banner-container-modalities {
        width: 100%;
        max-width: 100%;
    }

    .contact-content {
      padding: 8px;
      max-width: 160%;
      margin-top: 10px;
      height: 300px;
  }

    .contact-container {
        height: 380px;
        margin-top: 120px;
    }

    .visits {
        padding: 15px 0;
        font-size: 12px;
        margin-top: 15px;
    }

    .visits p {
      font-size: 13px;
      text-align: center;
      max-width: 100%;
      margin-top: -50px;
  }

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

    p {
        color: #052B47;
        padding: 36px;
        width: 100%;
        font-size: 20px;
    }

    .modality-text p {
      font-size: 11px;
      color: #666;
      line-height: 1.8;
      padding: 0px;
      text-align: center;
  }

  .modality-text {
    width: 100%;
    padding: 0px;
    margin-bottom: 20px;
}

    .modality-text h2 {
      font-size: 24px;
      color: #705C3C;
      margin-bottom: 18px;
      margin-left: -6px;
      text-align: center;
  }

    .modality-detail.reverse {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 50px;
        flex-direction: column;
    }
    .modality-image img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: -80px;
  }
    .conditions-content {
        margin-top: 35px;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
    }
    .treat_heading {
      margin-left: 0;
      color: #8a744d;
      font-size: 24px;
      text-align: center;
  }
  .conditions_list li {
    font-size: 12px;
    /* line-height: 1.8; */
    text-align: center;
    padding-left: 20px;
    position: relative;
    color: #061e1f;
}
    .conditions_list {
      /* display: grid
  ; */
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 5px;
      padding: 0px;
      margin: 15px 0;
      list-style: none;
  }
    .top_heading_contact {
      font-size: 30px;
      text-transform: uppercase;
      margin-bottom: 25px;
      color: rgb(255, 255, 255);
      margin-left: 8px;
      margin-top: -40px;
  }
  .contact-info p {
    margin: 0;
    padding: -2px;
    font-size: 13px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    line-height: 2.6;
}
    .whatsapp-button button {
        background-color: #604f34;
        color: #ffffff;
        font-size: 14px;
        padding: 12px 22px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        z-index: 9999999;
        margin-left: 5px;
        margin-bottom: 15px;
    }

    .cta-buttons {
      display: flex
;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
      margin-bottom: 50px;
      flex-direction: column;
      width: 85%;
      margin-left: 30px;
  }
    .landing-overlay-modalities {
        background: rgb(7 9 9 / 60%);
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        height: 120%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .top_heading_contact {
        font-size: 30px;
        text-transform: uppercase;
        margin-bottom: 5px;
        color: rgb(255, 255, 255);
        margin-left: 8px;
    }
    .button {
      margin-left: 120px;
  }

    .section-title {
        font-size: 35px;
        font-family: 'TabathaRegular', sans-serif;
        color: #ffffff;
        text-transform: uppercase;
        margin-bottom: 25px;
        margin-left: 30px;
    }
    
}


 

/*768PX - 1024PX*/
@media (min-width: 768px) and (max-width: 1024px){
  .navbar {
    /* flex-direction: column; */
    align-items: center;
    /* position: static; */
    gap: 0;
    /* margin: 85px; */
    padding: -1px;
    margin-top: -9px;
    margin-left: 1504px;
    flex-direction: column;
    flex: none;
    left: 162;
}
  .landing-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('PICTURES/5310858-uhd_3840_2160_25fps.mp4') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 400%;
    height: 200%;
    object-fit: cover;
    z-index: 0;
}

.landing-overlay {
  background: rgb(7 9 9 / 60%);
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 200%;
  display: flex
;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
  
.landing-logo {
  width: 50%;
  height: auto;
  margin-bottom: 598px;
  translate: 51px;
}
  
.landing-info {
  margin-top: -965px;}

  .landing-info h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #F0EAE6;
    margin-bottom: 10px;
  }
  
  .landing-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #F0EAE6;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 488px;
}

.navbar a {
  width: 100%;
  text-align: center;
  margin-bottom: 39px !important;
  padding: 6px !important;
  margin-top: 350px;
  font-size: 47px;
  top: 100px;
}

.navbar a.logo img {
  width: 752px;
  height: auto;
  margin-top: -198px;
}
.navbar a.logo {
  margin-left: 16%;
  transform: translateX(-130px);
  position: absolute;
  align-items: center;
  justify-content: center;
  margin-top: -98px;
}

.cta-buttons {
  display: flex
;
  gap: 15px;
  justify-content: center;
  margin-top: -377px;
  margin-bottom: 664px;
  flex-direction: column;
  padding-left: -20px;
  width: 110%;
  translate: -40px;
}
.cta-button {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  background-color: #8A744D;
  padding: 15px 30px;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid
;
  /* grid-template-columns: 1fr 1fr; */
  grid-gap: 20px;
  color: #052B47;
}
.about-text {
  font-size: 14px;
  padding: 14px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: -150px;
}
.about-image img {
  max-width: 347%;
  transform: translateX(-6);
  margin-left: -46px;
  margin-top: 709px;
  translate: 24%;
  width: 300%;
}
.About_me {
  color: #052B47;
  font-family: 'tabatharegular';
  text-transform: uppercase;
  padding-bottom: 70px;
  padding-top: 100px;
  font-size: 137px;
  width: 410px;
}
.about-text p {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  max-width: 100%;
  margin-bottom: -60px;
}


#pamela {
  width: 401vw;
  min-height: auto;
  padding: 20px;
  margin: 0;
  position: relative;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, #2c5450a3, #123e39, #1b3432);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  box-sizing: border-box;
}
.pamela-info h3 {
  font-size: 139px;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'tabatharegular';
  text-transform: uppercase;
  text-decoration: none;
  text-transform: uppercase;
  margin-left: 18px;
}
.pamela-info p {
  font-size: 48px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding-top: 40px;
  padding-bottom: 40px;
}

.banner-container-home {
  /* position: relative; */
  width: 522%;
  max-width: 1011%;
  overflow: hidden;
}
.footer-container {
  display: flex
;
  justify-content: space-between;
  background: #705C3C;
  padding: 20px;
  gap: 20px;
  padding-left: 160px;
  width: 141%;
}
.primary {
  background-color: #ffffff;
  opacity: 60%;
  color: #082728;
  padding: 50px 156px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 45px;
  cursor: pointer;
  transition: background-color 0.8s;
  z-index: 1;
  background-blend-mode: color-dodge;
}

.section-title {
  font-size: 115px;
  font-family: 'TabathaRegular', sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-left: 26px;
}
.modality-image img {
  width: 502px;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}
.modality-detail {
  display: flex
;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  margin-left: 157px;
  width: 368%;
}

.modality-text h2 {
  font-size: 90px;
  color: #705C3C;
  margin-bottom: 15px;
  margin-left: 2px;
}
.modality-text p {
  font-size: 43px;
  color: #666;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}
#conditions {
  width: 355%;
  height: auto;
  padding: 60px;
  background: #ffffff;
  margin-left: 29px;
}
.treat_heading {
  align-content: center;
  margin-left: 431px;
  color: #1F3D3A;
  font-size: 101px;
  translate: 393px;
}
.banner-container-modalities {
  position: relative;
  width: 400%;
  max-width: 400%;
  overflow: hidden;
}
footer {
  width: 284vw;
  background-color: #8A744D;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  font-family: 'tabatharegular';
  font-size: 34px;
}
.footer-section p {
  font-family: 'tabatharegular';
  font-size: 34px;
  margin: 10px 0;
  color: #ffffff;}

.copyright {
  font-size: 12px;
  padding: 10px 0;
  width: 154%;
  max-width: 400%;
}
#conditions {
  width: 337%;
  height: auto;
  padding: 60px;
  background: #ffffff;
  margin-left: 349px;}

  .conditions_list li {
    font-size: 34px;
    line-height: 1.6;
    text-align: left;
    padding-left: 30px;
    position: relative;
    color: #061e1f;
}
.conditions-info h3 {
  font-size: 48px;
  margin-bottom: 50px;
  color: #57807c;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: italic;
  margin-left: 704px;
  margin-top: -18px;
}
.visits {
  text-align: center;
  color: #1b3432;
  padding: 14px 0;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  z-index: 99999;
  margin-right: 30px;
  margin-left: 1080px;
  width: 2060px;
  margin-top: 100px;
  margin-bottom: 100px;
  font-size: 40px;
}
.footer-container {
  display: flex
;
  justify-content: space-between;
  background: #705C3C;
  padding: 20px;
  gap: 20px;
  padding-left: 160px;
  width: 154%;
  font-size: 34px;
}
.whatsapp-button {
  text-align: center;
  margin-top: -39px;
  z-index: 99999999;
}

.whatsapp-button button {
  background-color: #604f34;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999999;
  margin-left: 47px;
}

.whatsapp-button button:hover {
  transform: translateY(-2px); /* Slight lift on hover */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Deeper shadow */
}
.contact-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('PICTURES/6111110-uhd_3840_2160_25fps.mp4ZZzz') no-repeat center center/cover;
}

.contact-content {
  background: #8a744db3;
  padding: 43px 104px;
  border-radius: 2005px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 77%);
  color: white;
  text-align: center;
  max-width: 720px;
  z-index: 0;
  margin-top: -50px;
}
.top_heading_contact {
  font-size: 59px;
  text-transform: uppercase;
  margin-bottom: 43px;
  color: rgb(255, 255, 255);
  margin-left: 5px;
}
.contact-info p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  line-height: 1.5; /* Ensures readable spacing between lines */
}

/* Ensure there's consistent spacing between each <p> tag */
.contact-info {
  display: flex
;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 68px;
}
.contact-info {
  display: flex
;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.contact-info a {
  color: #f9f9f9;
  text-decoration: none;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px; /* Ensure link has the same spacing as other paragraphs */
}

.contact-image {
  margin-top: 20px;
  max-width: 100%;
  border-radius: 10px;
}


.container p {
  text-align: left;
}
.social-icons li:last-child {
  margin-right: 81px;
}
.social-icons{
  margin-left: 20px;
}
}


/*1024PX - 1440PX*/
@media (min-width: 1024px) and (max-width: 1400px){
  /* Contact Page Styling */
/* Full-Page Background Styling */

/* WhatsApp Button Styling */
.whatsapp-button {
  text-align: center;
  margin-top: -39px;
  z-index: 99999999;
}

.whatsapp-button button {
  background-color: #604f34;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999999;
  margin-left: 47px;
}

.whatsapp-button button:hover {
  transform: translateY(-2px); /* Slight lift on hover */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Deeper shadow */
}
.contact-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-start; /* Align content to the left */
  align-items: center;
  background: url('PICTURES/6111110-uhd_3840_2160_25fps.mp4ZZzz') no-repeat left center;
  background-size: contain; /* Ensures the video is fully visible without cropping */
}

.contact-content {
  background: #8a744db3;
  padding: 43px 104px;
  border-radius: 2005px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 77%);
  color: white;
  text-align: center;
  max-width: 720px;
  z-index: 0;
  margin-top: -50px;
}

.top_heading_contact {
  font-size: 59px;
  text-transform: uppercase;
  margin-bottom: 43px;
  color: rgb(255, 255, 255);
  margin-left: 5px;
}
.contact-info p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  line-height: 1.5; /* Ensures readable spacing between lines */
}

/* Ensure there's consistent spacing between each <p> tag */
.contact-info {
  display: flex
;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 68px;
}
.contact-info {
  display: flex
;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.contact-info a {
  color: #f9f9f9;
  text-decoration: none;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px; /* Ensure link has the same spacing as other paragraphs */
}

.contact-image {
  margin-top: 20px;
  max-width: 100%;
  border-radius: 10px;
}


.container p {
  text-align: left;
}

  

.social-icons li a img {
  width: 50%;
  height: auto;
  margin-left: 0px;
}
  
  
  
}