:root {
  --sadhav-primary-color:#1467b3;
}

.team-swiper-pagination {
  position: static;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 12px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: white;
  font-weight: bold;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
  background: #003f87;
  clip-path: circle();
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
  background: #003f87;
  clip-path: circle();
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #003f87;
}

.team-swiper-btn-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1em;
  width: fit-content;
  margin: 2em auto;
}

.team-swiper-button-prev,
.team-swiper-button-next {
  position: static;
}

.team-card-mobile {
  padding: 1em;
  background: #f3f4f6;
  border-radius: 12px;
  max-width: 100% !important;
}

.swiper-slide {
  padding: 14px;
}

@media (min-width: 720px) {
  .caption-item.caption-item-name {
    font-size: 16px;
    line-height: 1.5;
    /* height: 50px; */
  }

  .caption-item.caption-item-role {
    height: 78px;
  }
}

#navbarNavDropdown {
  justify-content: end !important;
}

.nav-link {
  color: var(--color-text-strong) !important;
  /* font-weight: 500; */
}

.dropdown-menu {
  display: none;
  top: 35px;
}

.dropdown-item {
  font-size: 14px;
}

.navbar-toggler {
  border: none;
}

#site-header {
  display: none;
}

@media screen and (max-width: 600px) {
  body {
    padding-top: 0;
  }
}

/* sticky nav start */
.navbar {
  transition: box-shadow 0.3s ease-in-out;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.15); */
  background: white;
}
/* sticky nav end */

.ethics-section i {
  color: #003f87;
}
.ethics-section .text-muted {
  margin-bottom: 0;
}


/* navbar css start */
body {
  padding-top: 96px!important;
}

.navbar {
  position: fixed!important;
  top: 0%;
  left: 0%;
  right: 0%;
  z-index: 999!important;
  background: white;
}


.dropdown-item:focus {
  background: #003f87!important;
  color: white;
}
/* navbar css end */

html {
  scroll-behavior: smooth; /* smooth scroll effect */
}

:target {
  scroll-margin-top: 80px; /* adjust this value = your navbar height */
}


/* Remove Bootstrap default background icon */
.navbar-toggler-icon {
  background-image: none !important;
}

/* Wrapper */
.menu-btn {
  display: inline-block;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
}

/* Bars */
.menu-btn .bar {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background-color: #000; /* change color */
  background-color: #a3a3a3; /* change color */
  transition: all 0.4s ease;
}

.menu-btn .bar.top {
  top: 0;
}
.menu-btn .bar.middle {
  top: 9px;
}
.menu-btn .bar.bottom {
  bottom: 0;
}

/* Animate when expanded (button NOT collapsed) */
.navbar-toggler:not(.collapsed) .bar.top {
  transform: rotate(45deg);
  top: 9px;
}
.navbar-toggler:not(.collapsed) .bar.middle {
  opacity: 0;
}
.navbar-toggler:not(.collapsed) .bar.bottom {
  transform: rotate(-45deg);
  bottom: 9px;
}


.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none!important;
}

.sadhav-primary-color {
  color: #1467b3!important;
}

:root { --header-h: 130px; }   /* adjust to your navbar height */
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

/* Extra-safe offset for hash targets (handles browsers that ignore scroll-padding on hash) */
:target::before {
  content: "";
  display: block;
  height: var(--header-h);
  margin-top: calc(-1 * var(--header-h));
}

