@import url('https://fonts.googleapis.com/css2?family=Merienda&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-image: url('/images/hero-background2.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.gallery, .outside-therapy-room{
  background-image: url(/images/gallery-backgound.png);
    background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}


h1, h2, h3, h4, h5, h6, .main-menu li, .main-menu-2 li a, button{
    font-family: 'Merienda', cursive;
}

p, li{
    font-family: "Merriweather Sans", sans-serif;
     color: #050505; 
     font-weight: 300;
      font-size: 14px;
}


.main-menu li, .main-menu-2 li{
    font-size: 18px;
}

.main-menu li a, .main-menu-2 li a{
    text-decoration: none;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}
.main-menu li a:hover{
    text-decoration: none;
    background-color: var(--bs-white);
    color: var(--bs-warning) !important;
    border-radius: 5px;
}

.main-menu-2 li a:hover{
  text-decoration: none;
  background-color: var(--bs-warning);
  color: var(--bs-white) !important;
  border-radius: 5px;
}


.about-me  {
    background:
      radial-gradient(circle, #fce88e 0%, transparent 50%) top right,
      radial-gradient(circle, #fce88e 0%, transparent 50%) bottom left;
    background-color: white;
    background-repeat: no-repeat;
    background-size: 200% 200%;
    animation: pulse 6s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0% {
      background-position: top right, bottom left;
    }
    25% {
      background-position: 20% 80%, 80% 20%;
    }
    50% {
      background-position: 60% 20%, 30% 80%;
    }
    75% {
      background-position: 80% 20%, 20% 80%;
    }
    
    100% {
      background-position: top right, bottom left;
    }
  }
  

.about-social-icons a {
    background-color: var(--bs-warning);
    color: #6B6B6B;
    border-radius: 50%;
    padding: 5px 10px;
}

.learn-more-btn, .form-submit {
    background-color: var(--bs-warning);
    color: #000;
    padding: 5px 10px;
    box-shadow: -3px 3px 0 #000;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.learn-more-btn:hover, .form-submit:hover {
  transition: all 0.3s ease-in-out;
    text-decoration: none;
    box-shadow: none;
    color: #000;
    background-color: var(--bs-warning); /* optional if same */
}

.a-step-inward-img{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* how can i help you section shadow */

.transition-shadow {
    transition: box-shadow 0.3s ease-in-out;
}

.hover-shadow-lg:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}



.header-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -150;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: -100;
}

.header-content {
  position: relative;
  z-index: 2; /* Above overlay and video */
}

/* Animation for the life jacket */
/* Add this CSS to create the left-right movement animation */

@keyframes rotate-left-right {
  0% {
    transform: rotate(0deg); /* Initial rotation */
  }
  50% {
    transform: rotate(-10deg); /* Rotate left */
  }
  100% {
    transform: rotate(10deg); /* Rotate right */
  }
}

.life-jacket {
  animation: rotate-left-right 2s ease-in-out infinite;
}


.contact-buttons {
  position: fixed; /* Changed to fixed for full screen positioning */
  bottom: 20px; /* Adjust the distance from the bottom */
  right: 20px; /* Adjust the distance from the right */
  z-index: 999; /* Ensure buttons are on top */
}

.contact-buttons i {
  color: white !important;
  font-size: 30px !important;
  padding: 5px 10px;
  margin: 5px;
  background-color: var(--bs-warning);
  border-radius: 50%;
  animation: pulsate 1.5s ease-in-out infinite; /* Pulsating shadow */
}

/* Pulsating shadow animation */
@keyframes pulsate {
  0% {
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8); /* Increase shadow size */
  }
  100% {
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
  }
}


.overlay {
  position: relative;
  z-index: 1; /* Ensure overlay is above the background */
  padding: 0;
  margin: 0;
  width: 100%;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 0; 
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* black overlay with 50% opacity */
  z-index: -100;
}

.overlay > * {
  position: relative;
  z-index: 2;
}


/* page title */
.page-title{
  background-image: url(/images/page-title-background.png);
  background-attachment: fixed;
}

.accordion-button:not(.collapsed){
  background-color: var(--bs-warning) !important;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
}