@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Host+Grotesk', sans-serif;
  background-color: black;
  overflow-x: hidden;
}
  /* untility Classes */

 :root{
  --padding-inline-section1:100px;
 }
h1{
  color: white;
  font-size: 7rem;
  font-weight: 400;
  text-transform: uppercase;
}
h2{
  color: white;
}
p {
  font-family: 'Poppins';
  font-size: 1.2rem;
  color: white;

}
a{
  text-decoration: none;
  display: inline-block;
  color: white;
}
ul{
  list-style: none;
}
span{
  color: #00ff00;
  font-weight: 700;
}
.container{
  padding-inline: var(--padding-inline-section1);
  overflow: hidden;
}
.flex{
  display: flex;
  align-items: center;
}
  /* untility Classes */

  
/* navbar *//* navbar *//* navbar *//* navbar *//* navbar *//* navbar */
/* whatsapp button *//* whatsapp button *//* whatsapp button *//* whatsapp button *//* whatsapp button */
.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  /* border: 0.5px solid #ffffff; */
  background: #000000; /* Black background */
  color: #00ff00;      /* Neon green */
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 16px;
  box-shadow:0 3px 3px #00ff00;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hover effect */
.whatsapp-btn:hover {
  background: #00ff00;
  color: #fcfcfc;
  transform: scale(1.08) translateY(-3px);
  /* box-shadow: 0px 6px 15px rgba(0,255,0,0.5); */
  box-shadow:0 3px 3px #fefffe;
}
.whatsapp-btn span:hover{
  color: white;
}
.whatsapp-btn span:focus {
  color: white;
}
/* Focus effect */
.whatsapp-btn:focus {
  outline: none;
  box-shadow:0 3px 3px #00ff00;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.whatsapp-btn {
  animation: float 2s infinite;
}
/* whatsapp button *//* whatsapp button *//* whatsapp button *//* whatsapp button *//* whatsapp button */
.dropmenu-icn{
  display: none;
}
nav {
  background-color: #020202;
  position: fixed;
  padding: 20px 0px;
  top:0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom:0.1px solid #00f000;
}
.main-nav{
  justify-content: space-between;
  left: 0;
  right: 0; /* prevents overflow */
  width: 100%;
}
.company-logo img{
  width: 200px;
}
  
.nav-link {
  flex-basis: 1050px;
}

.nav-link ul{
  justify-content: end;
  gap: 40px;
}
.hover-link{
  font-size:1.2rem ;
  position: relative;
}
  /* hover code */
.hover-link:hover{
  color: #00ff00;
  transition: 0.3s ease-out;
}
.hover-link::before{
  content: "";
  position: absolute;
  width: 0;
  height: 1.5px;
  bottom: -5px;
  left: 0;
  background-color: #00ff00;
  transition: 0.3s ease-in-out;
}
.hover-link:hover::before{
  width: 100%;
}
.bookavisit{
  font-size: 1.2rem;
  background-color: #1fad1f;
  border-radius: 3px;
  font-weight:500 ;
  padding:.4vw 1.5vw;
  box-shadow: 0 0 2px #ffffff;
  transition: 0.4s ease-in-out;
}
.bookavisit:hover{
  background-color: #00ff00;
  color: #ffffff;
}
/* header hero section *//* header hero section *//* header hero section *//* header hero section *//* header hero section */
header{
  padding-bottom: 50px;

}
.header-section{
  justify-content:center;
  gap: 400px; 
}
.header-left{
}
.left-h1{
  line-height: -20px;
  letter-spacing: -20px;
}
.header-left-h1{
  font-size: 7rem;
  letter-spacing: -14px;
  line-height: 85px;
  margin-top: 150px;
  
}
.header-left-para{
  font-size: 1.2rem;
  margin-top: 50px;
}
  /* header-hero-section button hover properties */

.header-left-bttn {
  
  padding: .4vw 9vw;
  border: none;
  outline: none;
  color: #FFF;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 15px;
  font-size: 1vw;
  margin-top: 30px;
}
.header-left-bttn::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #24c324;
  left: 0;
  top: 0;
  border-radius: 10px;
}
/* glow */
.header-left-bttn::before {
  content: "";
  background: linear-gradient(
    45deg,
    #00fd1d, #796b5e, #b4b264, #48FF00,
    #444141, #59ff00, #82ed07, #35f804
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height:  calc(100% + 4px);
  filter: blur(8px);
  animation: glowing 20s linear infinite;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
  opacity: 0;
}

@keyframes glowing {
  0% {background-position: 0 0;}
  50% {background-position: 400% 0;}
  100% {background-position: 0 0;}
}

/* hover */
.header-left-bttn:hover::before {
  opacity: 1;
}

.header-left-bttn:active:after {
  background: transparent;
}

.header-left-bttn:active {
  color: #000;
  font-weight: bold;
}
  /* hover button */  
.header-right img{
  margin-top: 100px;
  width: 600px;
  box-shadow: 15px 15px 0px 0px rgb(0, 255, 0);
}
/* <!-- header-hero-section header-hero-section */
/* detail-section *//* detail-section *//* detail-section */





.choose-head{
  margin-top: 20px;
  text-align: center;
  letter-spacing: -16px;
  background-color: #0d45149c;
}
.choose-para{
  text-align: center;
  letter-spacing: 20px;
}


/* deatil boxes's */
.jave-buttn-flow {
  position: relative;
  width: 260px;
  height: 300px;
  margin-top: 40px;
}

/* Make info-boox and boox-detail overlap */
.info-boox, .boox-detail {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s ease;
}

/* Initially hide details */
.boox-detail {
  display: flex !important; /* keep flex to align */
  opacity: 0;
  pointer-events: none;
}

/* Show details */
.subbox-detail.active .info-boox,
.jave-buttn-flow.active .info-boox {
  opacity: 0;
  pointer-events: none;
}

.subbox-detail.active .boox-detail,
.jave-buttn-flow.active .boox-detail {
  opacity: 1;
  pointer-events: auto;
}

.choose-detail-box{
  padding: 0px 8vw;
  margin-top: 50px;
  margin-bottom: 50px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.info-boox{
    border-radius: 10px;
    box-shadow:0 2px 2px #00ff00;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    transition: 0.3s ease-out;
    gap: 50px;
    width: 260px;
    height: 300px;
    
  }
  .info-boox:hover{
    box-shadow: 0 0 10PX #00FF00;
  }
  .boox-detail{
    
    border-radius: 10px;
    box-shadow:0 7px 5px #00ff00;
    width: 260px;
    height: 300px;
    background-color: #000000;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: 0.90s ease-in;
    gap: 10px;
    display: none;
  }
   .boox-detail p{
    padding-top: 0px;
    margin: 0px 15px;
    text-align: center;
    font-size: 1rem;
    color: white;
    
  }
  .info-boox h2{
    font-size:1.5vw;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    color: #ffffff;
  }
  .info-boox i{
    color: #00ff00;
    font-size: 3vw;
    align-content: center;
    font-weight: 200;
  }
  .showdetail-btn{
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background-color: #00ff0030;
  border: none;
  padding: 0.8rem 2.5rem;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  }
  .back-btn {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(250, 0, 0);
  background-color: #00ff0030;
  border: none;
  padding: 0.6rem 2.5rem;
  margin-top: auto;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
  
  .showdetail-btn:hover, .back-btn:hover{
    scale: 1.02;
    transition: var(--transition);
    background-color: #00ff00;
    color: black;
  }
  .showdetail-btn:focus, .back-btn:focus{
      scale: 1.02;
    transition: var(--transition);
    background-color: #00ff00;
    color: black;
  }


  /* feature-section *//* feature-section *//* feature-section *//* feature-section */
  
  /* Base Styling */
.big-feature-section {
  padding: 50px 0;
}

.big-feature-container {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.big-feature-container.reverse {
  flex-direction: row-reverse;
}

.feature-img img {
  width: 100%;
  max-width: 500px;
  box-shadow: 15px 15px 0px 0px rgb(0, 255, 0);
}

.feature-decs {
  flex-direction: column;
  align-items: flex-start;
  max-width: 50%;
}

.feature-subh4 {
  font-size: 1.8rem;
  color: white;
  font-weight: 400;
}

.feature-subh2 {
  color: white;
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 500;
}

.feature-subh3 {
  color: #00ff00;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 400;
}

.feature-para {
  margin-top: 10px;
  color: white;
  font-size: 1rem;
  line-height: 1.7;
}

.feature-para span {
  color: #00ff00;
  font-weight: 600;
}

  /* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ */
  /* .faq{
    margin-bottom: 50PX;
  } */
  .faq h3{
  text-align: center;
  font-weight: 600;
  font-size:3rem ;
  color: white;
  text-transform: uppercase;
}
.accordians{
  width: 80%;
  margin: 50px auto;
}
.accordians h4{
  font-weight: 600;
  text-align: center;
}
.accordian-item{
  background-color: #0bbd0b;
  border: 1px solid white;
  color: white;
  margin-bottom: 5px;
}
.accordian-item .accordian-title{
  cursor: pointer;
  padding: 20px;
  transition: transform 0.4s ease-in-out;
}
.accordian-item .accordian-title.active-title{
  background-color: #0c740c;
  color: #00ff00;
}
.accordian-item .accordian-title h4{
  font-weight: 600;
  margin: 0px;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
}
.accordian-item .accordian-title i.fa-chevron-down{
  color: white;
  transform: rotate(0);
  transition: 0.4s;
}
.accordian-item .accordian-title i.fa-chevron-down.chevron-top{
  transform: rotate(-180deg);
  color: rgb(248, 9, 9);
}

.accordian-item .accordian-content{
  display: none;
  line-height: 1.7;
  padding: 20px;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.accordian-item .accordian-content.active{
  display: block;
}
.accordian-item .accordian-content p{
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #000000;
}
/* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ *//* FAQ */
  /* INSTA & FACEB-SECT */
  .social-int-section{
    background-color: #0d45149c;
    padding: 30px 0px;
  }
  .social-int-container{
    flex-direction: column;
  }
  .social-subh1{
    font-size: 5rem;
  }
  .social-subh3{
    color: white;
    margin-top: 10px;
    font-weight: 300;
  }
  .social-subh3 span a{
    color: #00FF00;
    letter-spacing: 5px;
  }

    /* FOOTER *//* FOOTER *//* FOOTER *//* FOOTER *//* FOOTER */
  /* FOOTER *//* FOOTER *//* FOOTER *//* FOOTER *//* FOOTER */
/* General Footer Styles */
footer {
  background-color: #11340a68;
  padding: 50px 20px;
  color: white;
  font-family: Arial, sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-company-logo {
  flex-direction: column;
  width: 100%;
  gap: 15px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.footer-sections {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-section {
  width: 100%;
  flex: 1;
  min-width: 200px;
}

/* Toggle button */
.footer-toggle {
  width: 100%;
  background: none;
  border: none;
  color: #00FF00;
  font-size: 1.4rem;
  text-align: left;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
}

.footer-toggle::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 10px;
  transition: transform 0.3s ease;
}

.footer-toggle.active::after {
  transform: rotate(180deg);
}

/* Hidden content on mobile */
.footer-content {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;
}

.footer-content.open {
  display: flex;
}

.footer-content a,
.footer-content p {
  color: white;
  font-size: 1rem;
  text-decoration: none;
}

.footer-content a:hover {
  color: #00FF00;
}

/* Social icons */
.footer-logo a i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: white;
  transition: color 0.3s ease;
}

.footer-logo a i:hover {
  color: #00FF00;
}
/* sub footer */
.subfooter{
  background-color: #0d45149c;
  
}
.sub-footer-h3{
  color: white;
  text-align: center;
  font-weight: 300;
  font-size: 0.8rem;
  padding: 10px 0px;
  margin: 0px;
}
/* book-a visit form *//* book-a visit form */
/* book-a visit form *//* book-a visit form */
/* book-a visit form *//* book-a visit form */
/* book-a visit form *//* book-a visit form */
/* form{
  ;
} */

/* .form.main.con{
  position: relative;
  width: 1000px;
  height: 70%;
  
} */
 header{
  position: relative;
 }
.fa-xmark{
  color: #ff0202;
  font-size: 1.2vw;
  position: absolute;
  top: 6%;
  right: 4.5%;
  cursor: pointer;
}
.form-container {
  display: none; /* Hidden by default */
  position: absolute;
  top: 50%;
  left: 50%;
  gap: 50px;
  background-color: rgb(26, 30, 30);
  width: 85%;
  max-width: 1200px;
  min-height: 60%;
  padding: 50px;
  border-top: 3px solid rgb(0, 255, 21);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.5);
  z-index: 101;
  transform: translate(-50%, -50%);
  flex-wrap: wrap;
}
/* hover&java properties */
header.show .form-container {
  display: flex; /* Show when header has 'show' */
}
header::before{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
  display: none;
  pointer-events: none;
  transition: all 0.5s ease-out;

}
header.show::before{
  display: block;
  pointer-events: auto;

}
 /* right div */
.form-right-container{
  max-width: 55%;
  display: flex;
  flex-direction: column;
  
}
.frc-h1{
  font-size: 2.5rem;
  color: white;
}
.frc-h1 span{
  color: #00f000;
}
.frc-para{
  max-width: 90%;
  margin-top: 10px;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
}
#inpt{
  font-size: 1rem;
  margin-top: 30px;
  width: 90%;
  padding: 8px 0px 8px 40px ; 
}
#phone{
  font-size: 0.8rem;
  width: 90%;
  padding: 10px 0px ; 
}
.iti {
    margin-top: 30px;
    width: 100%;
  }




.frc-bttn{
  max-width: 30%;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  color:white;
  background-color: #11b111;
  margin-top: 30px;
  padding: 0.4rem 0rem;
  transition: 0.2s ease-in-out;
}
.frc-bttn:hover{
  background-color:#00f000 ;

}

.inpt-div i{
  position: absolute;
  font-size: 1.2rem;
  color: #00ff00;
  padding:  38px 11px;
}
#inpt{
  display: inline-block;
  border: 1px solid #cccccc;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out ;
  -moz-transition: all 0.3s ease-in-out ;
  -ms-transition: all 0.3s ease-in-out ;
  transition: all 0.3s ease-in-out ;
}
#inpt:hover, #phone:hover {
  background-color: #07ff0723;
}
#inpt:focus, #phone:focus {
  border: 1px solid #00ff00;
  outline: none;
  background-color: #07ff0723;
  color: #00ff00;
}
/* right-div */

/* left-div */
.form-left-container{
  display: flex;
  flex-direction: column;
  max-width: 40%;
  height: 90%;
  background-color: #110f0f94;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 0 5px 3px rgba(22, 255, 1, 0.5);
  margin-top: 60px;
}
.flc-h1{
  font-size: 2.5rem;
  color: white;
}
.flc-para{
  max-width: 90%;
  margin-top: 10px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
}
.ll-h4{
  color: white;
  font-size: 0.8rem;
  font-weight: 100;

}
.ll-h3{
  margin-top: 5px;
  color: white;
  font-size: 1rem;
  font-weight: 100;
}
.r-info-icn{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.r-icn{
  width: 50px;
  height: 50px;
  min-width: 50px; /* prevents shrinking */
  min-height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0; /* don't let it shrink! */
  box-shadow: 0 0 5px rgba(6, 240, 6, 0.823);
}
.r-icn i{
  font-size: 1.5rem;
  color: #00ff00;
  border-radius: 10px;
}
.r-icn i:hover{
  color: #000000;
  background-color: white;
}
.r-info-icn-a{
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  
}
.ll-h4a{
  text-decoration: none;
  list-style: none;
  color: white;
  font-size: .9rem;
}
.ll-h4a span{
  color: #00f000;
}
.r-icn-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px; /* prevents shrinking */
  min-height: 50px;
  border-radius: 50%;
  background-color:#086a08;
  font-size: 2.2rem;
  color: #f7fff7;
  border-radius: 50px;
}
.r-icn-a:hover{
  color: #00f000;
  background-color: #00f000;
}
.r-icn-a i:hover{
  color: #ffffff;

}
/* left-div */
/* form-type=num sipn remove attribute's */
/* chrome */
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button{
  -webkit-appearance:none;
  margin: 0;
}
/* firefox */
input[type="number"]{
  -moz-appearance:textfield;
}
/* form-type=num sipn remove attribute's */
/* bookavisitform *//* bookavisitform *//* bookavisitform *//* bookavisitform *//* bookavisitform *//* 
/* for popup screen */
    #responseMessage {
      margin-top: 10px;
      display: none;
    }

/* Social Media Popup Overlay */
.social-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Content */
.social-popup-content {
  background-color: #151414;
  color: #00ff00;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 0 15px #00FF00;
  position: relative;
  animation: popupFade 0.5s ease-in-out;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #00FF00;
}

/* Social Icons */
.popup-social-icons a {
  color: white;
  font-size: 2rem;
  margin: 10px;
  transition: color 0.3s ease;
}

.popup-social-icons a:hover {
  color: #00FF00;
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* fro popup screen */
