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;
  }
}














/* Base styles — already defined */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-box {
  background: white;
  max-width: 900px;
  width: 90%;
  margin: 5% auto;
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
}

.modal-banner-mobile {
  display: none;
  position: relative;
  width: 100%;
  height: 120px;
  /* rectangular, short banner */
  overflow: hidden;
}

.modal-banner-mobile .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-banner-mobile .banner-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 80px;
  height: auto;
  opacity: 0.8;
  /* transparent */
}

.modal-left {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.modal-left h2 {
  margin-bottom: 20px;
}

.modal-left input,
.modal-left textarea {

  margin-bottom: 15px;
  padding: 12px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.input-with-button {
  position: relative;
}

.input-with-button input {

  padding-right: 100px;
  /* space for button */
}

.input-with-button button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  padding: 6px 10px;
  font-size: 13px;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.submit-btn {
  background: black;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#otp-section {
  margin-top: 110px;
}

.modal-right {
  width: 50%;
}

.modal-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
  color: #744c4c;
}

.btn {
  padding: 10px;
  background-color: Gray;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: -3px;
  margin-left: 20px;
}

.phone-wrapper {
  display: flex;
  gap: 10px;
}

.country-code-wrapper {
  display: flex;
  gap: 8px;
  /* Adds spacing between select and input */
  align-items: center;
  max-width: 100%;
}

.country-code-select {
  max-height: 150px;
  overflow-y: auto;
  width: 100px;
  height: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 6px 8px;
  box-sizing: border-box;
  -webkit-transition: none !important;
  transition: none !important;
}

.country-code-select option {
  white-space: nowrap;
  /* Prevent wrapping */
}

.phone-input {
  width: 127%;

}

/* For Android Devices (commonly 360px wide, like Pixel phones) */
@media only screen and (max-width: 360px) {
  .phone-input {
      width: 120%;
  }

  .close {
      top: 120px;
      left: 93%;
  }

}

/* For iPhones with viewport width ~428px (like iPhone 12 Pro Max) */
@media only screen and (min-width: 361px) and (max-width: 428px) {
  .phone-input {
      width: 135%;
  }

  .close {
      top: 125px;
      left: 93%;
  }
}

/* Responsive - Mobile View */
@media (max-width: 767px) {


  .modal-box {
      flex-direction: column;
      width: 95%;
  }

  .modal-left {
      width: 100%;
      padding: 20px;
      text-align: center;
  }

  #otp-section {
      margin-top: 30px;
  }

  .modal-right {
      display: none;
  }

  .modal-banner-mobile {
      display: block;
  }

  .modal-left h2 {
      margin-top: 0;
  }

  .input-with-button {
      position: relative;
      display: flex;
      align-items: center;
      margin-bottom: 15px;
  }

  .btn {
      margin-left: -2px;
  }

  .input-with-button input {
      width: 100%;
      padding-right: 120px;
      height: 44px;
      font-size: 14px;
      border-radius: 6px;
      box-sizing: border-box;
  }

  .input-with-button button {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      padding: 8px 14px;
      /* Adjusted padding */
      font-size: 13px;
      background: #333;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      line-height: 1;
      height: 30px;
      /* Match vertical size better */
  }
}

/* Toast CSS */
.toast {
  visibility: hidden;
  min-width: 250px;
  max-width: 90%;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

/* Added custom-dropdown styles */
.custom-dropdown {
  position: relative;
  /* width: 280px;
  font-family: sans-serif;
  user-select: none;
   flex: 1; */

}

.custom-dropdown .selected {
  /* background: #fff;
border: 1px solid #ccc;
padding: 10px 0px;
cursor: pointer;
border-radius: 5px;
height: 50px;
width: 300px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; */
  flex: 0.6;
  background: #fff;
  border: 1px solid #ccc;
  padding: 0 10px;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}



.custom-dropdown .dropdown-list {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  max-height: 200px;
  /* Make it scrollable */
  overflow-y: auto;
  z-index: 999;
  border-radius: 5px;
  display: none;
  /* Hidden by default */
}

.custom-dropdown .dropdown-list li {
  padding: 10px 15px;
  cursor: pointer;
}

.custom-dropdown .dropdown-list li:hover {
  background: #f0f0f0;
}

.phone-flex-wrapper {
  display: flex;
  align-items: center;
}

.phone-flex-wrapper input {
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
  max-width: 300px;
  align-items: center;
}

/* Specific widths */
.country-code-input {
  cursor: pointer;
  background-color: #f9f9f9;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  padding: 0 10px;
  box-sizing: border-box;
}


#name {
  width: 100%;
}

#email {
  width: 100%;
}

@keyframes blink {
  0% {
      opacity: 2;
  }

  50% {
      opacity: 0.6;
  }

  100% {
      opacity: 2;
  }
}

.blink-button {
  animation: blink 1s infinite;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .button-wrapper {
      width: 100%;
  }

  .enquire-btn {
      width: 80%;
      max-width: 300px;
      text-align: center;
  }
}

@media (max-width: 500px) {
  .button-wrapper {
      width: 100%;
  }

  .enquire-btn {
      width: 80%;
      max-width: 300px;
      text-align: center;
      margin-top: 30px;
  }
}































 
/* 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;
  }
}
