body {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Playfair Display", serif;
      
    }

.hero-image-wrapper {
  position: relative;
  background-image: url('../img2.jfif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 180px;
  color: white;
  z-index: 1;
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 0;
}

.hero-image-wrapper * {
  position: relative;
  z-index: 2;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  color: white;
  padding: 10px 75px;
  height: 80px;
  font-family: "Playfair Display", serif;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navbar Section  */

.banner {
  font-size: 30px;
  background-color: rgba(28, 28, 28, 0.85); 
  color: white;
  padding: 30px 40px;
  margin-top: 40px;
  text-align: center;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  width: 300px;
}

.logo-circle {
  width: 140px;
  height: 140px;
  margin: 0 auto; 
  border-radius: 50%;
  overflow: hidden; 
  border: 3px solid white; 
}


.login span {
  cursor: pointer;
}

.overlay-login {
  width: 100%;
  position: fixed;
  top: 0%;
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  z-index: -1;
  opacity: 0;
  transition: 1s;
}

.login .btn {
  color: #fff;
  cursor: pointer;
}

.showoverlay {
  opacity: 1;
  z-index: 1;
}


.loginform {
  width: 350px;
  background-color: white;
  padding: 30px 20px;
  position: absolute;
  left: 50%;
  transition: 2s;
  top: -50%;
  box-shadow: 0px 0px 10px 3px #000;
  transform: translate(-50%, -50%);
  z-index: 999;
  color: #000;
}

.showloginform {
  top: 50%;
}

.loginform input {
  width: 100%;
  height: 35px;
  margin-bottom: 15px;
  color: #000;
}


.loginform button {
  background-color: black;
  color: white;
  padding: 10px 15px;
}

.loginform span {
  position: absolute;
  right: 0px;
  width: 30px;
  color: white;
  line-height: 30px;
  height: 30px;
  cursor: pointer;
  background-color: green;
  text-align: center;
  top: 0px;
}

/* /* Navbar Section  */
#menuList {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding-right: 20px;
}

#menuList li a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  padding: 5px 0;
  display: inline-block;
  transition: color 0.3s ease;
}

#menuList li a span {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background-color: #C09433;
  transition: width 0.4s ease-in-out;
  
}

#menuList li a:hover span {
  width: 100%;
}

#menuList li a:hover {
  color: #C09433;
}





/* Hero content area */
.custom-section {
  padding-top: 100px;
  color: rgb(68, 66, 66);
}

.text-side h2 {
   font-size: 6em;
   letter-spacing: 0px;
   font-family: "Playfair Display", serif;
    font-weight: 300;
    text-transform: none;
    color: #fff;
    line-height: 0.9em;
    text-align: center;
    padding-bottom: 20px;
     /* opacity: 0;
   animation: fadeIn 1s ease-in forwards;
   animation-delay: 0.5s;  */
}

.text-side p{
  line-height: 1.4em;
  text-align: center;
  color: #fff;
  font-size: 22px;
  padding-top: 20px;
  
}



.text-side button {
  display: block;
  margin: 20px auto; 
  padding: 15px 40px;
  line-height: 1.4em;
  text-align: center;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
   /* opacity: 0;
   animation: fadeIn 1s ease-in forwards;
   animation-delay: 0.5s;  */
}


.text-side {
  align-items: center;
} 



@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.slide-down {
  animation: slideFromTop 1s ease-out forwards;
}

/* .slide-down h2,
.slide-down p,
.slide-down .button {
  opacity: 0;
  transform: translateY(-30px);
  animation: slideFromTop 1s ease-out forwards;
} */

.slide-down h2 {
  animation-delay: 0.2s;
}

.slide-down p {
  animation-delay: 0.4s;
}

.slide-down .button {
  animation-delay: 0.6s;
}

 
.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #C09433;
  color: #fff;
  padding: 62px 40px;
  border-top: 1px solid #b97f14;
  border-bottom: 1px solid #b97f14;
}

.info-box {
  flex: 1;
  min-width: 250px;
  text-align: left;
  padding: 0 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.info-box:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
  }

  .info-box {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }

  .info-box:last-child {
    border-bottom: none;
  }
}


.icon-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  content: "\f3b3";
}

.icon-heading i {
  font-size: 20px;
  color: #000;
  padding-left: 30px;
}

.icon-heading h3 {
  font-size: 1.5em;
  font-weight: bolder;
  font-family: "Playfair Display", serif;
  text-transform: none;
  line-height: 1.1;
  text-align: left;
  color: #fff;
  margin: 0;
  padding-left: 10px;
   opacity: 0;
   animation: fadeIn 1s ease-in forwards;
   animation-delay: 0.5s; 
}

.info-box p {
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  padding-left: 60px;
   opacity: 0;
   animation: fadeIn 1s ease-in forwards;
   animation-delay: 0.5s; 
} 

/* Next Section Start  */

.container-content {  
  width: 1170px;
  padding-top: 70px;
  margin: 0 auto 5rem;
  z-index: 9;
  position: relative;

}

.content-home h2 {
  color: #000;
  padding-top: 80px;
  margin-top: 0px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  text-transform: none;
  font-size: 2em;
  margin-bottom: 15px;
  line-height: 1.1;
  padding-left: 50px;
  
}

.content-home p {
   margin: 0 0 10px;
   padding-bottom: 80px;
   padding-left: 50px;
    opacity: 0;
   animation: fadeIn 1s ease-in forwards;
   animation-delay: 0.5s; 
} 



/* Slider Section  */

.section {
  position: relative;
  background-image: url('../img.jpg'); 
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(242, 209, 138, 0.6);
  top: 0;
  left: 0;
  z-index: 1;
}
 /* Card Start  */

.content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.content h3 {
  padding-left: 20px;
}

.card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  width: 530px;
  /* height: 300px; */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  
  
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.card h3 {
  font-size: 22px;
  margin: 15px 0 5px;
  font-family: "Playfair Display", serif;
  color: #333;
}

.card p {
  font-size: 15px;
  color: #555;
  padding: 0 15px 20px;
  font-family: sans-serif;
}

/* Card fade-in animation */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}



/* Map Section Start  */
  .map-content {
    height: inherit;
    width: 100%;
    z-index: 3;
    padding-top: 50px;
    top: 0;
    text-align: center;
    margin-bottom: 150px;
    padding-top: 150px;
   
  }

  .map-home h2 {
    color: #000;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    text-transform: none;
    font-size: 2em;
    line-height: 1.1;
     /* opacity: 0;
   animation: fadeIn 1s ease-in forwards;
   animation-delay: 0.5s;  */
  }

.map-home .btn {
  background: transparent;
  border: 2px solid #000;
  border-radius: 0px;
  color: #000;
  padding: 15px 40px;
  white-space: normal;
  text-transform: uppercase;
  transition: 0.3s ease;
  font-weight: 500;
  margin: 2em 0em;
   /* opacity: 0;
   animation: fadeIn 1s ease-in forwards;
   animation-delay: 0.5s;  */
  }

  /* Footer section  */

footer {
  background: #222222;
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 60px; 
}

.row {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;    
  margin: 0 auto;        
}

.col {
  flex: 1 1 200px; 
}

.col h3 {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.5em;
  font-family: "Playfair Display", serif;
  text-transform: none;
  line-height: 1.3;
  margin-bottom: 15px;
}

.col p {
  margin: 6px 0;
  font-size: 20px;
  line-height: 1.5;
}


@media (max-width: 768px) {
  .row {
    flex-direction: column;
    align-items: center;
  }

  .col {
    max-width: 100%;
  }
}

.footer-bottom {
  display: flex;
  padding: 20px 60px;
  color: #fff;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-left p {
  font-size: 0.9em;
  margin: 0;
  padding-left: 40px;
}

.footer-center {
  display: flex;
  gap: 20px; 
  
}

.footer-center a {
  display: inline-block;
  color: #fff;
  background-color: #333;
  border-radius: 50%;
  padding: 10px;
  align-items: center;
  width: 36px;
  height: 36px;
  line-height: 16px;
  font-size: 14px;
  transition: background 0.3s;
}

.footer-center a:hover {
  background-color: #666;
}

.footer-right {
  display: flex;
  gap: 8px;
  align-items: right;
}

.footer-right img {
  max-height: 40px;
  width: auto;
}

.footer-right span {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}
