    .seo-hero-cover {
  background: url('https://images.unsplash.com/photo-1709281847802-9aef10b6d4bf?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.seo-hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  width: 100%;
}

.seo-hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.seo-hero-overlay p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.seo-hero-overlay a {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  background: #ff3e3e;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.seo-hero-overlay a:hover {
  background: #c70039;
}

/* 📱 Mobile Optimized */
@media (max-width: 768px) {
  .seo-hero-cover {
    height: auto;
    padding: 60px 20px;
  }

  .seo-hero-overlay {
    padding: 30px 20px;
  }

  .seo-hero-overlay h1 {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .seo-hero-overlay p {
    font-size: 1rem;
  }

  .seo-hero-overlay a {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}

 /* 🌐 Base Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f8fa;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3 {
  font-weight: 700;
}

/* 🔥 Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* 🔍 Hero Section */
.seo-hero {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 100px 20px;
  text-align: center;
  animation: fadeUp 1s ease forwards;
}
.seo-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.seo-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}
.seo-hero a {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  background: #ff3e3e;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s;
  animation: pulse 2s infinite;
}
.seo-hero a:hover {
  background: #c70039;
}

/* 🛠️ Services */
.services-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}
.services-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #1a1a1a;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.service-box {
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  padding: 30px;
  transition: 0.4s;
  backdrop-filter: blur(6px);
  animation: fadeUp 1.2s ease both;
}
.service-box:hover {
  transform: translateY(-10px);
}
.service-box i {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #ff3e3e;
}
.service-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #102542;
}
.service-box p {
  font-size: 0.95rem;
  color: #444;
}

/* ⭐ Benefits Section */
.benefits-section {
  padding: 80px 20px;
  background: #f0f3f7;
}
.benefits-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #0d1a26;
  margin-bottom: 40px;
}
.benefits-section ul {
  list-style: none;
  max-width: 800px;
  margin: auto;
  padding-left: 0;
}
.benefits-section li {
  margin-bottom: 16px;
  font-size: 1rem;
  position: relative;
  padding-left: 30px;
}
.benefits-section li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
}

/* 📬 CTA */
#contact {
  background: linear-gradient(to right, #ff3e3e, #ff7676);
  color: white;
  text-align: center;
  padding: 80px 20px;
}
#contact h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
#contact p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
#contact a {
  display: inline-block;
  padding: 14px 30px;
  background: white;
  color: #ff3e3e;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s ease;
}
#contact a:hover {
  background: #ffe4e4;
}

/* 📱 Mobile First Optimizations */
@media (max-width: 768px) {
  .seo-hero {
    padding: 70px 20px;
  }
  .seo-hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .seo-hero p {
    font-size: 1rem;
  }
  .seo-hero a {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .services-section {
    padding: 60px 16px;
  }
  .services-section h2 {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-box {
    padding: 24px;
  }

  .benefits-section {
    padding: 60px 16px;
  }
  .benefits-section h2 {
    font-size: 1.8rem;
  }
  .benefits-section li {
    font-size: 0.95rem;
  }

  #contact {
    padding: 60px 16px;
  }
  #contact h2 {
    font-size: 1.8rem;
  }
  #contact p {
    font-size: 1rem;
  }
  #contact a {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

