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

/* ✅ HERO SECTION */

.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;
}

/* ✅ NAVIGATION LINKS */
.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: 30%;
  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 video {
  width: 40%;
}

.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 video {
  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;
}

/* ✅ FIXED SWIPER GALLERY STYLES */
.image-slider-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 3rem 0;
  position: relative;
}

/* ✅ Swiper Core */
.swiper {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ✅ Swiper Slides */
.swiper-slide {
  width: 250px;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s ease-in-out;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* ✅ Image Resizing & Positioning */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
}

/* ✅ Center Slide Expands to Full Size */
.swiper-slide-active {
  transform: scale(1.2);
  z-index: 2;
}

/* ✅ Previous & Next Slides */
.swiper-slide-prev, .swiper-slide-next {
  transform: scale(1);
  opacity: 0.8;
  z-index: 1;
}

/* ✅ Further Left & Right Slides */
.swiper-slide-prev-prev, .swiper-slide-next-next {
  transform: scale(0.8);
  opacity: 0.6;
}

/* ✅ Caption Styling */
.slide-caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  font-size: 0.9rem;
  border-radius: 5px;
  text-align: center;
  width: 85%;
}

/* ✅ Swiper Navigation Buttons */
.swiper-button-next, .swiper-button-prev {
  color: white;
  font-size: 1.8rem;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease-in-out;
}

/* ✅ Hover Effect for Navigation Buttons */
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: rgba(255, 0, 127, 0.8);
}

/* Custom Navigation Icons */
.swiper-button-next::after {
  content: '➜'; /* Right arrow */
  font-size: 1.8rem;
}

.swiper-button-prev::after {
  content: '⬅'; /* Left arrow */
  font-size: 1.8rem;
}


/* ✅ Responsive Fixes */
@media (max-width: 1024px) {
  .swiper-slide { width: 220px; height: 300px; }
  .swiper-slide-active { transform: scale(1.15); }
}

@media (max-width: 768px) {
  .swiper-slide { width: 200px; height: 270px; }
  .swiper-slide-active { transform: scale(1.1); }
}

@media (max-width: 576px) {
  .swiper-slide { width: 180px; height: 240px; }
  .swiper-slide-active { transform: scale(1.05); }
  .service-card p, .process-step p{
    font-size: .9rem;
  }

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

}
