body {
    margin: 0;
    padding: 0;
    font-family:'Times New Roman', Times, serif;
    background-color: #fffaf0;
        box-sizing: border-box;

}

* {
    box-sizing: border-box;
}


.navbar {
    background-color: white !important;
    color: white;
    background: url('./images/head.png') center/cover no-repeat;
}

.navbar-dark .navbar-nav .nav-link {
    color: #a39c6b;
    position: relative;
    font-size: 20px;
    border: 1px solid #a39c6b; 
    margin: 0px 15px;
    padding: 0px 2px;
}

.navbar img{
    width: 200px;
    height: 80px;
}




.navbar-dark .navbar-nav .nav-link.active {
    border-bottom: 2px solid  #a39c6b;
}

@media (max-width: 767px) {
    .navbar-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-grow: 1;
    }

    .navbar-nav .nav-item {
        position: relative;
        margin-top: 5px;
    }

    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background-color: #a39c6b;
        transition: width 0.3s ease, left 0.3s ease;
    }

    .navbar-nav .nav-link:hover::before {
        width: 100%;
        left: 0;
    }

    .contact-section {
        border: 2px solid #a39c6b;
        border-radius: 50px;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 600px) {
  .navbar-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-grow: 1;
}

.navbar-nav .nav-item {
    position: relative;
    margin-top: 5px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #a39c6b;
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
    left: 0;
}



.contact-section {
    border: 2px solid #a39c6b;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
}



/*************************************************************************/

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 40%; 
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 

}


@media (max-width: 767px) {
    .video-container {
        padding-bottom: 75%; 
    }
}

@media (max-width: 600px) {
  .video-container {
    padding-bottom: 70%; 
}

}

/***************************************************************/

.container-about {
    display: flex;
    flex-wrap: wrap;
    background: url('./images/about.png') center/cover no-repeat;
    min-height: 700px; 
    min-width:100%;

    
}

.container-about .content {
    padding: 20px;
    box-sizing: border-box;
    margin-top: 0px;
    margin:0px;
}

.container-about .content2 {
    
    padding: 20px;
    box-sizing: border-box;
    margin-top: 0px;

}

.container-about h1,.container-about h2, .container-about h3 {
   color: #a39c6b;
}

.container-about p{
    font-size: 25px;
}

@media (max-width: 767px) {
    .container-about .content {
        flex: 1 1 100%; 
    }.container-about p{
        font-size: 15px;
    }
  
}

@media (max-width: 600px) {
    .container-about .content {
        flex: 1 1 100%; 
    }.container-about p{
        font-size: 15px;
    }
}.container-about h1{
        margin-top: 50px;
    }
  


.vision-content {
    margin-top: 10px; 
    background-color: #a39c6b;
    /*margin-left: 20px;*/
    /*margin-right: 20px;*/
    border-radius: 10px;
    color: white;
}
.vision-content p {
    text-align: center;
    color: white;
}

@media (min-width: 768px) {
    .container-about .content {
        flex: 1 1 50%;
    }
}

@media (max-width: 600px) {
    .container-about .content {
        flex: 1 1 50%;
    }
}

/******************************************************/
/*
.carousel {
    position: relative;
    overflow: hidden;
  }
  
  .cards-container {
    display: flex;
    justify-content: center;
    transition: transform 0.5s ease;
  }
  
  .card {
    flex: 0 0 20%; 
    margin: 0 10px;
    transform: scale(0.8);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
  }
  
  .card.active {
    flex: 0 0 40%; 
    transform: scale(1);
    z-index: 2;
  }
  
  .card-content {
    padding: 20px;
    color: white;
  }
  
  .prev-button,
  .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  
  .prev-button {
    left: 10px;
  }
  
  .next-button {
    right: 10px;
  }
*/  

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .cards-container {
    display: flex;
    transition: transform 0.5s ease;
  }
  .card {
    flex: 0 0 auto;
    width: 300px; 
    margin: 0 10px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .card-content {
    padding: 15px;
  }
  .carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    color: #333;
    font-size: 18px;
  }
  .prev-button {
    left: 10px;
  }
  .next-button {
    right: 10px;
  }

  .carousel h3{
    margin-top: 500px;
  }


  /***************************************/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

:root {
  --primary: #ec994b;
  --white: #ffffff;
  --bg: #f5f5f5;
}




.swiper-slide {
  max-width: 500px; 
  margin: 0 40px;
  transition: 0.3s;
  overflow: hidden;
  background-color: transparent; 
  border: none;
  /*background-image: linear-gradient(to bottom , white 5% , #a39c6b 95%);*/

}

.card img {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 30px;
}

.card-content h2 {
 /* font-size: 1.5rem;*/
  margin-bottom: 10px;
  color: #a39c6a;
}

.card-content p {
  font-size: 1rem;
  color: black;
  /*line-height: 1.5;*/
}

#events{
  background: url('./images/EventBG.png') center/cover no-repeat;

}

/***************************************************************/
.all{
  background: url('./images/partner.png') center/cover no-repeat;

}

.customer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.customer{
  text-align: center; 
  color: #815e32; 
  margin-bottom: 20px; 
  font-size: 40px; 


}


.customer-logo {
  flex: 0 0 auto;
  margin: 10px; 
  max-width: 150px; 
  max-height: 150px; 
  transition: transform 0.3s ease; 
  margin-top: 30px;
  
}

.customer-logo img {
  width: 100%;
  height: auto;
}

.customer-logo:hover {
  transform: scale(1.1);
}


@media only screen and (max-width: 767px) {
  .customer h1 {
    margin-bottom: 100px;
  }
  /*.customer-logo{
    margin-top: 100px;
  }*/
  
}
@media only screen and (max-width: 600) {
  .customer h1 {
    margin-bottom: 250px;
}
/*.customer-logo{
  margin-top: 100px;
}*/
}
/**********************************************/
#Contact_Us {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: url('./images/FINAL.png') center/cover no-repeat;
  margin: 0;
  min-width: 100%;
}

.left {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column; 
  color: white;
  font-size: 20px;
  margin-left: 80px;
}

.right {
  flex: 1;
  text-align: right;
  margin-right: 0px;
}

.icon {
  margin-right: 10px;
}

.social-icons-container {
  display: flex; 
  flex-wrap: wrap;
  margin-top: 30px;
  /*background-image: linear-gradient(to right , #4b4421 30%, #beb792);*/
  padding: 10px 10px;
  margin-left: 0px;
}

.social-icons {
  display: flex;
  margin-top: 10px;
}

.social-icons a {
  margin-right: 10px;
  text-decoration: none;
  color: white;
  font-size: 15px;
}

.social-icons a:hover {
  color: #beb792;
}

.right img {
  max-width: 80%; 
  height: auto; 
  margin: 0; 
}

@media only screen and (max-width: 768px) {
  .right img {
    max-width: 400px; 
  }
}
@media (max-width: 600px) {
  .right img{
    max-width: 250px;
  }
}


/*******************************************************/

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-in-bottom {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-in-left.active,
.slide-in-bottom.active {
  opacity: 1;
  transform: translateX(0) translateY(0);
}


#allAbout {
  /*background: url('./images/about.png') center/cover no-repeat;*/
  min-height: 700px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  color: #a39c6b;
  animation: moveInLeft 1.5s ease-out forwards;
  /*min-width:100%;*/
}

#allAbout h1,
#allAbout h2,
#allAbout h3 {
  color: #a39c6b;
  text-align: center;
}

#allAbout p {
  font-size: 25px;
  color: black;
  line-height: 1.6;
}

.vision {
  margin-top: 30px;
  border-top: 2px solid #ccc;
  padding-top: 20px;
  animation: moveInLeft 1.5s ease-out forwards;
  margin-right:0px;
}

.vision h2 {
  color: #a39c6b;
}

.vision p {
  color: black;
  line-height: 1.6;
  text-align: center;
}

.our-mission {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  color: black;
  font-size: 25px;
  line-height: 1.6;
  animation: moveInBottom 1.5s ease-out forwards;
}

.our-mission p {
  margin-bottom: 20px;
}

.our-mission strong {
  color: #a39c6b;
}

@media only screen and (max-width: 767px) {
  #allAbout p {
    font-size: 15px;
  }
  .our-mission {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600) {
  #allAbout p {
    font-size: 15px;
  }
  .our-mission {
    font-size: 15px;
  }
}
/*******************************************************/

.all{
  background: url('./images/partner.png') center/cover no-repeat;

}

.partner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.partner{
  text-align: center; 
  color: #815e32; 
  margin-bottom: 20px; 
  font-size: 40px; 


}


.partner-logo {
  flex: 0 0 auto;
  margin: 10px; 
  max-width: 150px; 
  max-height: 150px; 
  transition: transform 0.3s ease; 
  margin-top: 30px;
  
}

.partner-logo img {
  width: 100%;
  height: auto;
}

.partner-logo:hover {
  transform: scale(1.1);
}


/***********************GALLERY***************************/

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 300px; 
  height: 300px; 
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item:hover {
  transform: scale(1.1);
}

.gallery-item:hover .img-overlay {
  opacity: 1;
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/**********************************************/

footer {
  background-color: white;
  color: #815e32;
  padding: 10px 0;
  text-align: center;
  bottom: 0;
  width: 100%;
  margin-top: 2px;
}
.powered-by {
  font-size: 14px;
}
@media (max-width: 768px) {
  .powered-by {
      font-size: 12px;
  }
}
@media (max-width: 600px) {
  .powered-by {
      font-size: 12px;
  }
}











  .slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    background: url(images/EventBG.png) no-repeat 100% ;
  }
  
  .slider h1{
    color: #ad9900;
    font-size: 50px;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  .slider img {
    width: 60%;
    height: 60%;
    display: none;
    padding-bottom: 20px;
  }