html{
  scroll-behavior: smooth;
}

.index {
  margin: 0;
  font-family: Arial, sans-serif;
  padding-top: 0;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.cs-navigation .cs-logo {
  float: left;
}

.wrapper {
  width: 90%;
  margin: 0 auto;
}

.banner-area {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover; /* Ensures the image covers the entire container */
  background-position: center center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents image tiling */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
}

.heading-container {
  text-align: center;
  color: white;
  z-index: 1;
}

.banner-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  z-index: 1; 
}

.banner-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #6aa76c; /* Overlay color */
  opacity: 0.1;
  z-index: -2;
}


.heading-container h2 {
  font-size: 450%;
  color: white;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

.heading-container h3 {
  padding-left: 15%;
  padding-right: 15%;
  font-size: 4rem;
  font-weight: 400;
  color: white; 
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  margin-bottom: 60px;
}

.index .join .arrow-icon {
  height: 1em; /* Match the height of the text */
  width: auto; /* Maintain aspect ratio */
}

.index .join:hover {
  background-color: rgb(89, 119, 2); /* Slightly darker shade on hover */
}

.index .join{
  width: 150px;
  height: 60px;
  background-color: red;
  font-size: 1rem;
  font-weight: bold;
  color: #ffff;
  border-color: white;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 50px;
}

.section {
  display: flex;
  width: 100%;
  height: auto; /* Adjust height as needed */
  margin-bottom: 0; /* Space between sections */
  background-color: white;
  opacity: 0; /* Start hidden */
  transform: translateY(100px); /* Start below the viewport */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Smooth transition */
}

/* Style for sections when they become active */
.section.active {
  opacity: 1; /* Visible */
  transform: translateY(0); /* Slide in */
}

.text-content {
  flex: 1;
  padding: 2rem;
  background-color: white; /* Background color for the text section */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.text-content h1 {
  font-size: 2.2rem; 
  color: #333; 
  margin-bottom: 1rem;
  position: relative;
}

.text-content h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px; /* Thickness of the underline */
  width: 80%; /* Full width of the parent container */
  background-color: #333; /* Color of the underline */
  border-radius: 10px; /* Optional: Rounded corners */
}

.text-content p {
  font-size: 1.1rem; 
  color: #666; 
  line-height: 2;
  white-space: normal; 
  word-spacing: 2.5px;
}  

.image-content {
  flex: 0 0 45%; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative; /* For absolute positioning of the hover content */
}

.image-hover {
  position: relative;
}

.image-hover img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: filter 0.3s ease-in-out;
}

.image-hover:hover img {
  filter: blur(5px);
}

.image-hover .hover-button {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.681);
  color: white;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  font-size: 2rem;
  z-index: 2;
  border: 2px solid red;
}

.image-hover:hover .hover-button {
  opacity: 1;
  z-index: 2; /* Ensure the hover-button is visible on hover */
}

.image-hover .hover-button2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.681);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  font-size: 2rem;
  z-index: 2;
}

.image-hover:hover .hover-button2 {
  opacity: 1;
  z-index: 3; /* Ensure the hover-button is visible on hover */
}

.images24hour {
  width: 100%;
  padding: 0;
  margin: 0;
  opacity: 0; /* Start hidden */
  transform: translateY(100px); /* Start below the viewport */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Smooth transition */
}

.images24hour.active {
  opacity: 1; /* Visible */
  transform: translateY(0); /* Slide in */
}


.section2 {
  display: flex;
  width: 100%;
  height: auto; /* Adjust height as needed */
  margin-bottom: 0; /* Space between sections */
  padding-top: 0;
  background-color: #ffff;
  opacity: 0; /* Start hidden */
  transform: translateY(100px); /* Start below the viewport */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Smooth transition */
}

.section2.active {
  opacity: 1; /* Visible */
  transform: translateY(0); /* Slide in */
}

.text-content2 {
  flex: 1;
  padding-right: 2rem;
  padding-left: 2rem;
  background-color: white; /* Background color for the text section */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.text-content2 h1 {
  font-size: 2.2rem; 
  color: #333; 
  position: relative;
  margin-bottom: 1.25rem;
  padding-top: 50px;
}

.text-content2 h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px; /* Thickness of the underline */
  width: 80%; /* Full width of the parent container */
  background-color: #333; /* Color of the underline */
  border-radius: 10px; /* Optional: Rounded corners */
}

.text-content2 p {
  font-size: 1.1rem; 
  color: #666; 
  line-height: 2;
  word-spacing: 2.5px;
}  

.text-content2 .two {
  font-size: 1.1rem; 
  color: #666; 
  line-height: 2;
  padding-bottom: 50px;
}  

.image-left {
  flex: 0 0 45%; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0; /* Remove any margin */
  padding: 2rem;
}

.image-left img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}


@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.about-section {
  display: flex;
  align-items: stretch;
  background-color: #eeeeee; /* Background color for the text section */
}

.about {
  flex: 1;
  padding-left: 40px; /* Add padding to the text section */
  background-color: #eeeeee; /* Background color for the text section */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.about h1 {
  font-size: 2.2rem; 
  color: #333; 
  position: relative;
  padding-top: 50px;
}

.about h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px; /* Thickness of the underline */
  width: 70%; /* Full width of the parent container */
  background-color: #333; /* Color of the underline */
  border-radius: 10px; /* Optional: Rounded corners */
}

.about p {
  font-size: 1.1rem; 
  color: #666; 
  line-height: 2;
  word-spacing: 2.5px;
}

.about .twotwo{
  font-size: 1.1rem; 
  color: #666; 
  line-height: 2;
  padding-bottom: 50px;
}

.image-about {
  width: 50%;
  padding: 0;
  box-sizing: border-box;
  background-color: #eeeeee; /* Background color for the text section */
}

.image-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 15% 100%, 5% 60%, 20% 40%);
}

/* Remove margin between the image and the text */
.about-section {
  margin-right: 0;
  opacity: 0; /* Start hidden */
  transform: translateY(100px); /* Start below the viewport */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Smooth transition */
}

.about-section.active {
  opacity: 1; /* Visible */
  transform: translateY(0); /* Slide in */
}

.googlmaps {
  width: 100%;
  margin: 0; /* Ensure there's no margin around the container */
  padding: 0; /* Ensure there's no padding around the container */
}

.googlmaps iframe {
  width: 100%; /* Make sure the iframe takes full width */
  height: 500px; /* Adjust the height as needed */
  border: 0; /* Remove any border */
  margin: 0; /* Ensure there's no margin */
  padding: 0; /* Ensure there's no padding */
}

.swiper-container {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide {
  padding-top: 120px;
  padding-bottom: 100px;
}

.slide h1 {
  color: rgb(234, 233, 233);
  font-size: 1.5rem;
}

.slide h2 {
  font-size: 2rem;
  color: rgb(81, 96, 215);
  padding-bottom: 0;
  margin-bottom: 0;
}

.slide p {
  color: rgb(234, 233, 233);
  padding-left: 30%;
  padding-right: 30%;
  padding-top: 0;
  margin-top: 0;
  line-height: 2;
}

.mySwiper {
  position: relative;
  background-image: url("small5.png");
  background-size: cover;
  background-position: center;
  opacity: 0; /* Start hidden */
  transform: translateY(100px); /* Start below the viewport */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Smooth transition */
}

.mySwiper.active {
  opacity: 1; /* Visible */
  transform: translateY(0); /* Slide in */
}

.mySwiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5) !important; /* Adjust the opacity as needed */
  z-index: 1; /* Ensure the overlay is above the image but below the text */
  backdrop-filter: blur(5px) !important; /* Adjust the blur radius as needed */
}

@media (max-width: 800px) {
  
  .heading-container h2 {
      font-size: 1.5rem;
  }

  .heading-container h3 {
      font-size: 3rem;
  }

  .section {
    flex-direction: column;
}

.image-hover:hover img {
  filter: none; /* Remove blur effect on hover for mobile */
}

.image-hover:hover .hover-button {
  opacity: 0; /* Keep button hidden on hover for mobile */
}

.image-hover .hover-button {
  display: block;
  font-size: 1.2rem;
  font-weight: bolder;
  padding: 0;
  margin: 0;
  opacity: 0; /* Start with the button hidden on mobile */
  transition: opacity 0.3s ease-in-out;
}

.image-hover .hover-button2 {
  display: none;
}

.text-content h1 {
    font-size: 1.5rem;
    text-align: center;
}

.text-content p {
    font-size: 0.9rem;
}

.image-content {
    margin-top: 20px;
}
.image-left, .text-content2 {
  max-width: 100%; /* Make each container take full width */
}

.text-content2 h1 {
  font-size: 1.5rem; /* Adjust font size for smaller screens */
}

.text-content2 p {
  font-size: 0.9rem; /* Adjust font size for smaller screens */
}

.section2 {
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center content horizontally */
}

.image-left, .text-content2 {
  max-width: 100%; /* Make each container take full width */
}

.text-content2 h1 {
  font-size: 1.5rem; /* Adjust font size for smaller screens */
}

.text-content2 p {
  font-size: 0.9rem; /* Adjust font size for smaller screens */
}

.about-section {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for responsive design */
  justify-content: center; /* Center content horizontally */
  align-items: flex-start; /* Align content to the start vertically */
  padding: 0;
  background-color: #f9f9f9; /* Light background color for contrast */
  padding-bottom: 150px;
  }
  
  /* Styles for the text container */
  .about {
  flex: 1; /* Allow the text container to grow */
  max-width: 100%;
  }

  .about p {
    font-size: 0.8rem; /* Adjust font size for smaller screens */
    margin-bottom: 0;
    color: #666; /* Lighter text color for contrast */
    padding: 0;
  }

  .image-about{
    display: none;
  }

  .slider {
    padding: 0;
    }

  .mySwiper h1{
    font-size: 1rem;
    padding: 0;
  }
}

/* Styles for devices with max-width of 300px */
@media (max-width: 600px) {

  .section2 {
    padding-bottom: 10%;
  }
  
  .text-content2 h1 {
    font-size: 1.2rem; /* Adjust font size for smaller screens */
    padding: 0;
  }
  
  .text-content2 p {
    font-size: 0.8rem; /* Adjust font size for smaller screens */
  }

  .text-content2 .two {
    font-size: 0.8rem; /* Adjust font size for smaller screens */
    padding: 0;
  }
  
  /* General styles for the about-section container */
  .about-section {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for responsive design */
    justify-content: center; /* Center content horizontally */
    align-items: flex-start; /* Align content to the start vertically */
    padding: 0;
    background-color: #f9f9f9; /* Light background color for contrast */
    margin: 0;
  }
  
  /* Styles for the text container */
  .about {
    flex: 1; /* Allow the text container to grow */
    max-width: 100%;
    padding: 10%;
  }
  
  .about h1 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333; /* Darker text color for contrast */
    font-size: 1.2rem; /* Adjust font size for smaller screens */
    padding: 0;
  }
  
  .about p {
    font-size: 0.8rem; /* Adjust font size for smaller screens */
    margin-bottom: 0;
    color: #666; /* Lighter text color for contrast */
    padding: 0;
  }
  
  .heading-container h2 {
    font-size: 2.3rem;
  }
  
  .heading-container h3 {
    font-size: 2rem;
    font-weight: bold;
  }
  
  .heading-container {
    bottom: 10%;
  }
  
  .text-content h1 {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .section {
    padding: 0;
    margin: 0;
  }
  
  .text-content p {
    font-size: 0.8rem;
    margin-bottom: 0;
  }
  
  .image-content {
    padding-top: 0;
  }
  
  .text-content2 h1 {
    font-size: 1.2rem;
  }
  
  .text-content2 p {
    font-size: 0.8rem; /* Adjust font size for smaller screens */
  }
  
  .googlmaps iframe {
    height: 200px; /* Adjust height for smaller screens */
    width: 100%; /* Ensure it doesn't overflow */
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any default padding */
  }
  
  .slide {
    height: 120px;
    padding-top: 20px;
    margin: 0;
  }
  
  .mySwiper h1, .mySwiper h2 {
    font-size: 0.8rem;
  }
  
  .mySwiper p {
    font-size: 0.57rem;
    padding-left: 20%;
    padding-right: 20%;
    margin: 0;
  }
  
  footer {
    align-items: left;
    text-align: left;
  }
  }
  

@media (min-width: 2000px) {
  .heading-container h2 {
    font-size: 850%;
  }

  .heading-container h3 {
    font-size: 6rem;
    font-weight: 600;
  }
  
  .section {
    display: flex;
    width: 100%;
    height: auto; /* Adjust height as needed */
    margin-bottom: 0; /* Space between sections */
    background-color: #f0f0f0;
  }
  
  .text-content {
    flex: 1;
    padding: 2rem;
    background-color: #f0f0f0; /* Background color for the text section */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }
  
  .text-content h1 {
    font-size: 4rem; 
    color: #333; 
    margin-bottom: 1rem;
    position: relative;
  }
  
  .text-content h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px; /* Thickness of the underline */
    width: 80%; /* Full width of the parent container */
    background-color: #333; /* Color of the underline */
    border-radius: 10px; /* Optional: Rounded corners */
  }
  
  .text-content p {
    font-size: 2rem; 
    color: #666; 
    line-height: 2;
  }  

  .section2 {
    display: flex;
    width: 100%;
    height: auto; /* Adjust height as needed */
    margin-bottom: 0; /* Space between sections */
    padding-top: 0;
    background-color: #e9e9e9;
  }

  .text-content2{
    flex: 1;
    padding: 2rem;
    background-color: #f0f0f0; /* Background color for the text section */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }

  .text-content2 h1 {
    font-size: 4rem; 
    color: #333; 
    margin-bottom: 1rem;
    position: relative;
  }

  .text-content2 h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px; /* Thickness of the underline */
    width: 80%; /* Full width of the parent container */
    background-color: #333; /* Color of the underline */
    border-radius: 10px; /* Optional: Rounded corners */
  }
  
  .text-content2 p {
    font-size: 2rem; 
    color: #666; 
    line-height: 2;
  }

  .about-section {
    display: flex;
    align-items: stretch;
    height: 100vh; /* Adjust this value as needed */
    padding-bottom: 30px;
  }
  
  .about {
   padding-bottom: 0;
   margin-bottom: 0;
  }
  
  .about h1 {
    font-size: 4rem; 
    color: #333; 
    margin-bottom: 1rem;
    position: relative;
  }
  
  .about h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px; /* Thickness of the underline */
    width: 80%; /* Full width of the parent container */
    background-color: #333; /* Color of the underline */
    border-radius: 10px; /* Optional: Rounded corners */
  }
  
  .about p {
    font-size: 2rem; 
    color: #666; 
    line-height: 2;
    margin-bottom: 0;
  }

  .about .image-about {
    display: block;
  }

  .googlmaps iframe {
    width: 100%; /* Make sure the iframe takes full width */
    border: 0; /* Remove any border */
    margin: 0; /* Ensure there's no margin */
    padding-top: 0; /* Ensure there's no padding */
    margin: 0;
  }

  .googlmaps {
    margin: 0;
    margin: 0;
    height: 200px;
  }
  .mySwiper {
    position: relative;
    background-image: url("small5.png");
    background-size: cover;
    background-position: center;
    height: 700px
  }
  
  .mySwiper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5) !important; /* Ensure the overlay is applied on mobile */
    z-index: 1; /* Ensure the overlay is above the image but below the text */
    backdrop-filter: blur(5px); /* Adjust the blur radius as needed */
  }
}

@media (max-width: 500px) {
  .section h1 {
    font-size: 2rem;
    text-align: left;
  }

  .section p {
    font-size: 1.2rem;
    font-weight: 200;
  }

  .section2 h1{
    font-size: 2rem;
  }

  .section2 p,
  .section2 .two {
    font-size: 1.2rem;
    font-weight: 200;
  }

  .about-section h1 {
    font-size: 2rem;
  }

  .about-section p {
    font-size: 1.2rem;
    font-weight: 200;
  }

  .about .twotwo {
    padding-bottom: 0;
  }

  .mySwiper {
    height: 350px;
  }

  .mySwiper::before {
    background: rgba(0, 0, 0, 0.5) !important; /* Ensure the overlay is applied on smaller screens */
  }

  .mySwiper h1 {
    font-size: 1.5rem;
    padding: 0;
    margin: 0;
  }

  .mySwiper h2 {
    font-size: 1.5rem;
  }
  
  .mySwiper p{
    font-size: .9rem;
    padding: 0;
    margin: 0;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 360px) {
  .mySwiper {
    height: 350px;
    padding: 0;
    margin: 0;
  }

  .mySwiper p {
    padding: 0;
    margin: 0;
    padding-right: 10px;
    padding-left: 10px;
  }
}