body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

.main-header {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  z-index: 9999 !important;
  position: relative;
}

/* Top Navbar Styling */
.navbar-brand .header-logo {
  height: 30px;
  width: auto;
}

a{
  text-decoration: none;
}

.navbar-brand .secure-text {
  font-weight: 600;
  color: #333;
  font-size: 1.25rem;
}

.navbar-light .navbar-nav .nav-link {
  color: #555;
  font-weight: 400;
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #007bff;
}

/* Dark Navbar Styling */
.dark-navbar {
  background-color: #212529 !important;
  border-radius: 8px;
  padding: 0.5rem 1rem !important;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dark-navbar .navbar-brand .centered-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.dark-navbar .navbar-brand a {
  text-decoration: none;
}

.dark-navbar .navbar-brand .secure-text-dark {
  font-weight: 600;
  color: #fff;
  font-size: 1.5rem;
}

.dark-navbar .navbar-nav .nav-link {
  color: #e9ecef;
  font-weight: 400;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}

.dark-navbar .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.dark-navbar .navbar-nav .nav-item.dropdown .nav-link::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  color: #e9ecef;
}

.dark-navbar .navbar-nav .nav-item.dropdown .nav-link:hover::after {
  color: #ffffff;
}

.dark-navbar .dropdown-menu {
  background-color: #343a40;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dark-navbar .dropdown-menu .dropdown-item {
  color: #e9ecef;
}

.dark-navbar .dropdown-menu .dropdown-item:hover {
  background-color: #495057;
  color: #fff;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-toggler {
  border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
  .dark-navbar {
    max-width: 100%;
    border-radius: 0;
    transform: translateY(0);
    margin-top: 0;
  }
  .dark-navbar .navbar-brand.mx-auto {
    display: none !important;
  }
  .dark-navbar .navbar-nav .nav-link {
    text-align: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .dark-navbar .navbar-nav {
    flex-direction: column;
  }
}

/* hero-section css starts ------------------   */
.image-slider-section {
  padding: 20px 0;
  z-index: 0 !important;
}

.slider-with-side-controls {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

#heroCarousel {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #e0e0e0;
  position: relative;
  flex-grow: 1;
  min-width: 0;
}

.carousel-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.carousel-date-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
}

.custom-carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  z-index: 10;
}

.custom-carousel-indicators button {
  width: 30px;
  height: 4px;
  margin: 0 4px;
  background-color: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  opacity: 0.6;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.custom-carousel-indicators button.active {
  background-color: #ffc107;
  opacity: 1;
  border-color: #ffc107;
}

.carousel-control-prev-side,
.carousel-control-next-side {
  position: relative;
  width: 45px;
  height: 45px;
  background-color: #6c757d;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  border: none;
  flex-shrink: 0;
}

.carousel-control-prev-side:hover,
.carousel-control-next-side:hover {
  background-color: #495057;
  opacity: 1;
}

.carousel-control-prev-side .carousel-control-prev-icon,
.carousel-control-next-side .carousel-control-next-icon {
  width: 24px;
  height: 24px;
  background-size: 100%, 100%;
  filter: brightness(0) invert(1);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .slider-with-side-controls {
    flex-direction: column;
    padding: 0 10px;
  }

  .carousel-control-prev-side,
  .carousel-control-next-side {
    margin: 10px 0 !important;
    width: 50px;
    height: 50px;
  }

  #heroCarousel {
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 575.98px) {
  .image-slider-section {
    padding: 10px 0;
  }
  .carousel-date-overlay {
    bottom: 10px;
    right: 10px;
    font-size: 0.8rem;
    padding: 3px 8px;
  }
  .custom-carousel-indicators {
    bottom: 5px;
  }
  .custom-carousel-indicators button {
    width: 20px;
    height: 3px;
  }
  .carousel-control-prev-side,
  .carousel-control-next-side {
    width: 40px;
    height: 40px;
  }
  .carousel-control-prev-side .carousel-control-prev-icon,
  .carousel-control-next-side .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }
}

/* welcome section */
.welcome_section {
  background-color: #fffcf4;
  margin-top: 50px;
}

.welcome_section .row {
  padding-top: 80px;
  padding-bottom: 50px;
}
.welcome_section .col-md-6 {
  padding: 0 4%;
}

.welcome_detail {
  width: 75%;
}

.welcome_detail h2 {
  text-transform: uppercase;
  color: #0c0b09;
  font-weight: bold;
}

.welcome_detail h3 {
  text-transform: uppercase;
  color: #254a93;
  position: relative;
}

.welcome_detail a {
  text-decoration: none;
  color: #000;
  position: relative;
}

.welcome_detail h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1.5px;
  width: 140px;
  background-color: #36bb25;
}

.welcome_detail h2,
.welcome_detail p,
.welcome_detail .welcome_detail-btn {
  margin-top: 25px;
}

.welcome_section .welcome_detail-btn a,
.welcome_section .welcome_detail-btn a:hover {
  text-transform: uppercase;
  text-decoration: none;
  color: #0c0b09;
}

.welcome_section .welcome_detail-btn a img {
  width: 25px;
}

/* end welcome section */

/* who we are section css starts ------------------- */
.who-we-are-section {
  background-color: #f8f8f8;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.who-we-are-container {
  max-width: 1200px;
}

.who-we-are-section .row {
  align-items: stretch;
}

.who-we-are-content {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-we-are-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.who-we-are-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.read-more-who-we-are-btn {
  background-color: #dc3545;
  color: #fff;
  border: none;
  padding: 12px 80px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.read-more-who-we-are-btn:hover {
  background-color: #c82333;
  color: #fff;
}

.read-more-who-we-are-btn .arrow-right {
  margin-left: 8px;
  font-size: 1.2em;
  transition: margin-left 0.3s ease;
}

.read-more-who-we-are-btn:hover .arrow-right {
  margin-left: 12px;
}

.who-we-are-image {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* Responsive adjustments */
@media (min-width: 992px) {
  .who-we-are-content {
    padding-right: 60px;
  }
  .who-we-are-image-col {
    padding-left: 15px;
  }
}

@media (max-width: 991.98px) {
  .who-we-are-section .row {
    align-items: flex-start;
  }
  .who-we-are-content {
    text-align: center;
    padding: 20px;
  }
  .who-we-are-heading {
    font-size: 2rem;
  }
  .who-we-are-content p {
    font-size: 0.95rem;
  }
  .read-more-who-we-are-btn {
    align-self: center;
    margin-top: 20px;
    width: auto;
  }
  .who-we-are-image {
    margin-top: 20px;
    height: auto;
    object-fit: contain;
  }
  .who-we-are-image-col {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767.98px) {
  .who-we-are-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .who-we-are-heading {
    font-size: 1.8rem;
  }
  .read-more-who-we-are-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 80%;
  }
}

/* map section css starts ----------------   */
.map-section {
  width: 100%;
  max-width: 1500px;
  margin: 40px auto 0 auto;
  padding: 20px;
  overflow: hidden;
}

.map-container {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.zoom-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
}

.zoom-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.zoom-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #4285f4;
  color: #4285f4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.zoom-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.zoom-in::before {
  content: "+";
}

.zoom-out::before {
  content: "−";
}

@media (max-width: 768px) {
  .map-section {
    margin: 20px auto;
    padding: 15px;
  }

  .map-container {
    height: 260px;
  }

  .zoom-controls {
    bottom: 15px;
    right: 15px;
  }

  .zoom-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 200px;
  }

  .zoom-controls {
    bottom: 10px;
    right: 10px;
  }

  .zoom-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}


/*contact section css starts -----------*/

  .contact-section {
      text-align: center;
      padding: 60px 20px;
    }

    .contact-title {
      color: #00a8e8;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .contact-heading {
      font-size: 2rem;
      font-weight: 700;
      color: #002b45;
      margin-bottom: 30px;
    }

    .contact-section hr{
      height: 10px;
      color: blue;
    }

    .contact-box {
      background-color: #00a8e8;
      padding: 15px;
      border-radius: 5px;
      margin-bottom: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 60px;
      width: 60px;
    }

    .contact-item {
      text-align: left;
      padding: 15px;
      flex: 1 1 300px;
    }

    .contact-item h6 {
      margin-bottom: 5px;
      font-weight: 500;
      color: #002b45;
    }

    .contact-item a, .contact-item span {
      font-size: 1.2rem;
      font-weight: 600;
      color: #00a8e8;
      text-decoration: none;
    }

    @media (max-width: 576px) {
      .contact-heading {
        font-size: 1.5rem;
      }

      .contact-item {
        text-align: center;
      }
    }

/* footer-section css starts --------------------- */

/* info section */
.info_section {
  background-color: #000202;
  font-family: "Roboto", sans-serif;
  padding: 100px 0;
}

.info_section .info_detail {
  display: flex;
  align-items: center;
}

.info_section .info_detail p {
  color: #fff;
}

.address_link-container {
  display: block;
}

.address_link-container a {
  display: flex;
  color: #fff;
  margin: 15px 0;
  align-items: center;
  text-decoration: none;
}

.address_link-container a img {
  margin-right: 10px;
}

.info_section .news_container h3,
.info_section .address_container h3 {
  text-transform: uppercase;
  color: #fff;
  font-size: 22px;
}

.info_section .news_container form {
  margin: 28px 0;
}

.info_section .news_container form input {
  border: none;
  background-color: #fff;
  width: 70%;
  padding: 7px 10px;
}

.info_section .news_container form button {
  border: none;
  background-color: #254a93;
  color: #fff;
  font-size: 14px;
  padding: 8px 15px;
  margin-top: 15px;
  text-transform: uppercase;
}

.info_section .news_container .social_container {
  width: 50%;
  display: flex;
  justify-content: space-between;
}

/* end info section */

/* footer section*/

.footer_section {
  background-color: #254a93;
  padding: 20px 0;
  font-family: "Roboto", sans-serif;
}

.footer_section p {
  color: #fff;
  margin: 0;
  text-align: center;
}

.footer_section a {
  color: #fff;
}

.sideBar {
  color: #666666;
  font-weight: bold;
  line-height: 31px;
  margin-top: 10px;
}
.sideBarActive {
  border-bottom: 2px solid #007dad;
  color: #666666;
  font-weight: bold;
  line-height: 31px;
  margin-top: 10px;
}
.text-mutedd {
  font-size: 24px;
  color: #333333;
}
a {
  color: #333333;
  text-align: "center";
}
/* end footer section*/

/* about-us page css starts ------------------ */

.hero-banner-about-us {
  background: url("img/pages_background.jpg") no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.hero-banner-about-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-banner-about-us .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-banner-about-us h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-banner-about-us p {
  font-size: 1.4rem;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
}

.hero-banner-about-us .btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-banner-about-us .btn:hover {
  transform: translateY(-3px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-fade-in.delay-1s {
  animation-delay: 0.5s;
}

.animate-fade-in.delay-2s {
  animation-delay: 1s;
}

.about-section {
  padding: 80px 0;
  overflow: hidden;
}

.about-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.about-section .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #007bff;
  border-radius: 2px;
}

.about-section .section-title.text-start::after {
  left: 0;
  transform: translateX(0);
}

.about-section .section-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.about-section img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.bg-light-blue {
  background-color: #f0f8ff;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: #007bff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #007bff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -16px;
}

.timeline-content {
  padding: 25px 35px;
  background-color: #fff;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
  font-weight: 600;
  color: #007bff;
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.timeline-content p {
  font-size: 1rem;
  color: #666;
}

.team-card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  background-color: #fff;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.team-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #007bff;
  transition: border-color 0.3s ease;
  margin-top: 25px;
}

.team-card:hover img {
  border-color: #0056b3;
}

.team-card .card-body {
  padding: 30px 20px;
}

.team-card .card-title {
  color: #007bff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.team-card .card-text.text-muted {
  font-size: 1rem;
  margin-bottom: 15px;
}

.team-card .description-small {
  font-size: 0.9rem;
  color: #777;
  min-height: 60px;
  line-height: 1.5;
}

.team-card .social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s ease;
  border: none;
  border-radius: 0;
  margin: 0 8px;
}

.team-card .social-icons a:hover img {
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .about-section .row {
    flex-direction: column;
  }
  .about-section .col-lg-6 {
    margin-bottom: 40px;
  }
  .about-section .col-lg-6:last-child {
    margin-bottom: 0;
  }
  .about-section .section-title {
    text-align: center;
    font-size: 2.2rem;
  }
  .about-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .about-section .section-text {
    text-align: center;
    font-size: 1.05rem;
  }
  .about-section .row.flex-row-reverse {
    flex-direction: column;
  }

  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item.right {
    left: 0%;
  }
  .timeline-item.left::after,
  .timeline-item.right::after {
    left: 15px;
  }
  .timeline-item.right::after {
    left: 15px;
  }
}

@media (max-width: 768px) {
  .hero-banner-about-us {
    padding: 80px 0;
    min-height: 350px;
  }
  .hero-banner-about-us h1 {
    font-size: 2.8rem;
  }
  .hero-banner-about-us p {
    font-size: 1.1rem;
  }
  .about-section {
    padding: 60px 0;
  }
  .about-section .section-title {
    font-size: 2rem;
  }
  .carousel-item blockquote {
    padding: 30px;
  }
  .carousel-item blockquote p {
    font-size: 1.1rem;
  }
  .carousel-item blockquote::before {
    font-size: 4rem;
    top: 5px;
    left: 10px;
  }
}

@media (max-width: 576px) {
  .hero-banner-about-us {
    padding: 60px 0;
    min-height: 300px;
  }
  .hero-banner-about-us h1 {
    font-size: 2.2rem;
  }
  .hero-banner-about-us p {
    font-size: 0.95rem;
  }
  .about-section {
    padding: 40px 0;
  }
  .about-section .section-title {
    font-size: 1.8rem;
  }
}
