/* CTA SECTION */
.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a1f44, #0d2f6b);
  text-align: center;
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* TITLE */
.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #4fd1ff;
  margin-bottom: 15px;
}

/* SUBTITLE */
.cta-subtitle {
  font-size: 16px;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;   /* center horizontal */
  align-items: center;
  margin-top: 40px;
  width: 100%;
}


.cta-buttons a {
  display: inline-block;
  background: linear-gradient(135deg, #1da1f2, #4fd1ff);
  color: #fff;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;

  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.35);
  transition: all 0.3s ease;
}

/* HOVER */
.cta-buttons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(79, 209, 255, 0.6);
}



/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #1da1f2, #4fd1ff);
  color: #fff;
  box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(29, 161, 242, 0.6);
}

/* SECONDARY BUTTON */
.btn-secondary {
  background: transparent;
  border: 2px solid #4fd1ff;
  color: #4fd1ff;
}

.btn-secondary:hover {
  background: #4fd1ff;
  color: #0a1f44;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(79, 209, 255, 0.4);
}

/* RESPONSIVE */
/* MOBILE */
@media (max-width: 768px) {
 

  .cta-subtitle {
    font-size: 14px;
  }

 .cta-buttons {
    padding: 0 20px;

 .cta-buttons a {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
  }
}
