#instagram {
  width: 100px;
  height: auto;
  background-color: red;
  animation-name: example;
  animation-duration: 4s;
}

@keyframes example {
  from {background-color: red;}
  to {background-color: blue;}
}
.fa-instagram {
  background: #125688;
  color: white;
}

.h_iframe iframe {
  position:absolute;
  top:0;
  left:0;
  width:100%; 
  height:100%;
}
#VHeader{
    display: none;
  }
  #VHeader1{
    display: none;
  }
@media screen and (max-width: 800px) {
  #best{
      
      top:45px;
  }
  .button{
   height:50px;   
      
  }
  
  #VHeader{
    display: Block;
  }
 

}
@media screen and (min-width: 850px) {
  #VHeader1{
    display: Block;
  }
  #best{
      
      top:45px;
  }
  .button{
   height:50px;   
      
  }
  
 
 

}
.button {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    background-color: rgba(0,0,0,.3);
    /* background-image: url(../img/ButtonBG.png); */
    background-size: cover;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 16px;
    /* opacity: .5; */
    border-color: red;
    border border-style: s;
    border: 2px solid grey;
    
    width: 248px;
}
.button:hover {
  background-color: #18d26e;
}
/*.background-section {
  background-image: url("../img/intro-carousel/newImage3.webp");
  background-size: cover; 
  background-position: center; 
  
}
@media only screen and (max-width: 768px) {
  .background-section {
    background-image: url("../img/intro-carousel/newImage3-425x.webp"); 
    background-repeat: no-repeat;
    background-position: center center; 
  }
}
@media only screen and (max-width: 425px) {
  .background-section {
    background-image: url("../img/intro-carousel/newImage3-425x.webp"); 
    background-size:auto;
    background-repeat: no-repeat;
    background-position: center center;
  }
}*/

/* Styles for the popup */
.popup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
z-index:111;
    
}

.popup {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

h2 {
  margin-top: 0;
}

.inquire-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.inquire-btn:hover {
  background-color: #0056b3;
}


.continue-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.continue-btn:hover {
  background-color: #999;
}
.swipe-down-indicator {
    position: fixed; /* Fixed at the bottom */
    bottom: 10px; /* Distance from bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%);
    background-color: #f0f0f0; /* Background color */
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 18px; /* Increased font size */
    font-weight: bold; /* Bold text */
    color: #333; /* Darker text color for contrast */
    animation: bounce 2s infinite; /* Apply the bounce animation */
}


/* Bouncing animation keyframes */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-70px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}
.gallery-section {
    background-image: url('../images/gallery-background.jpg'); /* Path to the background image */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
    height: 500px; /* Set the height of the section */
    width: 100%; /* Full width */
    position: relative; /* Needed for absolute positioning of the link */
}

.gallery-section a {
    display: block; /* Makes the anchor tag behave like a block element */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-decoration: none; /* Optional: Removes underline from links */
}
.list_services {
  background-image: url('../images/services-background.jpg'); /* Replace with the actual path to your image */
    border: 2px solid red; /* Adjust the border width (2px) as needed */
background-size: cover; /* This will ensure that the background covers the entire section */
  background-position: center; /* This will center the image in the section */
}
@keyframes call-tab-bounce {
  0%, 100% {
    right: 50px;
  }
  50% {
    right: 40px; /* Adjust for desired bounce distance */
  }
}
#call-tab {
    position: fixed;
    right: 50px;
    top: 70%; /* Adjust this to position the tab vertically */
    background-color: #007bff; /* Background color */
    color: white; /* Text color */
    padding: 10px;
    cursor: pointer;
    transform: rotate(-90deg);
    transform-origin: right top;
    z-index: 1000;
     animation: call-tab-bounce 5s infinite; /* Adjust timing as needed */
}

#call-tab:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

.carousel-container {
    width: 100%; /* Full width of the parent element */
    height: auto; /* Responsive height based on the viewport */
    background-size: cover;
    background-position: center center;
    transition: background-image 1s ease-in-out;
}

/* Adjustments for smaller screens if needed */
@media (max-width: 768px) {
    .carousel-container {
        height: auto; /* Smaller height for smaller screens */
    }
    /* Other responsive adjustments if necessary */
}

#carouselContainer {
    cursor: pointer;
}

#carouselContainer {
    transition: background-image 0.5s ease-in-out;
}