   <style>
    body {
      font-family: 'Segoe UI', sans-serif;
    }

    .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 */
.carousel-fade .carousel-item {
  transition: opacity 1.2s ease-in-out;
  /*background-color: rgba(0, 0, 0, 0.5);*/
  background-color: transparent !important;
}
.carousel-inner {
  /*background-color: rgba(0, 0, 0, 0.5);*/ /* fallback background */
  background-color: transparent !important;
}

.carousel-item img {
  display: block;
  width: 100%;
  height: auto;
  /*opacity: 0.95;*/ /* optional: tweak this if needed */
  opacity: 1;
  background-color: transparent;
}
/*===========new one============*/
/* Make sure the page and carousel don't flash white */

/* Full height carousel and items */
.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
  width: 100%;
  background-color: transparent !important;
}

/* Custom fade override that doesn't remove old slide early */
.carousel-fade .carousel-item {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
  z-index: 1;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: transparent;
}
/*===========================*/
#officers .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#officers .card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); /* Optional: subtle lift effect */
}
#officers .card:hover {
  cursor: pointer;
}
/*=====*/
#officers .card-img-top {
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  border-radius: 50%; /* keeps it a circle */
}

#officers .card:hover .card-img-top {
  transform: scale(1.15);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.3); /* subtle blue glow */
}
#officers .card:hover .card-img-top {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
/*===for fro-header slide mobile view===*/
/* Mobile slide-in menu */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background-color: #004080;
  z-index: 1050;
  transition: right 0.3s ease-in-out;
  padding-top: 4.5rem;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-slide-menu.show {
  right: 0;
}

.mobile-slide-menu .btn-close {
  filter: invert(1);
}

body.nav-open {
  overflow: hidden;
}
  /* Make nav links white for contrast */
  .slide-in-menu .nav-link {
    color: white !important;
  }

  /* Optional: style active or hovered links */
  .slide-in-menu .nav-link:hover {
    color: #ffcc00 !important; /* gold highlight on hover */
  }
}
/* Style for close button */
#mainNavbar .btn-close {
  filter: invert(1); /* makes the close icon white */
  z-index: 9999;
}
/*=====FOR SESSION TITLE======*/
.section-title {
  display: inline-block;
  background-color: #004080;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 2rem;
  border-radius: 8px;
  position: relative;
  margin: 0 auto;
}

/* Optional underline effect */
.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: white;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
    padding: 0.4rem 1.5rem;
  }
}
/*=====for custom button=====*/
.custom-btn {
  display: inline-block;
  background-color: #004080;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-btn:hover {
  background-color: #0059b3; /* Slightly lighter on hover */
  transform: translateY(-2px); /* Slight lift effect */
}

@media (max-width: 576px) {
  .custom-btn {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}
/*==========for custom button with arrow====*
.custom-btn {
  display: inline-block;
  background-color: #004080;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-btn i {
  transition: transform 0.2s ease;
}

.custom-btn:hover {
  background-color: #0059b3;
  transform: translateY(-2px);
}

.custom-btn:hover i {
  transform: translateX(4px); /* Arrow slides right on hover *
}

@media (max-width: 576px) {
  .custom-btn {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}
=====*/
/*=====for news horizontal scroll=====*
.news-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.news-item {
  min-width: 300px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}
/*====for this arrow scroll < >========*/
.news-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  
  /* Hide scrollbar for all browsers */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

.news-scroll-container::-webkit-scrollbar {
  display: none;             /* hide horizo scroll bar in Chrome, Safari and Opera */
}

.news-item {
  min-width: 300px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
}

.scroll-arrow.left {
  left: -10px; /* Adjust if needed */
}

.scroll-arrow.right {
  right: -10px; /* Adjust if needed */
}

.scroll-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}
.news-scroll-container.grabbing {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
/*====for scrolling on top====*/
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #004080;
  color: white;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none; /* Hidden by default */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, bottom 0.3s, right 0.3s;
}

#scrollToTopBtn:hover {
  background-color: #00264d;
}

/* Mobile-specific positioning */
@media (max-width: 576px) {
  #scrollToTopBtn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
  </style>
<style>
/*--===this is about us style=====--*/
  .about-modern {
    background: linear-gradient(to right, #f8f9fa, #e9f1f8);
  }

  .about-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
  }

  .text-navy {
    color: white;
  }

  .about-modern .lead {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .about-card {
      padding: 2rem;
    }
  }
</style>