* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f7f7f7;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

.hero {
  background: #06A3DA;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.highlight-section {
  background: #eaf4ff;
  padding: 2rem 0;
}

.alt-bg {
  background: #fff3cd;
}

.services-list ul,
.highlight-section ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.services-list li,
.highlight-section li {
  margin: 0.5rem 0;
}

.cta {
  background: #343a40;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.cta .btn {
  background: #ffc107;
  padding: 0.75rem 1.5rem;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  margin: 1rem 0;
  display: inline-block;
}

.footer {
  background: #212529;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}
.services-grid h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #0d6efd;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #343a40;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
}
.industries-served {
  padding: 60px 20px;
  background-color: #f4f7fa;
  text-align: center;
}

.industries-served h2 {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 10px;
}

.industries-served .subtext {
  color: #666;
  margin-bottom: 40px;
  font-size: 1rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.industry-box {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.industry-box:hover {
  transform: translateY(-5px);
  background-color: #0d6efd;
  color: #fff;
}

.industry-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  transition: filter 0.3s ease;
}

.industry-box:hover img {
  filter: brightness(100%) invert(1);
}

.industry-box h3 {
  font-size: 1rem;
  margin: 0;
}

/* Responsive Columns */
@media (min-width: 576px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.seo-results {
  background: #f9f9f9;
  padding: 60px 20px;
}

.seo-results h2 {
  text-align: center;
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 15px;
}

.seo-results .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid Styles */
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.result-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.result-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.result-card h3 {
  font-size: 1.1rem;
  color: #333;
}

/* Responsive Layout */
@media (min-width: 576px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
