<style>

    html {
        font-size: clamp(12px, 1.5vw, 14px);
    }

    body {
        font-family: 'Segoe UI', sans-serif;
        font-size: 1rem;
    }

    .navbar {
      background-color: #004080;
    }

    .navbar-brand,
    .nav-link,
    .nav-link:focus,
    .nav-link:hover {
      color: white !important;
    }

    .carousel-caption {
      background: rgba(0, 0, 0, 0.6);
      padding: 20px;
      border-radius: 12px;
    }

    .section-title {
      color: green;
      margin-bottom: 20px;
    }

    .features .card {
      border: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: 0.3s;
    }

    .features .card:hover {
      transform: translateY(-5px);
    }

    footer {
      background: #004080;
      color: white;
      padding: 20px 0;
    }

    .btn-green {
      background: green;
      color: white;
    }

    .btn-green:hover {
      background: #003060;
    }

    .logo-circle {
      width: 40px;
      height: 40px;
      object-fit: cover;
      border-radius: 50%;
    }
	.navbar-brand span {
  	font-size: 1.25rem;
	}
	/* for nav item hover*/
	.navbar-nav .nav-link {
  color: white !important;
  transition: background-color 0.3s ease;
  padding: 8px 15px;
  border-radius: 5px;
}

.navbar-nav .nav-link:hover {
  background-color: green;
  color: white !important;
}
/* end of nav item hover */
.navbar-nav {
  flex-direction: column; /* Mobile default */
}

@media (min-width: 992px) {
  .navbar-nav {
    flex-direction: row;
  }
}
.top-bar {
  flex-wrap: wrap;
  overflow-x: hidden;
}

</style>