        :root {
      --primary-green: #007A3D;
      --primary-orange: #F7931E;
      --green-light: #4CAF50;
      --green-dark: #005B2D;
      --orange-light: #FFB84D;
      --white: #FFFFFF;
    }
    body {
      font-family: 'Open Sans', sans-serif;
      background-color: #f5f5f5;
    }
    .ribbon {
      background-color: var(--primary-orange);
      color: white;
      padding: 6px 20px;
      font-weight: bold;
      clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    }
    .social-icons a {
      color: white;
      margin-left: 15px;
      text-decoration: none;
    }
    .social-icons a:hover {
      color: #ccc;
    }
    .info-section {
      font-size: 0.9rem;
    }
    .info-section i {
      color: green;
      margin-right: 5px;
    }
    .navbar-nav .nav-link.active {
      background-color: var(--primary-green);
      color: white !important;
      border-radius: 5px;
    }
     /* Login/SignUp Button */
#loginDropdown {
  background-color: #FDBE43;
  border: none;
  color: white;
  font-weight: 600;
  /* padding: 8px 16px; */
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#loginDropdown:hover,
#loginDropdown:focus {
  background-color: #f7931e;
  color: #fff;
}

/* Dropdown Menu Styling */
.dropdown-menu {
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  /* padding: 8px 0; */
  font-size: 15px;
}
.dropdown-item{
  padding: 0 !important;
  /* margin: 0 !important; */
  width: 10vw;
}

/* Dropdown Items */
.dropdown-menu .dropdown-item {
  /* padding: 10px 20px; */
  transition: background-color 0.2s ease, color 0.2s ease;
  color: #000;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f7931e;
  color: white;
  font-weight: 500;
}

    @media (max-width: 767.98px) {
      .info-section {
        display: none !important;
      }
        .btn-download{
        display: none !important;
      }
    }
    @media (max-width: 991.98px) and (min-width: 768px) {
      .info-section {
        font-size: 0.75rem;
      }
      .feature-box {
        font-size: 0.85rem;
        padding: 15px;
      }
    }
    @media (max-width: 767.98px) {
      .feature-box {
        font-size: 0.8rem;
        padding: 10px;
      }
    }
    
    
    .hero img {
      width: 100%;
      height: auto;
    }
    .about {
      padding: 40px 20px;
      background: #fff;
    }
    .section-title1 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
      border-left: 5px solid green;
      padding-left: 10px;
    }
    .highlight {
      color: #007A3D;
      font-weight: 600;
    }
    .about h3 {
      margin-top: 30px;
      color: #007A3D;
    }
    .about p {
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 20px;
      text-align: justify;
    }
    .contact-boxes {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
      margin-bottom: 30px;
    }
    .contact-card {
      flex: 1 1 300px;
      background: #f8f9fa;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
    }
    .contact-icon {
      font-size: 30px;
      color: #007A3D;
      margin-right: 20px;
    }
    .contact-text small {
      display: block;
      font-weight: 500;
      color: #555;
    }
    .contact-info {
      font-size: 1.2rem;
      font-weight: bold;
      color: #000;
    }
    .btn-download1 {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 24px;
      background-color: #007A3D;
      color: white;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }
    .btn-download1:hover {
      background-color: #005B2D;
    }
    .btn-download {
      display: inline-block;
      /* margin-top: 20px; */
      padding: 6px 12px;
      background-color: chocolate;
      color: black;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }
    .btn-download:hover {
      background-color: rgb(76, 32, 1);
    }
.team-img {
      width: 250px;
      height: 300px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .team-caption {
      max-width: 500px;
    }

    .carousel-item > .d-flex {
      padding: 20px;
    }

    @media (max-width: 768px) {
      .team-caption {
        text-align: center !important;
      }
    }

    @media (max-width: 576px) {
      .section-title1 {
        font-size: 1.5rem;
      }
      .contact-boxes {
        flex-direction: column;
      }
      .about p {
        font-size: 0.95rem;
      }
    }

     .footer {
      background-color: var(--green-dark);
      color: white;
      padding: 40px 0 20px;
    }
    .footer a {
      color: #bbb;
      text-decoration: none;
    }
    .footer a:hover {
      color: white;
      text-decoration: underline;
    }
 