*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
html,body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: #fffae6;
    
}
.head-strip{
    width: 100%;
    height: 40px;
    background-color: #086E37;
    display: flex;
    line-height: 40px;
    position: sticky;
    top: 0%;
    z-index: 999;

    
    
}
.head-text-area{
    flex: 1.2;
     /* border: 1px solid red; */
     display: flex;
    justify-content: end;
    gap: 10px;
}
.head-text-area h3{
    color: white;
    font-size: 14px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.head-icon-area{
    flex: 0.8;
     /* border: 1px solid red;  */
    display: flex;
    justify-content: end;
    gap: 50px;
   
}
#icon a{
    color: white;
    padding: 7px;
    font-size: 20px;
}
#icon{
  transition: transform 0.3s ease;

}
#icon a i:hover{
  transform: translateY(-2px);
  color: red;
}
.head-icon-area h3 a{
    color: white;
    text-decoration: none;
    padding-right: 20px;
} 
.head-icon-area h3 a:hover{
  color: red;
}
 /* ---------navbar-start------- */
.navbar{
    width: 100%;
    height: 90px;
    background-color:  #fffae6;
    display: flex;
    justify-content: space-between;
 
    position: sticky;
    top: 0%;
    z-index: 999;
    border-bottom:2px solid #086E37;
    
}

.navbar img{
  width: 130px;
  height: 110px;
  position: relative;
  /* bottom: 20px; */
  left: 40px;
}





/* mobile header code start here  */
/* Blur Effect for Hero Section */
/* Blur Effect for Hero Section */
.blurred {
  filter: blur(5px);
  transition: filter 0.4s ease-in-out;
}

/* Ensure header and menu do not blur */
.mobileheader,
.mobilemenu {
  position: relative;
  z-index: 1001; /* Keep above blurred content */
  filter: none !important;
}



.mobileheader {
  width: 100%;
  height: 80px;
  display: none;
  background: white;
  padding: 0 20px;
}

.hamfairent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobileheader img {
  width: 100px;
}

.burger {
  position: relative;
  width: 40px;
  height: 30px;
  cursor: pointer;
  display: block;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 9px;
  left: 0;
  transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 10px;
}

.burger input:checked ~ span:nth-of-type(2) {
  opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* Mobile Menu Styles */
.mobilemenu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
 
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease-in-out; /* Smooth Animation */
  background-color: black;
  opacity: 0.8;
}
.mobilemenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease-in-out;
}



.mobilemenu ul li {
  padding: 15px;
  text-align: center;
}

.mobilemenu ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

.mobilemenu.active {
  height: 300px; /* Adjust according to menu content */
}

.mobilemenu.active ul {
  opacity: 1; /* Fade-in effect */
}

@media (max-width: 768px) {
  .mobileheader {
    display: block;
  }
  .navbar {
    display: none;
  }
}




/* mobile header code end  */








/* .navbar ul li a:hover
img{
    height: 280px;
    width: 280px;
    margin-top: -75px;
    
} */
.navbar ul{
    display: flex;
    list-style: none;
    align-items: center;
    gap: 70px;
}
.navbar ul li a{
    color: black;
    text-decoration: none;
    font-weight: 550;
    font-size: 18px;
    position: relative;
}
.navbar .active{
  color: red;
  
}
.navbar ul li a::before{
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #ee0553;
  transition: all 0.3s;
  

}
.navbar ul li a:hover::before{
  width: 100%;
}

#btn{
    padding: 0px 30px;
    border:none;
    border-radius: 5px;
    
    background-color: #FFD400;
    margin: 15px 30px 15px 0;
    cursor: pointer;   
}
#btn a{
    color: black;
    text-decoration: none;
    font-weight: 550;
}


#btn:hover{
  background-color: #ffa500;
  transition: .4s;
  
}
.open-menu{
    cursor: pointer;
    font-size: 1.8rem;
    display: none;
    
}


#check{
    display: none;
} 
/* ----------nav-bar end---------- */
        
.hero {
  width: 100%;
  height: 90vh;
background-image: url("plot.png");
background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
}

.hero-text {
  max-width: 500px;
  color: rgb(177, 230, 240);
  font-size: 30px; 
  padding: 20px 20px;
  border-radius: 20px;
  font-family: "Inknut Antiqua", serif;
  background-color: rgba(0, 0, 0, 0.7); 
  box-shadow:inset   -5px -5px rgba(0, 0, 0, 0.5);


}

.hero-img {
  width: 100%;
  max-width: 320px;
  height: 320px;
  background: url("m_vikram-removebg-preview.png") no-repeat center center/cover; /* Image ko fit karne ke liye */
  border-radius: 50%;
  border: 1px solid white;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: -1px 1px 27px rgb(107, 240, 252);
}

      @media(max-width: 768px){
          .hero {
              flex-direction: column-reverse;
              width: 100%;
          }
          .hero-img {
             max-width: 270px;
             height: 270px;
          }
          .hero-text {font-size: 25px;}
      }
      
  
      








































/* -- our properties section start -- */

#heading{
    background-color: #C0EBA6;
    text-align: center;
    padding: 10px;
    font-size: 30px;
    font-family: 'Times New Roman', Times, serif;
}
#heading h4{
  font-weight: 900;
  background: linear-gradient(to left, #f32170, #ff6b08,#cf23cf, #eedd44);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.flex-box{
    width: 100%;
    height: auto;
    background-color: #C0EBA6;
    margin:5px auto;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;

  }
  .flex-box::-webkit-scrollbar{
    display: none;
  }

.book {
position: relative;
width: 350px;
height: 350px;
background-color: whitesmoke;
-webkit-box-shadow: 1px 1px 12px #000;
box-shadow: 1px 1px 12px #000;
-webkit-transform: preserve-3d;
-ms-transform: preserve-3d;
transform: preserve-3d;
-webkit-perspective: 2000px;
perspective: 2000px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
color: #000;
margin: 40px 20px;
display: inline-block;
background-image: url("khaga.png");
}
.book2 {
  position: relative;
  width: 350px;
  height: 350px;
  background-color: whitesmoke;
  -webkit-box-shadow: 1px 1px 12px #000;
  box-shadow: 1px 1px 12px #000;
  -webkit-transform: preserve-3d;
  -ms-transform: preserve-3d;
  transform: preserve-3d;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
  margin: 40px 20px;
  display: inline-block;
  background-image: url("sirathu.png");
  }
  .book3 {
    position: relative;
    width: 350px;
    height: 350px;
    background-color: whitesmoke;
    -webkit-box-shadow: 1px 1px 12px #000;
    box-shadow: 1px 1px 12px #000;
    -webkit-transform: preserve-3d;
    -ms-transform: preserve-3d;
    transform: preserve-3d;
    -webkit-perspective: 2000px;
    perspective: 2000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
    margin: 40px 20px;
    display: inline-block;
    background-image: url("manjhanpur.png");
    }
    .book4 {
      position: relative;
      width: 350px;
      height: 350px;
      background-color: whitesmoke;
      -webkit-box-shadow: 1px 1px 12px #000;
      box-shadow: 1px 1px 12px #000;
      -webkit-transform: preserve-3d;
      -ms-transform: preserve-3d;
      transform: preserve-3d;
      -webkit-perspective: 2000px;
      perspective: 2000px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      color: #000;
      margin: 40px 20px;
      display: inline-block;
      background-image: url("20.jpg");
      background-size: cover;
      }
      .book5 {
        position: relative;
        width: 350px;
        height: 350px;
        background-color: whitesmoke;
        -webkit-box-shadow: 1px 1px 12px #000;
        box-shadow: 1px 1px 12px #000;
        -webkit-transform: preserve-3d;
        -ms-transform: preserve-3d;
        transform: preserve-3d;
        -webkit-perspective: 2000px;
        perspective: 2000px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: #000;
        margin: 40px 20px;
        display: inline-block;
        background-image: url("75.jpg");
        }
.overlays{
  
  width: 100%;
  position: absolute;
  bottom: -100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  
  text-align: center;
  background: linear-gradient(transparent,#1c1c1c 50% );
  transition: height 10s;
  z-index: 100;
}

.overlays h3{
  text-align: center;
  color: #f8d64e;

 
  
}
.overlays p{
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  padding-bottom: 40px;
  color: white;
  
}
.book:hover .overlays{
  bottom: 0;
}
.book1:hover .overlays{
  bottom: 0;
}
.book2:hover .overlays{
  bottom: 0;
}
.book3:hover .overlays{
  bottom: 0;
}
.book4:hover .overlays{
  bottom: 0;
}
.book5:hover .overlays{
  bottom: 0;
}

/* -- graph img section start -- */
.hero-strip{
   width: 100%;
   height: 50px;
   background-color: #000;
   
   
}
.hero-strip h1{
  color: white;
  line-height: 50px;
  


}
.hero-section{
    width: 100%;
    height: 80%;
    background-image: url("ghraph.png");
    background-size: 100% 100%;

}
/* -- table section start -- */
.table-section{
    width: 100%;
    height: auto;
    /* border: 2px solid red; */
    justify-content: space-around;
    display: flex;
}
table {
    width: 40%;
    border: 2px solid black;
    border-radius: 5px;

    
  }
 
  
  th, td {
    border: 1px solid black;
    border-radius: 10px;
    padding: 8px;
    text-align: center;
  }
  
  th {
    background-color: #ffc107;
    font-weight:bold;
  }
  /* location section start */
  .location{
    width: 100%;
    
    background-image: url("road-image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    
    
  }
  .location-advantages {
    max-width: 100%;
    margin: 30px auto;
    padding: 30px;
    /* background-color: #ffffff; */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    text-align: center;
    color: white;
  }
  
  .advantage-item {
    margin: 10px 0;
    padding: 6px;
    border-left: 4px solid #007BFF;
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  /* .advantage-item h3 {
    margin: 0;
    color: #007BFF;
  } */
  
  .advantage-item p {
    margin: 5px 0 0;
    color:white;
    font-weight: bold;
  }
  /* -- why choose section start -- */
  #why-choose{
    width: 100%;
    height: 40px;
    background-color: #fffae6;
    align-items: center;
    justify-content: center;
    display: flex;
    
  }
  #why-choose h4{
    font-size: 1.6em;
    font-weight: 600;
    color: #086E37;
  }
  .leaf-container{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      padding: 20px;
    }
    .strip{
      width: 100%;
      height: auto;
      background-color: rgba(0, 0, 0, 0.5);
      text-align: center;
      padding: 10px 0;
    }
    .strip h3{
      color: white;
    }
    
    .leaf {
      width: 280px;
      height: 300px;
      background-image: url("1.jpg");
      background-size: cover;
      margin-bottom: 15px; 
      position: relative;

    }
    .leaf2 {
      width: 280px;
      height: 300px;
      background-image: url("2.jpg");
      background-size: cover;
      background-repeat: no-repeat;
      margin-bottom: 15px; 
      position: relative;
      
    }
    .leaf3{
      width: 280px;
      height: 300px;
      background-image: url("3.jpg");
      background-size: cover;
      margin-bottom: 15px; 
      position: relative;
      
    }
    .leaf4 {
      width: 280px;
      height: 300px;
      background-image: url("4.jpg");
      background-size: cover;
      margin-bottom: 15px; 
      position: relative;
      
    }
    @media (max-width:1024px) {
     .leaf{
      width: 240px;
     }
     .leaf2{
      width: 240px;
     }
     .leaf3{
      width: 240px;
     }
     .leaf4{
      width: 240px;
     }
      
    }
    @media (max-width:768px) {
      .leaf{
        width: 280px;
       }
       .leaf2{
        width: 280px;
       }
       .leaf3{
        width: 280px;
       }
       .leaf4{
        width: 280px;
       }
      
    }

  
    
 
  
 
  
  /* -- HUMBLE RECCOMENDATIONS -- */

  
  #humble{
    width: 100%;
    height: 40px;
    background-color: #C0EBA6;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  #humble h4{
    font-size: 1.5rem;
    font-family: 'Times New Roman', Times, serif;
  }
  .arpit {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
    background-color: #C0EBA6;
}

.feedback-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    padding: 20px;
}

.feedback-card {
    background-color: #02270b;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.feedback-card img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
}

.feedback-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.feedback-card p {
    font-size: 0.9em;
    margin-bottom: 10px;
}

.feedback-card .stars {
    color: #f8d64e;
    margin-bottom: 15px;
}

.feedback-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 20px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.5), transparent);
    border-radius: 0 0 20px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .feedback-card {
        width: 100%;
        max-width: 320px;
    }
}
/* -- form footer section start -- */
.form-footer{
    width: 100%;
    height: auto;
    background-image: url("moutain.png");
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    
}
.container2{
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #333;
}

form {
    
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

textarea {
    height: 120px;
}

input[type="submit"] {
    background:linear-gradient(#EE731A,#FFD400); 
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
}

/* Responsive styles */
@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }

    input, textarea {
        font-size: 14px;
    }
}

/* -----------main footer section start--------- */
.footer {
    background-color: #086E37;
    color: #fff;
    padding: 40px 0;
   
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 60%;
  }
  
  .footer-section {
    flex: 1 1 30%;
    margin-bottom: 20px;
  }
  
  .footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer-section p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style: none;
    
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
   
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.5s ease;
    font-size: 17px;
    position: relative;
   
    

  }
  .footer-section ul li a::before{
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ee0553;
    transition: all 0.3s;
    
  
  }
  .footer-section ul li a:hover::before{
    width: 100%;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #34495e;
    margin-top: 20px;
    background-color: #14472C;

  }
  
  .footer-bottom p {
    font-size: 14px;
  }
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-section {
      flex: 1 1 100%;
      margin-bottom: 30px;
    }
  }
  





