.cta-section {
  position: relative;
  height:auto;
  padding: 20px 20px;
  text-align: center;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 120%;
  width: 120%;
  background-color: #1434CB;
  z-index: 0;
  animation: zoom-bg 15s ease-in-out infinite alternate;
}
.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}
.cta-content h2 {
  font-size: 32px;
  color:white;
  margin-bottom: 10px;
  font-weight: 700;
  animation: fadeInDown 1s ease forwards 0.3s;
  opacity: 0;
}
.cta-content p {
  font-size: 18px;
  color: #ddd;
  font-weight: 400;
  animation: fadeInDown 1s ease forwards 0.5s;
  opacity: 0;
  margin-bottom:5px!important;
}
.cta-button {
  background: #fcc015;
  color: #000000;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease forwards 0.8s;
  opacity: 0;
}
.cta-button:hover {
  background: #fcc015;
  transform: scale(1.05);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes zoom-bg {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}
@media (max-width: 768px) {
  .cta-content h2 { font-size: 30px; }
  .cta-content p { font-size: 16px; }
}