.readytowin-section {
  padding: 80px 20px 30px;
  background: url("/assets/images/contact-us/ready-to-win/bg-img.png") center bottom no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.readytowin-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
}

.readytowin-section .cta-card {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  padding: 30px 30px;
  box-shadow:
    0 0 25px rgba(255, 183, 0, 0.15),
    inset 0 0 20px rgba(255, 183, 0, 0.08);
  background: #00000000 0% 0% no-repeat padding-box;
  border: 1px solid #707070;
  border-radius: 12px;
  opacity: 1;
  backdrop-filter: blur(19px);
}

.readytowin-section .cta-card .cta-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;

  background: linear-gradient(to bottom,
      #fff3bf 0%,
      #ffd66b 30%,
      #f7b733 65%,
      #b67b11 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.6),
    0 6px 15px rgba(255, 183, 0, 0.35);
}

.readytowin-section .cta-card .cta-desc {
  color: #ffffff;
  font-size: 24px;
}

.readytowin-section .cta-card .cta-btn {
  border: none;
  cursor: pointer;
  padding: 14px 42px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #000;

  background: linear-gradient(90deg, #f6d007 0%, #f98419 100%);

  transition: all 0.3s ease;
}

.readytowin-section .cta-card .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 132, 25, 0.4);
}

.readytowin-section .cta-card .readytowin_title .text {
  width: 65%;
  height: 100%;
}

/* Initial State */
.readytowin_title {
  opacity: 0;
  transform: scale(2.3);
}

.cta-desc {
  opacity: 0;
  transform: scale(0.6);
}

/* Title Zoom Out */
.zoom-out-active {
  animation: titleZoomOut 1s cubic-bezier(.22,1,.36,1) forwards;
}

/* Description Zoom In */
.zoom-in-active {
  animation: descZoomIn 1s ease forwards;
  animation-delay: .35s;
}

/* Keyframes */

@keyframes titleZoomOut {
  0% {
    opacity: 0;
    transform: scale(2.3);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes descZoomIn {
  0% {
    opacity: 0;
    transform: scale(.6);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (min-width: 0px) and (max-width: 574px) {
  .readytowin-section .cta-card .cta-desc {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 3px;
  }

  .readytowin-section .cta-card {
    padding: 15px 24px;
  }
}

@media (min-width: 575px) and (max-width: 767.98px) {
  .readytowin-section .cta-card .cta-desc {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .readytowin-section .cta-card {
    max-width: 510px;
    padding: 18px 28px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .readytowin-section .cta-card .cta-desc {
    font-size: 16px;
  }

  .readytowin-section .cta-card {
    padding: 20px 30px;
    max-width: 600px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .readytowin-section .cta-card .cta-desc {
    font-size: 18px;
  }

  .readytowin-section .cta-card {
    padding: 20px 30px;
    max-width: 900px;
  }
}