*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Inter", sans-serif;
  color: #081123;
  background: rgb(0, 61, 165);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul,
ol {
  list-style: none;
}

:root {
  --green: #66bb46;
  --green-glow: rgba(102, 187, 70, 0.57);
  --blue: #003da5;
  --blue-deep: #0f3b84;
  --blue-nav: #0040c1;
  --dark: #081123;
  --gray: #3b485e;
  --gray-muted: #565656;
  --nav-text: #111827;
  --white: #fff;
  --off-white: #f5f5f2;
  --light-blue: #eff4ff;
  --border-blue: #d1e0ff;
  --border-gray: #dfe5ed;
  --nav-bg: #f9f9f9;
  --radius-pill: 100px;
}

.navbar {
  position: sticky;
  top: 24px;
  z-index: 1000;
  width: calc(100% - 80px);
  max-width: 1280px;
  margin: 24px auto 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  top: 12px;
  margin-top: 12px;
}
.navbar.scrolled .navbar-inner {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 64, 193, 0.2);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 24px;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: var(--nav-text);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--light-blue);
  color: var(--blue-nav);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--blue-nav);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 8px 8px 20px;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: #0035a3;
}
.nav-cta svg {
  height: 28px;
  width: 28px;
  flex-shrink: 0;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 32px);
    margin: 12px auto 0;
  }
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 999;
  }
  .nav-links.active a {
    font-size: 18px;
    padding: 12px 24px;
  }
  .nav-hamburger {
    display: flex;
    z-index: 1000;
    position: relative;
  }
}

.partner-container {
  max-width: 1600px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 30px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.partner-left {
  display: flex;
  align-items: center;
  gap: 0;
}
.partner-logos {
  display: flex;
  align-items: center;
}
.partner-row {
  display: flex;
  align-items: center;
}
.partner-label {
  font-size: 16px;
  font-weight: 600;
  color: #4b5563;
  margin-right: 24px;
  white-space: nowrap;
}
.logo-divider {
  padding: 0 24px;
  border-right: 1px solid #d1d5db;
}
.logo-divider:last-child {
  border-right: none;
}
.partner-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.partner-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rating-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 165px;
  height: 58px;
  padding: 0 16px;
  border: 1px solid #b8d9ff;
  border-radius: 18px;
  background: #f8fbff;
}
.rating-info {
  display: flex;
  flex-direction: column;
}
.trustpilot {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.stars {
  display: flex;
  gap: 2px;
}
.stars img {
  width: 14px;
  height: 14px;
}
.rating-score {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

@media (max-width: 1200px) {
  .partner-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .partner-right {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .partner-bar {
    padding: 16px;
  }
  .partner-left {
    flex-wrap: wrap;
    gap: 6px;
  }
  .partner-logos {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
  }
  .partner-row {
    display: flex;
    flex-direction: row;
    gap: 6px;
  }
  .logo-divider {
    padding: 0 12px;
    border: none;
  }
  .partner-right {
    width: 100%;
  }
  .rating-card {
    min-width: 140px;
    flex: 1;
  }
  .rating-score {
    font-size: 24px;
  }
}

/* STATS SECTION */
.stats-section {
  text-align: center;
  background: #f9f9f9;
}
.career-stats-wrapper {
  padding: 80px;
}
.stats-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #66bb46;
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 28px;
}
.stats-title {
  margin: auto;
  font-family: "Instrument Sans", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: #003da5;
}
.stats-description {
  margin: 18px auto 50px;
  font-family: "DM Sans", sans-serif;
  color: #565656;
  font-size: 17px;
  line-height: 1.7;
}
.stats-grid {
  max-width: 1600px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.stats-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(
    to right,
    rgba(215, 232, 207, 0.3),
    #d7e8cf 15%,
    #d7e8cf 85%,
    rgba(215, 232, 207, 0.3)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.stat-card {
  background: #fff;
  padding: 42px 20px;
}
.stat-card:not(:last-child) {
  border-right: 2px solid #d7e8cf;
}
.stat-number {
  font-family: "Instrument Sans", sans-serif;
  font-size: 58px;
  font-weight: 700;
  color: #0055d4;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #012667, #0f3b84, #0460ff, #77aaf0);
  /* background: linear-gradient(90deg, #012667,#0F3B84,#346bf7, #006aff ); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  background: linear-gradient(90deg, #012667, #0f3b84, #0460ff, #77aaf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
}

@media (max-width: 900px) {
  .stats-title {
    font-size: 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid #d7e8cf;
  }
  .stat-card:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .stats-section {
    padding-bottom: 60px;
  }
  .stats-title {
    font-size: 30px;
  }
  .stats-description {
    font-size: 15px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card {
    border-bottom: 1px solid #d7e8cf;
  }
  .stat-card:nth-child(1),
  .stat-card:nth-child(3) {
    border-right: 2px solid #d7e8cf;
    border-bottom: 1px solid #d7e8cf;
  }
  .stat-card:nth-child(2),
  .stat-card:nth-child(4) {
    border-right: none !important;
  }
  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-bottom: none;
  }
  .stat-number {
    font-size: 42px;
  }
}

/* PLACEMENT NETWORK */
.section {
  background:
    radial-gradient(circle at center, rgba(0, 110, 255, 0.18), transparent 45%),
    radial-gradient(
      circle at center bottom,
      rgba(0, 61, 165, 0.4),
      transparent 60%
    ),
    linear-gradient(180deg, #00184d 0%, #003da5 100%);
  padding: 80px 0;
  overflow: hidden;
}
.heading {
  text-align: center;
  margin-bottom: 40px;
}
.heading h2 {
  color: #66bb46;
  font-family: "Instrument Sans", sans-serif;
  font-size: 52px;
  font-weight: 700;
}
.heading p {
  color: #fff;
  margin-top: 10px;
  font-size: 15px;
}
.marquee {
  overflow: hidden;
  margin: 12px 0;
}
.track {
  display: flex;
  gap: 14px;
  width: max-content;
}
.row1 {
  animation: scrollLeft 30s linear infinite;
}
.row2 {
  animation: scrollRight 30s linear infinite;
}
.row3 {
  animation: scrollLeft 30s linear infinite;
}
.logo {
  width: 200px;
  height: 75px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: #333;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.logo img {
  width: 150px;
  height: 55px;
  object-fit: contain;
}
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.cards {
  max-width: 1600px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid transparent;
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  padding: 1px;
  background: linear-gradient(
    to bottom,
    rgba(95, 160, 255, 0.5),
    transparent 70%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: #66bb46;
}
.icon {
  margin: auto;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.card h3 {
  margin-top: 18px;
  color: #fff;
  font-size: 16px;
}
.card p {
  margin-top: 12px;
  color: #a9c0ff;
  font-size: 13px;
  line-height: 1.6;
}
.cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.cta button {
  background: #66bb46;
  color: #fff;
  border: none;
  padding: 18px 60px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  box-shadow:
    0 0 20px rgba(102, 187, 70, 0.8),
    0 0 50px rgba(102, 187, 70, 0.4);
}

@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .heading h2 {
    font-size: 38px;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo {
    width: 130px;
    height: 48px;
  }
  .logo img {
    width: 110px;
    height: 36px;
  }
}
@media (max-width: 500px) {
  .cards {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .card {
    width: 90%;
  }
  .heading h2 {
    font-size: 30px;
  }
}

/* WHY CHOOSE AWDIZ */
.choose-section {
  padding: 100px 20px;
  background: #fff;
}
.choose-container {
  max-width: 1600px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.choose-title {
  font-family: "Instrument Sans", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #003da5;
  margin-bottom: 20px;
}
.choose-subtitle {
  color: #111827;
  line-height: 1.8;
  margin-bottom: 35px;
}
.choose-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.choose-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.3s;
}
.choose-feature:hover {
  background: #f2f8f1;
  border-left: 4px solid #66bb46;
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(102, 187, 70, 0.08);
}
.choose-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: 0.3s;
}
.choose-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.choose-feature:hover .choose-icon {
  background: #e7f5e1;
}
.choose-content h3 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 6px;
}
.choose-content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}
.choose-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.choose-image-box {
  width: 100%;
  max-width: 600px;
  height: 640px;
  border-radius: 50% 50% 15% 15% / 40% 40% 15% 15%;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(0, 162, 255, 0.25), transparent 45%),
    linear-gradient(180deg, #001b57, #003da5);
  position: relative;
}
.choose-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25) translateY(-10%);
}
.choose-floating {
  position: absolute;
  width: 150px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  animation: float 4s ease-in-out infinite;
}
.choose-card-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose-card-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.choose-floating h4 {
  font-size: 36px;
  color: #66bb46;
}
.choose-floating span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
}
.choose-card-top {
  top: 0px;
  left: -10px;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(102, 187, 70, 0.25);
}
.choose-card-bottom {
  right: -10px;
  bottom: 30px;
  z-index: 3;
  box-shadow: 0 15px 40px rgba(102, 187, 70, 0.25);
  animation-delay: 2s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1024px) {
  .choose-container {
    grid-template-columns: 1fr;
  }
  .choose-title {
    font-size: 42px;
  }
  .choose-visual {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .choose-title {
    font-size: 34px;
  }
  .choose-image-box {
    height: 500px;
  }
  .choose-floating {
    width: 130px;
  }
  .choose-floating h4 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding-bottom: 40px;
  }
  .partner-container {
    padding: 14px 16px;
    gap: 16px;
  }
  .partner-left {
    flex-wrap: wrap;
    gap: 10px 4px;
    width: 100%;
  }
  .partner-label {
    font-size: 13px;
    margin-right: 0;
    width: 100%;
    white-space: nowrap;
  }
  .partner-logos {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
  }
  .partner-row {
    display: flex;
    flex-direction: row;
    gap: 6px;
  }
  .logo-divider {
    padding: 0 10px;
  }
  .partner-logo {
    height: 38px;
  }
  .partner-right {
    gap: 8px;
  }
  .rating-card {
    min-width: 100px;
    height: 48px;
    padding: 0 10px;
    gap: 6px;
  }
  .rating-info {
    gap: 2px;
  }
  .trustpilot {
    height: 26px;
  }
  .stars img {
    width: 11px;
    height: 11px;
  }
  .rating-score {
    font-size: 20px;
  }
  .stats-title {
    font-size: 28px;
  }
  .stats-description {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .stat-number {
    font-size: 36px;
  }
  .stat-label {
    font-size: 14px;
  }
  .stat-card {
    padding: 24px 12px;
  }
  .section {
    padding: 50px 0;
  }
  .heading h2 {
    font-size: 26px;
  }
  .heading p {
    font-size: 13px;
  }
  .marquee {
    margin: 8px 0;
  }
  .logo {
    width: 120px;
    height: 44px;
  }
  .logo img {
    width: 100px;
    height: 32px;
  }
  .cards {
    gap: 6px;
    margin-top: 30px;
  }
  .card {
    padding: 20px 14px;
  }
  .card h3 {
    font-size: 14px;
  }
  .icon {
    width: 42px;
    height: 42px;
  }
  .cta button {
    padding: 14px 36px;
    font-size: 14px;
  }
  .choose-section {
    padding: 50px 16px;
  }
  .choose-container {
    gap: 40px;
  }
  .choose-title {
    font-size: 26px;
  }
  .choose-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .choose-feature {
    padding: 14px;
  }
  .choose-image-box {
    height: 360px;
    max-width: 100%;
  }
  .choose-floating {
    width: 110px;
    padding: 12px;
  }
  .choose-floating h4 {
    font-size: 24px;
  }
  .choose-card-icon {
    width: 40px;
    height: 40px;
  }
  .choose-card-icon img {
    width: 28px;
    height: 28px;
  }
  .choose-card-top {
    top: -10px;
    left: 0;
  }
  .choose-card-bottom {
    right: 0;
    bottom: -10px;
  }
}

/* CAREER PATHS SECTION */

.career-paths {
  background: #fff;
}
.career-paths .section {
  max-width: 1250px;
  margin: auto;
  background: #ffff;
}
.career-paths .top {
  text-align: center;
  margin-bottom: 24px;
}
.career-paths .top .tag {
  color: #66bb46;
  font-weight: 700;
  font-size: 14px;
}
.career-paths .top h1 {
  color: #0c46b3;
  font-size: 52px;
  margin: 10px 0;
}
.career-paths .top p {
  color: #5f6778;
}
.career-paths .tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.career-paths .tab {
  padding: 12px 22px;
  border: 1px solid #a8bdf0;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.career-paths .tab:hover {
  background: #eef3ff;
}
.career-paths .tab.active {
  background: #0c46b3;
  color: #fff;
}
.career-paths .sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.career-paths .course {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 14px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.career-paths .course:hover {
  border-color: #d7def1;
}
.career-paths .course.active {
  border-color: #2f66d0;
}
.career-paths .course-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f1f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.career-paths .course.active .course-icon-wrap {
  background: #2f66d0;
}
.career-paths .course-icon {
  width: 36px;
  height: 36px;
  display: block;
}
.career-paths .course.active .course-icon {
  filter: brightness(0) invert(1);
}
.career-paths .course h4 {
  font-size: 18px;
}
.career-paths .course p {
  font-size: 12px;
  color: #666;
}
.career-paths .card {
  background: #fff;
  border: 2px solid #2f66d0;
  border-radius: 24px;
  overflow: hidden;
  display: none;
}
.career-paths .card.active {
  display: block;
}
.career-paths .inner {
  display: grid;
  grid-template-columns: 1.2fr 420px;
}
.career-paths .content {
  padding: 24px;
  min-width: 0;
}
.career-paths .badge {
  display: block;
  width: fit-content;
  background: #66bb46;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.career-paths .title {
  font-size: 32px;
  color: #0c46b3;
  margin: 16px 0;
  overflow-wrap: break-word;
  text-align: left;
}
.career-paths .stats {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.career-paths .stat {
  background: #dfeafb;
  padding: 18px;
  flex: 1;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  text-align: left;
}
.career-paths .stat-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-bottom: 2px;
}
.career-paths .stat small {
  color: #5f6778;
  font-size: 13px;
}
.career-paths .learn li {
  margin: 8px 0;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}
.career-paths .tick-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.career-paths .btns {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.career-paths .btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.career-paths .btn.green {
  background: #66bb46;
  color: #fff;
  border: none;
}
.career-paths .btn-icon {
  width: 16px;
  height: 16px;
}
.career-paths .image-wrap {
  position: relative;
  overflow: hidden;
}
.career-paths .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.career-paths .image-wrap:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.95) 15%,
    rgba(255, 255, 255, 0.5) 40%,
    transparent 60%
  );
  z-index: 1;
}
.career-paths .outcome {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(0, 18, 70, 0.85);
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  z-index: 2;
}
.career-paths .bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d7def1;
}
.career-paths .bottom div {
  padding: 16px;
  text-align: center;
}
.career-paths .bottom strong {
  display: block;
  color: #0c46b3;
  font-size: 28px;
}
.career-paths .panel {
  display: none;
}
.career-paths .panel.active {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
}
@media (max-width: 1000px) {
  .career-paths .panel.active {
    grid-template-columns: 1fr;
  }
  .career-paths .inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .career-paths .section {
    padding: 20px 16px;
  }
  .career-paths .top h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  .career-paths .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .career-paths .tabs::-webkit-scrollbar {
    display: none;
  }
  .career-paths .tab {
    flex-shrink: 0;
  }
  .career-paths .panel.active {
    justify-items: center;
  }
  .career-paths .card.active {
    width: 100%;
  }
  .career-paths .content {
    padding: 16px;
  }
  .career-paths .stats {
    flex-direction: column;
  }
  .career-paths .bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  .career-paths .title {
    font-size: 22px;
  }
  .career-paths .btns {
    flex-direction: column;
  }
  .career-paths .btn {
    justify-content: center;
  }
}

/* LEAD FORM BANNER */
.lead-wrapper {
  background: #fff;
  width: 100%;
  position: relative;
  padding: 60px 20px;
}
.lead-inner {
  max-width: 1600px;
  margin: auto;
}
.lead-banner {
  height: 520px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      circle at 90% 50%,
      rgba(102, 187, 70, 0.28),
      transparent 30%
    ),
    linear-gradient(90deg, #001856 0%, #003da5 100%);
}
.lead-content {
  padding: 85px 0 0 110px;
  max-width: 700px;
}
.lead-content h2 {
  font-family: "Instrument Sans", sans-serif;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 700;
  color: white;
}
.lead-content p {
  margin-top: 24px;
  color: #66bb46;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 600;
  max-width: 650px;
}
.lead-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 35px;
  max-width: 500px;
}
.lead-stat h3 {
  font-size: 40px;
  color: #66bb46;
  font-weight: 700;
}
.lead-stat span {
  display: block;
  margin-top: 6px;
  color: white;
  font-size: 14px;
}
.lead-student {
  position: absolute;
  right: 450px;
  bottom: 0;
  width: 600px;
  z-index: 3;
}
.lead-student img {
  width: 100%;
  display: block;
  transform: scaleX(-1);
}
.lead-form-card {
  position: absolute;
  top: 50%;
  right: 215px;
  transform: translateY(-50%);
  width: 500px;
  background: #eef0fb;
  border: 5px solid #d7dbee;
  border-radius: 30px;
  padding: 35px;
  z-index: 10;
  box-shadow:
    -40px 0 80px -20px rgba(102, 187, 70, 0.2),
    120px 0 180px -30px rgba(102, 187, 70, 0.5);
}
.lead-form-card h3 {
  text-align: center;
  color: #0f3b84;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 28px;
}
.lead-form-group {
  margin-bottom: 16px;
}
.lead-form-group label {
  display: block;
  margin-bottom: 8px;
  color: #4b5563;
  font-size: 15px;
}
.lead-form-group input,
.lead-form-group select {
  width: 100%;
  height: 56px;
  border: 2px solid #dde2ec;
  border-radius: 100px;
  background: white;
  padding: 0 22px;
  font-size: 17px;
}
.lead-form-group input::placeholder {
  color: #c1c6d1;
}
.lead-submit {
  width: 100%;
  height: 62px;
  border: none;
  background: #66bb46;
  color: white;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(102, 187, 70, 0.35);
}

@media (max-width: 1200px) {
  .lead-student {
    display: none;
  }
  .lead-form-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 40px auto 0;
  }
  .lead-content {
    padding: 60px 40px;
  }
}
@media (max-width: 768px) {
  .lead-content h2 {
    font-size: 32px;
  }
  .lead-stats {
    gap: 20px;
  }
  .lead-form-card {
    width: 100%;
    padding: 20px;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 30px auto 0;
  }
  .lead-form-card h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .lead-banner {
    height: auto;
    padding-bottom: 30px;
  }
  .lead-content {
    padding: 40px 20px;
  }
  .lead-content p {
    font-size: 15px;
  }
  .lead-stat h3 {
    font-size: 32px;
  }
  .lead-stat span {
    font-size: 13px;
  }
  .lead-form-group input,
  .lead-form-group select {
    height: 48px;
    font-size: 15px;
  }
  .lead-submit {
    height: 52px;
    font-size: 17px;
  }
}
@media (max-width: 480px) {
  .lead-content h2 {
    font-size: 26px;
  }
  .lead-content p {
    font-size: 14px;
    margin-top: 16px;
  }
  .lead-stats {
    gap: 16px;
    margin-top: 24px;
  }
  .lead-stat h3 {
    font-size: 26px;
  }
  .lead-stat span {
    font-size: 12px;
  }
  .lead-form-card {
    padding: 16px;
  }
  .lead-form-card h3 {
    font-size: 14px;
  }
  .lead-form-group {
    margin-bottom: 12px;
  }
  .lead-form-group label {
    font-size: 13px;
  }
  .lead-form-group input,
  .lead-form-group select {
    height: 42px;
    font-size: 14px;
    padding: 0 16px;
  }
  .lead-submit {
    height: 46px;
    font-size: 15px;
  }
}

/* TOP CAREER PATHS CARDS (from inline) */
.tc-section {
  width: 100%;
  margin: auto;
  padding: 80px 0px 0px 0px;
}
.tc-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.tc-section .section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 15px;
  color: #fff;
}
.tc-section .section-header p {
  max-width: 700px;
  margin: auto;
  color: #9fb2d5;
  line-height: 1.7;
}
.tc-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tc-card {
  background:
    radial-gradient(circle at center, rgba(0, 110, 255, 0.18), transparent 45%),
    linear-gradient(180deg, #003da5 0%, #00184d 100%);
  border: 1px solid #00184d;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.35s;
  box-shadow:
    0 0 20px rgba(0, 132, 255, 0.15),
    inset 0 0 30px rgba(0, 132, 255, 0.08);
  display: flex;
  flex-direction: column;
}
.tc-card:hover {
  transform: translateY(-8px);
}
.tc-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 55%,
    rgba(0, 0, 0, 0.8) 75%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 55%,
    rgba(0, 0, 0, 0.8) 75%,
    transparent 100%
  );
}
.tc-card:hover img {
  transform: scale(1.08);
}
.tc-card-img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(8, 26, 55, 0.5),
    #081a37
  );
  pointer-events: none;
}
.tc-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: #4d8cff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.tc-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  -webkit-mask-image: none;
  mask-image: none;
}
.tc-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  background: #8cff5e;
  color: #0d2900;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}
.tc-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tc-body h3 {
  font-size: 23px;
  margin-bottom: 10px;
  color: #fff;
}
.tc-body p {
  color: #b8c7e4;
  line-height: 1.6;
  margin-bottom: 16px;
}
.tc-duration {
  color: #3ab5ff;
  margin-bottom: 18px;
  font-weight: 600;
  margin-top: auto;
}
.tc-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 2px solid #7eff64;
  color: #7eff64;
  padding: 12px;
  border-radius: 40px;
  font-weight: 700;
  transition: 0.3s;
}
.tc-btn:hover {
  background: #7eff64;
  color: #00162a;
}
.tc-view {
  text-align: center;
  margin-top: 40px;
}
.tc-view a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #7eff64;
  color: #00162a;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 30px rgba(126, 255, 100, 0.35);
  transition: 0.3s;
}
.tc-view a:hover {
  background: #5cdb3a;
  box-shadow: 0 12px 40px rgba(126, 255, 100, 0.5);
}
@media (max-width: 768px) {
  .tc-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 10px;
  }
  .tc-grid::-webkit-scrollbar {
    display: none;
  }
  .tc-card {
    scroll-snap-align: start;
    flex: 0 0 66%;
    min-width: 260px;
  }
  .tc-card-img {
    height: 150px;
  }
  .tc-body h3 {
    font-size: 20px;
  }
  .tc-icon {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 10px;
    border-radius: 12px;
  }
  .tc-icon img {
    width: 20px;
    height: 20px;
  }
}

/* JOURNEY / PROCESS SECTION (from inline) */
.journey-wrapper {
  max-width: 1600px;
  margin: auto;
  position: relative;
  padding: 60px;
  border: 3px solid transparent;
  border-radius: 60px 60px 18px 18px;
  background:
    linear-gradient(to bottom, #00338b, transparent 70%) border-box,
    linear-gradient(180deg, #00338b 0%, #00266f 30%, #00184d 40%, #00184d 100%)
      padding-box;
}
.journey-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.journey-hero-text small {
  color: #7eff57;
  font-weight: 600;
}
.journey-hero-text h1 {
  font-size: 54px;
  line-height: 1.1;
  margin: 12px 0 20px;
  font-weight: 800;
  color: #fff;
}
.journey-hero-text p {
  color: #d9e5ff;
  line-height: 1.8;
  max-width: 520px;
}
.journey-hero-text .sub {
  margin-top: 25px;
  font-size: 14px;
  color: #fff;
}
.journey-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  background: #7eff57;
  color: #00244c;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(126, 255, 87, 0.35);
  transition: 0.3s;
}
.journey-btn:hover {
  transform: translateY(-3px);
}
.journey-hero-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
}
.section-title {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 70px;
}
.section-title span {
  color: #7eff57;
  font-size: 14px;
}
.section-title h2 {
  margin-top: 12px;
  font-size: 44px;
  font-weight: 800;
  color: #fff;
}
.process-grid {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-card {
  position: relative;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  border-radius: 24px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.process-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7cff5b, transparent);
  z-index: 5;
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}
.process-card:hover {
  transform: translateY(-5px);
}
.icon-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #fff;
}
.process-card p {
  color: #c7d7ff;
  line-height: 1.8;
  font-size: 14px;
}
/* .assurance {

  position: relative;
  z-index: 2;
  margin-top: 40px;
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(90deg, #003DA5  0%, #66BB46 50%, #003DA5 100%  ),
  linear-gradient(90deg, #003DA5  0%, #66BB46 50%, #003DA5 100%  );

}
.assurance h3 {
  font-size: 26px;
  color: #fff;
}
.assurance p {
  margin-top: 8px;
  color: #d6e2ff;
} */

.assurance {
  position: relative;
  z-index: 2;
  width: 791px;
  max-width: calc(100% - 32px);
  min-height: 79px;
  margin: 40px auto 0;
  text-align: center;
  padding: 14px 20px 12px;
  overflow: hidden;
  border-radius: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 61, 165, 0) 0%,
    rgba(97, 243, 44, 0.42) 55%,
    rgba(0, 61, 165, 0) 100%
  );
}

.assurance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(4, 26, 63, 0) 0%,
    rgba(86, 252, 36, 0.85) 60%,
    rgba(4, 26, 63, 0) 100%
  );
  opacity: 0.75;
}

.assurance::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(4, 26, 63, 0) 0%,
    rgba(82, 129, 65, 0.85) 60%,
    rgba(4, 26, 63, 0) 100%
  );
  opacity: 0.75;
}

.assurance h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.assurance p {
  position: relative;
  z-index: 2;
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
}

.bottom-btn {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .journey-hero {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-hero-text h1 {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .journey-wrapper {
    padding: 30px 20px;
    border-radius: 30px;
  }
  .journey-hero-text h1 {
    font-size: 34px;
  }
  .section-title h2 {
    font-size: 30px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .journey-btn {
    width: 100%;
  }
}

/* STUDENT CAREER TRANSFORMATIONS */
.student-section {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: #021a4a;
}

.student-title {
  text-align: center;
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 50px;
}

.student-marquee {
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}

.student-track {
  display: flex;
  gap: 16px;
  width: max-content;
  margin-left: auto;
}

.student-card {
  width: 320px;
  height: 130px;

  position: relative;
  overflow: hidden;

  border-radius: 18px;

  background: linear-gradient(180deg, #0a4ab2 0%, #08378d 100%);

  flex-shrink: 0;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.student-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background: linear-gradient(90deg, transparent, #7cff5b, transparent);

  z-index: 5;
}

.student-card-content {
  position: absolute;

  left: 18px;
  top: 14px;
  bottom: 14px;

  z-index: 3;

  display: flex;
  flex-direction: column;
}

.name {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.role {
  margin-top: 8px;

  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;

  max-width: 150px;
}

.company-wrap {
  margin-top: auto;
}

.at {
  color: #d7e0f5;
  font-size: 12px;
  display: block;
  margin-bottom: 4px;
}

.company img {
  height: 22px;
  width: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;

  width: 45%;

  background: linear-gradient(
    to left,
    rgba(10, 74, 178, 0),
    rgba(10, 74, 178, 0.4)
  );
}

.student-img {
  position: absolute;

  right: 0;
  bottom: 0;

  height: 118px;
  width: auto;

  object-fit: contain;

  z-index: 2;
}
.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #021a4a, transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #021a4a, transparent);
}

.student-features {
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.student-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;

  padding: 20px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.student-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(121, 214, 74, 0.12);

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

  color: #79d64a;
  font-size: 20px;
}
.student-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.student-feature h4 {
  color: #fff;
  margin-bottom: 4px;
}

.student-feature p {
  color: #9eb0d0;
  font-size: 12px;
}

@media (max-width: 900px) {
  .student-features {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .student-section {
    padding: 50px 0;
  }

  .student-title {
    font-size: 38px;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .student-card {
    width: 260px;
    height: 110px;
    border-radius: 14px;
  }

  .student-card-content {
    left: 14px;
    top: 12px;
    bottom: 12px;
  }

  .role {
    font-size: 14px;
    max-width: 120px;
  }

  .company img {
    height: 18px;
  }

  .student-img {
    height: 100px;
  }

  .student-features {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 12px;
  }

  .student-feature {
    padding: 16px;
  }

  .fade-left,
  .fade-right {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .student-section {
    padding: 35px 0;
  }

  .student-title {
    font-size: 30px;
    margin-bottom: 22px;
  }

  .student-card {
    width: 200px;
    height: 90px;
    border-radius: 12px;
  }

  .student-card-content {
    left: 10px;
    top: 10px;
    bottom: 10px;
  }

  .name {
    font-size: 10px;
  }

  .role {
    font-size: 12px;
    max-width: 90px;
    margin-top: 4px;
  }

  .at {
    font-size: 10px;
  }

  .company img {
    height: 15px;
  }

  .student-img {
    height: 80px;
  }

  .image-overlay {
    width: 40%;
  }

  .student-marquee {
    margin-bottom: 12px;
  }

  .student-features {
    gap: 8px;
  }

  .student-feature {
    padding: 12px;
    gap: 10px;
  }

  .student-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .student-icon img {
    width: 20px;
    height: 20px;
  }

  .student-feature h4 {
    font-size: 13px;
  }

  .student-feature p {
    font-size: 11px;
  }

  .fade-left,
  .fade-right {
    width: 30px;
  }
}

/* ========== TESTIMONIAL CAROUSEL (from test.html) ========== */
.carousel-wrapper {
  width: 100%;
  max-width: 100%;
  height: 580px;
  position: relative;
  background: #021a4a;
}

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 900px;
  height: 380px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease,
    filter 0.6s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-card {
  display: flex;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.t-card-left {
  width: 38%;
  position: relative;
}

.t-card-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}

.t-card-right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote {
  font-size: 20px;
  line-height: 1.8;
  color: #344054;
  max-width: 95%;
}

.placement {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 10px 30px 0 0;
}
.placement > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.placement span {
  font-size: 14px;
  color: #667085;
  font-weight: 700;
}

.placement h2 {
  font-size: 42px;
  color: #101828;
  margin: 8px 0 0;
}

.placement img {
  margin-top: 8px;
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  border-radius: 0 0 20px 20px;
}

.overlay h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.overlay p {
  font-size: 14px;
  opacity: 0.9;
}

.play-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn img {
  width: 60px;
  height: 60px;
}

.nav img {
  width: 60px;
  height: 60px;
}

.slide.active {
  transform: translate(-50%, -50%) scale(1.08);
  opacity: 1;
  filter: blur(0);
  z-index: 10;
}

.slide.prev {
  transform: translate(-150%, -50%) scale(0.75);
  opacity: 0.4;
  filter: blur(4px);
  z-index: 5;
}

.slide.next {
  transform: translate(50%, -50%) scale(0.75);
  opacity: 0.4;
  filter: blur(4px);
  z-index: 5;
}

.slide.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.modal-video {
  width: 100%;
  height: 100%;
  border: none;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
}

.no-transition,
.no-transition::before,
.no-transition::after {
  transition: none !important;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  font-size: 24px;
  z-index: 20;
}

.nav.prev-btn {
  left: calc(50% - 486px - 30px);
}

.nav.next-btn {
  left: calc(50% + 486px - 30px);
}

.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #fff;
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 1200px) {
  .slide {
    width: 700px;
    height: 320px;
  }
  .slide.active {
    transform: translate(-50%, -50%) scale(1);
  }
  .slide.prev {
    transform: translate(-145%, -50%) scale(0.7);
  }
  .slide.next {
    transform: translate(45%, -50%) scale(0.7);
  }
  .nav.prev-btn {
    left: calc(50% - 350px - 25px);
  }
  .nav.next-btn {
    left: calc(50% + 350px - 25px);
  }
}

@media (max-width: 1024px) {
  .slide {
    width: 600px;
    height: 280px;
  }
  .slide.active {
    transform: translate(-50%, -50%) scale(1);
  }
  .nav.prev-btn {
    left: calc(50% - 300px - 25px);
  }
  .nav.next-btn {
    left: calc(50% + 300px - 25px);
  }
}

@media (max-width: 768px) {
  .carousel-wrapper {
    overflow: hidden;
    height: 580px;
  }
  .nav.prev-btn,
  .nav.next-btn {
    display: none;
  }
  .slide {
    width: 85%;
    height: 480px;
  }
  .slide.prev {
    transform: translate(-120%, -50%) scale(0.7);
  }
  .slide.next {
    transform: translate(20%, -50%) scale(0.7);
  }
  .t-card {
    flex-direction: column;
  }
  .t-card-left {
    width: 100%;
    height: 250px;
    flex-shrink: 0;
  }
  .t-card-right {
    padding: 15px;
    flex: 1;
    min-height: 0;
  }
  .quote {
    font-size: 14px;
    line-height: 1.5;
  }
  .placement h2 {
    font-size: 28px;
  }
  .placement img {
    height: 35px;
  }
  .slide.prev,
  .slide.next {
    opacity: 0;
  }
  .nav {
    width: 45px;
    height: 45px;
  }
  .nav.prev-btn {
    left: 10px;
  }
  .nav.next-btn {
    left: auto;
    right: 10px;
  }
}

/* ===== HERO SECTION (from test.html) ===== */
.hero {
  min-height: 80vh;
  width: 80%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #003da5;
  overflow: hidden;
}

.hero-content {
  width: 40%;
  color: white;
  z-index: 2;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 35px;
  max-width: 520px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  background: linear-gradient(90deg, #8fe63f, #62d84f);
  box-shadow: 0 15px 35px rgba(143, 230, 63, 0.35);
}

.hero-cards-section {
  width: 60%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-glow {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 5;
}

.hero-marquee {
  width: 840px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.hero-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: heroScroll 18s linear infinite;
}

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

.hero-card {
  width: 320px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.hero-card:nth-child(odd) {
  transform: rotateY(6deg);
}

.hero-card:nth-child(even) {
  transform: rotateY(-6deg);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  background: linear-gradient(transparent 45%, rgba(0, 0, 0, 0.85));
}

.hero-overlay h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}
.hero-company-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero-pill {
  background: #fff;
  gap: 20px;
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-pill span {
  font-size: 12px;
  color: #444;
  font-weight: 500;
}

.hero-company {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-company img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.hero-salary {
  background: #8be03f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0 0 10px 10px;
}

.hero-badge {
  margin-top: -10px;
  padding: 20px 0 10px 0;
  width: 50%;
  height: 70px;
  background: linear-gradient(to bottom, transparent, #58b95c);
  border-radius: 0 0 16px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(88, 185, 92, 0.25);
}

.hero-marquee::before,
.hero-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
}

.hero-marquee::before {
  left: -10px;
  background: linear-gradient(to right, #003da5, transparent);
}

.hero-marquee::after {
  right: -10px;
  background: linear-gradient(to left, #003da5, transparent);
}

@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
    gap: 50px;
    padding: 60px 20px;
  }

  .hero-content {
    width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cards-section {
    width: 100%;
  }

  .hero-marquee {
    width: 100%;
  }

  .hero-card {
    width: 220px;
    height: 340px;
  }
}

/* ===== Student Life Section (from test.html) ===== */
#student-life {
  padding: 60px 20px 40px;
  text-align: center;
  background: #ffffff;
}

#student-life .section-container {
  max-width: 998px;
  margin: 0 auto;
}

.header-wrap {
  width: 998px;
  max-width: 100%;
  min-height: 186px;
  margin: 0 auto;
}

#student-life h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #003da5;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

#student-life .section-desc {
  max-width: 860px;
  margin: 0 auto 36px;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #3b485e;
  line-height: 1.7;
}

#student-life .tabs {
  height: 44px;
  display: inline-flex;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
}

#student-life .tab-btn {
  padding: 10px 40px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: #dce5f6;
  color: #555555;
  position: relative;
  transition: color 0.2s ease;
  outline: none;
}

#student-life .tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background 0.2s ease;
}

#student-life .tab-btn:hover::after,
#student-life .tab-btn.active::after {
  background: #66bb46;
}

#student-life .tab-btn.active {
  color: #111111;
  font-weight: 700;
}

#student-life .tab-btn:hover {
  color: #111111;
}

#student-life .tab-content {
  display: none;
}

#student-life .tab-content.active {
  display: block;
}

.student-gallery {
  display: grid;
  grid-template-columns: 292px 393px 292px;
  gap: 10px;
  max-width: 998px;
  margin: 0 auto;
  justify-content: center;
  align-items: start;
}

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-card {
  overflow: hidden;
  background: #dddddd;
  border-radius: 10px;
}

.gallery-card img,
.gallery-card-bottom-middle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card-tall {
  width: 292px;
  height: 334px;
}

.gallery-card-middle {
  width: 393px;
  height: 263px;
}

.gallery-card-bottom {
  width: 292px;
  height: 234px;
}

.gallery-card-bottom-middle {
  width: 393px;
  height: 305px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-card-bottom-middle .cm-img {
  width: 100%;
  height: 305px;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
  background: #dddddd;
}

@media (max-width: 1000px) {
  .student-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-col {
    width: 100%;
  }

  .gallery-card-tall,
  .gallery-card-middle,
  .gallery-card-bottom,
  .gallery-card-bottom-middle {
    width: 100%;
  }

  .gallery-card-tall {
    height: 320px;
  }

  .gallery-card-middle {
    height: 260px;
  }

  .gallery-card-bottom {
    height: 230px;
  }
}

@media (max-width: 560px) {
  #student-life {
    padding: 45px 14px 40px;
  }

  .student-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card-tall,
  .gallery-card-middle,
  .gallery-card-bottom {
    height: 230px;
  }

  .gallery-card-bottom-middle {
    height: auto;
    grid-template-columns: 1fr;
  }

  .gallery-card-bottom-middle .cm-img {
    height: 230px;
  }

  #student-life .tab-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* ===== Offer Letter Section (from test.html) ===== */
#offer-letter {
  width: 100%;
  padding: 40px 20px 80px;
  background: #ffffff;
}

#offer-letter .offer-letter-box {
  width: 1200px;
  max-width: 100%;
  height: 447px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #f5f5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#offer-letter .offer-content {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding: 0 15px;
}

#offer-letter h2 {
  font-size: 38px;
  line-height: 1.22;
  font-weight: 800;
  color: #003da5;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

#offer-letter p {
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
  color: #3b485e;
  margin-bottom: 25px;
}

#offer-letter .offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 265px;
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  background: #66bb46;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(102, 187, 70, 0.38);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

#offer-letter .offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(102, 187, 70, 0.45);
}

#offer-letter .student-bubble {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  padding: 3px;
  animation: bubbleFloat 4.5s ease-in-out infinite;
}

#offer-letter .student-bubble img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

#offer-letter .bubble-green {
  border: 2px solid #7be38b;
}
#offer-letter .bubble-blue {
  border: 2px solid #8db6ff;
}
#offer-letter .bubble-purple {
  border: 2px solid #b4a4ff;
}
#offer-letter .bubble-pink {
  border: 2px solid #f59df3;
}
#offer-letter .bubble-orange {
  border: 2px solid #ff956c;
}
#offer-letter .bubble-yellow {
  border: 2px solid #ffe16a;
}

#offer-letter .bubble-blur {
  filter: blur(3px);
  opacity: 0.45;
  z-index: 1;
}

#offer-letter .bubble-1 {
  width: 83px;
  height: 83px;
  left: 58px;
  top: 73px;
  animation-delay: 0s;
}
#offer-letter .bubble-2 {
  width: 111px;
  height: 111px;
  left: 175px;
  top: 185px;
  animation-delay: 0.35s;
}
#offer-letter .bubble-3 {
  width: 67px;
  height: 67px;
  left: 92px;
  bottom: 78px;
  animation-delay: 0.7s;
}
#offer-letter .bubble-4 {
  width: 77px;
  height: 77px;
  left: 330px;
  bottom: 70px;
  opacity: 0.6;
  animation-delay: 0.15s;
}
#offer-letter .bubble-5 {
  width: 68px;
  height: 68px;
  left: 535px;
  top: 38px;
  opacity: 0.5;
  animation-delay: 0.9s;
}
#offer-letter .bubble-6 {
  width: 83px;
  height: 83px;
  right: 140px;
  top: 66px;
  animation-delay: 0.2s;
}
#offer-letter .bubble-7 {
  width: 111px;
  height: 111px;
  right: 78px;
  top: 205px;
  animation-delay: 0.6s;
}
#offer-letter .bubble-8 {
  width: 96px;
  height: 96px;
  right: 205px;
  bottom: 66px;
  animation-delay: 1s;
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(0, -10px) scale(1.02);
  }
}

@media (max-width: 1000px) {
  #offer-letter .offer-letter-box {
    height: 500px;
  }

  #offer-letter h2 {
    font-size: 32px;
  }

  #offer-letter .bubble-1 {
    left: 35px;
    top: 55px;
  }
  #offer-letter .bubble-2 {
    left: 70px;
    top: 255px;
  }
  #offer-letter .bubble-3 {
    left: 30px;
    bottom: 60px;
  }
  #offer-letter .bubble-4 {
    left: 235px;
    bottom: 45px;
  }
  #offer-letter .bubble-5 {
    left: 48%;
    top: 30px;
  }
  #offer-letter .bubble-6 {
    right: 55px;
    top: 70px;
  }
  #offer-letter .bubble-7 {
    right: 35px;
    top: 285px;
  }
  #offer-letter .bubble-8 {
    right: 180px;
    bottom: 50px;
  }
}

@media (max-width: 560px) {
  #offer-letter {
    padding: 40px 14px 40px;
  }

  #offer-letter .offer-letter-box {
    height: 510px;
    border-radius: 16px;
  }

  #offer-letter .offer-content {
    max-width: 320px;
  }

  #offer-letter h2 {
    font-size: 27px;
    line-height: 1.25;
  }

  #offer-letter p {
    font-size: 12px;
  }

  #offer-letter .offer-btn {
    min-width: 245px;
    height: 48px;
    font-size: 14px;
  }

  #offer-letter .bubble-1 {
    width: 62px;
    height: 62px;
    left: 18px;
    top: 38px;
  }
  #offer-letter .bubble-2 {
    width: 82px;
    height: 82px;
    left: 24px;
    top: 310px;
  }
  #offer-letter .bubble-3 {
    width: 54px;
    height: 54px;
    left: 28px;
    bottom: 45px;
  }
  #offer-letter .bubble-4 {
    width: 58px;
    height: 58px;
    left: 145px;
    bottom: 35px;
  }
  #offer-letter .bubble-5 {
    width: 52px;
    height: 52px;
    left: 47%;
    top: 22px;
  }
  #offer-letter .bubble-6 {
    width: 62px;
    height: 62px;
    right: 20px;
    top: 45px;
  }
  #offer-letter .bubble-7 {
    width: 82px;
    height: 82px;
    right: 18px;
    top: 315px;
  }
  #offer-letter .bubble-8 {
    width: 72px;
    height: 72px;
    right: 92px;
    bottom: 40px;
  }
}

/* ===== FAQ Book Career Section (from test.html) ===== */
#faq-book-career {
  width: 100%;
  background: #ffffff;
}

.faq-book-career-wrap {
  width: 1200px;
  max-width: 100%;
  min-height: 538px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 10px;
  align-items: start;
  background: #ffffff;
}

.faq-book-career-left {
  padding-top: 12px;
}

.faq-book-career-left h2 {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  color: #003da5;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

.faq-book-career-left p {
  font-size: 14px;
  line-height: 1.5;
  color: #3b485e;
  margin-bottom: 28px;
  max-width: 320px;
}

.faq-book-career-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 189px;
  height: 52px;
  padding: 8px 24px;
  border-radius: 999px;
  background: #003da5;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 61, 165, 0.18);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  margin-top: 20px;
}

.faq-book-career-btn:hover {
  background: #003da5;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(111, 234, 66, 0.28);
}

.faq-book-career-right {
  width: 796px;
  height: 538px;
}

.faq-item {
  border-bottom: 1px solid #e9fdff;
  transition: background 0.2s ease;
}

.faq-item.active {
  background: #f5f5f2;
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  align-items: center;
  gap: 24px;
  background: transparent;
  border: none;
  padding: 18px 14px;
  text-align: left;
  cursor: pointer;
}

.faq-number {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  color: #66bb46;
  letter-spacing: 0.02em;
}

.faq-title {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  color: #003da5;
  padding-right: 14px;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 24px;
  line-height: 1;
  color: #66bb46;
  transition: transform 0.2s ease;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 56px 24px 80px;
  color: #5d6778;
  font-size: 14px;
  line-height: 1.65;
  max-width: 760px;
}

.faq-item.active .faq-answer {
  display: block;
}

@media (max-width: 1100px) {
  .faq-book-career-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-book-career-left p {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  #faq-book-career {
    padding: 40px 14px 60px;
  }

  .faq-book-career-left h2 {
    font-size: 28px;
  }

  .faq-question {
    grid-template-columns: 42px 1fr 20px;
    gap: 14px;
    padding: 16px 10px;
  }

  .faq-number {
    font-size: 20px;
  }

  .faq-title {
    font-size: 14px;
    padding-right: 8px;
  }

  .faq-answer {
    padding: 0 18px 18px 56px;
    font-size: 13px;
  }
}

/* === AWARDS & RECOGNITION === */

.awards-section {
  padding: 80px 0;
  background: #fff;
}

.awards-section .container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.awards-section .heading {
  text-align: center;
  margin-bottom: 50px;
}

.awards-section .heading h2 {
  font-size: 52px;
  color: #0a4bb8;
  font-weight: 700;
  margin-bottom: 16px;
}

.awards-section .heading p {
  max-width: 900px;
  margin: auto;
  color: #6b7280;
  line-height: 1.7;
}

.awards-section .slider-wrapper {
  position: relative;
}

.awards-section .slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 5px;
}

.awards-section .slider::-webkit-scrollbar {
  display: none;
}

.awards-section .award-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 320px;

  background: #eff8fc;
  border: 1px solid #d8eaf2;

  border-radius: 20px;
  overflow: hidden;

  transition: 0.3s ease;
}

.awards-section .award-card:hover {
  transform: translateY(-5px);
}

.awards-section .award-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.awards-section .card-body {
  padding: 20px;
}

.awards-section .award {
  display: flex;
  align-items: center;
  gap: 12px;
}

.awards-section .award-logo {
  width: 60px;
  height: 40px;
  background: #fff;
  border-radius: 8px;

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

  font-weight: 700;
  color: #0a4bb8;
  font-size: 12px;
}

.awards-section .award-info span {
  display: block;
  color: #6b7280;
  font-size: 12px;
}

.awards-section .award-info strong {
  color: #0a4bb8;
  font-size: 14px;
}

.awards-section .divider {
  height: 1px;
  background: #d8eaf2;
  margin: 18px 0;
}

.awards-section .award-card h3 {
  font-size: 22px;
  line-height: 1.4;
  color: #374151;
  margin-bottom: 12px;
}

.awards-section .award-card p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
}

.awards-section .award-card a {
  color: #69c145;
  text-decoration: none;
  font-weight: 600;
}

.awards-section .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 48px;
  height: 48px;

  border: none;
  border-radius: 50%;

  background: #fff;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

  cursor: pointer;
  z-index: 10;
}

.awards-section .prev {
  left: -15px;
}

.awards-section .next {
  right: -15px;
}

.awards-section .progress {
  width: 120px;
  height: 8px;

  background: #d9e1e8;

  margin: 40px auto 0;

  border-radius: 999px;
  overflow: hidden;
}

.awards-section .progress-bar {
  width: 40%;
  height: 100%;
  background: #69c145;
  border-radius: 999px;
}

.awards-section .promise {
  text-align: center;
  margin-top: 25px;

  font-size: 22px;
  font-weight: 700;

  color: #69c145;
}

@media (max-width: 1200px) {
  .awards-section .award-card {
    flex: 0 0 calc(66.666% - 14px);
    min-width: 0;
  }

  .awards-section .heading h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .awards-section .slider {
    scroll-snap-type: x mandatory;
  }

  .awards-section .heading h2 {
    font-size: 34px;
  }

  .awards-section .award-card {
    flex: 0 0 85vw;
    min-width: 0;
    scroll-snap-align: start;
  }

  .awards-section .arrow {
    display: none;
  }

  .awards-section .promise {
    font-size: 18px;
  }
}
