/* ===== Digital Marketing About Section ===== */
.digital-marketing-about {
  background: linear-gradient(135deg, #eaf0ff, #f5f8ff);
  padding: 100px 0;
  position: relative;
}

.digital-marketing-about h2 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #101b44;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #384bff, #2a35cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.digital-marketing-about p {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

.digital-marketing-about img {
  width: 90%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(56, 75, 255, 0.25);
  transition: transform 0.4s ease;
}

.digital-marketing-about img:hover {
  transform: scale(1.05);
}

/* ===== Marketing Services Section ===== */
.marketing-services {
  background: linear-gradient(135deg, #1a1d4d, #384bff);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.marketing-services::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50%;
  filter: blur(30px);
}

.marketing-services h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
}

.marketing-services p {
  color: #cfd8ff;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
}

/* ===== Marketing Card ===== */
.marketing-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 35px 25px;
  border-radius: 18px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  min-height: 250px;
}

.marketing-card i {
  font-size: 50px;
  margin-bottom: 15px;
  color: #ffce00;
  transition: all 0.4s ease;
}

.marketing-card h5 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.marketing-card p {
  font-size: 14px;
  color: #dbe2ff;
  line-height: 1.6;
}

.marketing-card:hover {
  transform: translateY(-12px);
  background: linear-gradient(135deg, #384bff, #2839b5);
  box-shadow: 0 10px 35px rgba(56, 75, 255, 0.6);
}

.marketing-card:hover i {
  color: #fff;
  transform: scale(1.2) rotate(10deg);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .digital-marketing-about {
    padding: 70px 0;
  }
  .digital-marketing-about h2 {
    font-size: 1.8rem;
  }
  .marketing-card {
    min-height: 220px;
  }
}
