* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  letter-spacing: -0.01em;
  color: #0f172a;
}
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}
h2, h3 {
  font-weight: 500;
}
strong {
  font-weight: 500;
}



/* Navbar */
.navbar {
  background: #0f172a;
  color: #fff;
  padding: 16px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* =========================
   New Global Header
========================= */

.site-header {
  background: #ffffff;
  border-bottom: none;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo-img {
  height: 64px;
  display: block;
}

/* Navigation */
.header-nav {
  display: flex;
  gap: 28px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
}

.header-nav a:hover {
  color: #ef4444;
}

/* Contact button */
.btn-contact {
  background: linear-gradient(
    90deg,
    #ff6b6b 0%,      /* Coral Red */
    #1b2a41 100%     /* Deep Blue */
  );
  color: #f7f7f7;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.btn-contact:hover {
  opacity: 0.9;
}



/* Hero */
.hero {
  padding: 60px 0;
}

.hero-box {
  background: #f1f1f1;
  padding: 60px;
  text-align: center;
  border-radius: 16px;
}

.hero-box h1 {
  margin-bottom: 20px;
}

/* Buttons */
.btn-outline {
  padding: 10px 20px;
  background: none;
  border: 1px solid #000;
  cursor: pointer;
}

.btn-primary {
  padding: 12px 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

/* Intro */
.intro {
  text-align: center;
  padding: 96px 0;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f9fc 40%,
    #eef3f8 100%
  );
}



.intro h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}

.intro span {
  background: linear-gradient(
    90deg,
    #ff6b6b 0%,   /* Coral red */
    #1b2a41 100%  /* Deep blue */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.intro p {
  font-size: 14px;
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto 10px;
  color: #475569;
}

.intro strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;
  color: #0f172a;
}


/* Build */
.build {
  padding: 60px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 16px;
}

/* =========================
   What We Build Section
========================= */

.what-we-build {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
}

.build-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.build-card {
  background: #f3f4f6;
  border-radius: 16px;
  padding: 28px;
}

.build-card img {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
}

.build-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.build-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
}

.build-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.build-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.build-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
}


/* Mobile */
@media (max-width: 900px) {
  .build-cards {
    grid-template-columns: 1fr;
  }
}


/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.industry-box {
  height: 180px;
  background: #e5e5e5;
  border-radius: 16px;
}

/* Tech - */
.tech {
  padding: 60px 0;
  text-align: center;
}

.tech-title {
  font-size: 44px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
  color: #0f172a;
}



/* CTA */
/* =========================
   CTA
========================= */

.cta {
  background: #0f172a;
  padding: 56px 0;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
}

.btn-primary {
  background: #ffffff;
  color: #0f172a;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* =========================
   Footer
========================= */

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 32px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 14px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Social icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.footer-socials img {
  width: 20px;
  height: 20px;
  opacity: 0.85;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-socials img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Copyright */
.copyright {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.fade {
  transition: opacity 0.6s ease-in-out;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

.hero-box {
  cursor: pointer;
}
/* Industry Section */
/* Industries Section */
.industries {
  padding: 90px 0;
}

.industry-cards {
  display: flex;          /* ✅ REQUIRED */
  gap: 28px;
  margin-top: 40px;
}


.industry-card {
  position: relative;
  flex: 1;                      /* default equal width */
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;

  display: flex;
  align-items: flex-end;
  padding: 40px;

  color: #fff;
  cursor: pointer;

  background-size: cover;
  background-position: center;

  transition:
    flex 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s ease,
    box-shadow 0.4s ease;
}



.industry-card {
  cursor: pointer;
}



/* Background images with gradient overlay */
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.6),
    rgba(15, 23, 42, 0.3)
  );
  z-index: 1;
}

/* Card content */
.industry-content {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.industry-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.industry-content p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}



/* Hover polish */
.industry-card:not(.active):hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* Images */
.industry-card.manufacturing {
  background-image: url("../images/manufacturing.jpg");
}

.industry-card.fintech {
  background-image: url("../images/fintech.jpg");
}

/* Mobile */
@media (max-width: 768px) {
  .industry-cards {
    flex-direction: column;
  }

  .industry-card {
    min-height: 300px;
  }
}

/* Hero Carousel */
/* ===================================
   HERO CAROUSEL (NEW SLIDING ENGINE)
=================================== */

.hero-carousel {
  padding: 60px 0;
}

.hero-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  height: 520px;
  margin: auto;
  overflow: hidden;
  border-radius: 36px;
  background: #0b1020;
}

/* Track (flex sliding) */
.hero-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Each Slide */
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}


.hero-link {
  position: absolute;
  left: 120px;      /* distance from left */
  bottom: 110px;    /* distance from bottom */
  
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;

  transition: 0.3s ease;
}


.hero-link:hover {
  opacity: 0.7;
}

/* ===================================
   SLIDE DESIGN (Your Existing Design)
=================================== */




/* Background Variants */
.hero-slide.media {
  background:
    /*linear-gradient(rgba(5, 10, 25, 0.75), rgba(5, 10, 25, 0.75)),*/
    url("../images/hero-media.png") center/cover no-repeat;
  color: #ffffff;
}

.hero-slide.hr {
  background:
   /* linear-gradient(
      to right,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.15)
    ),*/
    url("../images/hero-hr.png") center/cover no-repeat;
  color: #ffffff;
}



.hero-slide.success {
  background:
    /*linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.6)),*/
    url("../images/hero-success.jpeg") center/cover no-repeat;
  color: #ffffff;
}

/* ===================================
   DOTS (Namespaced)
=================================== */

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.hero-dots span.active {
  background: #ffffff;
}



/* What We Do Best */
/* What We Do Best */


.partner-logos {
  padding: 80px 0;
  background: #ffffff;
}

.logo-section {
  max-width: 1200px;
  margin: auto;
}
.logo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* hides overflow like reference */
.row-wrapper {
  overflow: hidden;
  margin-bottom: 90px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.row-wrapper + .row-wrapper {
  margin-top: 70px;   /* space between top & bottom row */
}

/* moving row */
.logo-row {
  display: flex;
  gap: 30px;
  width: max-content;
}

/* CARD STYLE (KEY PART) */
.logo-card {
  width: 180px;          /* slightly bigger */
  height: 130px;         /* equal height for all */
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 15px;         /* equal internal spacing */
  box-sizing: border-box;
}

/* Logo Container Control */
.logo-card img {
  width: 80px;           /* fixed width for all logos */
  height: 60px;          /* fixed height */
  object-fit: contain;   /* keeps logo proportion */
  margin-bottom: 10px;   /* equal space below logo */
}

/* Logo Name */
.logo-card p {
  margin: 0;
  font-size: 13px;       /* slightly bigger */
  font-weight: 500;
  color: #666;
  text-align: center;
}
/* ANIMATIONS */
.move-left {
  animation: moveLeft 45s linear infinite;
}

.move-right {
  animation: moveRight 45s linear infinite;
}

@keyframes moveLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes moveRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.logo-row:hover {
  animation-play-state: paused;
}

/* What We Build – Cards with Images */
.card {
  background: #f5f5f5;
  padding: 32px 28px;
  border-radius: 16px;
  text-align: left;
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
}

/* Expanded card */
.industry-card.active {
  flex: 1.6;                    /* ⬅ expands */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* Shrunk card */
.industry-card.inactive {
  flex: 0.8;                    /* ⬅ shrinks */
  opacity: 0.9;
}

/* ===== CAREERS PAGE ===== */

.nav-links a.active {
  font-weight: 600;
  border-bottom: 2px solid #fff;
}

/* Hero */
.careers-hero {
  text-align: center;
  padding: 120px 0 100px;
  background: #f7f7f7; /* light gray-white */
}

.careers-hero .eyebrow {
  display: block;
  font-size: 20px;        /* ⬅ Bigger */
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: #1b2a41;         /* Deep blue */
}

.careers-hero h1 {
  font-size: 44px;        /* Strong presence */
  font-weight: 600;
  margin-bottom: 28px;
  color: #1b2a41;
}

.careers-hero .btn-outline {
  padding: 12px 26px;
  font-size: 14px;
  border-radius: 24px;
  border: 1px solid #1b2a41;
  color: #1b2a41;
  background: transparent;
  transition: 0.3s ease;
}


.careers-hero .btn-outline:hover {
  background: #1b2a41;
  color: #ffffff;
}

/* Images */
.careers-images {
  padding: 40px 0 60px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.image-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

/* Value section */
.careers-value {
  padding: 40px 0 70px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.value-grid h2 {
  font-size: 34px;
}

.value-grid p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}

/* Why card */
/* ===== WHY WORK AT DATACLAD ===== */
.careers-why {
  background: linear-gradient(135deg, #0b1220, #1b2a41);
  padding: 60px 70px;        /* ⬅ more breathing space */
  border-radius: 24px;
  color: #ffffff;

  max-width: 1100px;         /* ⬅ wider box */
  margin: 80px auto;         /* ⬅ more spacing from top/bottom */
}

/* Heading */
.careers-why h3 {
  font-size: 36px;           /* ⬅ bigger heading */
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.careers-why h3 span {
  color: #ff6b6b;            /* ⬅ brand coral */
}

/* Bullet list */
.careers-why ul {
  list-style: disc;
  padding-left: 24px;
}

.careers-why li {
  font-size: 17px;           /* ⬅ larger content */
  line-height: 1.8;          /* ⬅ more readable */
  margin-bottom: 14px;
  color: #e5e7eb;
}

.careers-why li span {
  color: #ff6b6b;
  font-weight: 500;
}

/* Explore Careers */
.careers-explore {
  padding: 70px 0 90px;
}

.explore-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.explore-card {
  background: #f1f5f9;
  padding: 28px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.explore-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.explore-card h4 {
  margin-bottom: 12px;
}

.explore-card p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 16px;
}

.apply {
  font-weight: 600;
}

/* Mobile */
@media (max-width: 900px) {
  .image-grid,
  .value-grid,
  .explore-cards {
    grid-template-columns: 1fr;
  }

  .careers-hero h1 {
    font-size: 34px;
  }
}

.careers-value h2 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.careers-value p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* ===== CAREERS CTA ===== */

.careers-cta {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.careers-cta-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
}

.cta-link:hover {
  text-decoration: underline;
}

/* ===== CAREERS CTA (WHITE STRIP) ===== */

.careers-cta {
  padding: 90px 0 70px;
  background: #ffffff;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.careers-cta-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.careers-apply-link {
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
}

.careers-apply-link:hover {
  text-decoration: underline;
}

.apply-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.apply-link:hover {
  text-decoration: underline;
}

/* Explore Careers section */
.explore-careers {
  padding: 80px 0;
}

.explore-careers h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
}

/* Card */
.career-card {
  background: #f1f1f1;
  border-radius: 16px;
  padding: 28px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Text */
.career-text h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.career-text p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  max-width: 520px;
}

/* Apply link */
.career-apply {
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  white-space: nowrap;
}

.career-apply:hover {
  text-decoration: underline;
}

/* OPEN ROLES PAGE */
/* =========================
   OPEN ROLES PAGE
========================= */

.open-roles {
  padding: 100px 0;
  background: #f3f4f6;
}

/* Pill */
.role-pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 12px;
  color: #0f172a;
  background: #ffffff;
  margin-bottom: 32px;
}

/* Title */
.open-roles-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #0f172a;
}

/* Role Group */

.role-group {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.role-group-title {
  font-size: 22px;
  font-weight: 600;
  min-width: 220px;
  margin: 0;
}

/* Role Card */
.role-card {
  flex: 1;
  background: #e5e7eb;
  padding: 26px 32px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* Role text */
.role-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}



.role-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Apply button */
.apply-btn {
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}

.apply-btn:hover {
  text-decoration: underline;
}


/* =========================
   GIP – FIRST HALF
========================= */

.gip-hero {
  padding: 100px 0 40px;
  background: #f7f7f7; /* light gray-white */
  text-align: center;
}

.gip-hero-card {
  background: #f1f1f1;
  border-radius: 20px;
  padding: 48px 48px 0; /* ⬅️ no bottom padding */
  text-align: center;
  overflow: hidden;    /* ⬅️ ensures clean rounded edges */
}


.gip-hero-card h1 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}


.gip-hero-card h1 span {
  color: #ff6b6b; /* coral accent */
}

.gip-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  color: #ffffff;

  background: linear-gradient(
    90deg,
    #ff6b6b 0%,
    #1b2a41 100%
  );

  transition: all 0.3s ease;
}

.gip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 42, 65, 0.25);
}

.gip-hero-image {
  margin-top: 60px;
}


.gip-hero-image img {
  max-width: 100%;
  height: auto;
}


.gip-hero-card img {
  display: block;        /* 🔑 THIS fixes the gap */
  margin-top: 32px;
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.gip-hero-image {
  line-height: 0;
}


/* Overview */
.gip-overview {
  padding: 80px 0;
  text-align: center;
  background: #f9fafb;
}

.gip-overview h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.gip-subtitle {
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}


/* Cards */
.gip-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: auto;
}

.gip-card {
  background: #f5f5f5;
  padding: 28px;
  border-radius: 16px;
  text-align: left;
}

.gip-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.gip-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

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

  .gip-hero-card h1 {
    font-size: 32px;
  }
}

/* =========================
   GIP – INTERN TESTIMONIAL
========================= */

.gip-testimonial {
  padding: 80px 0;
  text-align: center;
}

.gip-testimonial h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.gip-testimonial-subtitle {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Testimonial Card */
.testimonial-card {
  background: #e5e5e5;
  border-radius: 28px;
  padding: 56px;
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  align-items: flex-start;
  text-align: left;
}

.testimonial-text h4 {
  font-size: 24px;
  font-weight: 600;
  color: #ff4d4f;
  margin-bottom: 6px;
}

.testimonial-role {
  display: block;
  font-size: 14px;
  font-style: italic;
  color: #ff4d4f;
  margin-bottom: 4px;
}

.testimonial-location {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 22px;
}

.testimonial-quote {
  font-size: 22px;
  line-height: 1.45;
  font-style: italic;
  color: #334155;
}


.testimonial-image {
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;

  width: 280px;
  height: 280px;          /* 🔑 force square */
  display: flex;
  align-items: center;
  justify-content: center;
}


.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 🔑 crop, don’t stretch */
  border-radius: 16px;
  display: block;
}



/* Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    grid-template-columns: 1fr;
    padding: 36px;
    text-align: center;
  }

  .testimonial-location {
    font-size: 16px;
  }
  
  .testimonial-image {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
}

  

/* =========================
   GIP – APPLICATION PATH
========================= */

/* GIP – PATH SECTION */
.gip-path {
  padding: 80px 0;
}

.gip-path h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gip-path-subtitle {
  font-size: 16px;
  color: #475569;
  max-width: 620px;
  margin-bottom: 36px;
}

/* Steps wrapper */
.gip-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Single step card */
.gip-step {
  display: flex;
  align-items: center;
  gap: 20px;

  background: linear-gradient(
    90deg,
    #0f172a 0%,
    #0b1224 100%
  );

  padding: 22px 28px;
  border-radius: 16px;
}

/* Step number */
.step-number {
  font-size: 22px;
  font-weight: 600;
  color: #ef4444; /* red number */
  min-width: 28px;
}

/* Text */
.step-text h4 {
  font-size: 18px;
  font-weight: 500;
  color: #ef4444; /* red title */
  margin-bottom: 4px;
}

.step-text p {
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.5;
}

/* GIP FINAL CTA */
.gip-final-cta {
  padding: 80px 0 60px;
}

.gip-final-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.gip-apply-link {
  font-size: 16px;
  color: #0f172a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* GIP FEATURES GRID */
.gip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* CARD */
.gip-feature-card {
  background: #f3f4f6;
  padding: 28px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: 0.3s ease;
}

.gip-feature-card:hover {
  transform: translateY(-3px);
}

/* TEXT */
.gip-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gip-text p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.gip-text strong {
  font-weight: 600;
}

/* ICON */
.gip-feature-card img {
  width: 42px;
  height: 42px;
}

/* MOBILE */
@media (max-width: 992px) {
  .gip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


.gip-apply-link:hover {
  text-decoration: underline;
}

/* Footer tweaks (if not already perfect) */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 8px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.footer-copy {
  font-size: 12px;
  text-align: center;
  color: #94a3b8;
}

/* JOB DETAIL PAGE Junior Consultant */
/* JOB DETAIL PAGE */

.job-detail {
  padding: 100px 0;               /* ⬆ more breathing space */
}

.job-layout {
  display: grid;
  grid-template-columns: 320px 1fr; /* ⬆ wider meta column */
  gap: 80px;                        /* ⬆ more separation */
}

/* LEFT META */
.job-meta h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 48px;
  color: #0f172a;
}

.meta-item {
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.meta-item strong {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.meta-item p {
  font-size: 16px;
  color: #0f172a;
}


/* RIGHT CONTENT */
.job-tabs {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
}

.tab {
  font-size: 15px;
  color: #64748b;
  background: none;
  border: none;
  cursor: pointer;
  padding-bottom: 8px;
}

.tab.active {
  color: #ef4444;
  border-bottom: 2px solid #ef4444;
  font-weight: 500;
}



/* SECTIONS */
.job-section {
  margin-bottom: 40px;
}

.job-section h3 {
  font-size: 18px;
  margin-bottom: 14px;
  margin-top: 28px;
  font-weight: 600;
  color: #0f172a;
}



.job-section ul {
  padding-left: 18px;
}

.job-section li {
  font-size: 16px;                 /* ⬆ readable bullets */
  line-height: 1.8;
  margin-bottom: 10px;
  color: #0f172a;
}

.job-detail {
  padding: 120px 0;
}


/* ONE-LINE FOOTER (JOB PAGES) */

.job-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 18px 0;
  margin-top: 100px;
}

.job-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.job-footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.job-footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
}

.job-footer-links a:hover {
  color: #ffffff;
}

/* APPLICATION TAB */

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Autofill */
.application-box {
  max-width: 560px;
}

.autofill {
  background: #f3f4f6;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.autofill span {
  font-weight: 500;
  font-size: 14px;
}

.autofill small {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.upload-btn {
  background: #0f172a;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
}


/* FORM */
.application-form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: none;
  background: #f1f3f5;
  font-size: 14px;
}


/* Resume Upload */
.resume-upload p {
  font-size: 14px;
  margin-bottom: 8px;
}

.upload-area {
  border: 1.5px dashed #cbd5e1;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  margin-bottom: 28px;
  background: #ffffff;
}

.upload-area button {
  background: #0f172a;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  margin-right: 8px;
}

.upload-area span {
  font-size: 13px;
  color: #475569;
}


/* Submit */
.submit-btn {
  width: 100%;
  background: #ff5a5a;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}

.submit-btn:hover {
  background: #ef4444;
}


/* CAREERS TEAM SLIDER */

.careers-team-slider {
  padding: 60px 0;
  overflow: hidden;
}

.slider-container {
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 24px;
  animation: slideTeams 35s linear infinite;
}

.slider-track img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

/* Pause on hover (nice touch) */
.slider-container:hover .slider-track {
  animation-play-state: paused;
}

/* Animation */
@keyframes slideTeams {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* FULL SUCCESS PAGE */
.job-success-page {
  display: none;   /* hidden by default */
  min-height: calc(100vh - 80px);
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* When active */
.job-success-page.active {
  display: flex;
}

.success-wrapper {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}


.success-wrapper h2 {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 600;
}

.success-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}

.success-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
}

/* FULL SUCCESS SCREEN */
.success-full {
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  text-align: left;
}

.success-card-centered {
  max-width: 600px;
}

.success-card-centered h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.success-card-centered p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.success-icon svg {
  width: 70px;
  height: 70px;
  animation: pop 0.4s ease;
}

@keyframes pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
/* Make build cards fully clickable without changing design */
.build-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Prevent blue/purple visited link effect */
.build-card:visited {
  color: inherit;
}

/* Remove underline on hover */
.build-card:hover {
  text-decoration: none;
}






