        :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;
    }
    .info-section a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-section a:hover {
    color: #FDBE43;  /* matches the brochure button color */
}
    .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;
}
.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);
    }

    @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;
      }
    }
      
  
  .enquiry-section {
      display: flex;
      flex-wrap: wrap;
      padding: 40px 20px;
      background-color: #f9f9f9;
      gap: 30px;
    }

    .enquiry-form, .contact-info-box {
      flex: 1 1 400px;
      background-color: white;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      border-radius: 8px;
    }

    .enquiry-form h5 {
      color: #666;
      margin-bottom: 0.5rem;
    }

    .enquiry-form h2 {
      margin-bottom: 1.5rem;
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 1rem;
    }

    .form-group {
      flex: 1 1 45%;
      position: relative;
    }

    .form-group.full {
      flex: 1 1 100%;
    }

    .form-group i {
      position: absolute;
      top: 12px;
      left: 10px;
      color: #aaa;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 10px 10px 10px 30px;
      border: 1px solid #ccc;
      border-radius: 5px;
      outline: none;
    }

    .form-group textarea {
      resize: vertical;
    }

    .submit-btn {
      background-color: #28a745;
      color: white;
      padding: 10px 25px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .submit-btn:hover {
      background-color: #218838;
    }
    .contact-info-box a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: #FDBE43;  /* matches the brochure button color */
}

.fa-map-marker-alt {
    margin-right: 0.5rem;
}
    .contact-info-box {
        background-color: var(--primary-green);
    }

    .contact-info-box h3 {
      color: var(--orange-light);
      margin-bottom: 10px;
    }

    .contact-info-box p {
      margin: 5px 0;
      color: white;
    }

    .contact-info-box i {
      margin-right: 10px;
    }
     .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;
    }
 