body{
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    /* background: url('images/slider1.jpg') no-repeat center center fixed; */
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* loader start */

/* From Uiverse.io by alexruix */ 
.loader {
  position: relative;
  width: 120px;
  height: 90px;
  margin: 0 auto;
}

.loader:before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #2a9d8f;
  animation: loading-bounce 0.5s ease-in-out infinite alternate;
}

.loader:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 7px;
  width: 45px;
  border-radius: 4px;
  box-shadow: 0 5px 0 #f2f2f2, -35px 50px 0 #f2f2f2, -70px 95px 0 #f2f2f2;
  animation: loading-step 1s ease-in-out infinite;
}

@keyframes loading-bounce {
  0% {
    transform: scale(1, 0.7);
  }

  40% {
    transform: scale(0.8, 1.2);
  }

  60% {
    transform: scale(1, 1);
  }

  100% {
    bottom: 140px;
  }
}

@keyframes loading-step {
  0% {
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0),
            0 10px 0 #f2f2f2,
            -35px 50px 0 #f2f2f2,
            -70px 90px 0 #f2f2f2;
  }

  100% {
    box-shadow: 0 10px 0 #f2f2f2,
            -35px 50px 0 #f2f2f2,
            -70px 90px 0 #f2f2f2,
            -70px 90px 0 rgba(0, 0, 0, 0);
  }
}

/* loader end */
/* navbar  container start */
.nav-container {
  width: 100%;
  background: #e6e5e3;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
.nav-container.scrolled {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  background: #e6e5e3;
}


.navbar-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}
.logo img {
  width: 325px;

  transform: scale(1.05);
  cursor: pointer;
  position: absolute;
  top: -98px;
  left: 55px;
}

.logo h2 {
    color: #388D72;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-list li {
  color: #565555;
  font-size: 18px;
  font-weight: 500;
}
.nav-list li a {
    text-decoration: none;
    color: #565555;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #388D72;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-out;
}

.nav-list li a:hover {
    color: #388D72;
    transform: translateY(-2px);
}

.nav-list li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}
.callnow{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* From Uiverse.io by KINGFRESS */ 
.callbtn{
    font-weight: bold;
    color: white;
    border-radius: 2rem;
    cursor: pointer;
    width: 95.02px;
    height: 42.66px;
    border: none;
    background-color: #3653f8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
  }
  
  .callbtn .span-mother {
    display: flex;
    overflow: hidden;
  }
  
  .callbtn:hover .span-mother {
    position: absolute;
  }
  
  .callbtn:hover .span-mother span {
    transform: translateY(1.2em);
  }
  
  .callbtn .span-mother span:nth-child(1) {
    transition: 0.2s;
  }
  
  .callbtn .span-mother span:nth-child(2) {
    transition: 0.3s;
  }
  
  .callbtn .span-mother span:nth-child(3) {
    transition: 0.4s;
  }
  
  .callbtn .span-mother span:nth-child(4) {
    transition: 0.5s;
  }
  
  .callbtn .span-mother span:nth-child(5) {
    transition: 0.6s;
  }
  
  .callbtn .span-mother span:nth-child(6) {
    transition: 0.7s;
  }
  
  .callbtn .span-mother2 {
    display: flex;
    position: absolute;
    overflow: hidden;
  }
  
  .callbtn .span-mother2 span {
    transform: translateY(-1.2em);
  }
  
  .callbtn:hover .span-mother2 span {
    transform: translateY(0);
  }
  
  .callbtn .span-mother2 span {
    transition: 0.2s;
  }
  
  .callbtn .span-mother2 span:nth-child(2) {
    transition: 0.3s;
  }
  
  .callbtn .span-mother2 span:nth-child(3) {
    transition: 0.4s;
  }
  
  .callbtn .span-mother2 span:nth-child(4) {
    transition: 0.5s;
  }
  
  .callbtn .span-mother2 span:nth-child(5) {
    transition: 0.6s;
  }
  
  .callbtn .span-mother2 span:nth-child(6) {
    transition: 0.7s;
  }
  @media (max-width: 768px) {
    .navbar-section {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        width: 100%;
        text-align: center;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
    }
    
    .nav-list li {
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }
    .callnow{
        display: none;
    }
    .logo img{
      top: -108px;
    left: 0;
    }
}

/* navbar  container end */


/* slider start  */
.swiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    position: relative;
}
/* .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
} */
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    z-index: 10;
}

.swiper-pagination-bullet-active {
    background: #3653f8;
}

.swiper-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 20;
    /* background: rgba(0, 0, 0, 0.5); */
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.swiper-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  letter-spacing: 4px;
  color: rgb(29, 27, 27);
  
}

.swiper-content h1 {
  font-size: 74px;
  margin-bottom: 20px;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  color: black !important;
  font-weight: 500;
  letter-spacing: 4px;
  font-family: Montserrat;
  margin-top:0 ;
}

.swiper-content p {
  font-size: 22px;
  margin-bottom: 20px;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  color: rgb(39, 36, 36);
}

.swiper-slide-active .swiper-content {
    opacity: 1;
}
/* slider end */

/* about us  section start */

/* General Reset */
/* About Section Styling */
:root {
  --primary-color: #101a25;
  --secondary-color: #ff9800;
  --text-color: #333;
  --background-color: aliceblue;
  --font-family: 'Poppins', sans-serif;
}

.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  background: url('../images/bed-3.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: var(--font-family);
  overflow-x: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding: 20px;
  color: var(--text-color);
  background: var(--background-color);
  border-radius: 10px;
  width: 50%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-content h1 {
  font-size: 35px;
  font-weight: bold;
  color: var(--primary-color);
  font-family: 'Roboto', sans-serif;
}

.about-content h1 span {
  color: var(--secondary-color);
}

.about-content h4 {
  font-size: 18px;
  color: #7f8c8d;
  margin: 10px 0;
}

.about-content .description {
  font-size: 18px;
  margin: 15px 0;
  color: black;
  font-family: sans-serif;
  word-spacing: 5px;
  letter-spacing: 1px;
}

.aboutbtn {
  width: 110px;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.about-image img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .about-content {
    width: 100%;
    height: auto;
    padding: 15px;
  }

  .about-content h1 {
    font-size: 28px;
  }

  .about-content h4 {
    font-size: 16px;
  }

  .about-content .description {
    font-size: 14px;
  }

  .about-image img {
    width: 200px;
    height: 200px;
  }
}

/* about us section end */


/* service section  start*/

    /* Services Section */
    .services-section {
      position: relative;
      background: url("../images/processbg.jpg") no-repeat center center/cover;
      background-attachment: fixed; /* Enables the parallax effect */
      padding: 80px 20px;
      text-align: center;
      overflow: hidden;
      min-height: 80vh; /* Ensures it covers the full viewport height */
  }

    /* Wave Background */
    /* .services-section::before {
        content: "";
        position: absolute;
        top: -100px;
        left: 0;
        width: 100%;
        height: 150px;
        background: url("../images/architechimg1.jpg"); /* Wave PNG */
        /* background-size: cover;
        z-index: 1;
    } */

    .services-title {
        font-size: 50px;
        font-weight: bold;
        color: #388d72;
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
        font-family: roboto;
    }

    .services-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        position: relative;
        z-index: 2;
    }

    .service-box {
        background: white;
        border-radius: 10px;
        padding: 20px;
        width: 300px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
        text-align: center;
    }

    .service-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .service-icon {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .service-title {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .service-description {
        font-size: 14px;
        color: #666;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .services-container {
            flex-direction: column;
            align-items: center;
        }
        .services-section {
          background-attachment: scroll; /* Disables parallax on small screens */
          background-size: cover;
      }
    }
  /* service section end   */



  /* contact section start */
       /* Contact Section */
       .contact-section {
        /* background: linear-gradient(to right, #1e1e2f, #383857); */
        background: linear-gradient(135deg, #eceff1, #cfd8dc);
        color: white;
        text-align: center;
        padding: 60px 20px;
        position: relative;
    }
    
    .contact-section-container {
        display: flex;
        /* flex-wrap: wrap; */
        justify-content: center;
        gap: 20px;
    }
    
    .contact-section-container-img {
      width: 100%;
      max-width: 600px;
      padding: 0px 80px;
      display: flex
  ;
      justify-content: center;
      /* align-items: center; */
      background: linear-gradient(to right, #1e1e2f, #383857); 
      border-radius: 18px;
      box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .contact-section-container-img img {
        width: 100%;
        border-radius: 18px;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        cursor: pointer;
        object-fit: cover;
        height: 700px;
    }
    .contact-section-title-bg{
      position: absolute;
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
    /* z-index: 0; */
    /* right: 2px; */
    color: #eeebeb;
    text-align: center;
    font-size: 120px;
    margin-top: -40px;
    margin-left: 152px;
    text-align: center;
    }
    .contact-section-container-form h2{
      color: #388d72;
      font-size: 50px;
      font-family: Roboto;
      position: relative;
      
    }
    .contact-section-main {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin-top: 30px;
    }
    
    .contact-container {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
    }
    
    .contact-box {
        /* background: rgba(255, 255, 255, 0.1); */
        background: white;
        padding: 20px;
        border-radius: 10px;
        width: 200px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }
    
    .contact-box:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    .contact-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .contact-title {
        font-weight: bold;
        font-size: 22px;
        font-family: lato;
        color: #ff8b25;
    }
    
    .contact-info {
        font-size: 14px;
        margin-top: 5px;
        color: black;
    }
    
    .contact-form {
        max-width: 420px;
        width: 100%;
        padding: 37px;
        /* background: rgba(255, 255, 255, 0.1); */
        background: white;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        color: black;
        position: relative;
        border-bottom: 2px solid #ff8b25;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid black;
        border-radius: 5px;
        font-size: 16px;
        
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border: 1px solid #4CAF50;
    }
    
    .contact-form button {
        background: #25d366;
        color: white;
        border: none;
        padding: 12px;
        width: 100%;
        font-size: 18px;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    }
    
    .contact-form button:hover {
        background: #1ebe5d;
    }
    
    .social-icons {
        margin-top: 30px;
    }
    
    .social-icons a {
        display: inline-block;
        margin: 0 10px;
        color: white;
        font-size: 20px;
        transition: 0.3s;
    }
    
    .social-icons a:hover {
        color: #25d366;
    }
    
    @media (max-width: 768px) {
      .contact-section-container{
        flex-direction: column;
        align-items: center;
      }      
        .contact-section-main {
            flex-direction: column;
        }
    
        .contact-container {
            flex-direction: column;
        }
    
        .contact-box {
            width: 80%;
        }
    
        .contact-form {
            width: 80%;
        }
        .contact-section-container-img{
          padding: 0;
        }
        .contact-section-title-bg{
          display: none;
        }
    }
    
    /* contact section end */

/* gallery section start */

        /* Gallery Section */
        .gallery-section {
          text-align: center;
          padding: 60px 20px;
          background: linear-gradient(135deg, #eceff1, #cfd8dc);
          color: white;
          position: relative;
      }

      /* Wave Background */
      /* .gallery-section::before {
          content: "";
          position: absolute;
          top: -50px;
          left: 0;
          width: 100%;
          height: 100px;
          background: url('https://www.solidbackgrounds.com/images/2560x1440/2560x1440-dark-gray-solid-color-background.jpg');
          background-size: cover;
      } */

      .gallery-title-bg{
        position: absolute;
        object-fit: cover;
        color: #e4cfc15c;
        text-align: center;
        font-size: 157px;
        margin-top: -79px;
        left: 28%;
        text-align: center;
      }

      .gallery-title {
          font-size: 50px;
          margin-bottom: 20px;
          color: #388d72;
          font-family: roboto;
          position: relative;
      }

      /* Grid Layout */
      .gallery-container {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 15px;
          max-width: 1000px;
          margin: auto;
      }

      /* Image Box */
      .gallery-item {
          position: relative;
          overflow: hidden;
          border-radius: 10px;
          cursor: pointer;
      }

      .gallery-item img {
          width: 100%;
          height: auto;
          border-radius: 10px;
          transition: transform 0.3s, box-shadow 0.3s;
      }

      /* 3D Hover Effect */
      .gallery-item:hover img {
          transform: scale(1.1);
          box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.3);
      }

      /* Lightbox */
      .lightbox {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.8);
          justify-content: center;
          align-items: center;
          z-index: 1000;
      }

      .lightbox img {
          max-width: 90%;
          max-height: 90%;
          border-radius: 10px;
      }

      .lightbox-close {
          position: absolute;
          top: 20px;
          right: 40px;
          color: white;
          font-size: 30px;
          cursor: pointer;
      }

      /* Click for More Button */
      .more-button {
          display: inline-block;
          margin-top: 20px;
          padding: 12px 20px;
          background: #ff6f61;
          color: white;
          font-size: 18px;
          border-radius: 25px;
          transition: 0.3s;
          cursor: pointer;
      }

      .more-button:hover {
          background: #e65c50;
          transform: scale(1.1);
      }

      @media (max-width: 768px) {
      .gallery-title-bg{
          display: none;
      }
    }
      @media (max-width: 600px) {
          .gallery-container {
              grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
          }
      }
      .click-for-more{
        margin: 36px;
        z-index: 20;
      }



/* Button Styling */
/* From Uiverse.io by MuhammadHasann */ 
.learn-more{
  position: relative;
  padding: 13px 35px;
  background: #388D72;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 2px 2px 5px #18181869, inset 2px 2px 10px #ffffffb0;
  transition: all .3s ease-in-out;
}

.icon-1 {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0px;
  height: auto;
  transition: all .5s ease-in-out;
  z-index: -1;
}

.icon-2 {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0px;
  height: auto;
  transition: all .5s ease-in-out;
  z-index: -2;
}

.icon-3 {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0px;
  height: auto;
  transition: all .5s ease-in-out;
  z-index: -2;
}

.icon-4 {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0px;
  height: auto;
  transition: all .5s ease-in-out;
  z-index: -2;
}

.icon-5 {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0px;
  height: auto;
  transition: all .5s ease-in-out;
  z-index: -2;
}

.learn-more:hover {
  padding: 13px 25px;
  border-radius: 8px 8px 24px 24px;
}

.learn-more:hover .icon-1 {
  top: -250%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 50px;
  height: auto;
  animation: inIcon1 1s ease .45s forwards;
}

@keyframes inIcon1 {
  0% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(0deg);
  }

  25% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(5deg);
  }

  50% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(1deg);
  }

  65% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(3deg);
  }

  100% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(0deg);
  }
}

.learn-more:hover .icon-2 {
  position: absolute;
  top: -200%;
  left: 90%;
  transform: translate(-50%, 0);
  width: 75px;
  height: auto;
  animation: inIcon2 1s ease .45s forwards;
}

@keyframes inIcon2 {
  0% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(0deg);
  }

  35% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(10deg);
  }

  50% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(4deg);
  }

  80% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(5deg);
  }

  100% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(0deg);
  }
}

.learn-more:hover .icon-3 {
  position: absolute;
  top: -130%;
  left: 20%;
  transform: translate(-50%, 0);
  width: 60px;
  height: auto;
  animation: inIcon3 1s ease .45s forwards;
}

@keyframes inIcon3 {
  0% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(0deg);
  }

  35% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(-2deg);
  }

  100% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(0deg);
  }
}

.learn-more:hover .icon-4 {
  position: absolute;
  top: -300%;
  left: 10%;
  transform: translate(-50%, 0);
  width: 85px;
  height: auto;
  animation: inIcon4 1s ease .45s forwards;
}

@keyframes inIcon4 {
  0% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(0deg);
  }

  40% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(-3deg);
  }

  100% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(0deg);
  }
}

.learn-more:hover .icon-5 {
  position: absolute;
  top: -350%;
  left: 90%;
  transform: translate(-50%, 0);
  width: 85px;
  height: auto;
  animation: inIcon5 1s ease .45s forwards;
}

@keyframes inIcon5 {
  0% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(0deg);
  }

  35% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(-3deg);
  }

  100% {
    transform-origin: 0 100%;
    transform: translate(-50%, 0) rotate(0deg);
  }
}

.fil-leaf-1 {
  fill: #7B9B3A
}

.fil-leaf-2 {
  fill: #556729;
  fill-rule: nonzero
}

.fil-leaf-3 {
  fill: #556729
}

.fil-leaf-4 {
  fill: #3C4819
}

.fil-leaf-5 {
  fill: #3C4819
}



/* gallery section end */


/* our fact section start */


.facts-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #e3f2fd, #bbdefb, #90caf9); */
  background: #eceff1;
  color: #333;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.facts-image {
  flex: 1;
  max-width: 500px;
  padding: 20px;
}

.facts-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.facts-content {
  flex: 1;
  max-width: 600px;
  padding: 20px;
}

.facts-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #388d72;
  font-family:Roboto;
}

.facts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.fact-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 35px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.fact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.fact-icon {
  font-size: 45px;
  margin-bottom: 10px;
  color: #1976d2;
}

.fact-number {
  font-size: 2.2em;
  font-weight: bold;
  color: #ff8b25;
}

.fact-text {
  font-size: 1.1em;
  font-weight: 600;
  color: #555;
}

.contact-btn {
  margin-top: 40px;
  text-align: center;
}

.contact-button {
  background: #1976d2;
  color: #fff;
  padding: 12px 24px;
  font-size: 1.2em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-button:hover {
  background: #1565c0;
  transform: scale(1.05);
}


/* From Uiverse.io by mobinkakei */ 
.btn-shine {
  position: relative;
  margin: 0;
  padding: 17px 35px;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid rgba(22, 76, 167, 0.6);
  border-radius: 10px;
  color: #1d89ff;
  font-weight: 400;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.btn-shine span {
  color: #164ca7;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
}

.btn-shine:hover {
  animation: rotate624 0.7s ease-in-out both;
}

.btn-shine:hover span {
  animation: storm1261 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

@keyframes rotate624 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes storm1261 {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }

  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }

  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }

  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }

  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}

.btn-shine {
  border: 1px solid;
  overflow: hidden;
  position: relative;
}

.btn-shine span {
  z-index: 20;
}

.btn-shine:after {
  background: #38ef7d;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.4;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}

.btn-shine:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.facts-button{
  display: flex
  ;
      justify-content: center;
      align-items: center;
      height: 228px;
}
.facts-button a{
  text-decoration: none;
}
@media (max-width: 768px) {
  .facts-section {
      flex-direction: column;
      text-align: center;
  }
  .facts-title {
      font-size: 2.4em;
  }
}

/* our fact section end */

/* process section start */
/* Parallax container */
.process_container {
  position: relative;
  background-image: url('../images/processbg.jpg'); /* Set your background image */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

/* Section styling */
.process-section {
  z-index: 2;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Title Styling */
.process-title {
  font-size: 50px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #388d72;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.5); /* Added text shadow for better readability */
}

/* Separator line */
.line-dark.separator {
  line-height: 0.5;
  text-align: center;
  margin: 30px 0;
}

.separator.separator-bold span i {
  font-size: 20px;
  margin-top: -5px;
}

.line-dark.separator span:before,
.line-dark.separator span:after {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

/* Process items container */
.process-items {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 100%; /* Ensure it doesn't stretch too wide */
}

/* Process items styling */
.process-item {
  background: #5ca08a;
  padding: 20px;
  border-radius: 50%;
  text-align: center;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.process-item:hover {
  transform: scale(1.1);
}

.process-item:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5); Added overlay effect */
  z-index: -1;
  cursor: pointer;
}

.process-item:active {
  background: none;
}

/* Icon Styling */
.process-icon i {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* Process text styling */
.process-text {
  font-size: 1.2rem;
  font-weight: 500;
}
.line-dark{
  color: #388d72;
  
}

/* Optional: Responsive styling */
@media (max-width: 768px) {
  .process_container {
    height: 100%; /* Allow the section to take the content height */
    padding: 10px;
  }

  .process-section {
    margin-top: 50px;
    padding: 20px;
    text-align: left;
    gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .process-items {
    flex-direction: column;
    align-items: center;
    margin-top: 20px; /* Adding margin-top for spacing */
  }

  .process-item {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }

  .process-title {
    font-size: 2.5rem;
  }

  .process-icon i {
    font-size: 2.5rem;
  }

  .process-text {
    font-size: 1rem;
  }
}


/* process section end */

/* footer start */


/* footer end */


/* gallery page start */



/* admin style end */