*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none !important;

}
ul{
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}
li{
    list-style: none;
}

/* 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;
}
.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;
}
.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: #fffbe8;
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 */

}
@media (max-width:576px) {
    header.sticky{
   top: 0;
}
}
header .container{
    background-color: #fffbe8;
    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;
}
}
.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);
}


/* about  */
.aboutsection{
  background-image: url(../images/about2.png);
  background-position: right bottom;
  background-repeat: no-repeat;
}
/* @media (max-width:992px) {
    .aboutsection{
        background-position: right top;
    }
} */
.aboutbimg2, .aboutbimg1{
position: relative;
border-radius: 10px;
width: fit-content;
}
.aboutbimg1{
    z-index: 1;
}
@media (max-width:576px) {
    .aboutbimg1{
        width: 100%;
    }
}
.aboutbimg2{
    z-index: -1;
    transform: translate(15%, -15%);
}

.counteddiv{
transform: translateY(-200%);
    background-color: #fff;
    /* border: 2px solid red; */
    width: fit-content;
    padding:1rem 2rem;
    border-radius: 10px 10px 0 10px;
    position: absolute;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
animation: lift 0.8s ease infinite;
}
@keyframes lift {
    0%, 100%, 20%, 50%, 80%{
        transform: translateY(-200%);
    }
40%{
    transform: translateY(-200%) translateY(-5px);
}
60%{
    transform: translateY(-200%) translateY(-10px);
}
}
 .counteddiv::after {
  content: "";
  position: absolute;
  right: 0;
  margin-top: 1.1rem;
  /* bottom: 0; */
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-top: 25px solid #fff; /* color of triangle */
}

.counteddiv span{
font-size: 4rem;
color: rgb(16, 117, 60);
font-weight: 700;
}
.counteddiv p{
    font-weight: 700;
    color: rgb(252, 176, 63);
    margin-bottom: 0;
}


.abouticons > div h3{
    color: rgb(252, 176, 63);
    transition: 0.3s;
}
.abouticons > div:hover h3{
    color: rgb(131, 192, 66);
}


/* service cards */
.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;
}
.demo{
    position: relative;
}
.servicecardicon1{
    padding: 1rem 0.5rem;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    right: 1rem;
    border-radius: 10px;
    border:3px solid rgb(252, 176, 63);
    background-color: #fff;
    transition: 0.6s;
}
.servicecardicon2{
     padding: 0.6rem 1rem;
    position: absolute;
    bottom: 50px;
    /* transform: translateY(15%); */
    left: 1rem;
    border-radius: 50%;
    border:3px solid rgb(252, 176, 63);
    background-color: #fff;
}
.servicecardicon2 i{
    font-size: 1.5rem;
}
.servicecard:hover .servicecardicon1{
    transform:translateY(-50%) rotate3d(0,1,0,180deg);
     background-color: rgb(252, 176, 63);
}
.servicecardimg img{
 border-radius: 0 0 10px 10px; 
 transition: 0.6s; 

}
.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);
}

/* service description */
.price{
  font-size: 1.25rem;
  font-weight: 600;
}
.servicedesc{
  background-color: #00000081;
  backdrop-filter: blur(10px);
  position: fixed;
  top:0;
  left: 0;
  height: 100%;
  width:100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
    overflow: scroll;
    padding: 1rem;
}
.servicedesc .container{
  background-color: #fff;
border-radius: 10px;
box-shadow: 0px 4px 16px rgb(16, 15, 15);
}
.imgdiv{
  position: relative;
}

.imgdiv .bi-arrow-left{
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2rem;
  cursor: pointer;
}
/* our projects */

.ourproj .rows{
   background: rgb(16, 117, 60);
border-radius: 10px;
 box-shadow: 0px 4px 16px rgba(128, 128, 128, 0.379);
 background-image: url(../images/ourproj.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    /* background-size: cover; */
}

.ourproj .rows .col{
   /* padding: 0;  */
   color: #fff;
}
.ourproj .rows .col ul li{
   line-height: 2;
}
.ourproj .rows .col img{
    border-radius: 10px;
}
/* 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;
}

/* testimonial */
.clientscard .col{
border-radius: 10px;
    background-color: #fff;
   box-shadow: 0px 4px 16px rgba(128, 128, 128, 0.379);
}
.clientscardimgdiv img{
    border-radius: 50%;
    border: 4PX solid #fff;
    position: relative;
}
.clientscardimgdiv{
    position: relative;
}
.clientscardimgdiv::before{
content: "";
    position: absolute;
  right: -6px;
    top: -45px;
    bottom: -6px;
    left: -6px;
    border-radius: 30px 0px 100px 100px;
    background-image: linear-gradient(to bottom, #82bf42, #65ad42, #4a9b41, #30883f, #11763c);

}
.clientscardimgdiv::after{
content: "";
    position: absolute;
    top: -45px;
    right: -26px;
 border-left: 20px solid #666666;
 border-top: 20px solid transparent;
}

/* contact form */


.contactform {
  background-color: rgb(16, 117, 60);
  color: #fff;
  position: relative;
  margin-bottom: 6rem;
}
@keyframes motion {
    0%{
        background-position: 0 0;
    }
    100%{
background-position: -1000px 0;
    }
}
.contactform::before{
    content: "";
    position: absolute;
top: -20px;
left: 0;
background-image: url(../images/contact-pattern-1.png);
background-repeat: repeat-x;
  background-size: contain;
background-size: auto 100%;
  height: 20px;
width: 100%;
animation: motion 10s linear infinite;
}
.contactform::after{
    content: "";
    position: absolute;
bottom: -20px;
left: 0;
background-image: url(../images/contactform-pattern-2.png);
background-repeat: repeat-x;
  background-size: contain;
  background-size: auto 100%;
height: 20px;
width: 100%;
animation: motion 10s linear infinite;
}

.contactformimg img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.contactformimg img:hover {
  transform: scale(1.03);
}
/* @keyframes clockmove {
    0%,100%{
transform: translate(-15px, -50%)
    }
    50%{
      transform: translate(15px, -50%)
    }
}
@keyframes clockmove2 {
    0%,100%{
transform: rotate(5deg);
    }
    50%{
       transform: rotate(-5deg);
    }

}
.formicon{
    font-size: 4rem;
    background-color: rgb(131, 192, 66);
    color: #fff;
    border: 8px solid rgb(252, 176, 63);
    outline:6px solid #fff;
    outline-offset: 6px;
    width: fit-content;
    position: absolute;
    top: 50%;

    right: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    padding: 1rem 2rem;
animation: clockmove 3s linear infinite;
}
.formicon::before{
    content: "";
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(252, 176, 63);
    height: 300px;
    width: 8px;
    animation: clockmove2 3s linear infinite;
}
@media (max-width:576px) {
    .formicon{
font-size: 2rem;
padding:0.5rem 1rem;
    }
} */


/* ✅ Wrapper that holds the entire pendulum */
.pendulum {
  position: absolute;
  top: 0;
  right: 3rem;
  transform: translateY(-50%);
  height: 320px;
  width: 8px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform-origin: top center;
  animation: swing 3s ease-in-out infinite;
}

/* ✅ The rod */
.pendulum::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 270px;
  background-color: rgb(252, 176, 63);
  border-radius: 4px;
}

/* ✅ The round icon (the hanging ball) */
.formicon {
  font-size: 3rem;
  background-color: rgb(131, 192, 66);
  color: #fff;
  border: 8px solid rgb(252, 176, 63);
  outline: 6px solid #fff;
  outline-offset: 6px;
  border-radius: 50%;
  padding: 1rem 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* ✅ Smooth swinging animation */
@keyframes swing {
  0% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}

/* 🔹 Responsive size for mobile */
@media (max-width: 576px) {
  .formicon {
    font-size: 1.8rem;
    padding: 0.5rem 1rem;
  }

  .pendulum {
    right: 2rem;
    height: 240px;
  }

  .pendulum::before {
    height: 200px;
  }
}

.contactformform {
  background-color: #fff;
  border-radius: 20px;
}

.contactformform form input,
.contactformform form textarea,
.contactformform 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;
}

.contactformform form input:focus,
.contactformform form textarea:focus,
.contactformform form select:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(16, 117, 60, 0.4);
}

.contactformform .buttondesign {
  display: inline-block;
  background-color: rgb(16, 117, 60);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contactformform .buttondesign:hover {
  background-color: #0d804a;
  transform: translateY(-3px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.contactformform  .secondmainheading {
  font-size: 2rem;
  color: rgb(16, 117, 60);
  font-weight: 700;
}

/* .contactformform  .firstmainheading {
  font-size: 1.1rem;
  color: rgb(16, 117, 60);
  font-weight: 500;
} */

/* 🌐 Responsive Design */
@media (max-width: 991px) {
  .contactformform {
    margin-top: 2rem;
  }

 .contactformform .secondmainheading {
    font-size: 1.6rem;
  }

 .contactformform .buttondesign {
    width: 100%;
    text-align: center;
  }
}
















/* About page */
.smallbanner{
  background-image: url(../images/smallbannerimg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
 background-size: cover;
 height: 60vh;
 
}
.smallbannerdiv{
  background-color: rgba(0, 0, 0, 0.201);
  height: 100%;
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column
}
.smallbannerdiv h1{
  font-size: 4rem;
}
.smallbannerdiv p{
  font-size: 18px;
  font-weight: 600;
}
.smallbannerdiv span{
  color: rgb(252, 176, 63);
}

/* get to know us */
.gtkussection{
  background-image: url(../images/about2.png);
}
@keyframes abimg2lift {
  0%,100%,20%,50%,80%{
transform: translateY(0);
  }
  40%{
    transform: translateY(-5px);
  }
  60%{
    transform: translateY(-10px);
  }
}
.apimgdiv{
  position: relative;
}
.apimgdiv::after{
content: "";
position: absolute;
bottom: 0;
right: 0;
height:100%;
width: 100%;
background-image: url(../images/about-one_tomato.png);
background-repeat: no-repeat;
background-position: center bottom;
animation: abimg2lift 0.8s ease infinite ;
}

/* mission */
@media (min-width:1440px) {
  .misssioncontainer{
  width: 90%;
}
}
.missiondives .missions{
  border: 2px solid rgb(252, 176, 63);
  padding: 2rem;
  border-radius: 50% 50% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
 background-color: rgb(254 225 182);
  transition: 0.3s;
}
.missiondives .missions h6{
  margin-top: 1rem;
  font-weight: 600;
  font-size: 18px;
}
.missiondives .missions:hover{
background-color: rgb(131, 192, 66);
}
.missiondives .missions:hover h6{
color: #fff;
}


/* vission */
.vissionimgbig{
  border-radius: 10px 10px 150px 20px;
}
.vissionimgbig img{
  border-radius: 10px 10px 150px 20px;
}
.vissionimg{
position: absolute;
left: 0;
bottom: 0;
background-color: rgb(252, 176, 63);
color: #fff;
border-radius: 20px 0 20px 20px;
padding: 1rem;
border: 5px solid #fff;
}
.vissionimgp{
  font-size: 1.5rem;
  margin-left: 1rem;
      font-family: "Edu NSW ACT Hand Pre", cursive;
}


/* our team */
.myteamdivframe {
  perspective: 1000px;
  width: 100%;           /* change as needed */
     aspect-ratio:4/5;
}

.myteamdiv {
  position: relative;
  transition: transform 1s;
  transform-style: preserve-3d;
  width: 100%;
  height: 100%;

}

.frontdiv,
.backdiv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* backface-visibility: hidden; */
}

/* Front side (Image) */
.frontdiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Back side (Content) */
.backdiv {
  background-color: rgba(16, 117, 60, 0.608);
  color: #fff;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
  border-radius: 10px;
  overflow-y: scroll;
  backdrop-filter: blur(10px);
  backface-visibility: hidden;
}

/* Flip Effect */
.myteamdivframe:hover .myteamdiv {
  transform: rotateY(180deg);
}

/* documentations */
.docdiv{
/* border: 2px solid white; */
width: 100%;
height: 100%;
aspect-ratio: 1/1;
background-color: red;
border-radius: 10px 10px 0 0;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
flex-direction: column;
line-height: 1.1;
}

.docdiv span{
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
}
.docdiv i{
  font-size: 2.5rem;
  color: #fff;
}

.documents{
  box-shadow: 0px 4px 16px grey;
  border-radius: 10px 10px 0 0;
  margin-bottom: 2rem;
  cursor: pointer;
}

.documents p{
  padding:1rem 0.5rem;
  font-size: 14px;
  text-transform:capitalize;
}





/* blog page */
.blogss{
  box-shadow: 0px 4px 16px rgba(101, 101, 101, 0.427);
}
.blogss .blogimgdiv{
overflow: hidden;
position: relative;
}
.blogss .blogimgdiv::after{
content: "";
background-color: rgba(0, 0, 0, 0.301);
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 0;
transition: 0.3s;

}
.blogss .blogimgdiv img{
width: 100%;
transition: 0.6s;
}
.blogss,.blogss .blogimgdiv, .blogss .blogimgdiv img{
  border-radius: 10px 10px 0 0;
}
.blogtext p:first-child{
  font-size: 18px;
  font-weight: 600;
}
.paragraph {
   font-size: 14px;
   margin-bottom: 2rem;
   display: -webkit-box;
    -webkit-line-clamp: 3; /* Show only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.paragraph.expanded {
    -webkit-line-clamp: unset; /* Show full text */
}
.blogtext p i{
color: rgb(131, 192, 66);
font-size: 1.5rem;
}
.blogtext h4{
  font-weight: bold;
  margin-bottom: 1rem;
}
.blogss:hover .blogimgdiv img{
transform: scale(1.2);
}
.blogss:hover .blogimgdiv::after{
width:100%;
}





/* contact us info page */
.cuinfo{
  background-image: url(../images/contactinfo.png);
  background-repeat: no-repeat;
  background-position: bottom;
}
.contactusinfodiv{
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 2rem;
}
.contactusinfodiv i{
color: #fff;
background-color: rgb(16, 117, 60);
padding: 1rem;
font-size: 1.5rem;
margin-right: 1rem;
}
.contactpage .contactformform{
  margin-top: 0;
}

/* 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;
  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%;
 /* background-color: #f7f7f7; */
 border: 4px solid rgb(252, 176, 63);
 /* border-top-color: white ; */
  border-bottom-color: transparent ;
z-index: -1;
animation: rotation 1s linear infinite;
}
.loader >div img{
/* background-color: #fffbe8; */
border-radius: 50%;
}



/* cart page */
.bi-trash3{
  color: rgb(16, 117, 60);
}
.carttext p:first-child{
  margin-bottom: 0;
}
.cart hr{
  margin-bottom: 0;
}

.summary-box {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #eee;
}

.summary-table td {
  padding: 10px 5px;
  font-size: 15px;
}

.summary-table .total-row td {
  font-size: 17px;
}

.summary-box h4 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.summary-table tr.border-top td {
  border-top: 2px solid #ddd !important;
}



 /* 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: #fffbe8;
}
.chairmanmsg h2, .chairmanmsg h4{
  color: rgb(16, 117, 60);
}
 .chairmanmsg h5{
  color: rgb(252, 176, 63);
 }
 @media (min-width:576px) {
  .Sameersirimg{
  width: 75%;
 }
 }

.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%);
}
