/* General Styles */
.digital-marketing-page {
  font-family: 'Poppins', sans-serif;
  color: white;
  text-align: center;
  padding: 6rem 0;
}


.hero-section {
  position: relative;
  padding: 5rem 2rem;
  background: url("/images/Coverphotos.png") center/cover no-repeat;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  color: white;
}

.hero-section .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Left Side - Service Description */
.hero-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-section .sub-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 90%;
}

/* Right Side - Quotation Form */
.quote-box {
  width: 100%;
  max-width: 450px;
  padding: 30px;
  text-align: center;
  background: rgba( 48, 48, 48, 0.25 );
box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.37);
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
}
/* Quote Form Title */
.quote-title {
  font-size: 1.5rem;

  color: #FF007F;
  margin-bottom: 1rem;
}

/* Form Fields */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Labels */
.quote-form label {
  font-size: 0.9rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 4px;
  text-align: left;
}

/* Form Inputs */
.quote-form .form-group {
  margin: 0;
}

.quote-form .form-control {
  width: 100%;
  padding: 8px;
  border: 1px solid #ffffff;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.9rem;
  background: none;
  color: white;
}

.quote-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Smaller Textarea */
.quote-form textarea {
  resize: none;
}

/* Submit Button */
.quote-form .form-button {
  background: #FF007F;
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.quote-form .form-button:hover {
  background: white;
  color: #101010;
}

.captcha-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.captcha-container label {
  font-size: 0.9rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
}


/* ✅ Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
      padding: 4rem 2rem;
  }

  .hero-section .row {
      flex-direction: column;
      text-align: center;
  }

  .quote-box {
      max-width: 100%;
  }

  .hero-section .sub-text {
      max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
      font-size: 2rem;
  }

  .hero-section .sub-text {
      font-size: 1rem;
  }

  .quote-form label {
      font-size: 0.8rem;
  }

  .quote-form .form-control {
      font-size: 0.9rem;
      padding: 8px;
  }

  .quote-form .form-button {
      padding: 8px 12px;
      font-size: 0.9rem;
  }
}
/* Responsive Text */
.glow-text {
  font-size: 3rem;

  text-transform: uppercase;
  color: #FF007F;
  text-shadow: 0 0 20px #FF007F, 0 0 40px rgba(255, 0, 127, 0.3);
}

.highlight {
  color: #ffffff;
  text-shadow: none;
}

.sub-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
}

/* CTA Button */
.cta-button {
  background: #101010;
  color: #FF007F;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 200;
  transition: 0.3s;
}

.cta-button:hover {
  background: white;
  color: #101010;
}

.video-links {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 4;
  cursor: pointer;
}

.video-links span {
  color: white;
}
.video-link {
  color: white;
  font-weight: 500;
  text-decoration: none;
  padding: 0 10px;
  z-index: 4;
  cursor: pointer;
}

.video-link:hover {
  color: #FF007F;
}


/* Service Offerings */
.service-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.service-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  width: 25%;
  min-width: 280px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.service-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.service-card img {
  width: 50%;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process-section {
  margin: 6rem 0;
}

.process-title {
  font-size: 2.5rem;
  color: #FF007F;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.process-step {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  width: 30%;
  min-width: 280px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
}

.process-step img {
  max-width: 100px;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.5rem;
  color: #FF007F;
}

/* CTA Section */
.cta-section {
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  padding: 3rem;
  border-radius: 15px;
}

/* ✅ RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .hero-section {
      padding: 4rem 2rem;
  }

  .glow-text {
      font-size: 2.5rem;
  }

  .service-section,
  .process-steps {
      flex-direction: column;
      align-items: center;
  }

  .service-card,
  .process-step {
      width: 90%;
  }
}

@media (max-width: 768px) {


  .service-card,
  .process-step {
      width: 100%;
  }

  .cta-button {
      padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .glow-text {
      font-size: 1.5rem;
  }

  .sub-text {
      font-size: 0.9rem;
  }

  .service-card,
  .process-step {
      padding: 1.5rem;
  }
  .service-card p, .process-step p{
    font-size: .9rem;
  }

 

  .cta-section {
      padding: 2rem;
  }
}
