body {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

.navbar .navbar-brand {
  width: 265px;
}
.navbar .nav-link {
  color: #000000;
}
.navbar .btn-group {
  font-size: 15px;
  border-radius: 20px;
  padding: 3px 7px;
  margin-left: 20px;
  background-color: #0167B1;
}
.navbar .btn-group a {
  color: #ffffff;
  text-transform: uppercase;
}
.navbar .btn-group a:not(:last-child) {
  padding-right: 5px;
  border-right: 1px solid #ffffff;
  margin-right: 5px;
}

.site-marquee {
  color: #ffffff;
  background-color: #BF3535;
  font-size: 18px;
  padding: 3px 7px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.highlight-title {
  font-weight: bold;
  color: #d62525;
}

.highlight-blue {
  color: #0056b3;
}

.btn-green {
  background-color: #4CAF50;
  color: white;
  border: none;
}

.btn-orange {
  background-color: #f15b43;
  color: white;
  border: none;
}

.icon-box i {
  font-size: 3rem;
  color: #4C4D8B;
}

.border img {
  height: 40px;
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.phishing-alert {
  background-color: #c8102e;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.phishing-alert img {
  width: 40px;
}

.footer {
  background-color: #0056a6;
  color: white;
  padding: 50px 20px 20px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.social-icons a {
  font-size: 20px;
  margin-right: 10px;
  color: white;
}

.subscribe-form input {
  border-radius: 20px 0 0 20px;
  padding: 10px;
  border: none;
}

.subscribe-form .btn {
  border-radius: 0 20px 20px 0;
  padding: 10px 20px;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
}

.innerpage-banner {
  background-color: #ffe6e8;
  padding: 50px 0;
  text-align: center;
}

.sec-padding {
  padding: 80px 0;
}

.breadcrumb-item {
  color: #000000;
}
.breadcrumb-item.active {
  color: #0167B1;
}
.breadcrumb-item a {
  color: #000000;
}
.breadcrumb-item a:hover {
  color: #0167B1;
}

.mission-vision .box {
  box-shadow: 0px 0px 10px 0px #ccc;
  padding: 40px;
  border-radius: 30px;
}

.mission-vision-wrapper {
  padding: 50px 0;
}

.thrusts-wrapper {
  padding: 50px 0;
  text-align: center;
}/*# sourceMappingURL=style.css.map */
/* Show dropdown on hover */
.hover-dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Optional: aligns it closely to nav link */
}

     .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: none;
    animation: dropdownFade 0.3s ease;
    padding: 0.5rem 0;
  }

  .dropdown-item {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .dropdown-item:hover {
    background-color: #f0f4ff;
    color: #0d6efd;
    padding-left: 25px;
  }

  .dropdown-toggle::after {
    margin-left: 0.4rem;
    vertical-align: middle;
  }

  @keyframes dropdownFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown-menu li a::before {
    content: "\f054"; /* Font Awesome arrow icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #0d6efd;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .dropdown-item:hover::before {
    opacity: 1;
  }