 body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    background: linear-gradient(180deg, #121212, #0b2e13); /* dark gradient */
    color: #eaeaea; /* light text for readability */
    overflow-x: hidden;
  }


    /* Section Title */
    .section-title {
      margin: 150px 0 50px;
      text-align: center;
      font-weight: 700;
      text-transform: uppercase;
      color: #145c32;
      letter-spacing: 2px;
      position: relative;
    }
    .section-title::after {
      content: "";
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #198754, #28c76f);
      display: block;
      margin: 12px auto 0;
      border-radius: 2px;
    }

    /* Navbar */
    .navbar {
      padding: 15px 0;
      transition: all 0.3s ease;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .navbar-brand {
      font-size: 1.6rem;
      font-weight: 800;
      color: #28c76f !important;
      letter-spacing: 1px;
    }
    .navbar-dark .nav-link {
      color: #ddd !important;
      font-weight: 500;
      transition: 0.3s;
    }
    .navbar-dark .nav-link:hover ,.navbar-dark .nav-link.active {
      color: #28c76f !important;
    }

    /* Hero */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      overflow: hidden;
    }
    .hero-video {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 850px;
      padding: 20px;
      opacity: 75;
    }
    .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      font-weight: 800;
      text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
    }
    .hero-content p {
      font-size: 1.3rem;
      margin-bottom: 30px;
    }
    .hero-content .btn {
      font-size: 1.2rem;
      padding: 14px 34px;
      border-radius: 30px;
      background: linear-gradient(135deg, #28c76f, #198754);
      border: none;
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      transition: 0.3s;
    }
    .hero-content .btn:hover {
      background: linear-gradient(135deg, #198754, #0f5132);
      transform: scale(1.05);
    }

    /* Glassmorphism Cards */
        .card {
      background: rgba(255, 255, 255, 0.85); /* light frosted glass */
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.3);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.25);
      transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.3s ease;
      color: #222; /* dark text for readability */
    }

    .card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 20px 45px rgba(40,199,111,0.35); /* soft green glow */
      border: 1px solid rgba(40, 199, 111, 0.6);
    }

    .card-title {
      font-weight: 700;
      margin-bottom: 15px;
      color: #198754; /* strong green accent */
      text-shadow: 0 0 6px rgba(40,199,111,0.3);
    }



    /* Impact Numbers */
    #impact h3 {
      font-size: 2.8rem;
      font-weight: bold;
      color: #198754;
    }

    /* Team */
    #team{
            padding-bottom: 150px !important;
        }
    #team .card {
      border-top: 5px solid #198754;
      min-height:550px;
      margin-top:100px;
    }
    #team h5 {
      font-weight: 700;
      margin-bottom: 5px;
      color: #145c32;
      
    }

    /* Contact */
    #contact {
    background: linear-gradient(135deg, #000, #0b2e13); /* Dark gradient */
    color: white;
    width: 100%;
    border-radius: 0; /* remove rounded corners for full width */
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    }

    #contact a.btn {
      border-radius: 25px;
      transition: 0.3s;
      background-color: white;
      color: #198754;
      font-weight: 600;
    }
    #contact a.btn:hover {
      background-color: #0f5132;
      color: white;
    }

    /* Footer */
    footer {
      font-size: 0.9rem;
      background: #0f5132;
      color: white;
      letter-spacing: 1px;
    }

    /* Animate on Scroll */
    [data-animate] {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }
    [data-animate].visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Modals */
        .modal-content {
      background: rgba(255, 255, 255, 0.85); /* light frosted glass */
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.3);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: #222; /* dark text inside */
    }

    .modal-content:hover {
      transform: scale(1.02);
      box-shadow: 0 20px 55px rgba(40,199,111,0.35); /* green glow */
      border: 1px solid rgba(40, 199, 111, 0.6);
    }

    .modal-body h6 {
      color: #198754; /* green heading */
      font-weight: 700;
      margin-bottom: 15px;
      text-shadow: 0 0 6px rgba(40,199,111,0.3);
    }

    .modal .list-group-item {
      border: none;
      background: transparent;
      padding-left: 0;
      font-size: 1rem;
      color: #333; /* readable text */
    }
    .image-card {
        background: white;
        overflow: hidden;
        height:150px;
        width:150px;
        border-radius: 50%;
        margin-top:-50px;
        border:4px solid #198754;
    }
    
    #industries .card{
        
        margin: 10px auto; ;
        min-height:140px;

    }
    #industries .card h5{
        
        margin: auto;

    }
    
    
      
 /* Accordion Button - Green Theme, No Rounded Corners */
.accordion-button {
  background: #f0fdf4; /* light green */
  font-weight: 600;
  font-size: 1rem;
  color: #14532d; /* dark green text */
  padding: 12px 16px;
  border: 1px solid #bbf7d0; /* soft green border */
  border-radius: 0; /* no rounding */
  box-shadow: none;
}

/* Remove default caret */
.accordion-button::after {
  display: none;
}

/* Add custom + / - icons */
.accordion-button::before {
  content: "+";
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 10px;
  color: #16a34a; /* medium green */
  transition: transform 0.2s ease;
}

/* When open, change to minus */
.accordion-button:not(.collapsed)::before {
  content: "-";
  color: #166534; /* darker green */
}
/* Accordion Body */
.accordion-body {
  background: #ffffff;
  border-left: 3px solid #16a34a; /* green accent bar */
  padding: 14px 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #064e3b; /* deep green text */
  border-radius: 0;
}
.accordion-button:not(.collapsed){
    background:green;
    color:white;
}

.page-name{
    background:#1c4727; padding-top:150px; padding-bottom:10px;
}

.footer-custom {
  position: relative;
  background: #082b10db url("/assets/images/footer-2.png") no-repeat center center;
  background-size: cover;
  background-blend-mode: overlay; /* blends image with bg color */
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;  /* vertically center text */
  justify-content: center; /* horizontally center text */
}

.footer-custom p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}


    