a {
  text-decoration: none;
}

#best-digital-section {
  position: relative;
  padding: 80px 20px;
  margin-top: 2vw;
  overflow: hidden;
}

/* Background Glow */
#background-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
}

#pink-glow {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 288px;
  height: 288px;
  background: rgba(255, 182, 193, 0.3);
  border-radius: 50%;
  filter: blur(48px);
  animation: glowPulse 4s infinite ease-in-out;
}

#blue-glow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 288px;
  height: 288px;
  background: rgba(173, 216, 230, 0.3);
  border-radius: 50%;
  filter: blur(48px);
  animation: glowPulse 4s infinite ease-in-out 1s;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

/* Main Content Container */
#main-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Headings */
#main-heading {
  font-size: 3rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 30px;
  line-height: 1.2;
}

#gradient-heading {
  background: linear-gradient(to right, #ff7e00, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 10px 0;
  display: block;
}

/* Description */
#description {
  font-size: 1.2rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

#description strong {
  color: #2563eb;
  font-weight: 600;
}

/* Why Choose Us */
#why-choose-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin: 50px 0 20px;
}

#why-choose-desc {
  font-size: 1.1rem;
  color: #555;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Service Cards */
#services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.95rem;
  color: #666;
}

/* Our Services */
#services-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin: 60px 0 20px;
}

#services-desc {
  font-size: 1.1rem;
  color: #555;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* SEO Section */
#seo-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1d4ed8;
  margin: 40px 0 15px;
}

#seo-desc {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* CTA Buttons */
#cta-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.cta-btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 250px;
}

#explore-btn {
  background: linear-gradient(to right, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

#explore-btn:hover {
  background: linear-gradient(to right, #1d4ed8, #1e40af);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

#contact-btn {
  background: white;
  color: #2563eb;
  border: 2px solid #2563eb;
}

#contact-btn:hover {
  background: #f0f7ff;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  #main-heading {
    font-size: 2.5rem;
  }

  #services-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  #main-heading {
    font-size: 2.2rem;
  }

  #why-choose-heading,
  #services-heading {
    font-size: 1.8rem;
  }

  #cta-container {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  #main-heading {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 20px;
  }
}
