    :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-download1{
        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;
      }
    }

      .container1 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .our-services-section {
      background-color: #fff;
      padding: 60px 20px;
    }

    .subtitle {
      color: #888;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
    }

    .title {
      font-size: 32px;
      font-weight: bold;
      margin: 10px 0;
    }

    .underline {
      width: 50px;
      height: 4px;
      background-color: #5cb85c;
      margin-bottom: 25px;
    }

    .our-services-section p {
      color: #333;
      font-size: 16px;
      line-height: 1.7;
    }

    .row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }

    .col-left, .col-right {
      flex: 1 1 50%;
      padding: 20px;
    }

    .col-right {
      text-align: center;
      position: relative;
    }

    .col-right img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .network-box {
      position: absolute;
      bottom: 30px;
      left: 10px;
      background-color: var(--primary-orange);
      color: #fff;
      padding: 15px 25px;
      border-radius: 6px;
      display: inline-block;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .network-box i {
      font-size: 24px;
      margin-bottom: 5px;
    }

    .network-title {
      font-size: 16px;
    }

    .network-count {
      font-size: 20px;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .row {
        flex-direction: column;
      }
      .col-left, .col-right {
        flex: 1 1 100%;
        padding: 10px;
      }
      .network-box {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
      }
    }
    
       .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;
    }