html{
    scroll-behavior: smooth;
}
/* Custom CSS to enable hover for dropdown */
@media (min-width: 768px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}
.dropdown-item{
    color: #000 !important;
}
.dropdown-item:hover{
    color: #63B348 !important;
}
.nav-link{
    color: #fff;
}
.nav-link:hover{
    color: #63B348;
}
.dropdown-menu{
    border: 2px solid #63B348 !important;
    border-radius: 15px;
}
.navbar-nav.custom-navbar-nav {
    gap: 25px;
    border: 2px solid;
    padding: 10px 5px;
    border-radius: 25px !important;
    background-image: linear-gradient(#ffffff03, #ffffff03), 
                    linear-gradient(to right, #ffffff03, #ffffff03);
    color: #70BE44;
}
@keyframes colorChange {
    0% { color: #04E1FF; }
    25% { color: #2E855D; }
    50% { color: #FD8806; }
    75% { color: #2E855D; }
    100% { color: #BE4444; }
}
.color {
    animation: colorChange 2s linear 1s infinite;
    font-size: 25px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif !important;
}
@keyframes animate{
    0% {
    background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}
.color2{
    background: linear-gradient(91.11deg, #04E1FF -2.75%, #FD8806 18.59%, #BE4444 49.62%, #2E855D 77.74%);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate 2s ease-in-out infinite;
    font-weight: 700;
    font-size: 25px;
}

.color3{
    background: linear-gradient(91.11deg, #ffffff -2.75%, #ccc 18.59%, #FFD699 49.62%, #FFFF99 77.74%);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate 2s ease-in-out infinite;
    font-weight: 700;
    font-size: 35px;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Montserrat", sans-serif;
}
span,p{
    font-family: "Manrope", sans-serif;
}

.main{
    color: #fff;
    font-weight: 900;
    font-size: 36px;
}

.btn-three {
  color: #FFF;
  transition: all 0.5s;
  position: relative;
  padding: 2% 10%;

}
.btn-three::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #41C6EE;
  transition: all 0.3s;
  border-radius: 25px;
}
.btn-three:hover::before {
  opacity: 0 ;
  transform: scale(0.5,0.5);
}
.btn-three::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.5);
  transform: scale(1.2,1.2);
}
.btn-three:hover::after {
  opacity: 1;
  transform: scale(1,1);
  border-radius: 25px;
}
.btn:hover{
    color: #fff;
}

.btn-one {
  color: #FFF;
  transition: all 0.3s;
  position: relative;
  padding: 2% 10%;
}
.btn-one span {
  transition: all 0.3s;
}
.btn-one::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(255,255,255,0.5);
  border-bottom-color: rgba(255,255,255,0.5);
  transform: scale(0.1, 1);
}
.btn-one:hover span {
  letter-spacing: 2px;
}
.btn-one:hover::before {
  opacity: 1; 
  transform: scale(1, 1); 
}
.btn-one::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  background-color: rgba(255,255,255,0.1);
  border-radius: 25px;
}
.btn-one:hover::after {
  opacity: 0; 
  transform: scale(0.1, 1);

}
.form{
    background-color: #222724E0;
    border-radius: 10px;
}
.formname{
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
    width: 100%;
    border: none;
    padding: 2%;
}

.formname:focus {
  outline: none;
}
.btnsub{
    width: 100%;
    background-image: linear-gradient(to right, #3E9357 , #64B449);
    color: #000;
    border:none;
    padding: 4% 0%;
    font-weight: 700;
    font-size: 20px;
    border-radius: 0 0px 10px 10px;
    transition: .5s;
}
.btnsub:hover{
    width: 100%;
    background-image: linear-gradient(to right, #64B449 , #3E9357);
    color: #fff;
    border:none;
    padding: 4% 0%;
    font-weight: 700;
    font-size: 20px;
    border-radius: 0 0px 10px 10px;
    transition: .5s;
}
.imgstyle{
    left: -42px;
    position: absolute;
    top: -20px;
}

@media only screen and (min-width: 992px) {
    .mob {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .desk {
        display: none;
    }
}
.move{
    animation: MoveUpDown 1s linear infinite;
}

@keyframes MoveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.contactbtn{
    background-image: linear-gradient(to right, #3E9357 , #64B449);
    color: #000;
    padding: 1% 5%;
    color: #fff;
    border-radius: 25px;
    border:none;
    transition: .3s;
    border:1px solid #3E9357;
}

.contactbtn:hover{
    background-image:none;
    background-color: transparent;
    color: #fff;
    padding: 1% 5%;
    color: #fff;
    border-radius: 25px;
    border:1px solid #3E9357;
    transition: .3s;
}

.contactbtn2{
    background-image: linear-gradient(to right, #3E9357 , #64B449);
    color: #000;
    padding: 1% 5%;
    color: #fff;
    border-radius: 25px;
    border:none;
    transition: .3s;
    border:1px solid #3E9357;
}

.contactbtn2:hover{
    background-image:none;
    background-color: transparent;
    color: #fff;
    padding: 1% 5%;
    color: #000;
    border-radius: 25px;
    border:1px solid #3E9357;
    transition: .3s;
}
.viewbtn a{
    color: #fff;
    text-decoration: none;
    transition: .3s;
}
.viewbtn{
    background-image: linear-gradient(to right, #3E9357 , #64B449);
    color: #000;
    padding: 1% 5%;
    color: #fff;
    border-radius: 25px;
    border:none;
    transition: .3s;
    border:1px solid #3E9357;
}
.viewbtn:hover{
    background-image:none;
    background-color: transparent;
    color: #fff;
    padding: 1% 5%;
    color: #fff;
    border-radius: 25px;
    border:1px solid #3E9357;
    transition: .3s;
}
.viewbtn:hover a{
    color: #000;
    text-decoration: none;
    transition: .3s;
}
.portfoliobtn{
    background-color: transparent;
    color: #fff;
    padding: 1% 5%;
    color: #fff;
    border-radius: 25px;
    border:1px solid #3E9357;
    transition: .3s;
}

.portfoliobtn:hover{
    background-image: linear-gradient(to right, #3E9357 , #64B449);
    color: #000;
    padding: 1% 5%;
    color: #fff;
    border-radius: 25px;
    border:none;
    transition: .3s;
}
.new{
    gap:20px;
    background-image: linear-gradient(to right, #3E9357 , #64B449);
    border-radius: 25px;
}

.new .active{
    padding: 2% 20px 0 20px; 
    background: #fff;
    border-radius: 15px;
    color: #000;
    text-decoration: none;
    height: 30px;
    display: block;
    box-shadow: 3px 6px 5px 0px #00000038
}

.new .active a{
    color: #000 !important;
    text-decoration: none;
}
.newtab a{
    font-size: 20px;
    color: #fff;
}
.newtab{
    padding: 1% 0% 0% 0%;

}
.newtab a{
    text-decoration: none;
    font-size: 17px;
}
.bannn{
    background-image: url(../images/centre.png);
    background-repeat: no-repeat;
    background-attachment:fixed;
    background-position: center;

}

#screen{
    margin: auto;
    height: 500px;
    border-radius: 15px;
    background-image: url('../images/website/5.webp');
    background-size: 100% auto;
    cursor: pointer;
    transition: background-position 5s linear;
 }

#screen:hover{
    background-position: 0 100%
 }

#screen2{
     
    margin: auto;
    height: 500px;
    border-radius: 15px;
    background-image: url('../images/website/6.webp');
    background-size: 100% auto;
    cursor: pointer;
    transition: background-position 5s linear;
 }

#screen2:hover{
    background-position: 0 100%
 }

#screen3{
     
    margin: auto;
    height: 500px;
    border-radius: 15px;
    background-image: url('../images/website/7.webp');
    background-size: 100% auto;
    cursor: pointer;
    transition: background-position 5s linear;
 }

#screen3:hover{
    background-position: 0 100%
 }

#screen4{
     
    margin: auto;
    height: 500px;
    border-radius: 15px;
    background-image: url('../images/website/4.webp');
    background-size: 100% auto;
    cursor: pointer;
    transition: background-position 5s linear;
 }

#screen4:hover{
    background-position: 0 100%
 }

#screen5{
     
    margin: auto;
    height: 500px;
    border-radius: 15px;
    background-image: url('../images/estore/1.webp');
    background-size: 100% auto;
    cursor: pointer;
    transition: background-position 5s linear;
 }

#screen5:hover{
    background-position: 0 100%
 }

#screen6{
     
    margin: auto;
    height: 500px;
    border-radius: 15px;
    background-image: url('../images/estore/2.webp');
    background-size: 100% auto;
    cursor: pointer;
    transition: background-position 5s linear;
 }

#screen6:hover{
    background-position: 0 100%
 }

#screen7{
     
    margin: auto;
    height: 500px;
    border-radius: 15px;
    background-image: url('../images/estore/3.webp');
    background-size: 100% auto;
    cursor: pointer;
    transition: background-position 5s linear;
 }

#screen7:hover{
    background-position: 0 100%
 }

#screen8{
     
    margin: auto;
    height: 500px;
    border-radius: 15px;
    background-image: url('../images/estore/4.webp');
    background-size: 100% auto;
    cursor: pointer;
    transition: background-position 5s linear;
 }

#screen8:hover{
    background-position: 0 100%
 }

@media ( max-width: 30em ) {
#screen {
    width: 15.56em;
    padding-top: 9.725em;
  }

#screen2 {
    width: 15.56em;
    padding-top: 9.725em;
  }

#screen3 {
    width: 15.56em;
    padding-top: 9.725em;
  }

#screen4 {
    width: 15.56em;
    padding-top: 9.725em;
  }
#screen5 {
    width: 15.56em;
    padding-top: 9.725em;
  }
#screen6 {
    width: 15.56em;
    padding-top: 9.725em;
  }
#screen7 {
    width: 15.56em;
    padding-top: 9.725em;
  }
#screen8 {
    width: 15.56em;
    padding-top: 9.725em;
  }

 }
.promotion{
    background-image: url(../images/centre-2.png);
    padding: 10% 0%;
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 15px;

}

.w-70{
    width: 70% !important;
    margin: auto;
}
.w-80{
    width: 80% !important;
    margin: auto;
}

.box{
    border:1px solid #3E9357;
    border-radius: 15px;
}
.box-scroll{
    height: 200px;
    overflow: auto;
}


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #3E9357; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

li::marker {
  color: #3C9158;
}

.whats{
    color:#fff !important;
    border-radius: 25px;
}

.whats:hover{
    color:#fff !important;
    border-radius: 25px;
}

.butget{
    background: #3C9158; 
    color: #fff;
    border-radius: 10px;
}
.box:hover{
    border:1px solid #3C9158;
    border-radius: 15px;
}

.box:hover .green{
    background:#3C9158;
    color: #fff;
    transition: .3s;
    border-radius: 15px 15px 0 0;
}

.butget:hover{
    background:#3C9158;
    color: #fff;
    transition: .3s;
}
.testimonial{
    background-image: linear-gradient(to right, #3E9357 , #64B449);
}
.bgtestimonial{
    background-image: url(../images/plain2.png);
    height: 435px;
    background-repeat: no-repeat;
    background-size: 100%;
}
.banform{
    padding: 8% 10%;
    background:linear-gradient(180deg, rgb(114 183 99 / 77%) 0%, rgb(81 166 153 / 75%) 100%);
    border-radius: 15px;
}
.lastsubmit{
    padding: 2% 43%;
    color: #fff;
    background:#282828;
    border:none;
    border-radius: 25px;
}
.formname2{
    background-color: rgba(0, 0, 0, .4);
    color: #fff;
    width: 100%;
    border: none;
    padding: 2%;
}

::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12-18 */
  color: #fff;
}
.pt-7{
    padding-top: 7%;
}
.pt-9{
    padding-top: 9%;
}
.footer{
    background: #000;
}
.pb-6{
    padding-bottom: 6%;
}

@media only screen and (min-width: 991px) {
  .creative {
    padding-top: 0;
    padding-right: 0;
    font-size: 18px;
    font-weight: 900;
  }
  .creative-pera{
    font-size: 12px;
  }
}

@media only screen and (min-width: 1200px) {
  .creative {
    font-size: 20px;
    font-weight: 900;
  }
  .creative-pera{
    font-size: 14px;
  }
}

@media only screen and (min-width: 1500px) {
  .creative {
    font-size: 25px;
  }
  .creative-pera{
    font-size: 16px;
  }
}

@media only screen and (min-width: 1800px) {
  .creative {
    font-size: 32px;
  }
}
ul li a{
    color: #fff;
}
ul li a:hover{
    color: #fff;
    text-decoration: none;
}































#sticky {
  position: -webkit-sticky;
  position: sticky;
  background: #3E9357;
  width: 100%;
  top: 170px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 6px #000;
  color: #fff;
  padding: 5%;
}
#sticky h2{
    font-size: 50px;
}
.extra,
#wrapper {
  width: 100%;
  margin: auto;
}



@media (min-height: 1px) {
  #wrapper{
    height: 100%;
  }
}

.service-item-card{
    background-image: radial-gradient(circle at 50% 130%,rgba(62, 147, 87, 1),transparent 35%);
    flex: 40%;
    padding: 4rem 2.5rem;
    padding-bottom: 3%;
    position: relative;
}
.service-number{
    opacity: .7;
    color: rgba(0,0,0,.1);
    letter-spacing: 0;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: -1.5rem;
    bottom: auto;
    left: auto;
    right: -0.0875rem;
}

.contactbtn2 a{
    color: #fff;
}

.contactbtn2:hover a{
    color: #000;
}
.contactbtn2:hover a:hover{
    text-decoration: none;
}
.pb-9{
    padding-bottom: 9%;
}
.phone{
    color: #000;
    text-decoration: none;
}
.phone:hover{
    color: #000;
    text-decoration: none;
}

.media{
    font-size: 25px;
    color:#3E9357 ;
    padding: 5%;
    border-radius: 25px;
    border:1px solid #000;
}
.colorbtn{
    color: #fff;
    text-decoration: none;
}
.colorbtn:hover{
    color: #fff;
    text-decoration: none;
}
.btnquote{
    background:transparent; 
    border: none;
}

.btnquote:focus{
    border:none;
    outline: none;
}
.br25{
    border-radius: 25px;
}