/*
body {
  background-image: url('Spa_Photo1.JPG');
	
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
	
}
*/
body {
   background: linear-gradient(to bottom, #88cc88, #007300);
  
  background-attachment: fixed;
}
@media (max-width: 768px) {
  /* CSS styles for screens up to 768px width */
}

@media (max-width: 480px) {
  /* CSS styles for screens up to 480px width */
}


.text-block {
            background-color: rgba(255, 255, 255, 0.8); /* Set the background color with transparency */
            padding: 10px; /* Adjust the padding as needed */
            text-align: center;
        }
        
        h4 {
            margin: 0; /* Remove any default margins */
            font-size: 32px; /* Adjust the font size as needed */
            color: #004080; /* Set the text color */
        }
.navbar {
  background-color: #005b00;
  display: flex;
  justify-content: center;
}

.navbar-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.navbar-list li {
  margin: 0 10px;
  position: relative;
}

.navbar-list li a {
  color: white;
  text-decoration: none;
  padding: 20px;
  font-size: 16px;
  display: inline-block;
  transition: font-size 0.1s ease;
}

.navbar-list li a:hover {
  background-color: #fff;
  color: #005b00;
  border-radius: 5px;
  font-size: 18px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #005b00;
  top: 100%;
  left: 0;
  z-index: 1;
  transition-delay: 0.5s; /* Add a 0.2s delay before hiding */
}

.dropdown-menu li {
  width: 100%;
  list-style-type: none;
  padding-left: 0;
}

.dropdown-menu li::before {
  content: "\25A0";
  display: inline-block;
  margin-right: 5px;
}

.dropdown-toggle:hover + .dropdown-menu,
.dropdown-menu:hover {
  display: block;
  pointer-events: auto;
  padding: 20px;
  border-radius: 20px;
  transition-delay: 0s; /* Reset the delay on hover */
}

.dropdown-toggle::after {
  content: '\25BE';
  margin-left: 5px;
}

@media (max-width: 768px) {
  .navbar-list {
    flex-direction: column;
    align-items: center;
  }

  .navbar-list li {
    margin: 10px 0;
  }

  .dropdown-toggle::after {
    content: '\25B8';
    margin-left: 5px;
  }

  .dropdown-toggle.collapsed::after {
    content: '\25BE';
  }

  .dropdown-menu {
    position: absolute;
    display: none;
    margin-left: 20px;
    width: 100%;
  }

  .dropdown-menu li {
    width: auto;
  }

  .dropdown-toggle.collapsed + .dropdown-menu,
  .dropdown-menu:hover {
    display: none;
  }
}

.navbar {
  position: relative;
}

.contact-box {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%) translateX(50%);
  font-size: 12px;
  background-color: #f2f2f2;
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact-box a {
  color: black;
  text-decoration: none;
  margin-left: 5px;
}

.contact-box i {
  margin-right: 10px;
}
@keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        
        h4 {
            text-align: center;
            opacity: 0;
            animation: fadeIn 1s forwards;
        }


.green-block img {
            border: 2px solid #000000; /* Add border to the images */
            margin: 0 auto; /* Center align the images */
        }
        
        a {
            color: #0073aa; /* Set the link color */
        } 


.back-to-top-button {
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-to-top-button:hover {
  background-color: #0040ff;
  color: #fff;
  transform: scale(1.1);
}
.floating-button {
  position: fixed;
  bottom: 4vw; /* Adjust the value as needed */
  right: 4vw; /* Adjust the value as needed */
  background-color: #0073aa;
  color: #ffffff;
  border-radius: 50%;
  width: 8vw; /* Adjust the value as needed */
  height: 8vw; /* Adjust the value as needed */
  text-align: center;
  font-size: 2.5vw; /* Adjust the value as needed */
  line-height: 8vw; /* Adjust the value as needed */
  cursor: pointer;
  animation: bounce 2s infinite;
  transition: all 0.3s ease;
}

.floating-button:hover {
  background-color: #009cff;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  animation-play-state: paused;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1vw); /* Adjust the value as needed */
  }
}
@media (max-width: 767px) {
  /* Adjust the floating button size and position */
  .floating-button {
    width: 100px;
    height: 100px;
    font-size: 36px;
    line-height: 100px;
    position: fixed;
    bottom: 20px;
    right: 20px;
  }
  
  /* Adjust the font size for other elements */
  body {
    font-size: 16px;
  }
  
  /* Center align text within a container */
  .container {
    text-align: center;
  }
  
  /* Adjust margins and padding for smaller screens */
  .content {
    margin: 20px;
    padding: 10px;
  }
  
  /* Make images responsive */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Adjust the navigation menu for mobile */
  .nav {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  /* Add a mobile-friendly background color */
  body {
    background-color: #f2f2f2;
  }
}




