mobile-banner {
  display: none;
}

/* Show desktop banner only on larger screens (like desktop) */
@media (min-width: 768px) {
  .desktop-banner {
      display: block;
  }
  .mobile-banner {
      display: none;
  }
}
#logosmall{
  width: 200px !important;
}
@media only screen and (max-width: 768px) {
  #smallhide {
   display: none !important;
   margin-right:0;
   background-color: #fff;
   margin-bottom: -10%;
  }
  #smallmid{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

  }
  #logosmall{
    width: 200px !important;
    margin-left: -50px;
  }

}


  

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-three__single {
  min-width: 33.33%; /* Show 3 items at a time by default */
  box-sizing: border-box;
  padding: 10px;
}

.gallery-three__single img {
  width: 100%;
  height: auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Mobile view - Show 1 item at a time */
@media (max-width: 768px) {
  .gallery-three__single {
      min-width: 100%; /* Show only 1 item on mobile */
  }

  /* Adjust image height for smaller screens */
  .gallery-three__single img {
      height: 300px;
  }
}
    





.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.logo-small {
  width: 200px;
  margin-left: -5%;
}

.navbar-navigation {
  display: flex;
  align-items: center;
  margin-left: -100px;
}

.nav-link:hover,
.nav-link:focus {
  background-color: #003580;
  color: white !important; /* Ensure text color changes to white on hover */
  border-radius: 10px;
}

.navbar-icon {
  margin-left: -10%;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  color: rgb(28, 56, 99);
  font-size: 16px;
  line-height: 29px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
  padding: 10px 15px;
  margin: 0 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link:hover,
.nav-link:focus {
  background-color: #003580;
  color: white;
  border-radius: 10px;
}

.navbar-icon .fa-2x {
  transition: filter 0.3s ease-in-out;
}

.navbar-icon:hover .fa-2x {
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.9));
}

.navbar-icon .fa-phone-volume {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.navbar-hamburger {
  display: none;
  cursor: pointer;
  margin-left: 10px;
}

@media (max-width: 1600px) {
  /* Styles for desktop 13-14 inch screens */
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }

  .navbar-navigation {
    margin-left: -100px;
  }
}

@media (max-width: 430px) {
  /* Styles for iOS phones */
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 9%;
  }

  .logo-small {
    width: 50%;
  }

  .navbar-navigation {
    display: none;
    flex-direction: column;
    width: 150%;
    margin-top: 3%;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: white;
  }

  .navbar-navigation.visible {
    display: flex;
  }

  .navbar-hamburger {
    display: block;
  }

  .navbar-icon {
    margin-left: auto;
    margin-right: 5%;
  }
}



.navbar-icon {
  position: fixed; /* Keep this as fixed to stay in view while scrolling */
  top: 38px; /* Adjust this value to move it down from the top */
  right: 55px; /* Adjust this value to move it in from the right */
  z-index: 1000; /* Ensure it stays on top of other elements */
}
.navbar-icon i {
  color: white; /* Change the color of the icon */
}



@media (max-width: 600px) {
  .navbar-icon {
    top: 20px; 
  }
}



 
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
 
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  text-align: center;
}
 
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
 
.close:hover,
.close:focus {
  color: black;
  cursor: pointer;
}
 
/* Form styling */
form {
  display: flex;
  flex-direction: column;
}
 
label {
  margin-top: 10px;
  text-align: left;
}
 
input, textarea {
  margin-top: 5px;
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}
 
button {
  padding: 10px;
  background-color: #526d4d;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
 
button:hover {
  background-color: #385233;
}
 
/* Responsive adjustments */
@media (max-width: 600px) {
  .modal-content {
    width: 95%;
  }
}

.whatsapp-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: black; /* WhatsApp green color */
  color: white;
  font-size: 24px;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-icon:hover {
  background-color: white; /* Slightly darker green on hover */
}

/* Hide table by default */
#customContainer {
  display: none;
}

/* Show table only on mobile view */
@media screen and (max-width: 768px) {
  /* Container for centering and background color */
  #customContainer {
      background-color: black;
      color: #fff; /* Ensuring text color is visible */
      display: flex;
      justify-content: center;
      align-items: center;
      height: 60vh;
      flex-direction: column;
  }

  /* Table styling */
  #customTable {
      width: 90%; /* Adjust width as needed */
      margin: 0 auto;
      border-collapse: collapse;
      text-align: center;
      background-color: black;
  }

  #customTable th, #customTable td {
      padding: 15px;
      border: 1px solid #ddd;
      font-size: 12px;
      text-align: center;
      color: #fff; /* Ensuring text color is visible */
  }

  #customTable th {
      background-color: #526d4d;
  }

  /* Button styling */
  #btn {
   
      width: 100px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #526d4d;
      color: #fff;
      border: none;
      cursor: pointer;
  }
}
