/*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;
  
  }

/* Make sure page content starts below the fixed navbar */
body {
  padding-top: 80px; /* adjust this to your navbar’s height */
}

@media (max-width: 768px) {
  body {
    padding-top: 100px; /* a bit more space for mobile */
  }
}








--------------------------------------- */
.animate {
  opacity: 0;
  transform: translateY(30px); /* default slide up */
  transition: all 0.8s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* slide from left/right variations */
.animate.from-left {
  transform: translateX(-50px);
}
.animate.from-left.visible {
  transform: translateX(0);
}

.animate.from-right {
  transform: translateX(50px);
}
.animate.from-right.visible {
  transform: translateX(0);
}

/* Parallax sections */
.parallax {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}



/* GENERAL NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 60px;
  background-color: #fff;
  position: relative;
  z-index: 1000;
}

/* Left and right links */
.nav-left, .nav-right {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Desktop links visible only */
.desktop-only {
  display: flex;
}

/* Mobile hidden by default */
.mobile-only {
  display: none;
}

/* Centered logo */
.logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo img {
  height: 80px;
  width: auto;
}

/* Navbar links style */
.nav-left a, .nav-right a {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  color: #0C393C;
  font-weight: 400;
  font-size: 18px;
}

.nav-left a:hover, .nav-right a:hover {
  text-decoration: underline;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .desktop-only {
    display: none; /* hide desktop links */
    gap: 100px
  }

  .mobile-only {
    display: block; /* show mobile items */
  }

  .hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 2100;
  }

  .hamburger span {
    height: 3px;
    width: 100%;
    background: #0C393C;
    border-radius: 2px;
  }

  /* Mobile slide menu */

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

  .mobile-menu a {
    padding: 18px 0;
    font-size: 18px;
    font-weight: 500;
    color: #0C393C;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

 .mobile-social {
        display: flex
;
        /* gap: 117px; */
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-evenly;
        align-content: center;
    }

  .mobile-social .social-icon {
        width: 40px;
        height: 40px;
    }
}
  /*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-buttons-contact {
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;}
     
  
      .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;
    }
   .contact-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 a {
  float: left;
  display: block;
  color: #0C393C;
  text-align: center;
  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);
      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.logo img {
    width: 350px;
    height: 350px;
    margin-top: 5px;
    margin-left: -400px;
    margin-bottom: -60px;
}
  



  
  
  .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 */
  }
.cta-buttons-contact {
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;
    /* align-self: center; */
    align-self: auto;
}
 .banner-container-modalities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  height: 400px;
  margin-bottom: 16px;
  padding-left: 16px;   /* added left padding */
  padding-right: 16px;  /* added right padding */
  overflow: hidden;
}

/* ------------------ IMAGES ------------------ */
.banner-container-modalities img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
  display: block;

  /* float-in animation */
  animation: floatIn 0.8s ease-out forwards;
}

/* ------------------ FLOAT-IN KEYFRAMES ------------------ */
@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ------------------ STAGGERED ANIMATION ------------------ */
.banner-container-modalities img:nth-child(1) {
  animation-delay: 0.1s;
}
.banner-container-modalities img:nth-child(2) {
  animation-delay: 0.3s;
}
.banner-container-modalities img:nth-child(3) {
  animation-delay: 0.5s;
}
.banner-container-modalities img:nth-child(4) {
  animation-delay: 0.7s;
}

  .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(-160px);
    padding-top: 95px;
  
  }
  
  .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;
  }
  
  .footer-section2 p a{
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 12px;
    text-decoration:none}
  
   
   
  
    
    .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: #1b3432;
}
   
 #pamela {
    width: 100%;
    min-height: auto;
    padding: 70px 20px; /* Added horizontal padding for mobile */
    margin: 0;
    position: relative;
    box-sizing: border-box;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.pamela-content {
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 195px;
    max-width: 1200px;
    width: 100%;
    flex-direction: row-reverse;
}
/* Pamela Image */
.pamela-image {
    flex: 1 1 400px; /* responsive sizing */
    max-width: 400px;
    height: auto;
    border-radius: 12px; /* subtle rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* soft shadow */
}

/* Pamela Info */
.pamela-info {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 20px;
}

/* Heading */
.pamela-info h3 {
    font-size: 63px;
    margin-bottom: 45px;
    color: #8a744d;
    font-family: 'TabathaRegular', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Paragraphs */
.pamela-info p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #1f3d3a;
    font-family: 'Poppins', sans-serif;
}

/* Button Styling */
.primary {
    background-color: rgba(255, 255, 255, 0.85); /* cleaner semi-transparent */
    color: #705c3c;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary:hover {
    background-color: #705c3c;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .pamela-content {
        flex-direction: column;
        gap: 20px;
    }

    .pamela-info h3 {
        font-size: 36px;
        text-align: center;
    }

    .pamela-info p {
        text-align: center;
    }
}
  
  .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: center;
}

















/*NEW CONTACT STYING!!!!!!!!!!!!!!!!*/

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.hours{
  font-family: 'Poppins';
  text-align: center;
  color:#8A744D;

}
.hour{
  font-family: 'Poppins';
  text-align: center;
  color:white;
  
}

.workhours {
    font-family: 'Poppins';
    text-align: center;
    color: white;
    margin-bottom: 24px;
    font-size: 20px;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #120f0ab8;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
}
.hero-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
}

.btn-primary {
    background-color: #604f34;
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #705c3c;
}

/* ==================== CONTACT SECTION ==================== */

.contact-section {
  display: flex;
  justify-content: center;
  align-items: stretch; /* same height */
  gap: 40px;
  padding: 80px 20px;
  background: #f5f5f5;
  flex-wrap: wrap; /* stacks on small screens */
}

.contact-card,
.contact-map {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    flex: 1 1 450px;
    max-width: 500px;
    box-sizing: border-box;
    justify-content: center;
    align-content: center;
    text-align: center;
}


.contact-map img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.btn-whatsapp {
  margin-top: 15px;
  background:#8a744d;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  display: inline-block;
}

.btn-whatsapp:hover {
  background: #2c5450;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-card, .contact-map {
    flex: 1 1 400px;
    max-width: 100%;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-card, .contact-map {
    flex: 1 1 100%;
    height: 400px;
  }
}



.contact-card h2 {
    align-self: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #8a744d;
    text-align: left;
    margin-top: -75px;
    margin-left: 0px;
    /* align-content: center; */
    align-items: center;
    text-align: center;
}
.contact-card p {
    margin-bottom: 12px;
    font-size: 1rem;
    font-family: 'Poppins';
    text-decoration: none;
    color: black;
}

.contact-card a{
    margin-bottom: 12px;
    font-size: 1rem;
    font-family: 'Poppins';
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 15px;
    background:#8a744d;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    }

    .btn-whatsapp a{
    display: inline-block;
    margin-top: 15px;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    }

.btn-whatsapp:hover {
    background: #2c5450;
}
#chat{
  color: white;
}

/* ==================== VISITS SECTION ==================== */
/* Visits Section Enhancements */
.visits-section {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    position: relative;
}

/* Add lines around heading */
.visits-section h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c5450;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visits-section h2::before,
.visits-section h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #2c5450;
    margin: 0 20px;
}

/* Fade-in animation */
.visits-section p {
    font-size: 24px;
    max-width: 700px;
    margin: 20px auto 0 auto;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

/* Scroll trigger (optional for real scroll effect) */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* ==================== SERVICES SECTION ==================== */
/* ==================== SERVICES CAROUSEL ==================== */
.services-section {
    text-align: center;
    padding: 80px 20px;
    background: #f9f9f9;
}

.services-section h2 {
    font-size: 40px;
    margin-bottom: 54px;
    color: #2c5450;
    font-family: 'Poppins';
}

.services-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Carousel container */
.services-grid {
    display: flex
;
    justify-content: center;
    align-items: center;
    gap: 52px;
    /* overflow: hidden; */
    scroll-behavior: smooth;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Service card styling */
.services-grid > .service-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Card content */
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.service-card h3 {
    margin: 16px;
    font-size: 20px;
    color: #2c5450;
    font-family: 'Poppins', sans-serif;
}

.service-card p {
    margin: 0 16px 16px 16px;
    font-size: 16px;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

/* Highlight center card */
.services-grid > .service-card.center {
    transform: scale(1.1);
    box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

/* Hover effect */
.services-grid > .service-card:hover {
    transform: scale(1.1);
    box-shadow: 0 18px 35px rgba(0,0,0,0.2);
}



.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: #052b47;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}
.banner-container-modalities {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 10px;                             /* space between images */
  width: 100%;
  height: 400px;                          /* fixed height */
  margin-bottom: 16px;                   /* bottom padding */
  overflow: hidden;
}

.banner-container-modalities img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
  display: block;

  /* float-in animation */
  animation: floatIn 5s ease-out forwards;
}

/* Float-in from left */
@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


  .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: 19px;
    padding: 16px;
    margin: 16px 0;
    list-style: none;
    justify-items: stretch;
}

.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;}

/*NEW NAVBAR CODE!!!!!!!!!!!*/
@media (min-width: 320px) and (max-width: 730px) {
  .navbar a { padding: 10px; font-size: 16px; }
  
.menu-heading {
        font-size: 36px;
        font-family: 'Poppins';
        color: #0C393C;
        letter-spacing: 10px;
        margin-left: 16px;
    }

    /* Hamburger base */
.hamburger {
        width: 28px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 2100;
        display: flex
;
        flex-direction: column;
        justify-content: space-between;
        top: 10px;
    }

/* Lines */
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #0C393C;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.cta-buttons-contact {
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;
    align-self: center;
}
/* When menu is open */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0; /* middle line disappears */
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

  /* Slide-out menu improvements */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* <-- hide it offscreen by default */
    width: 80%;
    height: 140vh;
    background-color: #ffffffe6;
    backdrop-filter: blur(3px);
    box-shadow: -3px 5px 19px 0px rgb(0 0 0 / 0%);
    display: flex;
    flex-direction: column;
    padding-top: 128px;
    transition: right 0.35s ease-in-out;
    z-index: 2000;
}

/* Active menu slides in */
.mobile-menu .active {
    right: 0;
}



  @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: left;
      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: 204px;
        margin-top: -17px;
        margin-left: 149px;
        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;
      scale: 1.3;
  }
    .about-content {
      grid-template-columns: 1fr;
      padding: 10px;
      max-width: 100%;
    }
  
    .about-image img {
      max-width: 100%;
      margin-left: 163px;
      margin-top: -130px;
      top: 10px;
  }
  
  .about-text {
    font-size: 12px;
    padding: 14px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: -103px;
}
  #about {
    padding: 64px 0;
    padding-bottom: 160px;
    color: #052B47;
    background: #ffffff;
}
    .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 {
            background-color: white;
            font-size: 12px;
            padding: 0px 0;
            color: white;
        }
    
    .copyright p {
            font-size: 10px;
            color: #1b3432;
            padding: 8px;
            margin-bottom: -22px;
        }
    
  
    .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;
            padding-top: 80px;
        }

    .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 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    height: auto;
    padding: 16px;
  }

  .banner-container-modalities img {
    height: 180px;
  }

    .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;
            margin-left: 10px;
        }
   
    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-button {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #ffffff;
        background-color: #8A744D;
        padding: 12px 30px;
        border: none;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;}

  .cta-buttons {
        display: flex
;
        gap: 20px;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 50px;
        flex-direction: column;
        width: 60%;
        margin-left: 70px;
    }
  .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: auto;
        display: block;
    }
.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: left;
        margin-bottom: 8px;
        padding: 8px;
        margin-top: 20px;
        font-size: 18px}

    .navbar a.logo {
        margin-left: -78px;
        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); */
    }
  .navbar a.logo img {
        width: 250px;
        height: 220px;
        margin-top: -35px;
        margin-left: 170px;
    }

    .left, .right {
        text-align: center;
        margin-bottom: 10px;
        margin-top: 15px;
    }
#about {
    padding: 64px 0;
    padding-bottom: 160px;
    color: #052B47;
    background: #ffffff;
}
    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 50px;
        flex-direction: column;
        width: 60%;
       margin-left: 70px;
    }
    .cta-button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    background-color: #8A744D;
    padding: 13px 30px;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .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;
        scale:1.3;
    }

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

    .about-image img {
      max-width: 100%;
      margin-left: 160px;
      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;
      text-align: center;
      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: auto;
        display: block;
    }
   .footer-container {
        display: flex
;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        margin: 0 auto;
       padding: 60px 100px;
       gap:24px
    }

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

    .footer-section,
    .footer-section1,
    .footer-section2 {
      width: 100%;
      margin-bottom: 20px;
    }
    .footer-section1 h3 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 16px;
}
.footer-section2 h3 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 16px;
}
    
    .footer-section ul,
    .footer-section1 ul,
    .footer-section2 ul {
      padding: 0;
      list-style: none;
      margin: 0;
      font-size: 12px;
    }
    .footer-section2 p {
        font-family: 'Poppins', sans-serif;
        color: #ffffff;
        margin-top: 5px;
        padding-top: 0px;
        font-size: 12px;
        margin-left: 0px;
    
        padding: 7px;
    }
 
  .footer-section h3 {
    margin-bottom: 20px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}
    
    .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 {
    text-align: center;
    font-size: 14px;
    padding: 15px;
    color: #ffffff;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;}

  .copyright p {
            font-size: 12px;
            color: #061e1f;
            background: #ffffff;
            padding: 0px;
        }
    

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

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

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

    .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;
      padding:16px
  }


  
.banner-container-modalities {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    height: auto;
    padding: 16px;
  }

  .banner-container-modalities img {
    height: 180px;
  }

    .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;
            margin-left: 10px;
        }


    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: left;
    padding-left: 20px;
    position: relative;
    color: #061e1f;
}
    .conditions_list {
      /* display: grid
  ; */
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 5px;
      padding: 16px;
      margin: -16px 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;
    }


    .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;
    }
.cta-buttons-contact {
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;
    align-self: center;
}
    .top_heading_contact {
        font-size: 30px;
        text-transform: uppercase;
        margin-bottom: 5px;
        color: rgb(255, 255, 255);
        margin-left: 8px;
    }
   

   .section-title {
        font-size: 35px;
        font-family: 'TabathaRegular', sans-serif;
        color: #ffffff;
        text-transform: uppercase;
        margin-bottom: 25px;
        margin-left: 0px;
        text-align: center;
    }
    .modalities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333333;
    display: flex
;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    text-decoration: none;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
}
    
}


 

/*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;
}
  
  
  
}/* ==================== CONTACT PAGE MEDIA QUERIES ==================== */

/* -------------------- TABLETS & MEDIUM SCREENS -------------------- */
@media (max-width: 1024px) {

  /* HERO */
  .hero {
    height: 50vh;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .workhours {
    font-size: 14px;
  }
  .btn-primary {
    padding: 10px 24px;
    font-size: 14px;
  }

  /* SERVICES */
  .services-grid {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .services-grid > .service-card {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 14px;
  }

  /* VISITS */
  .visits-section h2 {
    font-size: 24px;
  }
  .visits-section p {
    font-size: 14px;
    max-width: 100%;
  }

  /* CONTACT */
  .contact-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
  }
  .contact-card, .contact-map {
    flex: 1 1 100%;
    max-width: 100%;
    height: auto;
    padding: 20px;
  }
  .contact-card h2 {
    font-size: 24px;
    text-align: center;
  }
  
  .btn-whatsapp {
    display: block;
    width: 80%;
    margin: 15px auto 0 auto;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
  }
  .btn-whatsapp a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #fff;
  }
  .contact-map img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
}

/* -------------------- SMALL TABLETS / LARGE PHONES -------------------- */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    height: 45vh;
  }
  .hero-content h1 {
    font-size: 24px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .workhours {
    font-size: 12px;
  }
  .btn-primary {
    padding: 8px 20px;
    font-size: 12px;
  }

  /* SERVICES */
  .service-card h3 {
    font-size: 18px;
  }
  .service-card p {
        font-size: 13px;
        margin: 0px;
    }
  .container p {
    font-size: 14px;
    text-align: center;
    padding: 0;
  }
}

/* -------------------- SMALL PHONES / MOBILE -------------------- */
@media (max-width: 480px) {

  /* HERO */
  .hero {
    height: auto;
    padding: 20px 10px;
  }
  .hero-content h1 {
    font-size: 20px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .workhours {
    font-size: 12px;
  }
  .btn-primary, .btn-whatsapp button {
    padding: 6px 12px;
    font-size: 12px;
  }

  /* SERVICES */
      .services-grid {
        flex-direction: column;
        gap: 30px;
    }

  
  .service-card h3 {
        font-size: 18px;
        text-align: center;
    }
 .service-card h3 {
        font-size: 18px;
        text-align: center;
    }
  /* VISITS */
 .visits-section h2 {
        font-size: 20px;
        text-align: center;
        margin: 0px;
    }
  .visits-section p {
    font-size: 14px;
  }

  /* CONTACT */
  .contact-section {
    padding: 16px;
  }
  .contact-card, .contact-map {
    padding: 15px;
  }
  .contact-card h2 {
        font-size: 32px;
        text-align: center;
        margin-top: -24px;
    }
.card a {
        font-size: 14px;
        text-align: center;
        padding: 16px;
    }
  .contact-card p, 
  .card a {
        font-size: 14px;
        text-align: center;
        padding: 16px;
    }
  .btn-whatsapp {
    width: 80%;
    margin: 15px auto 0 auto;
    font-size: 12px;
    padding: 16px 0;
}
  .contact-map img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
  .services-section h2 {
    font-size: 32px;
    margin-bottom: 54px;
    color: #2c5450;
    font-family: 'tabatharegular';
    margin-left: 0px;
}


    .services-grid > .service-card {
        flex: 1 1 100%;
        max-width: 70%;
        margin: 0 auto;
        height: auto;
        gap: 10px;
    }
}
}
