
/* ===============================
   POLICY CARDS SECTION
================================ */

.policy-cards {
  padding: 6rem 0;
  background: #f8fafc;
}

/* Grid */
.policy-cards .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* Policy Card (Same as Consulting / Talent cards) */
.policy-card {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(15, 118, 110, 0.2);
}

/* Headings */
.policy-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.8rem;
}

/* Text */
.policy-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

/* Remove highlight difference if exists */
.policy-card.highlight {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .policy-cards .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .policy-cards .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   CONSULTING SECTION
================================ */

.consulting-section {
  padding: 6rem 0;
  background: #f8fafc;
}

/* Section Head */
.section-head {
  max-width: 800px;
  margin-bottom: 4rem;
}

.section-head span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f766e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0.8rem 0 1rem;
}

.section-head p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
}

/* Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Consulting Cards */
.consulting-card {
  background: linear-gradient(
    180deg,
    #f0fdfa 0%,
    #ffffff 100%
  );
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.consulting-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.8rem;
}

.consulting-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* Hover Effect */
.consulting-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(15, 118, 110, 0.18);
}

/* Remove highlight difference */
.consulting-card.highlight {
  background: linear-gradient(
    180deg,
    #f0fdfa 0%,
    #ffffff 100%
  );
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   TALENT SECTION
================================ */

.talent-section {
  padding: 6rem 0;
  background: #f8fafc;
}

/* Layout */
.talent-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Talent Cards */
.talent-card {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  padding: 1.8rem;
  border-radius: 1.25rem;
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.talent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.2);
}

.talent-card h3 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.talent-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

/* Image Card */
.talent-image-card {
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: sticky;
  top: 120px;
}

.talent-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .talent-layout {
    grid-template-columns: 1fr;
  }

  .talent-image-card {
    position: relative;
    top: 0;
    max-height: 320px;
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   CTA SECTION – ALTERNATIVE STYLE
================================ */

.cta-section.alt {
  padding: 5rem 0;
  background: #ffffff;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.cta-section.alt h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2rem;
}

/* Outline Button */
.cta-btn-outline {
  display: inline-block;
  padding: 0.85rem 2.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
  border: 2px solid #0f766e;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.cta-btn-outline:hover {
  background: #0f766e;
  color: #ffffff;
  transform: translateY(-2px);
}
.policy-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
