



/* ===== GLOBAL ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8faff;
    margin: 0;
    padding: 0;
}

/* ===== NAVBAR ===== */
/* Navbar Styling */
.navbar {
    background-color: #0d6efd !important;
}

.navbar .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff !important;
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ffc107 !important; /* yellow hover effect */
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}


.footer a:hover {
  text-decoration: underline;
}

.footer .social-icons i {
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer .social-icons i:hover {
  color: #ffc107;
}

.footer h6, .footer h5 {
  letter-spacing: 0.5px;
}

.footer p, .footer li, .footer a {
  line-height: 1.6;
}


.team-card {
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}
.team-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid #0d6efd;
  transition: border-color 0.3s ease;
}
.team-card:hover .team-img {
  border-color: #ff9800;
}
