/* =========================
   INDEX - TALENT BRIDGE
========================= */

.hero{
  padding:70px 0;
  background:#fff;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:center;
}

.hero-text h1{
  font-size:64px;
  line-height:1.05;
  font-weight:800;
  color:var(--blue-dark);
  margin-bottom:24px;
}

.hero-text h1 span{
  color:var(--orange);
}

.hero-text p{
  font-size:20px;
  line-height:1.8;
  color:var(--gray);
  max-width:620px;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hero-buttons .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.hero-buttons .btn i{
  font-size:15px;
}

.hero-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:14px;
}

/* FEATURES */

.features{
  padding:35px 0 50px;
  background:#fff;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.feature{
  text-align:center;
  padding:15px;
}

.feature-icon{
  width:72px;
  height:72px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
  font-size:28px;
  transition:.25s;
}

.feature:hover .feature-icon{
  transform:translateY(-4px);
}

.feature-icon.blue{
  background:#edf4ff;
  color:#2a69db;
}

.feature-icon.orange{
  background:#fff1e2;
  color:#f29a2e;
}

.feature h3{
  font-size:22px;
  color:var(--blue-dark);
  margin-bottom:12px;
}

.feature p{
  font-size:15px;
  color:var(--gray);
  line-height:1.7;
}

/* SERVICES */

.services{
  padding:65px 0;
  background:#fff;
}

.small-title{
  font-size:13px;
  font-weight:800;
  color:var(--blue);
  letter-spacing:.8px;
  text-transform:uppercase;
  text-align:center;
}

.services h2{
  text-align:center;
  font-size:42px;
  color:var(--blue-dark);
  font-weight:800;
  margin:12px 0 14px;
}

.lines{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-bottom:38px;
}

.lines span{
  height:4px;
  border-radius:20px;
}

.lines .blue{
  width:55px;
  background:var(--blue);
}

.lines .orange{
  width:35px;
  background:var(--orange);
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
  transition:.25s;
}

.card:hover{
  transform:translateY(-6px);
}

.card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.card-content{
  padding:28px;
}

.card-icon{
  width:62px;
  height:62px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:18px;
}

.card-icon.blue{
  background:#edf4ff;
  color:#2a69db;
}

.card-icon.orange{
  background:#fff1e2;
  color:#f29a2e;
}

.card-content h3{
  font-size:24px;
  color:var(--blue-dark);
  margin-bottom:12px;
}

.card-content p{
  color:var(--gray);
  line-height:1.8;
  font-size:15px;
  margin-bottom:18px;
}

.card-content a{
  color:var(--blue);
  font-weight:700;
  display:inline-flex;
  gap:8px;
  align-items:center;
}

/* STATS */

.stats{
  background:linear-gradient(90deg,#08235a,#0d2f73);
  padding:45px 0;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.stat{
  text-align:center;
  color:#fff;
}

.stat i{
  display:block;
  font-size:34px;
  margin-bottom:12px;
  color:#f29a2e;
}

.stat:nth-child(1) i,
.stat:nth-child(3) i{
  color:#3d7eff;
}

.stat h3{
  font-size:42px;
  font-weight:800;
  margin-bottom:8px;
}

.stat p{
  font-size:15px;
  opacity:.92;
}

/* ABOUT */

.about{
  padding:70px 0;
  background:#fff;
}

.about-grid{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:70px;
  align-items:center;
}

.about .small-title{
  text-align:left;
  color:#6f7787;
  font-size:22px;
  letter-spacing:1px;
  margin-bottom:28px;
}

.about h2{
  font-size:48px;
  line-height:1.15;
  max-width:650px;
  color:var(--blue-dark);
  margin-bottom:28px;
}

.about p{
  font-size:22px;
  line-height:1.8;
  max-width:760px;
  color:#6f7787;
  margin-bottom:34px;
}

.about img{
  width:100%;
  height:560px;
  object-fit:cover;
  border-radius:18px;
}

.about .btn{
  width:fit-content;
  padding:18px 30px;
  font-size:18px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

/* CTA */

.cta{
  padding:0 0 15px;
  background:#fff;
  overflow:hidden;
}

.cta-box{
  background:linear-gradient(90deg,#08235a,#0c2b6d);
  border-radius:14px;
  padding:42px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  overflow:hidden;
}

.cta-box h2{
  color:#fff;
  font-size:40px;
  line-height:1.2;
  margin-bottom:10px;
  max-width:720px;
}

.cta-box p{
  color:rgba(255,255,255,.86);
  font-size:17px;
}

.cta .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  white-space:nowrap;
  flex-shrink:0;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .hero-grid,
  .about-grid,
  .services-grid,
  .features-grid,
  .stats-grid{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:52px;
  }

  .services h2,
  .about h2,
  .cta-box h2{
    font-size:34px;
  }

  .about-grid{
    gap:40px;
  }

  .about p{
    font-size:18px;
  }

  .about img{
    height:380px;
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:700px){

  .hero{
    padding:45px 0;
  }

  .hero-text h1{
    font-size:40px;
  }

  .hero-text p,
  .about p{
    font-size:16px;
  }

  .hero-image img,
  .about img{
    height:320px;
  }

  .services h2,
  .about h2,
  .cta-box h2{
    font-size:28px;
  }

  .card-content h3,
  .feature h3{
    font-size:22px;
  }

  .stat h3{
    font-size:32px;
  }

  .hero-buttons .btn{
    width:100%;
    justify-content:center;
  }

  .cta-box{
    width:100%;
    max-width:100%;
    padding:32px 24px;
    flex-direction:column;
    align-items:flex-start;
    gap:22px;
  }

  .cta-box h2{
    max-width:100%;
    word-break:normal;
  }

  .cta-box p{
    max-width:100%;
    font-size:16px;
    line-height:1.6;
  }

  .cta .btn{
    position:static !important;
    width:100%;
    max-width:260px;
    align-self:flex-start;
    margin:0;
    transform:none !important;
    white-space:normal;
  }
}

@media(max-width:480px){

  .hero-text h1{
    font-size:38px;
  }

  .cta-box{
    padding:30px 20px;
  }

  .cta-box h2{
    font-size:24px;
  }

  .cta .btn{
    max-width:100%;
  }

  .about{
    padding:45px 0;
  }

  .about .small-title{
    font-size:16px;
  }

  .about h2{
    font-size:30px;
  }

  .about img{
    height:280px;
  }
}