.skill-programs {
  background: #f5f7fb;
}

.program-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.program-img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}


/* ===== SKILL PROGRAMS (Cards) ===== */
.skill-programs {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 161, 0, 0.12) 0, rgba(244, 161, 0, 0) 30%),
    radial-gradient(circle at 88% 78%, rgba(0, 120, 130, 0.14) 0, rgba(0, 120, 130, 0) 32%),
    linear-gradient(135deg, #f6fbfc 0%, #ffffff 40%, #f7f9ff 100%);
}

.skill-programs h2 {
  letter-spacing: 0.2px;
}

.skill-programs .program-card {
  height: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 44, 77, 0.08);
  box-shadow: 0 14px 45px rgba(11, 44, 77, 0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.skill-programs .program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 120, 130, 0.28);
  box-shadow: 0 22px 70px rgba(11, 44, 77, 0.16);
}

.skill-programs .program-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.skill-programs .program-card:hover .program-img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03);
}

.skill-programs .program-card .p-4 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skill-programs .program-card h5 {
  margin: 0;
  color: #0b2c4d;
}

.skill-programs .program-card p {
  margin: 0;
}

.skill-programs .program-card .small.mb-3 {
  margin-top: 2px;
  display: grid;
  gap: 8px;
  color: rgba(11, 44, 77, 0.80);
}

.skill-programs .program-card .small.mb-3 > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.skill-programs .program-card .small.mb-3 i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: #007882;
  background: rgba(0, 120, 130, 0.12);
}

.skill-programs .program-card .btn.btn-primary {
  margin-top: auto;
  border: 0;
  padding: 8px 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #007882 0%, #0b2c4d 100%);
  box-shadow: 0 10px 26px rgba(0, 120, 130, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.skill-programs .program-card .btn.btn-primary:hover,
.skill-programs .program-card .btn.btn-primary:focus {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 16px 40px rgba(0, 120, 130, 0.28);
}

@media (max-width: 575.98px) {
  .skill-programs .program-img {
    height: 190px;
  }
  .skill-programs .program-card {
    border-radius: 16px;
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 0; /* ❌ removed */
  box-shadow: 0 22px 70px rgba(11, 44, 77, 0.16);
  background:
    linear-gradient(135deg, rgba(0, 120, 130, 0.90) 0%, rgba(11, 44, 77, 0.88) 100%),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f') center/cover no-repeat;
}

/* Overlay Effect */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(244, 161, 0, 0.22), transparent 42%),
    radial-gradient(circle at 84% 78%, rgba(255, 255, 255, 0.10), transparent 48%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

/* Text */
.cta-title {
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.2px;
}

.cta-subtitle {
  font-size: 15px;
  opacity: 0.92;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  border-width: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cta-buttons .btn:focus {
  box-shadow: none;
}

.cta-buttons .btn:focus-visible {
  outline: 3px solid rgba(244, 161, 0, 0.55);
  outline-offset: 3px;
}

/* Primary */
.cta-btn-primary {
  background: #fff;
  color: #007882;
  border-color: transparent;
  box-shadow: 0 16px 45px rgba(11, 44, 77, 0.22);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  background: #f4a100;
  color: #fff;
  box-shadow: 0 18px 52px rgba(244, 161, 0, 0.24);
}

/* Outline */
.cta-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.cta-btn-outline:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #007882;
  border-color: #fff;
  box-shadow: 0 16px 45px rgba(11, 44, 77, 0.18);
}

/* WhatsApp */
.cta-btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 45px rgba(37, 211, 102, 0.24);
}

.cta-btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  color: #fff;
  box-shadow: 0 18px 52px rgba(37, 211, 102, 0.26);
}

/* Tablet */
@media (max-width: 992px) {
  .cta-section {
    padding: 40px 20px;
    border-radius: 0;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .cta-section {
    padding: 35px 15px;
    border-radius: 0;
    text-align: center;
  }

  .cta-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .cta-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* Extra Small */
@media (max-width: 400px) {
  .cta-title {
    font-size: 20px;
  }

  .cta-buttons .btn {
    font-size: 12px;
    padding: 9px 14px;
  }
}