:root {
  --primary-color: #388bff;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0%;
  padding: 0%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* MODERN NAVBAR */
.modern-nav {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

/* LOGO */
.logo {
  width: 160px;
  transition: 0.3s;
}

@media (max-width: 576px) {
  .logo {
    width: 130px;
  }
}

/* NAV LINKS */
.modern-link {
  font-weight: 600;
  color: #222 !important;
  position: relative;
  padding: 8px 0;
  transition: 0.3s ease;
}

/* Hover underline effect */
.modern-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: #0066ff;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  border-radius: 4px;
}

.modern-link:hover:after {
  width: 100%;
}

/* Mobile Navbar Animation */
.navbar-collapse {
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  #navbarNav {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .modern-link {
    padding: 12px 0;
    font-size: 18px;
  }
}

/* Navbar Shrink on Scroll */
.navbar.scrolled {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.toggle-icon {
  transition: 0.3s ease;
}

.toggle-icon.active {
  transform: rotate(180deg);
}

.btn-contain {
  background-color: var(--primary-color);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-contain:hover {
  background-color: transparent;
  color: var(--primary-color) !important;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  padding: 12px 28px;
  border-radius: 12px;
  border: 2px solid var(--primary-color);
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff !important;
}

img {
  width: 100%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.primary-heading {
  color: var(--primary-color);
}

.list li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
  display: flex;
  align-items: center;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  height: 100%;
  border: none;
  box-shadow: 0 4px 10px rgba(56, 139, 255, 0.35);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
}

i.bi {
  font-size: 1.4rem;
  color: var(--primary-color);
  transition: all 0.35s ease-in-out;
  vertical-align: middle;
  opacity: 0.9;
}

i.bi:hover {
  color: #0a1c37;
  transform: translateY(-3px) scale(1.12);
  filter: drop-shadow(0 4px 10px rgba(56, 139, 255, 0.35));
  opacity: 1;
}

.list i.bi-check-circle-fill {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-right: 8px;
  opacity: 1;
}

.card h4 i.bi {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-right: 10px;
  filter: drop-shadow(0 2px 5px rgba(56, 139, 255, 0.25));
}

.hero-section i.bi {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-right: 8px;
}

section {
  padding: 60px 0px;
  background-color: #fff;
  overflow-x: hidden;
}

.section-bg {
  background-color: #f0f6ff;
}

.hero-section {
  padding: 40px 0px;
}

.leader-img {
  width: 150px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin: 0% auto;
}

.footer-section {
  padding: 60px 0px 30px 0px;
}

.footer-section h4,
.footer-section h5 {
  color: #0a1c37;
}

.footer-section a {
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color) !important;
}

.footer-section i.bi {
  transition: all 0.3s ease-in-out;
}

.footer-section i.bi:hover {
  transform: translateY(-3px) scale(1.1);
}