body {
  background-color: #1d2b34;
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background: #fff !important;
}

#hero {
  background: #1d2b34 !important;
  color: #fff;
  text-align: center;
  padding: 100px 20px 100px;
}

#hero h2 {
  font-weight: 600;
  font-size: 24px;
}

#hero .btn-get-started {
  background: #00a884;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

#hero .btn-get-started:hover {
  background: #00926f;
}

#news {
  background: #f8f9fa;
  color: #333;
}

.news-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

#contact {
  background: #fff;
  color: #333;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.contact-form,
.contact-map {
  flex: 1 1 45%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  min-height: 320px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  line-height: 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  #hero h2 {
    font-size: 22px;
  }

  .contact-container {
    flex-direction: column;
  }

  .news-card {
    margin-bottom: 20px;
  }
}

/* ===== NEWS SECTION ===== */
.news-section {
  background-color: #f8f9fa;
  padding-top: 70px;
  padding-bottom: 70px;
}

.news-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  background: #fff;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-card img {
  height: 220px;
  object-fit: cover;
}

.news-card .card-body {
  padding: 20px;
}

.news-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d2b34;
}

.news-card .card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .news-card img {
    height: 180px;
  }
  .news-card .card-title {
    font-size: 1rem;
  }
  .news-card .card-text {
    font-size: 0.85rem;
  }
  .section-title h2 {
    font-size: 1.6rem;
  }
}
