body{
font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.navi{
  background: linear-gradient(90deg, rgba(140,157,51,1) 0%, rgba(88,103,7,1) 50%, rgba(116,135,13,1) 100%);
  position: sticky !important;
    z-index: 99;
}

.bg-black{
  background-color: black;
}

.hero-bg{
  background: url(https://images.pexels.com/photos/3255761/pexels-photo-3255761.jpeg?auto=compress&cs=tinysrgb&w=600);

}
/* Base Styles for Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video Styling */
.hero-vdo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop Layout: Video Left, Text Right */
@media (min-width: 449px) {
  .hero .row {
      display: flex;
      align-items: center;
  }

  .video-container {
      flex: 1;
  }

  .text-container {
    background: url();
      flex: 1;
      padding: 2rem;
  }
}

/* Mobile Layout: Fullscreen Video Background */
@media (max-width: 448px) {
  .hero {
    position: relative;
    width: 100%;
    height: 77vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  
  .text-container{
    display: none;
  }

  

  
  
}

  
/* Overlay Text Styling */
.hero-overlay {
  position: relative;
  z-index: 2; /* Places the text above the video */
  color: white;
  text-align: center;
  padding: 0 15px; /* Add some padding for mobile responsiveness */
}

.hero-overlay h4 {
  font-size: 2rem; /* Adjust font size for larger screens */
  margin-bottom: 1rem;
}

.hero-overlay button {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .hero-overlay h4 {
    font-size: 1.5rem;
  }

  .hero-overlay button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

 

  /* mid-image */
  .mid-img{
    background-image: url(../images/mid-sec-bg.jpg);
  height: 70vh;
  display: flex;
  flex-direction: column;
justify-content: center;
align-items: center;
color: white;
}


/* card */
.card {
    position: relative; /* necessary for z-index */
    transition: all 0.3s ease-out; /* smooth transition */
  }
  
  .card:hover {
    transform: scale(1.1); /* scale up on hover */
    transform-origin: center; /* scale from center */
    z-index: 1; /* bring card to front */
  }
  
  .card:hover::after {
    content: ""; /* create a pseudo-element */
    position: absolute; /* position it absolutely */
    top: 0; right: 0; bottom: 0; left: 0; /* cover entire card */
    transform: scale(1.1); /* scale up the pseudo-element */
    transform-origin: center; /* scale from center */
  }

/* Swiper Slider Styles */

/* General Swiper Container */
.swiperjs {
  padding: 10px !important;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}  
 /* /contact  */
 .contact-bg{
  background-image: url(../images/contact-bg0.jpeg);
  background-repeat: no-repeat;
  background-size: cover; /* Ensures the image covers the entire area */
  background-position: center; /* Centers the image */
  height: 100%;
  width: 100%;
 }

 .cbg{
  background-image: url(../images/contact-bg.jpg);
  background-repeat: no-repeat;
  object-fit: cover;
  height: 100%;
  width: 100%;
  background-size: cover; /* Ensures the image covers the entire area */
  background-position: center; /* Centers the image */
 }


  
/* variables */

.rounded-50{
  border-radius: 50%;
}
.icon-color{
  color: #ffffff;
  font-size: xx-large;
}

p{
  color: gray;
  font-size: small;
}
  .bg-blue{
    background: linear-gradient(90deg, rgba(140,157,51,1) 0%, rgba(88,103,7,1) 50%, rgba(116,135,13,1) 100%);
  }
  
  .text-justify{
    text-align:justify;
    word-spacing:-3px;
  }
  .px-100{
    padding: 0 100px 0 100px;

  }

.py-100{
    padding: 100px 0 100px 0;
    }
    .py-50{
        padding: 50px 0 50px 0;
    }

    .w-35{
        width: 35px;
    }
    .h-35{
    height: 35px;
    }
    .w-70{
        width: 70px;
    }
    .h-70{
    height: 70px;
    }
    
    /* footer */
  .footer{
    color: white;
    font-size: smaller;
    background-color: black;
    text-decoration: none !important;
  }
  .footer a{
    color: white;
    text-decoration: none;
    }

    .footer a:hover{
      text-decoration: underline;
  }

  /* Wave-effect */
  .wave-sec {
    /* margin: auto; */
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    /* overflow: auto; */
    background: linear-gradient(315deg, rgb(140,157,51,1) 3%, rgb(88,103,7,1) 38%, rgb(173, 208, 59) 68%, rgb(116,135,13,1) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}

/* wave-2 */
.wave-2 {
  margin: auto;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: auto;
  background: linear-gradient(315deg,  rgb(160, 204, 30) 38%, rgb(122, 234, 226) 68%, rgb(204, 220, 64) 98%);
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
  color: black;
}

@keyframes gradient {
  0% {
      background-position: 0% 0%;
  }
  50% {
      background-position: 100% 100%;
  }
  100% {
      background-position: 0% 0%;
  }
}

.wave {
  background: rgb(255 255 255 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 12em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.8;
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.9;
}

@keyframes wave {
  2% {
      transform: translateX(1);
  }

  25% {
      transform: translateX(-25%);
  }

  50% {
      transform: translateX(-50%);
  }

  75% {
      transform: translateX(-25%);
  }

  100% {
      transform: translateX(1);
  }
}
    
/* neon text animation */
.neon-text {
  
  color: #fff;
  text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  0% {
      text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
  }
  100% {
      text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
  }
}

.bg-gray{
  background-color: #605F5B;
}

/* contact-us */
/* From Uiverse.io by Smit-Prajapati */ 
.orange {
  color: #FE0000;
}

.form-container {
  max-width: 700px;
  margin: 30px;
  /*background-color: #001925;*/
  background-color:rgb(0 25 37 / 0.6);
  padding: 30px;
  border-left: 5px solid #FE0000;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  
}

.heading {
  display: block;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.form-container .form .input {
  color: #87a4b6;
  width: 100%;
  background-color: #002733;
  border: none;
  outline: none;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  border-left: 1px solid transparent;
}

.form-container .form .input:focus {
  border-left: 5px solid #FE0000;
}

.form-container .form .textarea {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  background-color: #013747;
  color: #FE0000;
  font-weight: bold;
  resize: none;
  max-height: 150px;
  margin-bottom: 20px;
  border-left: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.form-container .form .textarea:focus {
  border-left: 5px solid #FE0000;
}

.form-container .form .button-container {
  display: flex;
  gap: 10px;
}

.form-container .form .button-container .send-button {
  flex-basis: 70%;
  background: #FE0000;
  padding: 10px;
  color: #001925;
  text-align: center;
  font-weight: bold;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.form-container .form .button-container .send-button:hover {
  background: transparent;
  border: 1px solid #FE0000;
  color: #FE0000;
}

.form-container .form .button-container .reset-button-container {
  filter: drop-shadow(1px 1px 0px #FE0000);
  flex-basis: 30%;
}

.form-container .form .button-container .reset-button-container .reset-button {
  position: relative;
  text-align: center;
  padding: 10px;
  color: #FE0000;
  font-weight: bold;
  background: #001925;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  transition: all 0.2s ease-in-out;
}

.form-container .form .button-container .reset-button-container .reset-button:hover {
  background: #FE0000;
  color: #001925;
}