* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.site-header {
  /* font-family: Arial, sans-serif; */
  position: absolute;
  /* top: 35px; */
  top: 0;
  width: 100%;
  z-index: 999;
}

/* Top Bar */
.top-bar {
  /* background: #031a33; */
  padding: 6px 0;
  font-size: 14px;
  color: white;
}

.top-bar a {
  color: white;
  text-decoration: none;
}

/* Navbar */
/* .navbar-custom {
} */

.nav-flex {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  padding: 15px 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  width: 70px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.nav-links li a:hover {
  color: #0c5db9;
}

/* Buttons */
.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn-nav {
  background: #0c5db9;
  padding: 10px 18px;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.btn-nav.outline {
  background: transparent;
  border: 2px solid #0c5db9;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.card-wrapper {
    background: #0c5db9;
    padding-top: 150px;
    padding-bottom: 100px;
}

.team-card-main {
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #fff;
    border-radius: 20px;
    transition: 0.5s all ease;
}

.team-card-main .team-img {
    width: 250px;
    height: 250px;
    margin: -100px auto 15px;
    box-shadow: 0 0 22px #3336;
    border-radius: 20px;
    max-width: 100%;
}

.team-card-main .team-img img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-main:hover {
    transform: translateY(-15px);
}

.team-card-main:hover .team-img {
    opacity: 0;
}

.team-card-main .team-detail .name {
    font-size: 28px;
    font-weight: 600;
    line-height: 120%;
    color: #000;
    transition: 0.5s all ease;
}

.team-card-main .team-detail .role {
    color: #0c5db9;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.team-card-main .social-icons a {
    font-size: 25px;
    color: #000;
}

.team-card-main .flip-box {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: auto;
    background: #fff;
    top: 0;
    left: 0;
    padding: 0 15px;
    border-radius: 20px;
    transition: 0.5s all ease;
    opacity: 0;
    visibility: hidden;
}

.team-card-main:hover .flip-box {
    opacity: 1;
    visibility: visible;
}

.card-wrapper {
  background: #0c5db9;
  background-image: url(../images/page-bg.jfif);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 130px 0 80px 0;
  position: relative;
}

.card-wrapper::before {
  content: '';
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, .75);
  position: absolute;
  top: 0;
  left: 0;
}

/* List Card */
.team-list-card {
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 15px;
  transition: 0.3s ease;
}

.team-list-card:hover {
  transform: translateY(-5px);
}

/* Photo */
.team-photo {
  width: 190px;
  height: 190px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #0c5db9;
}

/* Info */
.team-info h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.designation {
  font-size: 16px;
  color: #0c5db9;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact a {
  text-decoration: none;
  color: #000;
}

.contact a:hover {
  color: #0c5db9;
}

.details {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* Responsive */

@media (max-width: 992px) {

  .nav-links {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px 0;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-buttons {
    display: none;
  }

  .hamburger {
    display: block;
  }
}


@media (max-width: 768px) {
  .team-list-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .team-photo {
    width: 110px;
    height: 110px;
  }
}
