*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
a{
    text-decoration: none !important;

}
ul{
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}
li{
    list-style: none;
}
/* loader */

/* Loader container */
.loaderpara{
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #006400;
 /* text-shadow: 0px 4px 16px orange;  */
  text-shadow: 2px 2px 5px rgba(0, 100, 0, 0.3);
  
}
.loader{
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fbf4cf;
  /* background-image: linear-gradient(to bottom, #82bf42, #65ad42, #4a9b41, #30883f, #11763c); */
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 999;
}
.loader >div{
 position: relative;
}
@keyframes rotation {
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}
.loader >div::after{
 position: absolute;
 content: "";
 top: -0.5rem;
 left: -0.5rem;
 background-color: transparent;
 width: calc(100% + 1rem);
 height: calc(100% + 1rem);
 border-radius: 50%;
 border: 4px solid rgb(252, 176, 63);
  border-bottom-color: transparent ;
z-index: -1;
animation: rotation 1s linear infinite;
}
.loader >div img{
border-radius: 50%;
}



/* icons btn */
.whatsappbtn, .callbtn{
    position: fixed;
     right: 1rem;
    color: #fff;
    background-color: rgb(16, 117, 60);
    border: 4px solid rgb(252, 176, 63);
    padding:0.3rem 0.8rem;
    font-size: 2rem;
    border-radius: 50%;
    z-index: 99;
    
}
@keyframes lift2 {
    0%, 100%, 20%, 50%, 80%{
        transform: translateY(0);
    }
    40%{
        transform: translateY(-5px);
    }
     60%{
        transform: translateY(-10px);
    }
}
@keyframes shake {
  0%, 100% {
    transform: rotate(0deg) scale(0.9);
  }
  15%, 45%, 75% {
    transform: rotate(-5deg) scale(1.02);
  }
  30%, 60%, 90% {
    transform: rotate(5deg) scale(1.02);
  }
}
.whatsappbtn{
animation: lift2 1s ease infinite;
 bottom: 150px;
}
.callbtn{
  
     bottom: 50px;
}
.callbtn:hover{
animation: shake 1s ease-in-out infinite;
}

/* heading css */
.firstmainheading{
  text-transform: capitalize;
  font-weight: bold;
  font-size: 18px;
    font-family: "Edu NSW ACT Hand Pre", cursive;
    color: rgb(252, 176, 63);
}
.secondmainheading{
font-size: 3rem;
font-weight: bold;
margin: 1rem 0;
}
@media (max-width:768px) {
    .secondmainheading{
font-size: 2rem;
}
}
.greytext{
    color: #666666;
}


/* button css */
.buttondesign{
    color: rgb(227, 227, 227) !important;
    background-color: rgb(131, 192, 66);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden !important;
    transition: 1s ease-in-out;
    /* z-index: -1; */
    clip-path: inset(0 round 30px);
}
.buttondesign span{
    position: relative;
    z-index: 2;
}
.buttondesign::before{
    content: "";
    position: absolute;
    height:50%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(16, 117, 60);
    border-radius: 30px 30px 0 0;
    transition: 0.3s;
     z-index: 1;
}
.buttondesign::after{
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: rgb(16, 117, 60);
    border-radius: 0 0 30px 30px;
    transition: 0.3s;
     z-index: 1;
}
.buttondesign:hover::after,.buttondesign:hover::before{
  height:0;
}


/* menu */
.menu{
    width: 280px;
    height: 100vh;
  padding: 1rem 0;  
    line-height: 1.8;
    position: fixed;
    left: -350px;
    top: 0;
    z-index:99;
background-color: #fcf5e2;
transition: 0.3s;
overflow-y: scroll;
border-right: 2px solid rgb(252, 176, 63);
}
.menu.open{
    left: 0;
}
.menu li{
    padding: 0.5rem 1rem;
border-bottom: 2px solid lightgrey;
transition: 0.3s;
}
.menu li:hover{
    background-color: rgb(252, 176, 63);
}
.menu a{
    color: #000;
    transition: 0.3s;
}
.menu li:hover a{
color: #fff;
}
.menuicons {
  perspective: 600px; /* gives depth for 3D effect */
}
.menuicons i{
margin-right: 1rem;
background-color: rgb(252, 176, 63);
padding:0.6rem 1rem;
color: #fff;
border-radius: 50%;
transition: transform 0.8s ease-in-out; /* smoother and visible */
  transform-style: preserve-3d;
  display: inline-block;
}

.menuicons i:hover {
  transform: rotateY(360deg); /* full visible spin */
  background-color: rgb(252, 176, 63);

}
.menuinfo:hover a , .menuinfo:hover i {
color: rgb(252, 176, 63) !important;
}


/* top nav */
.topnav {
    background-color: #000;
    color: #fff;
    padding: 1rem 0 3rem 0;
}
.topnav a{
color: #fff;
}

/* header */
header{
width: 100%;
left: 50%;
   transform: translate(-50%, -2rem);
   position: absolute;
   z-index: 2;
}
header img , .menu img{
  cursor: pointer;
}
header.sticky{
    /* position: sticky; */
position: fixed;
    top:1rem;
   left: 0;
    transform: translateY(0); /* 👈 smooth drop-down effect */

}

header .container{
    background-color: #fcf5e2;
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0px 4px 16px rgba(101, 101, 101, 0.427);
}
.topnavicons i{
    margin-left: 1rem;
}
.dropdownn{
    position: relative;
 
}
.dropdownn::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px; /* height of invisible hover area (gap space) */
  background: transparent;
}
.dropdownn ul li{
    margin-left: 0;
}
.sublist{
    position: absolute;
opacity: 0;
visibility: hidden;
left: -1rem;
transform: translateY(50%);
z-index: -1;
    background-color: #fff;
    transition: 0.3s;
    width: 200px;
    border: 2px solid whitesmoke;
    box-shadow: 0px 4px 16px rgba(128, 128, 128, 0.379);

}
.sublist li{
    border-bottom: 2px solid lightgrey;
    padding: 0.65rem;
}
.dropdownn:hover .sublist{
opacity: 1;
visibility: visible;
transform: translateY(15px);
z-index: 2;
}
.sublist li:hover{
background-color: rgb(252, 176, 63);
}
.sublist li:hover a{
color: #fff !important;
}
@media (max-width:1200px) {
header{
   transform: translate(-50%, 1rem);
}
}
@media (max-width:768px) {
    .topnavicons i{
    margin-left: 0;
    margin-right: 1rem;
}
}

@media (max-width:576px) {
header{
   /* position: relative; */
   left: 0;
   transform: none;
}
header .container{
    border-radius: 0;
}
    header.sticky{
   top: 0;
}
}
.mainheader li{
    margin-left: 2.5rem;
}
.mainheader a{
   font-size: 1.15rem; 
   color: #000;
   transition: 0.3s;
}
.mainheader li:hover a{
    color: rgb(252, 176, 63);
}



/* foundation pAGE */
.foundationbanner{
  position: relative;
}
.foundationbanner img{
 height: 80vh;
 width: 100%;
object-fit: cover;

}
.foundationbannerdiv{
  background-color: rgba(0, 0, 0, 0.603);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-direction: column; */
}
.foundationbannerdiv > div{
  width: 90%
}
@media (min-width:1400px) {
  .foundationbannerdiv > div{
  width: 70%
}
}

.foundationbannerdiv h1{
  font-size: 76px;
}
.foundationbannerdiv h1 span{
    color:rgb(252, 176, 63);
}
@media (max-width:768px) {
  .foundationbannerdiv h1{
  font-size: 40px;
}
}

/* main landing page */

@media (min-width:576px) {
  .msolp{
 transform: translateY(-50px);
}
}
.cardbgcol1{
   background-color:rgb(255, 255, 255);
  border: 2px solid rgb(252, 176, 63);
}
.cardbgcol3{
   background-color:rgb(255, 255, 255);
  border: 2px solid rgb(227, 252, 63);
}
.cardbgcol2{
   background-color:rgb(255, 255, 255);
  border: 2px solid rgb(63, 85, 252);
}
.cardbgcol4{
   background-color:rgb(255, 255, 255);
  border: 2px solid rgb(252, 63, 183);
}
.cardbgcol5{
   background-color:rgb(255, 255, 255);
  border: 2px solid rgb(63, 208, 252);
}
.cardbgcol6{
   background-color:rgb(255, 255, 255);
  border: 2px solid rgb(252, 63, 63);
}
.cardbgcol1 img{
     background-color: rgb(252, 176, 63);
}
.cardbgcol2 img{
  background-color: rgb(63, 85, 252);
}
.cardbgcol3 img{
  background-color: rgb(227, 252, 63);
}
.cardbgcol4 img{
     background-color: rgb(252, 63, 183);
}
.cardbgcol5 img{
     background-color: rgb(63, 208, 252);
}
.cardbgcol6 img{
     background-color: rgb(252, 63, 63);
}
.ourapproachdiv{
  border-radius: 10px;
  padding: 1rem;
  
}
.ourapproach{
background-image:  linear-gradient(to bottom, #82bf42, #65ad42, #4a9b41, #30883f, #11763c);

}
.ourapproachdiv img{
  border-radius: 50%;
  /* border: 2px solid rgb(255, 255, 255); */
  margin-bottom: 2rem;
  transition: 1s;
  padding: 5px;
}

.ourapproachdiv p{
  margin-bottom: 0;
  color: #666666;
  
}
.ourapproachdiv:hover img{
  transform: rotate3d(0,1,0,360deg);
}

.VisionofMV {
  font-size: 18px;
  position: relative;
  padding: 20px;
  line-height: 1.6;
  text-align: justify;
}

/* Add opening quote */
.VisionofMV::before {
  content: "“";
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -10px;
  color: #4caf50;
}

/* Add closing quote */
.VisionofMV::after {
  content: "”";
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  right: 0;
  bottom: -20px;
  color: #4caf50;
}

/* Optional: make layout prettier */
.myvision-section img {
  border-radius: 0 100px 0 100px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

.myvision-section h2 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
}

/* footer */
.footercompanyinfo img{
  cursor: pointer;
}
footer{
    background-color: #1f1e17;
    color: #fff;
}
footer i{
    color: rgb(252, 176, 63);
}
.footerdiv{
    background-image: url(../images/footer-pattern-1.png);
    background-position: center ;
    background-size: cover;
    background-repeat: no-repeat;
position: relative;
line-height: 2;
}
.footerdiv::before{
content: "";
position: absolute;
top: -50px;
left: 0;
right: 0;
height: 50px;
background-image: url(../images/footertop.png);
 background-position: center ;
    background-size: cover;
    background-repeat: no-repeat;
}

footer ul li a , .contactinfo a{
    color: #fff;
}
.footercompanyicons i{
padding:0.5rem 1rem;
border-radius: 50%;
transition: 0.3s;
}

.footercompanyicons i:hover{
background-color: rgb(131, 192, 66);
color: #fff;
}
.footercompanyinfo p{
    line-height: 1.5;
}






.bannerss{
  padding: 120px 0 80px 0;
  background-color: #fcf5e2;
  text-align: center;
}
.bannerss h1{
  font-size: 4vmax;
  padding: 0 1rem;
}
.bannerss h1 span{
  color: rgb(252, 176, 63);
}

/* organic agriculture */
 .smallbanner {
      /* background: linear-gradient(rgba(0, 100, 0, 0.6), rgba(0, 100, 0, 0.6)), url('organic-bg.jpg') center/cover no-repeat; */
background-color: #fcf5e2;
      text-align: center;
      padding: 100px 0 1rem 0;
      position: relative;
    }

    /* .smallbanner::after{
      content: "";
      position: absolute;
      height: 100%;
      width: 100%;
      left: 0;
      top: 0;
      background-color: #00000089;
      z-index: 0;
    } */

    .smallbanner h1 {
      font-size: 2.8rem;
      font-weight: 700;
      z-index: 1;
      position: relative;
    }

    .smallbanner p {
      font-size: 1.2rem;
      margin-top: 10px;
      z-index: 1;
      position: relative;
    }

    /* concept section */
     .section-title {
      font-size: 2rem;
      font-weight: 600;
      color: #006400;
      text-align: center;
      margin: 20px 0;
      position: relative;
    }

    .section-title::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 4px;
      background-color: #32a852;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 5px;
    }

   

  
/* core focus area */
 .focus-areas {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 30px;
    }

    .focus-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .focus-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .focus-card i {
      font-size: 2.5rem;
      color: #32a852;
      margin-bottom: 15px;
    }

   
   

    /* Scroll Animation */
    .fade-in {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease-in-out;
    }

    .fade-in.show {
      opacity: 1;
      transform: translateY(0);
    }


    /* contact form */
    form{
      width: 80%;
    }
    @media (max-width:992px) {
       form{
      width: 100%;
    }
    }
   .enqform{
    background-image: url(../images/homebannerimg\ \(4\).jpeg);
    background-position: center;
    background-size: cover;

   }
   .enqform > div{
    background-color: #000000a1;
   }

form input,
form textarea,
form select {
  border-radius: 10px;
  border: none;
  background-color: #f7f7f7;
  width: 100%;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: box-shadow 0.3s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(16, 117, 60, 0.4);
}



/* agroturism */
.keycompdiv{
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(128, 128, 128, 0.437);
}
.keycomptext{
  position: absolute;
  bottom: 0;
  left: 0;
  /* transform: translateY(calc(50% + 8px)); */
  transform: translateY(50%);
  padding: 1rem;
  color: #fff;
  transition:0.6s;
  background-color: rgba(0, 0, 0, 0.612);
 width: 100%;
  border-radius: 0 0 10px 10px;
}
.keycomptext p{
margin-bottom: 0;
}
@media (max-width:375px) {
  .keycomptext{
     padding: 0.75rem;
  }
}
.keycompimg img{
  transition: 0.6s;
}
.keycompdiv:hover{
  box-shadow: 0 4px 16px grey;
}
.keycompdiv:hover .keycompimg img{
  transform: rotate(5deg) scale(1.2);
}
.keycompdiv:hover .keycomptext{
   transform: translateY(0);
}


/* community join */
.servicecard{
    /* border: 2px solid red; */
     box-shadow: 0px 4px 16px rgba(128, 128, 128, 0.379);
    border-top: 5px solid rgb(252, 176, 63);
    border-radius: 10px;
    overflow: hidden;
}

.servicecardimg img{
 border-radius: 0 0 10px 10px; 
 transition: 0.6s; 
/* aspect-ratio: 3/2; */
}
.servicecardimg{
    border-radius: 0 0 10px 10px;
    position: relative;
    overflow: hidden;
}
.servicecardimg::after{
    content: "";
   background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 70%);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s 
ease;
    z-index: 99;
    pointer-events: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
border-radius: 0 0 10px 10px;
}
.servicecard:hover .servicecardimg::after{
 transform: translateX(100%) skewX(-15deg);
}
.servicecard:hover .servicecardimg img{
    transform:rotate(3deg) scale(1.1);
}
.servicecard .firstmainheading{
    font-size: 1.5rem;
    color: rgb(16, 117, 60);
    transition: 0.3s;
}

.servicecard:hover .firstmainheading{
    color: rgb(252, 176, 63);
}




.gvnpln {
  position: relative;
  padding: 20px;
  background: white;
  border-radius: 10px;
  /* cursor: pointer; */
}

.gvnpln:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;
border-radius: 10px;
  /* background: linear-gradient( red, yellow); */
   background: conic-gradient(from 0deg at center, red, yellow, green);
z-index: -1;
top: -8px;
left: -8px;
/* height: calc(100% + 16px);
width: calc(100% + 16px); */
  animation: moveborder 10s linear infinite;
}


@keyframes moveborder {
  0%{
    transform: rotate(0deg) scale(4);
  }
  100%{
    transform: rotate(360deg) scale(4);
  }
}


/* chairman */
.chairmanmsg{
  box-shadow: 2px 0px 4px 2px rgba(128, 128, 128, 0.412);
  padding: 1rem 2rem;
  text-align: justify;
  font-size: 14px;
  background-color: #fff;
}
.chairmanmsg h2, .chairmanmsg h4{
  color: rgb(16, 117, 60);
}
.chairmanmsg h5{
  color: rgb(252, 176, 63);
}


.cdiv{
display: flex;
align-items: center;
justify-content: center;
}

.cdiv img{
height: 70%;
width: 70%;
border-radius: 20px;
box-shadow: 0px 4px 16px grey;
}
.cdiv2{
position: absolute; 
height: 100%;
width: 100%;
background-color: rgb(252, 176, 63);
border-radius: 50%;
top: 0;
right: 0;
z-index: -1;
transform: translateX(50%) rotate(-15deg) scale(1.25);
}
.cdiv3{
position: absolute; 
height: 200px;
width: 200px;
background-color: rgb(252, 176, 63);
border-radius: 50%;
bottom: 0;
left: 0;
z-index: -1;
transform: translateY(50%);
}
