@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+Display:wght@300&family=Rubik:wght@400;500;700&display=swap");



.header-background {
  /* background-image: url('image/safari_banner1.jpg'); */
  background-size: cover; /* Ensures the image covers the entire container */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
}

@media (max-width: 768px) {
  .header-background {
    background-position: center top; /* Adjust the position on smaller screens if needed */
  }

  .menu {
    flex-direction: column; /* Stack links vertically */
    gap: 2px; /* Reduce gap between links */
  }

  .hide {
    display: none; /* Hide the menu initially */
  }

  .show {
    display: flex; /* Show the menu when toggled */
  }
}

.nav-link {
  @apply text-white text-lg px-4 py-2 rounded-full hover:bg-white hover:text-green-900 transition;
}

.active-link {
  @apply text-gray-900 text-lg px-4 py-2 bg-white rounded-full hover:bg-white hover:text-green-900 transition;
}

.drawer-link {
  @apply text-lg px-4 py-2 hover:bg-green-100 rounded transition;
}

/* Add this to style.css if not using Tailwind's transitions */
.sticky-icon:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}



.form-container {
    max-width: 500px;
    margin: auto;
}    

.form-container {
    opacity: 0;
    transform: translateY(10px); 
    transition: opacity 0.7s ease, transform 0.7s ease; 
  }
  

  .form-container.open {
    opacity: 1; 
    transform: translateY(0); 
  }
  
  .cursor-pointer {
    cursor: pointer;
  }
  
  .hidden {
    display: none;
  }
  

  @media (max-width: 1024px) { .menu { display: none; } }
  


:root {
  --light: #ffffff;
  --dark: #000;
}
body {
  font-family: "Rubik", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h3 {
  font-family: "Noto Serif Display", serif;
  font-size: 2.3rem;
  font-weight: 300;
  text-align: center;
}
a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 400;
  transition: 0.3s ease-in;
  border-bottom: 1px solid transparent;
  margin-bottom: 0.5rem;
  display: inline-flex;
}
/* a:hover {
  border-bottom: 1px solid var(--dark);
} */
ul {
  list-style-type: none;
  padding: 0;
}
button {
  appearance: none;
  border: 0;
  background: transparent;
}
.flex {
  display: flex;
}
.footer_video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  border: none;
}

.c-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;

}

.f-from {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 400px);
  border-bottom: 1px solid var(--dark);
}

.i-input {
  padding: 0.75rem 0;
  border: none;
  background: none;
  font-weight: 500;
  transition: border 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 0;
  width: 100%;
  font-size: 1.05rem;
  font-weight: bolder;
}
input:focus {
  outline: none;
}
input::placeholder {
  color: var(--dark);
}
@media (min-width: 675px) {
  .layout {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 4rem;
  }
  .w-50 {
    width: 50%;
  }
  .w-25 {
    width: 25%;
  }
}
form {
  position: relative;
}
svg {
  margin: 0.5rem;
}
.c-2 {
  margin-top: 3.5rem;
}
.footer_copyright {
  color: var(--light);
  color: #000;    
  
}

.bg-first{
  background-color: #F2EFEB;
}

.bg-second{
  background-color: #94d5cb42
  ;
}

.bg-third{
  background-color: #fbf8f3;
}


.enquiry-button{
  background-color: rgb(86 86 86) ;
}