/* Google Font */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
}

/* Navbar */
.navbar {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Hero */
.hero {
  background: linear-gradient(to right, #0d6efd, #6610f2);
  color: white;
  padding: 100px 0;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
}

/* Cards */
.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Testimonials */
.testimonial {
  background: white;
  border-left: 5px solid #0d6efd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Footer */
.footer {
  background: #212529;
  color: white;
  padding: 40px 0;
}
.footer a {
  color: #adb5bd;
  text-decoration: none;
}
.footer a:hover {
  color: white;
}

/* Team Section */
.team-card img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 15px;
}
