.nav-btn {
  padding: 6px 12px;
  border-radius: 5px;
  transition: 0.3s;
}

.nav-btn:hover {
  background-color: #f95656;
  color: white;
}

.section {
  margin-top: 30px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card-title {
  font-size: 18px;
  font-weight: bold;
}

.link {
  color: #2563eb;
  text-decoration: underline;
}
.hidden {
  display: none;
}
html {
  scroll-behavior: smooth;
}
.nav-btn.active {
  background: #dc2626 !important;
  color: white !important;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

/* Section animation */
.section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

/* Card hover */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
table {
  border-collapse: collapse;
}

table tr:hover {
  background: #f9fafb;
}

table th {
  background: linear-gradient(to right, #f87171, #ef4444);
  color: white;
}
/* ================= CONTACT PAGE BACKGROUND ================= */

.contact-bg {
  min-height: 100vh;

  /* Soft red + white gradient */
  background:
  linear-gradient(135deg, #fff5f5, #ffffff, #fce7e7),
  repeating-linear-gradient(
    45deg,
    rgba(220,38,38,0.03),
    rgba(220,38,38,0.03) 10px,
    transparent 10px,
    transparent 20px
  );

  padding: 60px 20px;
}


/* ================= CONTACT CARD ================= */

.contact-card {
  max-width: 900px;
  margin: auto;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);

  border-radius: 20px;

  padding: 40px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.12);

  border-left: 6px solid #dc2626;
}


/* ================= CONTACT TITLE ================= */

.contact-title {
  font-size: 32px;
  font-weight: bold;

  color: #b91c1c;

  margin-bottom: 20px;
}


/* ================= CONTACT INFO ================= */

.contact-info p {
  font-size: 17px;
  color: #374151;

  margin: 10px 0;
}


/* ================= ICON STYLE ================= */

.contact-icon {
  color: #dc2626;
  font-size: 20px;
  margin-right: 10px;
}
/* ================= TEAM SECTION ================= */

.team-section {
  margin-top: 80px;
  text-align: center;
}

.team-title {
  font-size: 32px;
  font-weight: bold;
  color: #b91c1c;
  margin-bottom: 40px;
}


/* Grid */

.team-grid {
  display: flex;              /* Make row */
  flex-direction: row;        /* Force horizontal */
  justify-content: center;    /* Center cards */
  align-items: stretch;

  gap: 30px;

  flex-wrap: nowrap;          /* ❗ No wrapping */
  overflow-x: auto;           /* Scroll if needed */

  width: 100%;
  padding: 20px;
}

/* Card */

.team-card {
  background: white;

  padding: 30px 20px;

  border-radius: 20px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.12);

  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}


/* Hover Effect */

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.2);
}


/* Image */

.team-img {
  width: 110px;
  height: 110px;

  margin: auto;

  border-radius: 50%;
  overflow: hidden;

  border: 4px solid #dc2626;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Name */

.team-card h3 {
  margin-top: 15px;
  font-size: 20px;
}


/* Role */

.team-card p {
  color: #6b7280;
  margin: 6px 0 15px;
}


/* Social Icons */

.team-socials a {
  text-decoration: none;
  font-size: 18px;

  margin: 0 8px;

  color: #dc2626;

  transition: 0.3s;
}

.team-socials a:hover {
  color: #991b1b;
}
/* ================= ANIMATED BACKGROUND ================= */

.bg-bubbles {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  z-index: 0;
  margin: 0;
  padding: 0;
}


.bg-bubbles li {
  position: absolute;
  list-style: none;

  width: 40px;
  height: 40px;

  background: rgba(220,38,38,0.15);

  bottom: -150px;

  animation: float 25s infinite linear;

  border-radius: 50%;
}


/* Different sizes */

.bg-bubbles li:nth-child(1) {
  left: 10%;
  width: 80px;
  height: 80px;
}

.bg-bubbles li:nth-child(2) {
  left: 20%;
  width: 25px;
  height: 25px;
  animation-delay: 2s;
  animation-duration: 18s;
}

.bg-bubbles li:nth-child(3) {
  left: 35%;
  width: 60px;
  height: 60px;
  animation-delay: 4s;
}

.bg-bubbles li:nth-child(4) {
  left: 50%;
  width: 30px;
  height: 30px;
  animation-duration: 20s;
}

.bg-bubbles li:nth-child(5) {
  left: 65%;
  width: 90px;
  height: 90px;
}

.bg-bubbles li:nth-child(6) {
  left: 75%;
  width: 20px;
  height: 20px;
  animation-delay: 3s;
}

.bg-bubbles li:nth-child(7) {
  left: 85%;
  width: 45px;
  height: 45px;
}

.bg-bubbles li:nth-child(8) {
  left: 95%;
  width: 35px;
  height: 35px;
}

.bg-bubbles li:nth-child(9) {
  left: 5%;
  width: 25px;
  height: 25px;
}

.bg-bubbles li:nth-child(10) {
  left: 55%;
  width: 70px;
  height: 70px;
}


/* Animation */

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translateY(-1200px) rotate(360deg);
    opacity: 0;
  }
}
.contact-bg {
  position: relative;
  overflow: hidden;
}

.contact-card,
.team-section {
  position: relative;
  z-index: 2;
}
.team-card {
  min-width: 280px;   /* Same size cards */
  max-width: 280px;

  flex-shrink: 0;     /* Prevent shrinking */
}
.team-lead {
  border: 2px solid #dc2626;
  background: linear-gradient(to bottom,#fff,#fff5f5);
}
