/* General Styling */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero {
  background: url('../img/cta-bg2.jpg') center/cover no-repeat;
  text-align: center;
  padding: 80px 20px;
  color: white;
}

.hero .container {
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Services Section */
.services {
  padding: 60px 20px;
  background: #fff;
}

.services .container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

/* Service Box */
.service {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  text-align: center;
}

.service h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #666;
}

/* Icons */
.service-icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

/* Button */
.btn {
  display: inline-block;
  text-decoration: none;
  background: #007bff;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #FF6600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .services .container {
    grid-template-columns: 1fr;
  }
}
