/* General Body Styles */
body {
  background-color: #ffffff;
  color: #333333;
  font-family: "Inter", sans-serif;
}

/* Header Styles */
.crew-header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(rgba(14, 12, 12, 0.7), rgba(104, 100, 100, 0.7)),
    url("../../images/digital-marketing.png") no-repeat center center/cover;
}

.crew-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.crew-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #ffffff;
}

/* Services Section */
#services-container {
  padding: 30px 20px;
}

.category {
  margin-bottom: 30px;
}

.category h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #007bff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #dddddd;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card i {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333333;
}

.service-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #007bff;
  margin: 15px 0;
}

.service-card .price span {
  font-size: 0.9rem;
  color: #555555;
}

.service-card p {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.5;
}

.service-card .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background-color: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.service-card .btn:hover {
  background-color: #0056b3;
}

.why-choose-us {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff;
}

.why-choose-us h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #007bff;
}

.why-choose-us ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.why-choose-us li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .crew-title {
    font-size: 2.5rem;
  }

  .crew-description {
    font-size: 1rem;
  }

  .serivce-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px; /* Add some horizontal padding */
  }
}
