
    /* Custom styles */
    body {
      scroll-behavior: smooth;
    }
    section {
      padding: 80px 0;
    }
    #home {
      position: relative;
      color: white;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-image: url('./heroImg.avif');
      background-size: cover;
      background-position: center;
    }
    /* Overlay for darkening image */
    #home::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 0;
    }
    #home > .container {
      position: relative;
      z-index: 1;
    }
    #home h1 {
      font-size: 3.5rem;
      font-weight: 700;
    }
    #home p {
      font-size: 1.5rem;
      margin-bottom: 30px;
    }
    nav a.nav-link {
      cursor: pointer;
    }
    footer {
      background: #f8f9fa;
      padding: 20px 0;
      text-align: center;
    }
    /* Footer social icons */
    .social-icons a {
  color: #75eb75;
  font-size: 1.5rem;
  margin: 0 12px;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
}

 .social-icons a:hover {
  color: #e4ece4;
  transform: scale(1.2);
  text-shadow: 0 0 8px #323131, 0 0 12px #131212;
}
     /* Hover effect: bottom to top green background */
  .service-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.4s ease;
  }
  .service-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: #90ee90; /* light green */
    transition: height 0.4s ease;
    z-index: 0;
    
  }
  .service-card:hover::before {
    height: 100%;
    border: 2px solid #238f23 ;
    border-radius: 2px;
  }
  .service-card:hover {
    color: #004d00; /* dark green text */
  }
  .service-card > * {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
  }
  .service-card:hover > * {
    color: #004d00;
  }
  .modelbg{
    background-color: #90ee90;
  }
  .clickto {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
   color: #000;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
  z-index: 1;
}

.service-card:hover .clickto {
  display: block;
}
  .btnBorder{
    border: 2px solid  #90ee90 ;
  }
  .btnBorder:hover{
    background-color:  #90ee90;
    color: white;
        border: 2px solid #238f23 ; 
  }
.btnExplore {
  background-color: #90ee90;
   border: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btnExplore:hover {
  background-color: #6bc16b;
  box-shadow: 0 8px 15px rgba(107, 193, 107, 0.6);
  transform: scale(1.05);
   cursor: pointer;
   color: white;
}
.quickLink{
  text-decoration:none;
}
.quickLink:hover{
  text-decoration:underline;
}

.form-control:focus {
  border-color: #90ee90;
  box-shadow: 0 0 5px #90ee90;
  transition: all 0.5s ease;
}
 /* contact title */
.contact-title {
  display: inline-block;
  position: relative;
  font-weight: bold;
  text-align: center;
}
 
.contact-title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: #90ee90; /* Light green underline */
  left: 0;
  bottom: -5px;
  transition: width 0.4s ease;
}

.contact-title:hover::after {
  width: 100%;
}

@media (max-width: 576px) {
  .service-card {
    min-width: 295px !important;
    max-width: 295px !important;
     margin-left: auto;
    margin-right: auto;
  }
}
 .iconn {
  color: #000000;
  font-size: 1.5rem;
  margin: 0 12px;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
}

 .card:hover .iconn {
  color: #e4ece4;
  transform: scale(1.2);
  text-shadow: 0 0 8px #90ee90, 0 0 12px #056205;
}
.card{
  transition: 0.3s linear;
}
.card:hover{
  scale: 1.1;
 }
.contactD{
  text-decoration: none;
  color: black;
  transition: 0.3s linear ;
}

.card:hover .contactD{
  color: #90ee90;
}
   .fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
  }

  .fab {
    width: 50px;
    height: 50px;
    background-color: #90ee90;
    color: rgb(0, 0, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 25px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .fab:hover {
  background-color: #000000;
  color: #90ee90;
  box-shadow:
    0 0 10px #90ee90,
    0 0 20px #90ee90,
    0 0 30px #90ee90;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

  .fab-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    position: absolute;
    bottom: 40px;
    right: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .fab-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .fab-option {
    width: 35px;
    height: 35px;
    background-color: #90ee90;
    color: rgb(0, 0, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 18px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .fab-option:hover {
     background-color: #000000;
  color: #90ee90;
  box-shadow:
    0 0 10px #90ee90,
    0 0 20px #90ee90;
  transform: scale(1.1);
  transition: all 0.3s ease;
  }

  /* Icon Rotation */
  .rotate {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
  .get-in-touch-section{
    background-color: #90ee9024;
  }