/*=================================
        PAGE
        =================================*/

body {
  background: #f5f7fb;
}

.talent-section {
  padding: 80px 0;
}

/*=================================
        HERO
        =================================*/

.talent-hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 30px;
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
  margin-bottom: 60px;
}

.talent-hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: -140px;
  right: -120px;
}

.talent-hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.talent-hero p {
  max-width: 750px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/*=================================
        BUTTONS
        =================================*/

.btn-primary-modern {
  background: #2ca7ff;
  color: #fff;
  padding: 15px 30px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-modern:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(44, 167, 255, 0.25);
}

.btn-outline-modern {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 15px 30px;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-modern:hover {
  background: #fff;
  color: #0f172a;
}

/*=================================
        SECTION TITLE
        =================================*/

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.section-title p {
  color: #64748b;
  max-width: 750px;
  margin: auto;
  line-height: 1.9;
}

/*=================================
        CARDS
        =================================*/

.talent-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  height: 100%;
  border: 1px solid #edf1f7;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: 0.35s ease;
}

.talent-card:hover {
  transform: translateY(-10px);
  border-color: #2ca7ff;
  box-shadow: 0 18px 45px rgba(44, 167, 255, 0.12);
}

.talent-icon {
  width: 75px;
  height: 75px;
  border-radius: 20px;
  background: rgba(44, 167, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.talent-icon i {
  font-size: 30px;
  color: #2ca7ff;
}

.talent-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}

.talent-card p {
  color: #64748b;
  line-height: 1.9;
}

/*=================================
        INFO SECTION
        =================================*/

.info-area {
  margin-top: 90px;
}

.info-box {
  background: #fff;
  border-radius: 25px;
  padding: 40px;
  height: 100%;
  border: 1px solid #edf1f7;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.info-box h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0f172a;
}

.info-box p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: justify;
}

.info-box ul {
  padding-left: 20px;
}

.info-box ul li {
  margin-bottom: 14px;
  color: #64748b;
}

/*=================================
        CTA
        =================================*/

.cta-box {
  margin-top: 80px;
  background: linear-gradient(135deg, #2ca7ff, #0066ff);
  padding: 60px;
  border-radius: 30px;
  text-align: center;
  color: #fff;
}

.cta-box h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-box p {
  max-width: 700px;
  margin: auto;
  line-height: 1.9;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-box .btn-primary-modern {
  background: #fff;
  color: #0f172a;
}

.cta-box .btn-primary-modern:hover {
  color: #0f172a;
}

/*=================================
        MOBILE
        =================================*/

@media (max-width: 768px) {
  .talent-section {
    padding: 60px 0;
  }

  .talent-hero {
    padding: 45px 30px;
    border-radius: 24px;
  }

  .talent-hero h1 {
    font-size: 36px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .talent-card {
    padding: 28px;
  }

  .info-box {
    padding: 30px;
    margin-bottom: 25px;
  }

  .cta-box {
    padding: 45px 25px;
  }

  .cta-box h2 {
    font-size: 32px;
  }

  .hero-buttons {
    justify-content: center;
  }
}
