body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  /*background: url("bg_img.png") center/cover no-repeat;*/
  height: 90vh;
  position: relative;
}

.hero .carousel-item img{
    object-fit:cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: white;
  padding: 0 15px;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Section Titles */
h2 {
  font-weight: 700;
}

/* Card hover effect */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

/* Contact form */
form input, 
form textarea {
  border-radius: 10px;
  border: 1px solid #ccc;
}

form button {
  border-radius: 10px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
}
