
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #222;
}

.bg-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(75%);
}

.hero-section {
  position: relative;
  height: 100vh;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

h2 {
  color: #c8102e;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.service-card {
  border: none;
  transition: all 0.3s ease-in-out;
  background: white;
  border-radius: 10px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.profile {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
}

footer {
  margin-top: 40px;
  font-weight: 400;
  background: #000;
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease-in-out;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5b;
}

/* Team card animations */
.team-card {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}
.team-card h6 {
  font-weight: 600;
  color: #c8102e;
}
