/* General Body Styles */
@import url('../social-media-marketing/style.css');


.package-card .features li{
  color: #000;
}


@import url('../services/social-media-marketing/style.css')

body {
  background-color: #121212;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

/* Header Styles */
.crew-header {
  text-align: center;
  padding: 60px 30px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../../images/webdev.jpg") 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: #cccccc;
}

/* 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: #ffffff;
}

.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: #1e1e1e;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

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

.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: #ffffff;
}

.service-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00aaff;
  margin: 15px 0;
}

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

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

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

.service-card .btn:hover {
  background-color: #0088cc;
}

.hero {
  background: linear-gradient(135deg, #5b73ff, #8aa2ff);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1rem;
}
.hero h1 {
  margin: 0;
  font-size: 2rem;
}
.hero p {
  margin: 0.75rem auto 0;
  max-width: 720px;
  opacity: 0.95;
}

.section {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.section h2 {
  margin: 0 0 1rem 0;
  color: #2a2a2a;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.09);
}

.card h3 {
  margin: 0 0 0.4rem 0;
  font-size: 1.05rem;
}
.card p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  color: #444;
}
.price {
  font-weight: 700;
  color: #1fa37b;
  margin-top: 0.4rem;
}

.foot {
  text-align: center;
  padding: 1.25rem;
  color: #777;
}

.why-choose-us{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:8px;
  align-items: center;
  text-align: center;
  h2{
    font-weight: bold;
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
  }
  ul{
    list-style-type: none;
    text-align: left;
    max-width: 600px;
    padding-left: 20px;
    font-size: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    color: #cccccc;
  }
  li{
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 18px;
    &::before{
      content: '✓';
      position: absolute;
      left: 0;
      color: #27c5e0;
    }
  }
}

/* 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 */
  }
}
