.ignou-cta-section {
  padding-left: 0;
  padding-right: 0;
}

.ignou-cta {
  padding: 40px 48px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  animation: ignouFadeUp 0.8s ease-out forwards;
}

.ignou-cta-left {
   background: linear-gradient(to right, #2f80ff, #6aa3ff);
  transform: translateX(-20px);
  animation-name: ignouSlideInLeft;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.ignou-cta-right {
  background: #000000;
  transform: translateX(20px);
  animation-name: ignouSlideInRight;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.ignou-cta h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  max-width: 520px;
}

.ignou-cta-btn {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  color: #151515;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    color 0.2s ease;
}

.ignou-cta-btn span {
  font-size: 20px;
  line-height: 1;
}

.ignou-cta-btn:hover {
  transform: translateX(3px) scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

@keyframes ignouFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ignouSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ignouSlideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 767.98px) {
  .ignou-cta {
    padding: 24px 20px;
  }

  .ignou-cta h2 {
    font-size: 16px;
  }
}