/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* BODY */
body {
  background-color: #f9fafb;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 20px 20px;
  overflow-x: hidden;
}
::selection {
  background: #56ab2f;
  color: #ffffff;
}
/* PRELOADER STYLES */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    display: flex;
    gap: 10px;
}

.loader span {
    width: 15px;
    height: 15px;
    background-color: #56ab2f; /* Your brand green */
    border-radius: 50%;
    animation: pulse 0.6s infinite alternate;
}

.loader span:nth-child(2) { animation-delay: 0.2s; }
.loader span:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(1.5); opacity: 0.3; background-color: #a8e063; } /* Fades to light green */
}

.loader-text {
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Class to hide the preloader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}
/* HERO BANNER IMAGE */

.hero-banner {
  height: 90vh;
  background: linear-gradient(rgba(10, 30, 10, 0.6), rgba(0, 0, 0, 0.623)),url('https://images.unsplash.com/photo-1490645935967-10de6ba17061') no-repeat center/cover;
  position: relative;
}
.hero-banner-about{
  height: 60vh !important;
  background: linear-gradient(rgba(10, 30, 10, 0.6), rgba(0, 0, 0, 0.623)),url('../images/about-banner.png') no-repeat center/cover;
  position: relative;
}
.hero-banner-contact{
  height: 60vh !important;
  background: linear-gradient(rgba(10, 30, 10, 0.6), rgba(0, 0, 0, 0.623)),url('../images/contact-banner.png') no-repeat center/cover;
  position: relative;
}
.hero-banner-testimonial{
  height: 60vh !important;
  background: linear-gradient(rgba(10, 30, 10, 0.6), rgba(0, 0, 0, 0.623)),url('../images/testimonial-banner.png') no-repeat center/cover;
  position: relative;
}
.overlay {
  
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
 
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 50px;
 
  color: white;
      /* Semi-transparent green (using RGBA for your #4CAF50 color) */
    background: rgba(76, 175, 79, 0.822) !important;
    
    /* The Glass Effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    /* Glossy highlights */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    
    /* Smooth transition when scrolling */
    transition: all 0.3s ease-in-out;
}
 
.navbar-nav li {
  transition: transform 0.2s, text-decoration 0.2s; /* Explicit is better */
}

 
.navbar-nav li:hover {
  transform: scale(1.1);
  text-decoration: underline white;
}
/* Ensure the text stays sharp */
.glass-nav .nav-link, .glass-nav h2 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 90vh;
  background: linear-gradient(to right, #4CAF50, #81C784);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* BUTTON */
.btn {
  background: #FF9800;
  padding: 10px 20px;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

/* SECTION */
.section {
  padding: 50px;
  text-align: center;
}

/* CARDS */
.card {
  background: white;
  padding: 20px;
  margin: 10px;
  display: inline-block;
  width: 250px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 1s;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* FORM */
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

.card-img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Left Side Content */
.content-area {
  background-color: #81a92f;
  padding: 10% 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}



.main-title {
  color: #003366;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  border-bottom: 4px solid #003366;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.sub-title {
  color: #005580;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
}

/* Right Side Image */


@media (min-width: 992px) {
  .image-area {
    min-height: 100vh;
  }
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

img {
  height: auto;
  width: 100%;
}

/* Footer Styles */
.footer {
  background-color: #1a1a1a;
  /* Deep dark grey */
  color: #e0e0e0;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  /* Allows items to wrap on mobile */
  justify-content: space-between;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  /* Forces wrap when space is tight */
}

.footer-section h3,
.footer-section h4 {
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
  padding-left: 0%;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #3498db;
  /* Accent color */
}

.social-links a {
  
  color: #b0b0b0;
  text-decoration: none;
  font-weight: bold;
}

.social-links a:hover {
  color: #ffffff;
}

/* Copyright Bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #777;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    min-width: 100%;
  }
}

.whatsapp-float {
  width: 80px;     
  height: 80px;
  border-radius: 50%;
  padding: 10px;
  padding-top: 12px;
  font-size: 30px;
  color: white;
  background-color: #24c329;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  transition: 0.5s;
  animation: whatsapp 2s infinite;
  text-align: center;
  font-size: 35px;
  align-items: center; 
  opacity: 0.7;
}
@keyframes whatsapp {
    0% { transform: scale(1)}
    50% { transform: scale(1.1);opacity: 1 ; box-shadow: 2px 6px 15px #4CAF50;}
}

.whatsapp-float:hover {
animation: none;
  transform: scale(1.1);
   box-shadow: 2px 6px 15px #4CAF50;
 opacity: 1;
}

.faq-title {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

/* Customizing Bootstrap Accordion to match your image */
.accordion-item {
  border: none;
  border-bottom: 1px solid #86ad39 !important;
  border-radius: 0 !important;
}

.accordion-button {
  padding: 1.25rem 0;
  font-weight: 500;
  background-color: transparent !important;
  box-shadow: none !important;
  color: #333;
}

/* The Teal Square Button */
.accordion-button::after {
  background-color: #86ad39;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 1rem;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  background-position: center;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.accordion-body {
  padding: 0 0 1.5rem 0;
  color: #666;
  line-height: 1.6;
}
.testimonials-card{
  width: 85%;
  border-color: #86ad39 !important;
  border-top:10px solid;
 
}
.card-border{
  border: 2px solid #56ab2f;
}
.card-bg{
    background-color: #86ad39d7 !important;
   
}
.star{
  color: #86ad39d7 !important;
}
.mission-border{
  border-bottom: 2px   #86ad39d7 groove;
}
@media (min-width:1200px) and (max-width:1400px) {
  .xl-m{
    margin-left: 14px;
  }
}
.card-img-top{
  height: 236px;
  width: 236px ;
}
@media (max-width:400px){

  .card-size {
    width: auto;
    margin: 0%;
    padding: 0%;
  }
}
@media (min-width:401px){

  .card-size {
    width: 100% !important;
  }
}