
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
:root {
  --yellow:#f5bf23;
  --black:#111;
  --white:#d3e8c9;
  --light-color:#666;
  --light-bg:#eee;
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  --border:.1rem solid rgba(0,0,0,.3);
}



* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #11f30a;
}

section {
  padding: 1rem 1%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: #053613;
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid #11f30a;
  text-decoration: underline;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: #053613;
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.btn:hover {
  background: #11f30a;
  color: #053613;
}

@-webkit-keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.header {
  background-image: url(../images/leaf1.jpg)!important;
  

  background-size: cover;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 2.5rem 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1000;
  background: linear-gradient(to right, #d8f1cf81,greenyellow);
}

.header .logo {
  font-size: 2.5rem;
  color: #053613;
  text-transform: capitalize;
  z-index: 2;
}

.header .logo img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
          z-index: 2;
}

.header .logo img {
  height: 7rem;
  margin-bottom: -3.5rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
  z-index: 2;
}

.header .logo span {
  color: #11f30a;
  z-index: 2;
}

.header .mob-logo {
  font-size: 2.5rem;
  color: #053613;
  text-transform: capitalize;
  z-index: 2;
}

.header .mob-logo img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
          z-index: 2;
}

.header .mob-logo img {
  height: 7rem;
  margin-bottom: -3.5rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.header .mob-logo span {
  color: #11f30a;
}

.header .navbar a {
  font-size: 2rem;
  color: #023826;
  text-transform: capitalize;
  margin: 0 1rem;
  font-weight: bold;
  z-index: 2;
}

.header .navbar a {
  font-size: 2rem;
  color: #023826;
  text-transform: capitalize;
  margin: 0 1rem;
  font-weight: bold;
  z-index: 2;
  transition: background-color 0.3s, color 0.3s; /* smooth transition for background and color */
}

.header .navbar a:hover {
  background-color: green;
  color: white !important;
}

.header .navbar a:hover {
  color: #405a3f;
  text-decoration: underline ;
  z-index: 3;
  border-radius:  6px;
  padding: 2px !important;
  margin: 2px;
 
}




.header .icons div {
  height: 6rem;
  width: 6rem;
  line-height: 6rem;
  font-size: 5rem;
  background: rgb(26, 43, 0);
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  margin-left: 0.3rem;
  z-index: 2;
  border-radius: 11px;
}

.header .icons div:hover {
  background: #053613;
  color: var(--white);
  z-index: 2;
}

.header #menu-btn {
  display: none;
  z-index: 2;
}


.header .login-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  -webkit-animation: fadeIn .2s linear;
          animation: fadeIn .2s linear;
  display: none;
}

.header .login-form.active {
  display: block;
}

.header .login-form h3 {
  font-size: 2.5rem;
  color: #053613;
  text-transform: capitalize;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.header .login-form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
  margin: .7rem 0;
}

.header .login-form .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.header .login-form .flex label {
  font-size: 1.5rem;
  color: var(--light-color);
  cursor: pointer;
}

.header .login-form .flex a {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-left: auto;
}

.header .login-form .flex a:hover {
  color: #11f30a;
  text-decoration: underline;
}

.header .login-form .btn {
  width: 100%;
}

.header .login-form p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 1.5rem;
}

.header .login-form p a {
  color: #11f30a;
}

.header .login-form p a:hover {
  text-decoration: underline;
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: var(--white);
  height: 100%;
  text-align: center;
  z-index: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
}

.contact-info.active {
  -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  display: block;
}

.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 4rem;
  color: #053613;
}

.contact-info #close-contact-info:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.contact-info .info {
  padding: 2rem 0;
}

.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: #053613;
  cursor: pointer;
  text-align: center;
  margin-bottom: .5rem;
}

.contact-info .info i:hover {
  background: #053613;
  color: var(--white);
}

.contact-info .info h3 {
  font-size: 2rem;
  color: #053613;
  text-transform: capitalize;
  padding: 1rem 0;
}

.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}

.contact-info .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: #053613;
  cursor: pointer;
  text-align: center;
  margin: 0 .3rem;
}

.contact-info .share a:hover {
  background: #053613;
  color: var(--white);
}

.home {
  padding: 0;
}

.home .slide {
  min-height: 60rem; 
  display: -webkit-box;
  display: -ms-flexbox; 
  display: flex; 
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.home .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--white)), to(transparent)); 
   background: linear-gradient(90deg, var(--white), transparent);
}

.home .slide .content {
  width: 50rem;
  position: relative;
}

.home .slide .content h3 {
  font-size: 6rem;
  color: #053613;
  text-transform: capitalize;
  text-transform: uppercase;
}

.home .slide .content p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  background: var(--white);
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: #11f30a;
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: #053613;
}

.home .swiper-button-prev {
  right: 7rem;
}

.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
  background-color: #e3ebe0;
}

.about .row .video {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.about .row .video video {
  width: 100%;
}

.about .row .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.about .row .content h3 {
  font-size: 3.5rem;
  color: #053613;
  text-transform: capitalize;
}

.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.about .box-container {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
}

.about .box-container .box h3 {
  font-size: 4rem;
  color: #053613;
  text-transform: capitalize;
}

.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: .5rem;
}

.services {
  background: linear-gradient(115deg, rgba(2,0,36,1) 0%, rgba(41,121,9,1) 41%, rgba(19,169,139,1) 80%, rgba(0,212,255,1) 100%);
}

.services .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}



.services .box-container .box {
  text-align: center;
  padding: 3rem;
  background: #e3ebe0;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: var(--border);
}

.services .box-container .box:hover img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.services .box-container .box img {
  height: 7rem;
  margin-bottom: .5rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.services .box-container .box h3 {
  font-size: 1.7rem;
  color: #053613;
  text-transform: capitalize;
  padding: 1rem 0;
}

.services .box-container .box p {
  font-size: 1.4rem;
  color: #420101;
  line-height: 2;
  font-weight: bold;
}

.projects {
  background: #053613;
}

.projects .heading {
  color: var(--white);
}

.projects .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.projects .box-container .box {
  cursor: initial;
}

.projects .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.projects .box-container .box .image {
  height: 40rem;
  overflow: hidden;
}

.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.projects .box-container .box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}

.projects .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: #053613;
  text-transform: capitalize;
}

.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.projects .box-container .box .content i {
  width: 7.5rem;
  font-size: 3rem;
  background: #11f30a;
  color: var(--white);
  cursor: pointer;
  text-align: center;
  line-height: 7.5rem;
}

.reviews .slide p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.reviews .slide p::before {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--light-bg);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.reviews .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
}

.reviews .slide .user h3 {
  font-size: 2rem;
  color: #053613;
  text-transform: capitalize;
}

.reviews .slide .user .stars {
  padding-top: .5rem;
}

.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: #11f30a;
}

.pricing {
  background: linear-gradient(45deg, rgb(43, 205, 226), lightgreen);;
}

.pricing .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.pricing .box-container .box {
  background: #e3ebe0;;
  text-align: center;
  padding: 2rem;
  border: var(--border);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.pricing .box-container .box i {
  font-size: 3rem;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  background: #11f30a;
  color: #053613;
}

.pricing .box-container .box h3 {
  font-size: 2rem;
  color: #053613;
  text-transform: capitalize;
  font-weight: normal;
}

.pricing .box-container .box .price {
  padding: 1rem 0;
  font-size: 5rem;
  color: #053613;
  text-transform: capitalize;
}

.pricing .box-container .box .price span {
  font-size: 2rem;
}

.pricing .box-container .box .list {
  padding: 1rem 0;
}

.pricing .box-container .box .list p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.contact {
  background: #053613;
}

.contact .heading {
  color: var(--white);
}

.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.contact .row .map {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
  width: 100%;
}

.contact .row form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
  background: #e3ebe0;;
  padding: 2rem;
}

.contact .row form h3 {
  font-size: 2.5rem;
  color: #053613;
  text-transform: capitalize;
}

.contact .row form .box {
  margin: .7rem 0;
  width: 100%;
  padding: 1.5rem 0;
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--light-color);
}

.contact .row form .box:focus {
  border-color: #11f30a;
}

.contact .row form textarea {
  height: 15rem;
  resize: none;
}

.blogs {
  background: var(--light-bg);
}

.blogs .slide {
  text-align: center;
}

.blogs .slide:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blogs .slide .image {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}

.blogs .slide .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.blogs .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: #e3ebe0;;
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}

.blogs .slide .content h3 {
  font-size: 2rem;
  color: #053613;
  text-transform: capitalize;
}

.blogs .slide .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.slogs {
  background: var(--light-bg);
}

.slogs .slide {
  text-align: center;
}

.slogs .slide:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.slogs .slide .image {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}

.slogs .slide .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.slogs .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: var(--white);
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}

.slogs .slide .content h3 {
  font-size: 2rem;
  color: #053613;
  text-transform: capitalize;
}

.slogs .slide .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}



.logo-container {
  text-align: center;
  background: linear-gradient(0deg, rgb(62, 24, 167) 0%, rgb(110, 184, 110) 51%, rgba(99, 236, 68, 0.79) 89%, rgb(81, 232, 182) 100%)
}

.logo-container img {
  height: 20rem;
  width: 10px;
  border-radius: 30px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.sogo-container {
  text-align: center;
  background: linear-gradient(0deg, rgb(62, 24, 167) 0%, rgb(110, 184, 110) 51%, rgba(99, 236, 68, 0.79) 89%, rgb(81, 232, 182) 100%)
  
}

.sogo-container img {
  text-align: center;
  margin: auto;
  display: block;

}


.footer {
  text-align: center;
 background: linear-gradient(73deg, rgb(215, 228, 216) 16%, rgb(186, 227, 180) 46%, rgb(130, 189, 200) 85%);
}

.footer .links .btn {
  margin: .5rem;
}

.footer .credit {
  font-size: 2rem;
  color: #053613;
  text-transform: capitalize;
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer .credit span {
  color: #052804;
}

.location{
  background:linear-gradient(90deg, rgba(2,0,36,1) 20%, rgba(21,19,169,1) 47%, rgba(9,121,105,1) 73%, rgba(0,212,255,1) 95%);
  /* padding:15px 9%;
  padding-bottom: 100px; */
} 


 .location .heading{
  margin-bottom: 3rem;
  font-size: 3rem;
  color: #f3f3f3;
  text-transform: capitalize;
  padding-left: s1rem;
  border-left: 1rem solid #11f30a;
}

.location .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:15px;
}

.location .box-container .box{
  box-shadow: 0 5px 10px rgba(0,0,0,.2);
  border-radius: 5px;
  background: #fff;
  text-align: center;
  padding:30px 20px;
}

.location .box-container .box img{
  height: 7rem;
  /* margin-bottom: -0.5rem; */
  /* margin-right: 40.5rem; */
  float: left;
  -webkit-transition: .2s linear;
  transition: .2s linear;
  
}

.location .box-container .box h1{
  /* color:#444;
  font-size: 18px;
  padding:10px 0;
  text-align: center; */
  font: bold 15px/1.5 Helvetica, Verdana, sans-serif;
}

.location .box-container .box p{
  color:#777;
  font-size: 15px;
  line-height: 1.8;
}

.location .box-container .box .btn{
  margin-top: 10px;
  display: inline-block;
  background:#333;
  color:#fff;
  font-size: 17px;
  border-radius: 5px;
  padding: 8px 25px;
}

.location .box-container .box .btn:hover{
  letter-spacing: 1px;
}

.location .box-container .box:hover{
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
  transform: scale(1.03);
}

@media (max-width:768px){
  .location{
      padding:20px;
  }
}
 
@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 3rem 5%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
  .header #menu-btn {
    display: inline-block;

  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: .2s linear;
    transition: .2s linear;
   
  }
  .header .navbar.active {
    background-image: url(../images/mleaf.webp) !important;
    background-size: cover; /* Ensures the image fully covers the navbar */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the background image */
    
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* Keeps the shape of the navbar */
  }
  
  .header .navbar a {
    display: block;
    margin: 2rem;
    text-align: center;
    z-index: 3;
   
  }

}


@media (max-width: 768px) {
  .header .login-form {
    width: 90%;
  }
  .home .slide {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home .slide .content {
    text-align: center;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .about .row .content h3 {
    font-size: 2.5rem;
  }
}




/*# sourceMappingURL=style.css.map */
/* .section-padding{
  padding:30px 0;
}
.brand-carousel {
background: #fcf6ea;
margin: 0;
}
.owl-dots {
text-align: center;
margin-top: 40px;
}

.owl-dot {
  display: inline-block;
  height: 15px !important;
  width: 15px !important;
  background-color: #444 !important;
  opacity: 0.8;
  border-radius: 50%;
  margin: 0 5px;
}

.owl-dot.active {
background-color: black !important;
} */


nav.navbar {
  background: #ffcece;
  border-radius: 23px;
  padding: 25px;
}

.icons {
  background: #4a9569;
  margin-right: 1px !important;
  padding: 1px;
  border-radius: 11px;
}


/* Media Query for tablets or smaller screens (max width of 768px) */
@media (min-width: 350px) and (max-width: 983px) {

.header .navbar a {
  font-size: 3rem !important;
  color: #023826;
  text-transform: capitalize;
  margin: 0 0.9rem;
  font-weight: bold;
  z-index: 2;
  transition: background-color 0.3s, color 0.3s;
}
}

@media (max-width: 768px) {
  .container {
      padding: 0 15px; /* Less padding on tablets */
      max-width: 100%;  /* Use full width on smaller screens */
  }

  .header .navbar a {
      font-size: 1.5rem; /* Smaller font size for navbar links */
  }
}

/* Media Query for mobile devices (max width of 480px) */
@media (max-width: 480px) {
  .container {
      padding: 0 10px; /* Even less padding on mobile */
  }

  .header .navbar a {
      font-size: 1.2rem; /* Even smaller font size for mobile */
  }
}


@media (max-width: 1080px) {
  .container {
      padding: 0 10px; /* Even less padding on mobile */
  }

  .header .navbar a {
      font-size: 1.2rem; /* Even smaller font size for mobile */
  }
  nav.navbar {
    background: #ffcece;
    border-radius: 23px;
    padding: 10px;

  }
  .header .navbar a {
    font-size: 1rem;
    color: #023826;
    text-transform: capitalize;
    margin: 0 0.5rem !important;
    font-weight: bold;
    z-index: 2;
    transition: background-color 0.3s, color 0.3s;
}
}

@media (max-width: 1480px) {
  .container {
      padding: 0 10px; /* Even less padding on mobile */
  }

  .header .navbar a {
      font-size: 1.2rem; /* Even smaller font size for mobile */
  }

  .header .navbar a {
    font-size: 1rem;
    color: #023826;
    text-transform: capitalize;
    margin: 0 0.9rem;
    font-weight: bold;
    z-index: 2;
    transition: background-color 0.3s, color 0.3s;
}
}



.services-karjat .box-container {
  display: -ms-grid;
  -ms-grid-columns: (minmax(25rem, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.services-karjat .box-container .box img {
  height: 7rem;
  margin-bottom: .5rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
  width: 60px; /* Set fixed width */
  height: 60px; /* Set fixed height */
  object-fit: contain; /* Ensures images fit without distortion */
}

.services-karjat .box-container .box{
  display: flex;
  align-items: center; /* Ensures vertical alignment */
  gap: 15px; /* Space between image and text */
  padding: 10px 0;
  border-bottom: 1px solid #ccc; /
}

.services-karjat .box-container .box:last-child {
  border-bottom: none; /* Removes line from the last box */
}

.services-karjat .box-container .box h3 {
  margin: 0 0 0 34px;
  font-size: 18px;
  font-weight: bold;
  color: #064420;
  flex: 1;
  align-items: center;
  align-content: center;
}

h1.heading {

  color:green;
}


