/* ================= SERVICES SECTION ================= */
.cd-services {
  padding: 40px 6%;
  background: #f5f7fa;
}

.cd-services-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.cd-services-content {
  position: relative;
  overflow: hidden;
}

.cd-services-text {
  position: relative;
  animation: cdSlideUp 0.8s ease forwards;
}

.cd-services-num {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #999;
  margin-bottom: 12px;
}

.cd-services-text h3 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #222;
}

.cd-services-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  max-width: 420px;
}

/* SLIDE PLACEHOLDERS */
.cd-services-slide {
  display: none;
}

.cd-services-slide.active {
  display: block;
}

/* RIGHT VIDEO */
.cd-services-media {
  position: relative;
}

.cd-services-video-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}

/* CUT SHAPE OVERLAY */
/* CUT SHAPE OVERLAY – SMALLER & CLEANER */
.cd-services-video-wrap::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 40px;
  bottom: 40px;
  width: 30px; /* ⬅ reduced ~60% from 120px */
  background: #eef2f8;
  clip-path: polygon(
    0 0,
    100% 8%,
    100% 92%,
    0 100%
  );
  z-index: 2;
}

.cd-services-video-wrap video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ANIMATION */
@keyframes cdSlideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cd-services-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cd-services-video-wrap::before {
    display: none;
  }

  .cd-services-text h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .cd-services {
    padding: 60px 6%;
  }

  .cd-services-video-wrap video {
    height: 300px;
  }
}


.cd-services h2   {
  text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 36px;
}

.cd-services .why-desc {
text-align:center;
}