/* ======================================================
   custom-sections.css
   All section-specific styles extracted from index.html
   ====================================================== */

/* ===== Global Overrides ===== */
/* Remove the orange accent bar next to section subtitles */
.sec-title-h1 .sub-title:before {
  display: none !important;
}

/* Make all section titles deep navy — premium & modern */
.sec-title .title,
.sec-title-h1 .title,
.section-title,
.sec-title h2,
.sec-title-h1 h2,
.cert-title h2 {
  color: #0D1644 !important;
}

/* Request a Demo button */
.btn-request-demo {
  background: #ffffff !important;
  color: #000 !important;
  padding: 2px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #ffaa17 !important;
  white-space: nowrap;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-request-demo:hover {
  background: #ffaa17 !important;
  border-color: #ffaa17 !important;
}

.btn-request-demo .btn-title {
  color: #000 !important;
}




/* ===== Hero Slider ===== */
.page-title {
  background: linear-gradient(135deg, #0A0F42 0%, #0D1644 40%, #2F616B 80%, #015DA9 100%) !important;
}

.page-title:before {
  display: none !important;
}

.slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
  display: block;
}

.slider-img-split {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: none;
  max-height: none;
  margin: 0 !important;
  object-position: center !important;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
  transform: scale(0.85);
}

/* Mobile & Tablet: Stacked layout (content top, human bottom) */
.page-title.hero-split {
  min-height: 550px !important;
}

.page-title.hero-split .slider-slide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  padding: 70px 3% 90px;
}

.page-title.hero-split .slider-img-split {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  margin: 0 !important;
  transform: none !important;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

.page-title.hero-split .hero-content-image {
  flex: 0 0 auto;
  width: 110%;
  max-width: 110%;
  min-height: 200px;
  max-height: 250px;
  object-position: center !important;
  object-fit: contain;
  order: 1;
  margin-left: auto;
  margin-right: auto;
}

.page-title.hero-split .hero-human-image {
  flex: 0 0 auto;
  width: 70%;
  max-width: 70%;
  min-height: 100px;
  max-height: 180px;
  object-position: center !important;
  object-fit: contain;
  order: 2;
  margin-left: auto;
}

/* Tablet: Slightly larger and better spacing */
@media (min-width: 768px) {
  .page-title.hero-split {
    min-height: 650px !important;
  }

  .page-title.hero-split .slider-slide {
    padding: 90px 5% 110px;
    gap: 30px;
  }

  .page-title.hero-split .hero-content-image {
    width: 115%;
    max-width: 115%;
    min-height: 200px;
    max-height: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-title.hero-split .hero-human-image {
    width: 65%;
    max-width: 65%;
    min-height: 220px;
    max-height: 280px;
    margin-left: auto;
  }
}

/* Laptop/Desktop: Side-by-side layout (content left, human right) */
@media (min-width: 1200px) {
  .page-title.hero-split {
    min-height: 620px !important;
  }

  .page-title.hero-split .slider-slide {
    display: block;
    padding: 42px 2.5% 58px;
  }

  .page-title.hero-split .hero-content-image,
  .page-title.hero-split .hero-human-image {
    position: absolute;
    top: 52%;
    max-width: none;
    max-height: none;
    min-height: auto;
    margin: 0 !important;
    will-change: transform;
    width: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
  }

  .page-title.hero-split .hero-content-image {
    left: 5%;
    width: min(72vw, 1180px);
    transform: translate(2%, -50%) !important;
    order: initial;
  }

  .page-title.hero-split .hero-human-image {
    right: -1%;
    width: min(36vw, 620px);
    max-height: 500px;
    transform: translate(-22%, -50%) !important;
    order: initial;
  }

  .page-title.hero-split .slider-controls {
    bottom: 42px;
  }
}

/* Slide transitions */
.slider-slide.enter-left {
  transform: translateX(-100%);
}

.slider-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slider-slide.exit-left {
  opacity: 0;
  transform: translateX(-100%);
}

.slider-slide.exit-right {
  opacity: 0;
  transform: translateX(100%);
}

/* Slider Controls Bar */
.slider-controls {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.35);
  padding: 8px 16px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  opacity: 1;
  transition: opacity 0.5s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .slider-controls {
    bottom: 28px;
    padding: 10px 20px;
    gap: 18px;
  }
}

.slider-controls.visible {
  opacity: 1;
}

/* Arrow Buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 1;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .slider-arrow {
    font-size: 20px;
    width: 42px;
    height: 42px;
  }
}

@media (min-width: 1200px) {
  .slider-arrow {
    font-size: 24px;
    width: 46px;
    height: 46px;
  }
}

.slider-arrow.visible {
  opacity: 1;
}

#sliderPrev {
  left: 8px;
}

#sliderNext {
  right: 8px;
}

@media (min-width: 768px) {
  #sliderPrev {
    left: 12px;
  }
  
  #sliderNext {
    right: 12px;
  }
}

@media (min-width: 1200px) {
  #sliderPrev {
    left: 18px;
  }
  
  #sliderNext {
    right: 18px;
  }
}

.slider-arrow:hover {
  background: var(--primary-orange, #EF7F03);
  border-color: var(--primary-orange, #EF7F03);
  color: #fff;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 18px rgba(239, 127, 3, 0.4);
}

/* Dot Indicators */
.slider-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

@media (min-width: 768px) {
  .slider-dots {
    gap: 12px;
  }
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
  min-width: 9px;
}

@media (min-width: 768px) {
  .slider-dot {
    width: 11px;
    height: 11px;
    min-width: 11px;
  }
}

@media (min-width: 1200px) {
  .slider-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
  }
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.25);
}

.slider-dot.active {
  background: var(--primary-orange, #EF7F03);
  width: 22px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(239, 127, 3, 0.4);
}

@media (min-width: 768px) {
  .slider-dot.active {
    width: 28px;
  }
}

@media (min-width: 1200px) {
  .slider-dot.active {
    width: 32px;
  }
}




/* ===== Global Faded Section Dividers ===== */
/* Faded divider line at the top of every major content section */
.claint-section-h2,
.video-showcase-section,
.why-digiplus-section,
.services-section-h2,
.faq-section,
.certifications-section,
.testimonials-fullwidth-section {
  border-top: none;
}

/* Dark sections get a subtle blue faded divider */
.claint-section-h2>.auto-container::before,
.video-showcase-section>.auto-container::before {
  content: '';
  display: block;
  width: 60%;
  max-width: 600px;
  height: 1px;
  margin: 0 auto 40px;
  background: linear-gradient(90deg, transparent, rgba(1, 93, 169, 0.35), transparent);
}

/* Light sections get a subtle navy faded divider */
.why-digiplus-section>.auto-container::before,
.faq-section>.auto-container::before {
  content: '';
  display: block;
  width: 60%;
  max-width: 600px;
  height: 1px;
  margin: 0 auto 40px;
  background: linear-gradient(90deg, transparent, rgba(18, 28, 39, 0.15), transparent);
}

/* Services section already has a background image, divider not needed */

/* Certifications has its own ::before, only apply divider to testimonials */
.testimonials-fullwidth-section::before {
  content: '';
  display: block;
  width: 60%;
  max-width: 600px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(18, 28, 39, 0.12), transparent);
}


/* ===== Brands Section (Client Logos) Light Theme ===== */
.claint-section-h2 {
  background: var(--soft-mint, #F7F8FA);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.claint-section-h2::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(1, 93, 169, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.claint-section-h2::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(239, 127, 3, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.claint-section-h2 .sec-title .title {
  color: #0D1644 !important;
}

.claint-section-h2 .sec-title .title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-blue, #015DA9);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ── Brands Infinite Marquee ── */
.brands-marquee-container {
  background: var(--soft-snow, #F8FAFC);
  border-radius: 18px;
  padding: 28px 0;
  border: 1px solid rgba(1, 93, 169, 0.15);
  overflow: hidden;
  position: relative;
}

/* Fade edges for smooth visual blending */
.brands-marquee-container::before,
.brands-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--soft-snow, #F8FAFC), transparent);
}

.brands-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--soft-snow, #F8FAFC), transparent);
}

.brands-marquee-track {
  display: flex;
  width: max-content;
  animation: brands-scroll 30s linear infinite;
}

.brands-marquee-set {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 15px;
  flex-shrink: 0;
}

.brands-marquee-set .logo {
  width: 150px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands-marquee-set .logo img {
  max-width: 100%;
  height: auto;
  transition: all 0.4s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes brands-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ===== Video Showcase Section (How It Works) ===== */
.video-showcase-section {
  padding: 80px 0 70px;
  background: var(--soft-sage, #F9FAFB);
  overflow: hidden;
  position: relative;
}

.video-showcase-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(1, 93, 169, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.video-showcase-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 55%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(239, 127, 3, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.video-showcase-section .sec-title {
  margin-bottom: 45px;
}

.video-showcase-section .sec-title .title {
  font-size: 36px;
  font-weight: 700;
  color: #0D1644;
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.video-showcase-section .sec-title .title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-blue, #015DA9);
  margin: 16px auto 0;
  border-radius: 2px;
}

.video-showcase-section .sec-title .sub-text {
  font-size: 17px;
  color: #506A7E;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.video-showcase-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(1, 93, 169, 0.12);
  background: #ffffff;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1),
    transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.video-showcase-wrapper.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.video-showcase-wrapper video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Decorative accent line - removed */

@media (max-width: 575px) {
  .video-showcase-section {
    padding: 50px 0 40px;
  }

  .video-showcase-section .sec-title .title {
    font-size: 26px;
  }

  .video-showcase-wrapper {
    border-radius: 14px;
  }

  .video-showcase-wrapper video {
    border-radius: 14px;
  }

  .video-showcase-wrapper::before {
    border-radius: 14px 14px 0 0;
  }
}


/* ===== Why Choose INBOX Section ===== */
.why-digiplus-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #EFF1F5 0%, #F7F8FA 30%, #F8FAFC 60%, #F9FAFB 100%);
  position: relative;
  overflow: hidden;
}

.why-digiplus-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(1, 93, 169, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.why-digiplus-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 55%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(239, 127, 3, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.why-digiplus-section>* {
  position: relative;
  z-index: 1;
}

.why-digiplus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Feature Cards */
.wv-card {
  background: var(--soft-mint, #F7F8FA);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(1, 93, 169, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(.4, 0, .2, 1), box-shadow 0.4s ease, border-color 0.3s ease, background 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.wv-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.wv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(1, 93, 169, 0.12);
  border-color: var(--primary-blue, #015DA9);
  background: #ffffff !important;
}

.wv-card .wv-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.wv-card .wv-icon svg {
  width: 100%;
  height: 100%;
}

.wv-card .wv-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #1B4965;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.wv-card .wv-title {
  font-size: 24px;
  font-weight: 700;
  color: #0D1644;
  line-height: 1.25;
  margin-bottom: 12px;
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.wv-card .wv-desc {
  font-size: 16px;
  color: #3D4F5F;
  line-height: 1.6;
  margin: 0;
}

/* CTA Card */
.wv-cta-card {
  background: var(--gradient-navy-teal, linear-gradient(135deg, #0A0F42, #2F616B));
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  grid-row: 1 / 3;
  grid-column: 4;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(.4, 0, .2, 1), box-shadow 0.4s ease;
}

.wv-cta-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.wv-cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(1, 93, 169, 0.3);
}

.wv-cta-card .wv-cta-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 12px;
  animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.wv-cta-card .wv-cta-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 12px;
}

.wv-cta-card .wv-cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.wv-cta-card .wv-cta-img {
  width: 100%;
  height: 50%;
  border-radius: 14px;
  margin-top: auto;
  object-fit: cover;
}

/* Highlighted Card (middle bottom) */
.wv-card.wv-highlight {
  background: linear-gradient(135deg, var(--soft-blue, #EFF1F5) 0%, var(--soft-snow, #F8FAFC) 100%);
  border: 2px solid rgba(1, 93, 169, 0.20);
  box-shadow: 0 8px 30px rgba(1, 93, 169, 0.08);
}

.wv-card.wv-highlight:hover {
  box-shadow: 0 20px 50px rgba(1, 93, 169, 0.15);
}

/* Why Digiplus Responsive */
@media (max-width: 991px) {
  .why-digiplus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wv-cta-card {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 575px) {
  .why-digiplus-grid {
    grid-template-columns: 1fr;
  }

  .wv-card .wv-title {
    font-size: 20px;
  }

  .wv-cta-card .wv-cta-title {
    font-size: 26px;
  }
}

/* ===== Services Snap Cards (Premium Horizontal Layout) ===== */
.services-snap-section {
  padding: 90px 0 84px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 170, 23, 0.16), transparent 42%),
    radial-gradient(circle at 86% 80%, rgba(1, 93, 169, 0.18), transparent 40%),
    linear-gradient(145deg, #f5dfd5 0%, #f8fafc 40%, #eaf3e0 100%);
  position: relative;
  overflow: hidden;
}

.services-snap-title-wrap {
  margin-bottom: 36px;
}

.services-snap-title-wrap .title {
  color: #0D1644 !important;
}

.services-snap-subtext {
  color: #506A7E;
  font-size: 16px;
  margin: 14px 0 0;
}

.services-snap-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 6px 6px 10px;
}

.service-snap-card {
  border-radius: 22px;
  border: 1px solid rgba(13, 22, 68, 0.1);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  box-shadow: 0 10px 30px rgba(13, 22, 68, 0.08);
  overflow: hidden;
  transform: translateY(14px);
  opacity: 0;
  animation: serviceSnapReveal 0.7s ease forwards;
}

.service-snap-card:nth-child(2) {
  animation-delay: 0.1s;
}

.service-snap-card:nth-child(3) {
  animation-delay: 0.2s;
}

.service-snap-card:nth-child(4) {
  animation-delay: 0.3s;
}

.service-snap-media {
  display: block;
  background: linear-gradient(120deg, rgba(1, 93, 169, 0.08), rgba(255, 170, 23, 0.08));
  min-height: 360px;
  padding: 22px;
}

.service-snap-media img {
  width: 100%;
  height: 350px;
  /* object-fit: contain; */
  transition: transform 0.45s ease;
}

.service-snap-card:hover .service-snap-media img {
  transform: scale(1.06) translateY(-4px);
}

.service-snap-content {
  padding: 20px 22px 24px;
}

.service-snap-content h4 {
  font-size: 28px;
  color: #0D1644;
  margin: 0 0 10px;
}

.service-snap-content p {
  color: #3D4F5F;
  margin: 0 0 16px;
  line-height: 1.65;
}

.service-snap-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #015DA9;
  text-decoration: none;
}

.service-snap-link:hover {
  color: #ef7f03;
}

@keyframes serviceSnapReveal {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1199px) {
  .services-snap-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .services-snap-section {
    padding: 62px 0 54px;
  }

  .services-snap-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-snap-media {
    min-height: 190px;
  }

  .service-snap-media img {
    height: 176px;
  }

  .service-snap-content h4 {
    font-size: 24px;
  }
}


/* ===== Services Section Light Theme Override ===== */
.services-section-h2 .outer-box:before {
  background: linear-gradient(135deg, #FFF4ED 0%, #F8FAFC 30%, #F9FAFB 60%, #EFF1F5 100%) !important;
  background-image: none !important;
  opacity: 1 !important;
}

.services-section-h2 .outer-box .lower-box .sec-title-h1 .title {
  color: #0D1644 !important;
}

.services-section-h2 .outer-box .lower-box .sec-title-h1 .sub-title {
  color: #1B4965 !important;
}

.services-section-h2 .outer-box .lower-box .service-block-h2 .inner-box {
  border-top: 1px solid rgba(13, 22, 68, 0.12) !important;
}

.services-section-h2 .outer-box .lower-box .service-block-h2 .inner-box .content-box .title-box .title {
  color: #0D1644 !important;
}

.services-section-h2 .outer-box .lower-box .service-block-h2 .inner-box .content-box .title-box .title a {
  color: #0D1644 !important;
}

.services-section-h2 .outer-box .lower-box .service-block-h2 .inner-box .content-box .title-box .title p {
  color: #3D4F5F !important;
}

.services-section-h2 .outer-box .lower-box .service-block-h2 .inner-box .content-box .icon-box .icon {
  background-color: rgba(1, 93, 169, 0.12) !important;
  color: var(--primary-blue, #015DA9) !important;
}

.services-section-h2 .outer-box .lower-box .service-block-h2 .inner-box:hover .content-box .icon-box .icon,
.services-section-h2 .outer-box .lower-box .service-block-h2 .inner-box.active .content-box .icon-box .icon {
  background-color: var(--primary-blue, #015DA9) !important;
  color: #fff !important;
}

/* ===== Services Section Overrides ===== */
.service-block-h2 .title-box .title {
  font-size: 30px !important;
}

.services-section-h2 .outer-box {
  padding-top: 30px !important;
}

.services-section-h2 .outer-box .lower-box {
  padding-top: 30px !important;
}

.service-block-h2 .inner-box .image-box {
  max-width: 450px !important;
  height: 300px !important;
  top: 50% !important;
  opacity: 0 !important;
  transform: translate(-80px, -50%) !important;
  transition: transform 1800ms ease, opacity 1800ms ease !important;
}

.service-block-h2 .inner-box:hover .image-box,
.service-block-h2 .inner-box.active .image-box {
  opacity: 1 !important;
  transform: translate(0, -50%) !important;
}

.service-block-h2 .inner-box {
  min-height: 320px !important;
  display: flex !important;
  align-items: center !important;
}

.service-block-h2 .inner-box:hover .content-box,
.service-block-h2 .inner-box.active .content-box {
  padding-left: 480px !important;
}

.service-block-h2 .inner-box .content-box {
  align-items: center !important;
  width: 100%;
}

.service-block-h2 .image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}


/* ===== FAQ Section Override ===== */
.faq-section {
  background: linear-gradient(135deg, #F9FAFB 0%, #F8FAFC 35%, #F7F8FA 65%, #EFF1F5 100%) !important;
}

.faq-section .accordion-box .block .acc-btn {
  padding-right: 70px !important;
  color: #0D1644 !important;
}

.faq-section .accordion-box .block .acc-btn .count,
.faq-section .accordion-box .block .acc-btn h4 {
  color: #0D1644 !important;
}

.faq-section .accordion-box .block .acc-content .content .text {
  color: #3D4F5F !important;
}

/* Services section description h5 styling (user switched from p to h5) */
.service-block-h2 .inner-box .content-box .title-box .title h5 {
  color: #3D4F5F !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 8px;
}


/* ===== Why Choose Us — Split Layout Section ===== */
.why-choose-us-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0D1644 0%, #1a2a3e 50%, #0f1923 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(239, 127, 3, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.why-choose-us-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(255, 170, 23, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.wcu-row {
  display: flex;
  align-items: stretch;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Left: Image Column */
.wcu-image-col {
  flex: 0 0 48%;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.wcu-image-col.wcu-visible {
  opacity: 1;
  transform: translateX(0);
}

.wcu-image-box {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.wcu-main-img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Floating Card */
.wcu-floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  width: 260px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  z-index: 2;
  animation: wcuCardFloat 4s ease-in-out infinite;
}

@keyframes wcuCardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.wcu-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.wcu-card-icon svg {
  width: 100%;
  height: 100%;
}

.wcu-card-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #EF7F03;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.wcu-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0D1644;
  line-height: 1.3;
  margin: 0;
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

/* Right: Content Column */
.wcu-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
  transition-delay: 0.2s;
}

.wcu-content-col.wcu-visible {
  opacity: 1;
  transform: translateX(0);
}

.wcu-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #EF7F03;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wcu-subtitle::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #EF7F03;
  border-radius: 2px;
}

.wcu-heading {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.wcu-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

/* Feature Items */
.wcu-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wcu-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease;
}

.wcu-feature-item.wcu-visible {
  opacity: 1;
  transform: translateY(0);
}

.wcu-feature-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.wcu-feature-highlight {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(239, 127, 3, 0.25);
}

.wcu-feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(239, 127, 3, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.wcu-feature-icon svg {
  width: 100%;
  height: 100%;
}

.wcu-feature-text h5 {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.wcu-feature-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .wcu-row {
    flex-direction: column;
    gap: 40px;
  }

  .wcu-image-col {
    flex: none;
  }

  .wcu-heading {
    font-size: 32px;
  }

  .wcu-floating-card {
    right: 10px;
    bottom: -20px;
    width: 220px;
    padding: 18px 20px;
  }

  .wcu-card-title {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .why-choose-us-section {
    padding: 60px 0;
  }

  .wcu-heading {
    font-size: 26px;
  }

  .wcu-main-img {
    min-height: 300px;
  }

  .wcu-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
    animation: none;
  }

  .wcu-feature-item {
    padding: 16px 12px;
  }

  .wcu-feature-text h5 {
    font-size: 17px;
  }
}


/* ===== Certifications Section ===== */
.certifications-section {
  padding: 70px 0 60px;
  background: linear-gradient(135deg, #EFF1F5 0%, #F8FAFC 30%, #FFF4ED 60%, #F7F8FA 100%);
  overflow: hidden;
  position: relative;
}

.certifications-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(1, 93, 169, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.certifications-section::after {
  content: '';
  position: absolute;
  bottom: -35%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(239, 127, 3, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.certifications-section .cert-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.certifications-section .cert-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--dark-navy, #0D1644);
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.certifications-section .cert-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-blue, #015DA9);
  margin: 16px auto 0;
  border-radius: 2px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 220px);
  justify-content: center;
  justify-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--soft-snow, #F8FAFC);
  border-radius: 16px;
  padding: 22px 18px;
  max-width: 180px;
  width: 100%;
  min-height: 220px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(1, 93, 169, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  overflow: hidden;
}

/* Allow the image inside the card to be larger and nicely cropped if needed */
.cert-item img {
  width: auto;
  max-width: 85%;
  max-height: 180px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  transform-origin: center center;
  transform: scale(1.30);
  transition: transform 360ms cubic-bezier(.22, .9, .26, 1);
}

.cert-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.cert-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(1, 93, 169, 0.25);
  border-color: rgba(1, 93, 169, 0.4);
}

.cert-shield {
  width: 140px;
  height: 165px;
  margin-bottom: 0;
}

/* Ensure images inside the shield scale to the new size */
.cert-shield img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 991px) {
  .cert-grid {
    grid-template-columns: repeat(2, 180px);
    justify-content: center;
    gap: 20px;
  }

  .cert-item {
    max-width: 160px;
    width: 100%;
    min-height: 200px;
    padding: 18px 14px;
  }

  .cert-shield {
    width: 120px;
    height: 140px;
  }
}

@media (max-width: 575px) {
  .certifications-section {
    padding: 50px 0 40px;
  }

  .certifications-section .cert-title h2 {
    font-size: 26px;
  }

  .cert-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }


  .cert-item {
    max-width: 140px;
    width: 100%;
    min-height: 170px;
    padding: 14px 10px;
  }

  .cert-shield {
    width: 100px;
    height: 120px;
  }
}

.cert-shield {
  width: 100px;
  height: 120px;
}


/* ===== Testimonials Section ===== */
/* Certifications needs solid bg to hide the fixed image */
.certifications-section {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #EFF1F5 0%, #F8FAFC 30%, #FFF4ED 60%, #F7F8FA 100%) !important;
}

/* Testimonials Section with fixed background */
.testimonials-fullwidth-section {
  position: relative;
  z-index: 1;
  padding: 90px 0 70px;
  background-image: url('../images/testimonial.png');
  background-position: 70% center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-color: transparent;
  background-blend-mode: normal;
  overflow: hidden;
}

.testimonials-fullwidth-section::before {
  /* overlay removed so background image appears clearly */
  display: none;
}

/* Responsive nudges to avoid any dark strip in the source image appearing on wide viewports */
@media (min-width: 1400px) {
  .testimonials-fullwidth-section {
    background-position: 75% center;
  }
}

@media (min-width: 1800px) {
  .testimonials-fullwidth-section {
    background-position: 82% center;
  }
}

@media (max-width: 768px) {
  .testimonials-fullwidth-section {
    background-position: center center;
    background-size: cover;
  }
}

.testimonials-fullwidth-section>* {
  position: relative;
  z-index: 1;
}

/* Footer needs solid bg to hide the fixed image */
.main-footer.footer-style-two {
  position: relative;
  z-index: 2;
}

.testimonials-fullwidth-section .tfw-heading {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-fullwidth-section .tfw-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-orange, #EF7F03);
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
  letter-spacing: 0.5px;
}

/* Slide Content */
.tfw-slide-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Avatar wrapper */
.tfw-avatar-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
}

.tfw-avatar-wrap img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 170, 23, 0.5);
}

.tfw-avatar-wrap .tfw-quote-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 36px;
  height: 36px;
  background: var(--primary-orange, #EF7F03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(255, 170, 23, 0.4);
}

.tfw-quote-badge svg {
  width: 18px;
  height: 18px;
}

/* Name & Role */
.tfw-name {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.tfw-role {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

/* Testimonial Text */
.tfw-text {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Star Rating */
.tfw-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.tfw-stars i {
  font-size: 20px;
  color: var(--primary-orange, #EF7F03);
}

/* Responsive adjustments for testimonial text */
@media (max-width: 991px) {
  .testimonials-fullwidth-section .tfw-heading h2 {
    font-size: 32px;
  }

  .tfw-name {
    font-size: 22px;
  }

  .tfw-role {
    font-size: 14px;
  }

  .tfw-text {
    font-size: 16px;
    max-width: 520px;
  }
}

@media (max-width: 575px) {
  .testimonials-fullwidth-section {
    padding: 60px 0;
  }

  .testimonials-fullwidth-section .tfw-heading h2 {
    font-size: 24px;
  }

  .tfw-name {
    font-size: 18px;
  }

  .tfw-role {
    font-size: 13px;
  }

  .tfw-text {
    font-size: 14px;
    max-width: 340px;
    line-height: 1.6;
  }

  .tfw-stars i {
    font-size: 18px;
  }
}

.tfw-stars i.half {
  color: var(--primary-orange, #EF7F03);
  position: relative;
}

.tfw-stars i.empty {
  color: rgba(255, 255, 255, 0.25);
}

/* Dot Navigation */
.tfw-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.tfw-dot {
  width: 28px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.tfw-dot.active {
  background: var(--primary-orange, #EF7F03);
  width: 36px;
}

/* Swiper Overrides */
.tfw-swiper {
  overflow: hidden;
}

.tfw-swiper .swiper-slide {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tfw-swiper .swiper-slide-active {
  opacity: 1;
}

/* Testimonials Responsive */
@media (max-width: 768px) {
  .testimonials-fullwidth-section {
    padding: 60px 0 50px;
  }

  .testimonials-fullwidth-section .tfw-heading h2 {
    font-size: 28px;
  }

  .tfw-avatar-wrap {
    width: 90px;
    height: 90px;
  }

  .tfw-avatar-wrap img {
    width: 90px;
    height: 90px;
  }

  .tfw-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .testimonials-fullwidth-section .tfw-heading h2 {
    font-size: 24px;
  }

  .tfw-name {
    font-size: 18px;
  }
}


/* ===== About Page – Scroll Animation Utilities ===== */
@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutFadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutScaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes aboutGlowPulse {

  0%,
  100% {
    opacity: 0.15;
    transform: scale(1);
  }

  50% {
    opacity: 0.25;
    transform: scale(1.1);
  }
}

@keyframes aboutFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes aboutTextReveal {
  from {
    opacity: 0;
    transform: translateY(30px) skewY(2deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}

@keyframes aboutShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Scroll-triggered animation base class */
.about-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.about-anim.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-anim-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.about-anim-left.anim-visible {
  opacity: 1;
  transform: translateX(0);
}

.about-anim-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.about-anim-right.anim-visible {
  opacity: 1;
  transform: translateX(0);
}

.about-anim-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.about-anim-scale.anim-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.about-delay-1 {
  transition-delay: 0.1s;
}

.about-delay-2 {
  transition-delay: 0.2s;
}

.about-delay-3 {
  transition-delay: 0.3s;
}

.about-delay-4 {
  transition-delay: 0.4s;
}

.about-delay-5 {
  transition-delay: 0.5s;
}

/* ===== About Page – Hero Section Background ===== */
#about-hero.about-section-h1 {
  background: linear-gradient(135deg, #F9FAFB 0%, #F9FAFB 40%, #FFFCF2 80%, #FDFBFB 100%) !important;
  position: relative;
  overflow: hidden;
}

#about-hero.about-section-h1::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(255, 200, 50, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: aboutGlowPulse 6s ease-in-out infinite;
}

#about-hero.about-section-h1::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(255, 170, 23, 0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: aboutGlowPulse 8s ease-in-out infinite 2s;
}

#about-hero.about-section-h1 .sub-title {
  color: #121C27 !important;
}

#about-hero.about-section-h1 .text {
  color: #444444 !important;
}

#about-hero.about-section-h1 .image-box img {
  animation: aboutFloat 4s ease-in-out infinite;
}

/* ===== About Page – Mission Statement Section ===== */
.about-mission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #D2E7EF 0%, #D2E7EF 40%, #EFF2F5 80%, #FDFBFB 100%) !important;
  position: relative;
  overflow: hidden;
}

.about-mission-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(13, 22, 68, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.about-mission-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 45%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(239, 127, 3, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.mission-slides-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.mission-slide {
  position: relative;
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(13, 22, 68, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.mission-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13, 22, 68, 0.12);
  border-color: rgba(255, 170, 23, 0.8);
}

.about-mission-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding: 60px 50px;
  position: relative;
}

.about-mission-left {
  flex: 0 0 40%;
  max-width: 40%;
}

.cert-item:hover img {
  transform: scale(1.50);
}

@media (max-width: 991px) {
  .cert-item img {
    transform: scale(1.18);
  }

  .cert-item:hover img {
    transform: scale(1.35);
  }
}

@media (max-width: 575px) {
  .cert-item img {
    transform: scale(1.08);
  }

  .cert-item:hover img {
    transform: scale(1.12);
  }
}

.about-mission-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #121C27;
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
  font-style: italic;
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
}

.about-mission-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: #ffaa17;
  border-radius: 2px;
}

.about-mission-right {
  flex: 1;
  padding-top: 6px;
}

.about-mission-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 18px;
  font-family: var(--body-font, 'Plus Jakarta Sans', sans-serif);
}

.about-mission-right p:last-child {
  margin-bottom: 0;
}

/* Features List - Slide 2 */
.mission-feature-list {
  margin-top: 30px;
  padding-left: 20px;
}

.feat-item {
  font-size: 19px;
  font-weight: 600;
  color: #121C27;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feat-item i {
  color: #ffaa17;
}

/* Sectors - Slide 3 */
.mission-subtitle {
  font-size: 18px;
  color: #506A7E;
  margin-bottom: 30px;
  padding-left: 20px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding-left: 20px;
}

.sector-grid a {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-grid a:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sector-grid span {
  display: block;
  background: #ffffff;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.sector-grid a:hover span {
  background: #ffaa17;
  color: #000000;
  border-color: #ffaa17;
}

/* Stats */
.about-mission-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  padding-left: 20px;
}

.mission-stat-item {
  display: flex;
  flex-direction: column;
}

.mission-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #ffaa17;
  line-height: 1;
  margin-bottom: 5px;
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.mission-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #0A0F42;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-mission-section {
    height: auto;
    padding: 80px 0;
  }

  .mission-slide {
    position: relative;
    opacity: 1;
    visibility: visible;
    height: auto;
    padding: 40px 0;
    display: block;
  }

  .about-mission-inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-mission-left {
    flex: none;
    max-width: 100%;
  }

  .about-mission-heading {
    font-size: 30px;
    text-align: center;
  }

  .about-mission-right {
    text-align: center;
  }

  .about-mission-stats {
    justify-content: center;
  }
}

/* ===== About Page – Vision, Mission, Value Section ===== */
.about-vmv-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #F4F7F6 0%, #FDFBFB 50%, #EFF2F5 100%);
  position: relative;
  overflow: hidden;
}

.about-vmv-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(255, 170, 23, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.about-vmv-section::after {
  content: '';
  position: absolute;
  bottom: -35%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(1, 93, 169, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.about-vmv-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.vmv-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid #ffaa17;
}

.vmv-card:hover {
  transform: translateY(-10px);
  border-color: #EF7F03;
  box-shadow: 0 0 18px rgba(255, 170, 23, 0.5), 0 0 35px rgba(255, 170, 23, 0.25);
}

.vmv-header {
  padding: 25px 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #121C27;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #eee;
}

.vmv-header .icon {
  font-size: 32px;
  color: #ffaa17;
}

.vmv-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #121C27;
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.vmv-image {
  height: 280px;
  overflow: hidden;
}

.vmv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vmv-card:hover vmv-image img {
  transform: scale(1.1);
}

.vmv-content {
  padding: 30px 25px;
  background: #ffffff;
  flex: 1;
  border-radius: 0 0 12px 12px;
}

.vmv-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #3D4F5F;
  margin: 0;
  font-family: var(--body-font, 'Plus Jakarta Sans', sans-serif);
}

/* Responsive */
@media (max-width: 991px) {
  .about-vmv-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .about-vmv-inner {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .vmv-image {
    height: 240px;
  }
}

/* ===== About Page – Leadership Team Slider Section ===== */
.leadership-slider-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #F3CCBF 0%, #F3CCBF 40%, #FDFBFB 80%, #EFF2F5 100%);
  position: relative;
  overflow: hidden;
}

.leadership-slider-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(1, 93, 169, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.leadership-slider-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 55%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(239, 127, 3, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.leadership-slider-section>* {
  position: relative;
  z-index: 1;
}

/* Leadership title shimmer accent */
.leadership-slider-section .sec-title h2 {
  color: var(--deep-navy, #0A0F42);
}

.leadership-slider-section .sec-title {
  text-align: center;
  margin-bottom: 60px;
}

.about-mission-section .sector-grid a span {
  color: #000000;
}

.leadership-slider-section .sec-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #121C27;
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.leadership-slider-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
  overflow: hidden;
  /* Ensure nothing bleeds outside the wrap */
}

.leader-slider-active {
  overflow: hidden;
  /* Standard swiper requirement to hide other slides */
}

.leader-card {
  display: flex !important;
  align-items: center;
  gap: 50px;
  background: #ffffff;
  border: 3px solid #ffaa17;
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
  border-color: #EF7F03;
  box-shadow: 0 0 18px rgba(255, 170, 23, 0.45), 0 0 35px rgba(255, 170, 23, 0.2);
}

.leader-image {
  flex: 0 0 350px;
  max-width: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leader-image img {
  width: 100%;
  height: auto;
  display: block;
}

.leader-info {
  flex: 1;
}

.leader-info h4 {
  font-size: 32px;
  font-weight: 700;
  color: #121C27;
  margin-bottom: 5px;
  font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.leader-info .designation {
  font-size: 18px;
  font-weight: 600;
  color: #EF7F03;
  font-style: italic;
  margin-bottom: 20px;
  display: block;
}

.leader-info p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* Navigation Buttons */
.leader-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
}

.leader-slider-btn svg {
  width: 40px;
  height: 40px;
  fill: #121C27;
  transition: fill 0.3s ease;
}

.leader-slider-btn:hover svg {
  fill: #EF7F03;
}

.leader-slider-btn.prev-btn {
  left: 0;
}

.leader-slider-btn.next-btn {
  right: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .leader-card {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .leader-image {
    flex: none;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .leadership-slider-section {
    padding: 60px 0;
  }

  .leadership-slider-section .sec-title h2 {
    font-size: 30px;
  }

  .leader-info h4 {
    font-size: 26px;
  }

  .leadership-slider-wrap {
    padding: 0 40px;
  }
}


/* ============================================================
   CROSS-DEVICE COMPATIBILITY FIXES
   ============================================================ */

/* 1. Accessibility: ensure all animated elements are visible 
      on devices that prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

  .wv-card,
  .wv-cta-card,
  .video-showcase-wrapper,
  .cert-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .service-block-h2 .inner-box .image-box {
    opacity: 1 !important;
    transform: translate(0, -50%) !important;
    transition: none !important;
  }

  .slider-slide {
    transition: none !important;
  }
}

/* 2. Services Section — medium laptop breakpoint (1200px and below) */
@media (max-width: 1200px) {
  .service-block-h2 .inner-box .image-box {
    max-width: 320px !important;
    height: 220px !important;
  }

  .service-block-h2 .inner-box:hover .content-box,
  .service-block-h2 .inner-box.active .content-box {
    padding-left: 350px !important;
  }

  .service-block-h2 .inner-box {
    min-height: 260px !important;
  }
}

/* 3. Services Section — tablet breakpoint (768px and below):
      stack image above text instead of side-by-side */
@media (max-width: 768px) {
  .service-block-h2 .inner-box .image-box {
    position: relative !important;
    max-width: 100% !important;
    height: 200px !important;
    top: 20px !important;
    opacity: 1 !important;
    transform: translate(0, 0) !important;
    margin-bottom: 18px !important;
    z-index: 1;
  }

  .service-block-h2 .inner-box {
    flex-direction: column !important;
    min-height: auto !important;
  }

  .service-block-h2 .inner-box .content-box {
    position: relative;
    z-index: 2;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .service-block-h2 .inner-box .content-box .title-box {
    width: 100%;
  }

  .service-block-h2 .inner-box .content-box .icon-box {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .service-block-h2 .inner-box:hover .content-box,
  .service-block-h2 .inner-box.active .content-box {
    padding-left: 0 !important;
  }

  .service-block-h2 .title-box .title {
    font-size: 22px !important;
  }
}

/* 4. Why Choose grid — tablet/medium-laptop breakpoint */
@media (max-width: 1200px) and (min-width: 992px) {
  .why-digiplus-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wv-cta-card {
    grid-row: auto;
    grid-column: auto;
  }
}

/* 5. Hero slider — mobile image safety */
@media (max-width: 991px) {
  .page-title {
    min-height: 560px !important;
  }

  .slider-slide {
    width: 100%;
    left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .slider-img-split {
    position: relative;
    width: 112%;
    max-width: 112%;
    height: 58%;
    max-height: 58%;
    object-fit: contain;
    object-position: center center !important;
    margin-left: auto;
    margin-right: auto;
    transform: scale(0.86) !important;
  }

  .slider-img-split:first-child {
    object-position: center center !important;
    margin-bottom: -20% !important;
  }

  .slider-img-split:last-child {
    object-position: center center !important;
    margin-top: -20% !important;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .slider-controls {
    padding: 6px 14px;
    gap: 10px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
  }

  .slider-dot.active {
    width: 24px;
  }
}

@media (max-width: 575px) {
  .page-title {
    min-height: 460px !important;
  }

  .slider-img-split {
    height: 56%;
    max-height: 56%;
    width: 116%;
    max-width: 116%;
    transform: scale(0.9) !important;
  }

  .slider-arrow {
    top: auto;
    bottom: 72px;
    transform: none;
  }

  #sliderPrev {
    left: 10px;
  }

  #sliderNext {
    right: 10px;
  }

  .slider-controls {
    bottom: 18px;
  }
}

/* Hero split responsive order: content first, human image at bottom */
@media (max-width: 991px) {
  .page-title.hero-split {
    min-height: 680px !important;
  }

  .page-title.hero-split .slider-slide {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    padding: 100px 24px 120px;
  }

  .page-title.hero-split .slider-img-split,
  .page-title.hero-split .slider-img-split:first-child,
  .page-title.hero-split .slider-img-split:last-child {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    margin: 0 !important;
    transform: none !important;
    object-position: center center !important;
  }

  .page-title.hero-split .hero-content-image {
    max-width: min(600px, 110%);
    max-height: 250px;
    object-position: center top !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-title.hero-split .hero-human-image {
    max-width: min(300px, 70%);
    max-height: 240px;
    object-position: center bottom !important;
    margin-left: auto;
  }
}

@media (max-width: 575px) {
  .page-title.hero-split {
    min-height: 560px !important;
  }

  .page-title.hero-split .slider-slide {
    padding: 88px 16px 110px;
    gap: 10px;
  }

  .page-title.hero-split .hero-content-image {
    max-width: min(380px, 105%);
    max-height: 210px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-title.hero-split .hero-human-image {
    max-width: min(240px, 68%);
    max-height: 190px;
    margin-left: auto;
  }
}
/* ── SEO Fix: Service description (was h5, now <p>) ─────── */
.service-block-h2 .inner-box .content-box .title-box .title p.service-desc {
  color: #3D4F5F !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ── SEO Fix: WCU feature titles (was h5, now h3) ─────── */
h3.wcu-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--headings-color);
  margin-bottom: 8px;
  line-height: 1.4;
}

/* ── SEO Fix: h3.wv-title / h4.wv-subtitle tag resets ─── */
h3.wv-title {
  font-size: 24px;
  font-weight: 700;
  color: #0D1644;
  line-height: 1.25;
  margin-bottom: 12px;
}
h4.wv-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #1B4965;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

/* ── SEO Fix: h3/h4 in CTA card tag resets ─── */
h3.wv-cta-title {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
}
h4.wv-cta-label {
  font-weight: 600;
  margin-bottom: 6px;
}

@media (max-width: 991px) {
  h3.wv-title {
    font-size: 20px;
  }
}

/* ── Premium FAQ Accordion Override ─────────────────────── */
.faq-section .accordion-box .block .acc-btn .icon {
  background-color: #f0f2f5;
  border: 2px solid #e2e5ea;
  color: #222429;
  width: 44px;
  height: 44px;
  font-size: 0;                    /* hide broken FA icon text */
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.faq-section .accordion-box .block .acc-btn .icon::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid #222429;
  border-bottom: 2.5px solid #222429;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
/* Active state: rotate arrow up */
.faq-section .accordion-box .block .acc-btn.active .icon {
  background-color: #ffaa17;
  border-color: #ffaa17;
  transform: rotate(180deg);
}
.faq-section .accordion-box .block .acc-btn.active .icon::before {
  border-color: #fff;
}
/* Hover */
.faq-section .accordion-box .block .acc-btn:hover .icon {
  border-color: #ffaa17;
  background-color: rgba(255,170,23,0.08);
}
.faq-section .accordion-box .block .acc-btn.active:hover .icon {
  background-color: #e8940a;
  border-color: #e8940a;
}
/* Active block highlight */
.faq-section .accordion-box .block.active-block {
  background-color: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
/* Make sure icon is visible on mobile too */
.faq-section .accordion-box .block .acc-btn .icon {
  display: flex !important;
}

/* ── Footer Social Icons ───────────────────────────────── */
.social-icons-container {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 18px;
  transition: all 0.35s ease;
  text-decoration: none;
}
.social-circle:hover {
  background: #ffaa17;
  border-color: #ffaa17;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255,170,23,0.4);
}
.social-circle i {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}
.follow-text {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 5px;
}
