@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
.main-header ul.navbar-nav {
  padding: 0.5rem clamp(0.25rem, 0.6vw, 0.8rem);
    font-size: clamp(11px, 1vw, 14px);
    white-space: nowrap;
}
.navbar-brand {
      flex: 0 0 auto;
}
.lead {
  font-size: 18px !important;
  font-weight: 500 !important;
}
.main-header .nav-bar-button{flex-shrink: 0; white-space: nowrap;}
.header-nav .navbar-nav .nav-link {
  font-weight: 400;
  color: var(--color-white);
  font-family: var(--font-main);
  transition: color 0.3s ease, background-color 0.3s ease;
  position: relative;
    padding: 0.5rem clamp(0.25rem, 0.6vw, 0.8rem);
    font-size: clamp(11px, 1vw, 14px);
    white-space: nowrap;
}
.header-nav .navbar-nav .nav-text {
  position: relative;
  display: inline-block;
}
.header-nav .navbar-nav .nav-text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}
.header-nav .navbar-nav .nav-link:hover .nav-text::after,
.header-nav .navbar-nav .nav-link:focus .nav-text::after {
  width: 100%;
}
.header-nav .navbar-nav .nav-link:hover,
.header-nav .navbar-nav .nav-link:focus {
  color: var(--color-primary);
}
.header-nav .navbar-nav .nav-link.active {
  color: var(--color-primary);
}
.navbar .header-nav .dropdown-menu a {
  color: var(--color-dark);
  padding: 0.5rem 1.2rem;
  position: relative;
  transition: color 0.3s ease, background-color 0.3s ease;
  font-size: var(--font-sm);
  font-family: var(--font-main);
}
.navbar .header-nav .dropdown-menu a:hover {
  background-color: var(--color-primary);
  color: var(--color-dark);
}
.navbar .header-nav.dropdown-menu a::after {
  content: "";
  position: absolute;
  bottom: 0.4rem;
  left: 1.2rem;
  width: 0%;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}
.navbar .header-nav .dropdown-menu a:hover,
.navbar .header-nav .dropdown-menu a:focus {
  background-color: var(--color-primary);
  color: var(--color-dark);
}
.navbar .dropdown-toggle::after {
  display: none !important;
}
.header-nav ul li a.dropdown-item.dropdown-toggle {
  display: flex;
  justify-content: space-between;
}
.header-nav .dropdown-menu {
  display: none;
  position: absolute;
  z-index: 1000;
}
.header-nav .dropdown.show > .dropdown-menu,
.dropdown-menu.show {
  display: block !important;
}
.dropdown-icon {
  width: 12px;
  height: 12px;
  display: inline-block;
  background-image: url("../images/icons/arrow-down.webp");
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
  margin-left: 5px;
  vertical-align: middle;
}
.nav-link:hover .dropdown-icon,
.nav-link[aria-expanded="true"] .dropdown-icon {
  background-image: url("../images/icons/arrow-down-active.webp");
}
.header-nav .nav-link[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg);
}
.header-nav .bi-chevron-right::before {
  color: #141414;
  font-weight: 500 !important;
  font-size: 11px;
}
.header-nav ul li ul.dropdown-menu {
  background-color: var(--color-nav);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 2px 35px 0 rgba(0, 0, 0, 0.04);
  min-width: 280px;
}
.header-nav ul li.dropdown-submenu ul.dropdown-menu {
  border-radius: 0 0.375rem 0.375rem 0;
  margin-left: -4px;
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -9px;
  display: none;
  border-radius: 0;
  background-color: var(--color-nav);
  min-width: 240px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 2px 35px 0 rgba(0, 0, 0, 0.04);
  border-radius: 0.375rem;
  border: 0;
}
.dropdown-menu > li:hover > .dropdown-menu {
  display: block;
}
.dropdown-submenu > a::after {
  content: "â€º";
  float: right;
  margin-left: 8px;
  font-size: 14px;
  line-height: 1;
  color: var(--color-primary);
}
.heighthome {
  min-height: 1045px;
}
.hero-section {
  padding: 6rem 1rem 4rem;
  text-align: center;
}
.course-card h2 {
  font-size: 45px;
  line-height: 68px;
  margin-bottom: 50px !important;
}
.mentor {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.mentor img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: auto;
}
/*.mentor-info {*/
/*  font-size: var(--font-md);*/
/*  color: #ddd;*/
/*  margin: 0;*/
/*  text-align: left;*/
/*}*/
.mentor-raise {
  transform: translateY(-80px);
}
.mentor p {
  position: absolute;
  bottom: 7%;
  left: 10%;
  font-size: var(--font-md);
  text-shadow: 2px 4px 1px rgba(0, 0, 0, 0.3);
}
.mentor.mentor-raise p {
  bottom: 9%;
}
.who-we-are-section {
  position: relative;
  z-index: 2;
}
.video-wrapper {
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.video-wrapper img {
  max-width: 100%;
  border-radius: 0.5rem;
}
.section-tag {
  font-size: var(--font-lg1);
  color: #ccc;
  text-transform: lowercase;
  letter-spacing: 3.78px;
  font-family: var(--font-alt);
  position: relative;
  text-align: center;
  display: block;
}
.section-tag::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 74px;
  height: 9px;
  background-repeat: no-repeat;
  background-size: contain;
  right: 70%;
  background-image: url("../images/line-graphic.webp");
}
.iframe-container iframe {
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.programs-section {
  background: #fff;
  padding: 85px 0 100px;
  position: relative;
}
.z-vector {
  top: 70%;
  position: absolute;
  right: 0;
  z-index: 999;
}
.vect-image {
  position: absolute;
}
.program-card {
  background-size: 100% 100%;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 30px;
}
.programs-section .program-card ul li {
  margin: 20px 0;
  font-size: var(--font-lg1);
  font-family: var(--font-alt);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-card1 {
  background-image: url("../images/cfa-bg.webp");
}
.p-card2 {
  background-image: url("../images/cfa-bg.webp");
}
.p-card3 {
  background-image: url("../images/cma-bg.webp");
}
.p-card4 {
  background-image: url("../images/acca-bg.webp");
}
.p-card5 {
  background-image: url("../images/cima-bg.webp");
}
.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    57deg,
    rgba(50, 219, 198, 0.75) -42.47%,
    rgba(50, 219, 198, 0) 47.28%
  );
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}
.subtitle {
  font-size: var(--font-lg1);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.78px;
  text-transform: lowercase;
  font-family: var(--font-alt);
}
.programs-section h1 {
  color: #000;
}
.line {
  position: relative;
  display: inline-block;
  padding-left: 10px;
}
.line::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  background-image: url("../images/icons/line-graphic-black.webp");
  transform: translateY(-50%);
  width: 58px;
  height: 9px;
  background-repeat: no-repeat;
  background-size: contain;
}
.program-icon {
  background: url("../images/icons/program-icon.webp") no-repeat center top;
  height: 38px;
  width: 38px;
  background-size: contain;
}
.custom-btn {
  width: 75px;
  height: 35px;
  background-color: #fff;
  background-image: url("../images/icons/arrow-icon.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  border-radius: 33px;
  display: inline-block;
  transition: all 0.3s ease;
  z-index: 99999;
  position: relative;
}
.custom-btn:hover {
  background-color: #32dbc6;
  background-image: url("../images/icons/arrow-white.webp");
  background-position: 25px 5px;
}
.programs-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.programs-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #32dbc6 0%, transparent 70%);
  top: -200px;
  left: -200px;
  opacity: 0.08;
}
.section-title {
  font-size: 48px;
  font-weight: 700;
}
.subtitle {
  letter-spacing: 4px;
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.8;
}

.btn-program {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  background: linear-gradient(135deg, #32dbc6, #00b3a4);
  color: #000;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-program:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(50, 219, 198, 0.4);
}
.programs-section .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* BASE CARD */
.new-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  transition: all .4s cubic-bezier(.23,1,.32,1);
  min-height: 260px;
}
.new-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.new-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  border-radius: 0 0 4px 4px;
  opacity: 1;
}
.new-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  pointer-events: none;
}

.new-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.new-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.new-card ul li {
  margin-bottom: 10px;
  opacity: .85;
  position: relative;
  padding-left: 22px;
  font-size: .88rem;
  color: #d0dce8;
}
.new-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.btn-program-ez {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  transition: all .3s ease;
}

.program-outcome {
  position: absolute;
  right: 22px;
  bottom: 22px;
  background: rgba(255,255,255,.05);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: .78rem;
  border: 1px solid rgba(255,255,255,.08);
}
.program-outcome h6 {
  font-size: .68rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.program-outcome p { color: #d0dce8; margin: 0; }

/* ── ACCA — Brand Red ── */
.new-card--acca { border-color: rgba(200,16,46,.45); }
.new-card--acca::before { background: linear-gradient(90deg, transparent, #C8102E, transparent); }
.new-card--acca::after  { background: radial-gradient(circle, rgba(200,16,46,.12) 0%, transparent 70%); }
.new-card--acca h4 { color: #e84060; }
.new-card--acca ul li::before { color: #e84060; }
.new-card--acca .program-outcome h6 { color: #e84060; }
.new-card--acca .btn-program-ez { background: linear-gradient(135deg, #C8102E, #9b0c23); color: #fff; }
.new-card--acca:hover { border-color: rgba(200,16,46,.9); box-shadow: 0 24px 60px rgba(200,16,46,.2); }

/* ── CFA — Navy Blue ── */
.new-card--cfa { border-color: rgba(0,56,101,.6); }
.new-card--cfa::before { background: linear-gradient(90deg, transparent, #4a90d9, transparent); }
.new-card--cfa::after  { background: radial-gradient(circle, rgba(0,56,101,.2) 0%, transparent 70%); }
.new-card--cfa h4 { color: #4a90d9; }
.new-card--cfa ul li::before { color: #4a90d9; }
.new-card--cfa .program-outcome h6 { color: #4a90d9; }
.new-card--cfa .btn-program-ez { background: linear-gradient(135deg, #003865, #00264d); color: #fff; }
.new-card--cfa:hover { border-color: rgba(74,144,217,.8); box-shadow: 0 24px 60px rgba(0,56,101,.3); }

/* ── Financial Modeling — Finance Green ── */
.new-card--fm { border-color: rgba(33,163,102,.4); }
.new-card--fm::before { background: linear-gradient(90deg, transparent, #21A366, transparent); }
.new-card--fm::after  { background: radial-gradient(circle, rgba(33,163,102,.12) 0%, transparent 70%); }
.new-card--fm h4 { color: #21A366; }
.new-card--fm ul li::before { color: #21A366; }
.new-card--fm .program-outcome h6 { color: #21A366; }
.new-card--fm .btn-program-ez { background: linear-gradient(135deg, #21A366, #178050); color: #fff; }
.new-card--fm:hover { border-color: rgba(33,163,102,.9); box-shadow: 0 24px 60px rgba(33,163,102,.2); }

/* ── Investment Banking — Amber Gold ── */
.new-card--ib { border-color: rgba(245,158,11,.4); }
.new-card--ib::before { background: linear-gradient(90deg, transparent, #F59E0B, transparent); }
.new-card--ib::after  { background: radial-gradient(circle, rgba(245,158,11,.1) 0%, transparent 70%); }
.new-card--ib h4 { color: #F59E0B; }
.new-card--ib ul li::before { color: #F59E0B; }
.new-card--ib .program-outcome h6 { color: #F59E0B; }
.new-card--ib .btn-program-ez { background: linear-gradient(135deg, #F59E0B, #b45309); color: #111; }
.new-card--ib:hover { border-color: rgba(245,158,11,.9); box-shadow: 0 24px 60px rgba(245,158,11,.2); }

/* ── US CMA — IMA Deep Blue ── */
.new-card--cma { border-color: rgba(27,79,138,.5); }
.new-card--cma::before { background: linear-gradient(90deg, transparent, #4f86c6, transparent); }
.new-card--cma::after  { background: radial-gradient(circle, rgba(27,79,138,.15) 0%, transparent 70%); }
.new-card--cma h4 { color: #4f86c6; }
.new-card--cma ul li::before { color: #4f86c6; }
.new-card--cma .program-outcome h6 { color: #4f86c6; }
.new-card--cma .btn-program-ez { background: linear-gradient(135deg, #1B4F8A, #123260); color: #fff; }
.new-card--cma:hover { border-color: rgba(79,134,198,.8); box-shadow: 0 24px 60px rgba(27,79,138,.25); }

/* ── CIMA UK — Brand Teal ── */
.new-card--cima { border-color: rgba(0,163,161,.4); }
.new-card--cima::before { background: linear-gradient(90deg, transparent, #00A3A1, transparent); }
.new-card--cima::after  { background: radial-gradient(circle, rgba(0,163,161,.12) 0%, transparent 70%); }
.new-card--cima h4 { color: #00A3A1; }
.new-card--cima ul li::before { color: #00A3A1; }
.new-card--cima .program-outcome h6 { color: #00A3A1; }
.new-card--cima .btn-program-ez { background: linear-gradient(135deg, #00A3A1, #007a78); color: #fff; }
.new-card--cima:hover { border-color: rgba(0,163,161,.9); box-shadow: 0 24px 60px rgba(0,163,161,.2); }
.alumini-container {
  background: #fff;
}
.alumni-card {
  position: relative;
  overflow: hidden;
}
.overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  text-decoration: none;
  border-radius: 40px;
}
.alumni-card:hover .overlay-icon {
  opacity: 1;
}
.uni-container {
  background: #fff;
  padding: 100px 0;
  position: relative;
  color: #000;
}
.uni-card {
  display: flex;
  background: linear-gradient(135deg, #071c22, #0f3f3c);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
  height: 100%;
}
.uni-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border-color: #32dbc6;
}
.uni-image {
  flex: 1;
  min-height: 260px;
  overflow: hidden;
}
.uni-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.uni-card:hover .uni-image img {
  transform: scale(1.08);
}
.uni-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.uni-content h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.uni-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 20px;
}
.uni-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}
.uni-logos img {
  height: 36px;
  width: auto;
  opacity: 0.85;
  transition: 0.3s;
}
.uni-card:hover .uni-logos img {
  opacity: 1;
  transform: scale(1.05);
}
.alumini-container .line::after,
.image-highlight-section .line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  background-image: url(../images/icons/line-graphic-black.webp);
  transform: translateY(-50%);
  width: 58px;
  height: 9px;
  background-repeat: no-repeat;
  background-size: contain;
}
.section-dark.section-main {
  padding-top: 100px;
}
.bg-dark-green {
  background: linear-gradient(to right, #134e5e, #71b280);
}
.small-info {
  font-size: 16px;
  font-weight: 500;
}
.mainh {
  min-height: 665px;
}
.btn-breadcrumb .btn:not(:last-child):after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 10px solid white;
  position: absolute;
  top: 50%;
  margin-top: -17px;
  left: 100%;
  z-index: 3;
}
.btn-breadcrumb .btn:not(:last-child):before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 10px solid rgb(173, 173, 173);
  position: absolute;
  top: 50%;
  margin-top: -17px;
  margin-left: 1px;
  left: 100%;
  z-index: 3;
}
.breadcrumb .breadcrumb-item a {
  color: #fff;
}
.breadcrumb .breadcrumb-item a:hover {
  background: linear-gradient(to right, #ffda08, #05ac8f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.breadcrumb .breadcrumb-item.active {
  background: linear-gradient(to right, #ffda08, #05ac8f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}
.box-info {
  background: #1f3a37 url("../images/box-bg-img.webp") no-repeat center center;
  background-size: 100% 100%;
  border: 1px solid #32dbc6;
}
.box-info h4 {
  color: #32dbc6;
}
.whyy-edzeb .feature-section {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1.5rem;
  height: 100%;
}
.section-dark.section-main {
  padding-top: 150px;
}
.wave-bg {
  animation: slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #1f635a 50%, #000000 50%);
  bottom: 0;
  left: -50%;
  opacity: 0.5;
  position: absolute;
  right: -50%;
  top: 0;
}
.bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 4s;
}
.bg3 {
  animation-duration: 5s;
}
@keyframes slide {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}
.exam-swiper {
  padding: 2rem 0;
}
.exam-card {
  border: 1px solid #32dbc6;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  background: #1f3a37 url("../images/box-bg-img.webp") no-repeat;
  background-size: 100% 100%;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 185px;
}
.exam-card .icon {
  margin-bottom: 1rem;
}
.exam-card p {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  color: #c4c4c4;
}
.exam-swiper .swiper-button-next,
.exam-swiper .swiper-button-prev {
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.swiper-pagination-bullet {
  height: 12px !important;
  width: 12px !important;
  background: #32dbc6 !important;
  opacity: 1 !important;
  margin: 0 10px !important !important;
}
.swiper-pagination-bullet-active {
  background-color: #fff !important;
}
.exam-swiper .swiper-button-next::after,
.exam-swiper .swiper-button-prev::after {
  font-size: 1rem;
}
.bottom-content {
  background: #fff;
}
.seo-bottom-content .card p {
  font-size: 15px;
  color: #fff;
}
.seo-bottom-content h2 {
  color: #000 !important;
}
.seo-bottom-content .card {
  background: linear-gradient(rgb(0 0 0), rgb(0 73 64 / 87%));
  color: #fff;
  padding: 0 15px;
  border-radius: 20px !important;
}
.seo-bottom-content .card a {
  color: #00ffdc;
}
.seo-bottom-content .card strong {
  font-size: 20px;
  color: #fff;
}
.seo-bottom-content .card ul.seo-list li {
  padding: 10px 0;
}
.seo-bottom-content .card ul li p {
  padding: 10px 0;
}
.footer {
  background: #0b2a2a;
}
.footer .dropdown.custom-dropdown {
  margin-top: 40px;
}
.text-mob {
  display: none;
}
.text-web {
  display: block;
}
.mob-img {
  display: none;
}
.web-img {
  display: block;
}
.footer.footer-home {
  background: #0b2a2a;
}
.features-list li {
  margin-bottom: 20px;
  font-size: 14px;
  position: relative;
  padding-left: 24px;
  text-align: left;
}
.features-list li::before {
  content: "»";
  position: absolute;
  left: 0;
  color: #1fe1c0;
  font-weight: bold;
}
.btn-custom {
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 500;
}
.btn-reserve {
  background-color: #1fe1c0;
  color: #000;
}
.btn-download {
  background: #fff;
  color: #000;
}
.btn-white {
  border-image: linear-gradient(
      114deg,
      white 0%,
      #32dbc600 13%,
      #32dbc600 89%,
      white 100%
    )
    1;
}
.btn-white a {
  background: #ffffff;
  color: #000000;
}
.btn-white:hover {
  border-image: linear-gradient(
      114deg,
      #35a58a 0,
      #32dbc600 13%,
      #32dbc600 89%,
      #35a58a 100%
    )
    1;
}
.btn-white a:hover {
  background: linear-gradient(to right, #04222b, #46a589);
  color: #fff;
}
.hero-main {
  position: relative;
  min-height: 390px;
  color: #fff;
  overflow: hidden;
}
.hero-content {
  padding: 90px 0 40px;
  position: relative;
  z-index: 2;
}
.hero-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  min-width: 50%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  pointer-events: none;
}
.hero-general-img {
  position: absolute;
  bottom: 0;
  right: 8%;
  height: 75%;
  width: auto;
  max-width: 45%;
  object-fit: contain;
  object-position: bottom right;
  z-index: 0;
  pointer-events: none;
}
.hero-general-img.con{
    position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 180px;
  opacity: .15;        /* make it subtle so it doesn't clash */
  pointer-events: none;
  z-index: 0;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}
.who-video-section {
  background: radial-gradient(circle at center, #0f2f2c 0%, #070b0b 70%);
  color: #fff;
  overflow: visible;
}
.section-title {
  font-size: 48px;
}
.section-title p {
  font-size: 16px;
}
.section-desc {
  max-width: 900px;
  color: #cfdedd;
  line-height: 1.7;
}
.video-wrap {
  display: flex;
  justify-content: center;
}
.video-card {
  position: relative;
  max-width: 640px;
  border-radius: 18px;
  overflow: visible;
}
.video-card img {
  width: 100%;
  border-radius: 18px;
  display: block;
}
.count {
  transition: color 0.3s ease;
  color: #32dbc6;
}
.count-val {
  color: #32dbc6;
  font-size: 32px;
}
.stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(14px);
  border: 1px solid #008080;
}
.stat-card.teal {
  background: rgba(0, 201, 190, 0.18);
}
.stat-card h3 {
  font-size: 56px;
  margin-bottom: 10px;
}
.stat-card p {
  color: #d8efec;
  font-size: 15px;
}
.card-glow-floor {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 255, 220, 0.5) 0%,
    rgba(0, 255, 220, 0.25) 30%,
    transparent 70%
  );
  filter: blur(25px);
  z-index: -1;
}
.stat-card,
.video-card {
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.45s ease, background 0.45s ease;
  will-change: transform;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.stat-card:hover .card-glow-floor {
  filter: blur(35px);
  opacity: 0.9;
  transform: translateX(-50%) scale(1.1);
}
.video-card:hover {
  transform: translateY(-6px) scale(1.01);
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.85;
    transform: translateX(-50%) scale(1.05);
  }
}
.stat-card .card-glow-floor,
.video-card .card-glow-floor {
  animation: glowPulse 4.5s ease-in-out infinite;
}
.what-we-do {
  background: #f9feff;
}
.stats-box-card {
  height: 100%;
  padding: 60px 24px;
  background: linear-gradient(135deg, #0b0b0b, #133f3f);
  color: #fff;
  border-radius: 18px;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
  text-align: center;
  transition: transform 0.25s ease;
}
.stats-box-card:hover {
  transform: translateY(-4px);
}
.stats-box-card .count {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}
.stats-box-card p {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
}
.mission-vision-section,
.recruiter-content,
.council {
  background: #0c1110;
}
.mv-card {
  background: #1c3532;
  border: 1px solid #1fd1b3;
  border-radius: 16px;
  padding: 32px;
  color: #fff;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(31, 209, 179, 0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.mv-card:hover {
  transform: translateY(-6px);
}
.mv-card:hover::before {
  opacity: 1;
}
.mv-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: rgba(31, 209, 179, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: iconBreath 6s ease-in-out infinite;
  transition: transform 0.3s ease, background 0.3s ease;
}
.mv-icon i {
  font-size: 36px;
  color: #1fd1b3;
}
.mv-card h3 {
  font-weight: 600;
  margin-bottom: 12px;
}
.mv-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}
.mv-card:hover .mv-icon {
  transform: scale(1.1);
  background: rgba(31, 209, 179, 0.2);
}
@keyframes iconBreath {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}
.core-value {
  border: 1px solid #33cabb;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  background-color: #111;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height:200px;
}
.core-value:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(51, 202, 187, 0.5);
}
.core-value i {
  font-size: 2.5rem;
  color: #33cabb;
  margin-bottom: 15px;
  transition: transform 0.3s;
}
.core-value:hover i {
  transform: scale(1.2) rotate(10deg);
}
.core-value h5 {
  margin-top: 10px;
  font-weight: 500;
  font-size:14px;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.core-value:nth-child(1) {
  animation-delay: 0.1s;
}
.core-value:nth-child(2) {
  animation-delay: 0.2s;
}
.core-value:nth-child(3) {
  animation-delay: 0.3s;
}
.core-value:nth-child(4) {
  animation-delay: 0.4s;
}
.core-value:nth-child(5) {
  animation-delay: 0.5s;
}
.core-value:nth-child(6) {
  animation-delay: 0.6s;
}
.core-value:nth-child(7) {
  animation-delay: 0.7s;
}
.core-value:nth-child(8) {
  animation-delay: 0.8s;
}
.founders-section {
  background: radial-gradient(circle at center, #0d2a27 0%, #060909 75%);
  color: #fff;
}
.founder-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px 20px 25px;
  backdrop-filter: blur(12px);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.45s ease;
  will-change: transform;
}
.founder-card img {
  width: 100%;
  max-width: 220px;
  margin: -70px auto 20px;
  display: block;
  animation: floatImage 6s ease-in-out infinite;
}
.founder-card h4 {
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-top: 10px;
  transition: letter-spacing 0.3s ease;
}
.founder-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.founder-card:hover h4 {
  letter-spacing: 1.2px;
}
@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.advisor-info {
  margin-top: 12px;
  text-align: center;
}
.advisor-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}
.advisor-designation {
  font-size: 12px;
  color: #bbbbbb;
  margin: 0;
}
.accomplishments-section {
  background: radial-gradient(circle at top, #0f1f1c, #070b0a);
}
.accomplishment-card {
  height: 100%;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(0, 201, 190, 0.45);
  border-radius: 14px;
  background: rgba(0, 201, 190, 0.05);
  color: #d9fdfb;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.accomplishment-card::after {
  content: "";
  position: absolute;
  inset: auto 10% 0 10%;
  height: 20px;
  background: radial-gradient(circle, rgba(0, 201, 190, 0.5), transparent);
  filter: blur(18px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.accomplishment-card i {
  font-size: 40px;
  color: #00c9be;
  margin-bottom: 16px;
  display: inline-block;
}
.accomplishment-card p {
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0;
}
.accomplishment-card img {
  min-height: 80px;
}
.accomplishment-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 201, 190, 0.25);
  background: rgba(0, 201, 190, 0.12);
}
.accomplishment-card:hover::after {
  opacity: 1;
}
.recognition-container {
  background: #fff;
}
ab .recognition-card {
  min-height: 170px;
}
.contact-section {
  border-radius: 0;
}
.contact-wrapper {
  background: #0f1c1c;
  padding: 60px 15px;
}
.contact-box {
  background: #ffffff;
  max-width: 820px;
  margin: auto;
  padding: 48px 48px 30px;
  border-radius: 22px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.contact-box::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -1px;
  width: 64px;
  height: 64px;
  background: #0f1c1c;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.contact-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: #111;
}
.bg-custom-color,
.results-section,
.students-sect,
.recruiter-content,
.recruiter-container,
.edzeb-card,
.programs-section,
.student-container,
.testimonial-container,
.shape-future,
.faq-container,
.learning-partner,
.home-contact {
  background: radial-gradient(
      circle at top,
      rgba(29, 233, 182, 0.08),
      transparent 55%
    ),
    linear-gradient(180deg, #071515, #050f0f);
  padding: 70px 0;
}
.result-card {
  background: linear-gradient(180deg, #0f3333, #0b2626);
  border-radius: 18px;
  padding: 26px;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.result-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(29, 233, 182, 0.35),
    rgba(29, 233, 182, 0)
  );
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.result-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}
.result-card h6 {
  color: #f4ffff;
  font-size: 16px;
  font-weight: 600;
}
.result-card small {
  color: #6deed1 !important;
  font-size: 13px;
}
.result-text {
  color: #e3f3f3;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 14px;
}
.linkedin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  flex-shrink: 0;
  background-color: #0a66c2;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
}
.linkedin-icon i {
  font-size: 16px;
}
.linkedin-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.results-grid {
  row-gap: 30px;
}
.funky-badge-wrap {
  position: relative;
  display: inline-block;
  margin-top: 35px;
  overflow: visible;
}
.funky-badge {
  position: relative;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.4px;
  z-index: 2;
}
.funky-text {
  display: inline-block;
  transform: rotate(-4deg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #ffffff;
  font-family: "Montserrat", "Arial Black", sans-serif;
}
.funky-badge::before {
  content: "";
  position: absolute;
  inset: -6px -8px;
  background: #0ba09a;
  z-index: -1;
  transform: rotate(-4.5deg);
  border-radius: 12px 6px 14px 8px;
  clip-path: polygon(
    2% 6%,
    12% 3%,
    101% 5%,
    97% 10%,
    98% 35%,
    96% 90%,
    85% 96%,
    12% 93%,
    2% 96%,
    4% 88%
  );
}
.funky-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 2px);
  background-size: 6px 6px;
  opacity: 0.15;
  pointer-events: none;
}
.funky-arrow {
  position: absolute;
  top: -72px;
  left: 48%;
  transform: translateX(-29%) rotate(-22deg);
  width: 159px;
  height: 120px;
  z-index: 1;
  overflow: visible;
}
.funky-arrow path,
.funky-arrow polyline {
  fill: none;
  stroke: #0ba09a;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.results-grid {
  row-gap: 30px;
}
.result-item {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  margin-bottom: 25px;
}
.preview-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #dbeeee;
  font-size: 14px;
  line-height: 1.65;
  transition: max-height 0.3s ease;
}
.result-card.expanded .preview-text {
  -webkit-line-clamp: unset;
}
.read-more-btn {
  background: transparent;
  border: none;
  color: #6deed1;
  cursor: pointer;
  font-weight: 500;
  padding: 0;
  margin-top: 8px;
  font-size: 12px;
}
.read-more-btn:hover {
  text-decoration: underline;
}
.load-more-btn {
  background: transparent;
  border: 1px solid #1de9b6;
  color: #1de9b6;
  padding: 12px 34px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
}
.load-more-btn:hover {
  background: #1de9b6;
  color: #003333;
  box-shadow: 0 0 20px rgba(29, 233, 182, 0.45);
}
.results-tabs {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overflow-y: visible;
}
.results-tabs::-webkit-scrollbar {
  display: none;
}
.result-filter-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}
.result-filter-tabs .tab-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}
.result-filter-tabs .tab-btn:hover {
  background: rgba(31, 111, 100, 0.35);
  border-color: #1f6f64;
}
.result-filter-tabs .tab-btn.active {
  background: #1f6f64;
  border-color: #1f6f64;
  color: #ffffff;
}
.testimonial-item {
  display: none;
}
.contact-main {
  background: radial-gradient(
      circle at top left,
      rgba(29, 233, 182, 0.1),
      transparent 45%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(29, 233, 182, 0.06),
      transparent 50%
    ),
    linear-gradient(180deg, #071818 0%, #050f0f 100%);
}
.career-section {
  background: radial-gradient(
      circle at top,
      rgba(29, 233, 182, 0.08),
      transparent 55%
    ),
    linear-gradient(180deg, #071515, #050f0f);
  color: #e9fdf9;
  font-family: "Inter", sans-serif;
}
.career-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tab-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}
.tab-btn.active {
  background: #1f6f64;
}
.tab-btn:hover {
  background: rgba(31, 111, 100, 0.35);
}
.job-card {
  background: radial-gradient(
      circle at top left,
      rgba(30, 199, 182, 0.18),
      transparent 55%
    ),
    linear-gradient(180deg, #153d39, #0b2623);
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 24px;
  border-left: 4px solid #1ec7b6;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}
.job-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.job-tags span {
  background: #2c5551;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}
.job-desc {
  color: #cdeeee;
}
.job-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.job-actions .btn {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.view-btn {
  background: transparent;
  color: #1ec7b6;
  border: 1px solid rgba(30, 199, 182, 0.4);
  border-radius: 30px;
  padding: 6px 18px;
}
.view-btn:hover {
  background: rgba(30, 199, 182, 0.1);
  border: 1px solid #fff;
}
.apply-btn {
  background: linear-gradient(90deg, #1ec7b6, #17bba5);
  color: #002;
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
}
.job-details {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 16px;
}
.job-details ul {
  padding-left: 18px;
}
.job-details ul li {
  font-size: 14px;
  line-height: 28px;
}
.apply-box {
  background: #fff;
  color: #111;
  padding: 30px;
  border-radius: 20px;
  position: sticky;
  top: 30px;
}
.apply-box h4 {
  text-align: center;
  font-size: 40px;
}
.submit-btn {
  background: linear-gradient(90deg, #1ec7b6, #17bba5);
  border: none;
  color: #002;
  font-weight: 600;
  border-radius: 12px;
}
.submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(30, 199, 182, 0.5);
}
@media (prefers-reduced-motion: no-preference) {
  .job-card,
  .centre-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
  }
  .job-card:nth-child(1),
  .centre-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  .job-card:nth-child(2),
  .centre-item:nth-child(2) {
    animation-delay: 0.3s;
  }
  .job-card:nth-child(3),
  .centre-item:nth-child(3) {
    animation-delay: 0.5s;
  }
  .job-card:nth-child(4),
  .centre-item:nth-child(4) {
    animation-delay: 0.7s;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-career {
  background: radial-gradient(circle at top, #0f2c2a, #000);
}
.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  max-width: 1100px;
}
.contact-option {
  background: #123d3a;
  color: #fff;
  border-radius: 14px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  gap: 12px;
  transition: transform 0.3s ease;
}
.contact-option i {
  font-size: 34px;
  color: #22e0c4;
  line-height: 1;
}
.contact-option span {
  font-size: 14px;
}
.contact-option:hover {
  transform: translateY(-5px);
}
.centre-section {
  background: radial-gradient(circle at top, #0f2c2a, #000);
}
.centre-card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 54, 0.95),
    rgba(12, 30, 28, 0.95)
  );
  border-radius: 18px;
  padding: 16px;
  color: #fff;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(34, 224, 196, 0.25);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.centre-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(34, 224, 196, 0.15),
    transparent 60%
  );
  pointer-events: none;
}
@media (hover: hover) {
  .centre-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }
}
.centre-card .main-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}
.thumbs {
  display: flex;
  gap: 8px;
  margin: 10px 0 12px;
}
.thumbs img {
  width: 50px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.thumbs img:hover,
.thumbs img.active {
  opacity: 1;
  border-color: #22e0c4;
  transform: scale(1.05);
}
.centre-card h5 {
  margin-top: 10px;
}
.direction-link {
  color: #22e0c4;
  font-size: 14px;
  text-decoration: underline;
}
.clipped-card {
  clip-path: polygon(0 0, 92% 0, 100% 24%, 100% 100%, 0 100%);
}
.how-works-section {
  background: radial-gradient(circle at top, #0f2c2a, #000);
}
.how-desc {
  max-width: 840px;
  font-size: 18px;
  color: #fff;
}
.how-card {
  background: rgba(20, 60, 58, 0.9);
  border: 1px solid rgba(63, 224, 208, 0.35);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.how-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(63, 224, 208, 0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.how-card:hover::before {
  opacity: 1;
}
.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.how-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  transition: transform 0.4s ease;
}
.how-card:hover .how-icon {
  transform: scale(1.12);
}
.how-card h5 {
  color: #3fe0d0;
  font-weight: 600;
  margin-bottom: 12px;
}
.how-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.mentor-grid {
  margin-top: 1rem;
}
.mentor-section-header {
  padding: 4rem 0 2.5rem;
  background: radial-gradient(
      120% 120% at 5% 0%,
      rgba(79, 227, 193, 0.12),
      transparent 40%
    ),
    linear-gradient(180deg, #071716, #051211);
}
.mentor-card {
  position: relative;
  border-radius: 18px;
  padding: 1.6rem;
  background: radial-gradient(
      120% 120% at 10% 10%,
      rgba(79, 227, 193, 0.12),
      transparent 40%
    ),
    linear-gradient(180deg, #0c2624, #081b1a);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.mentor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(120deg, #4fe3c1, transparent 40%, #4fe3c1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}
.mentor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}
.mentor-card-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.mentor-img-content {
  width: 260px;
  height: 340px;
  border-radius: 18px;
  object-fit: cover;
  background: #0f2f2b;
  box-shadow: none;
  position: relative;
}
.mentor-card:hover .mentor-img {
  transform: translateY(-4px) scale(1.03);
}
.mentor-name {
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 0.2rem;
}
.mentor-qual {
  font-size: 0.82rem;
  color: #6ee7d0;
  margin-bottom: 0.85rem;
}
.mentor-points li {
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
  padding-left: 1.25rem;
  position: relative;
  opacity: 0.92;
}
.mentor-points li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: #4fe3c1;
  font-size: 0.7rem;
}
.mentor-btn {
  background: linear-gradient(135deg, #22e3b6, #14b8a6);
  color: #042f2c;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  border: none;
  box-shadow: 0 6px 16px rgba(20, 184, 166, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mentor-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(20, 184, 166, 0.45);
  color: #042f2c;
}
.mentor-card.mentor-card-outer {
  background: #173c38;
  border-radius: 28px;
  padding: 1.8rem 2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.mentor-card.mentor-card-outer .mentor-card-inner {
  align-items: flex-start;
  gap: 3rem;
}
.mentor-card.mentor-card-outer .mentor-img {
  width: 260px;
  height: 340px;
  border-radius: 18px;
  object-fit: cover;
  background: #0f2f2b;
  box-shadow: none;
}
.mentor-points {
  list-style-type: none;
}
.mentor-card.mentor-card-outer .mentor-name {
  font-size: 18px;
  font-weight: 600;
}
.mentor-card.mentor-card-outer .mentor-qual {
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 1.6rem;
}
.mentor-card.mentor-card-outer .mentor-points li {
  font-size: 14px;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.mentor-card.mentor-card-outer .mentor-points li::before {
  content: "»";
  font-size: 1.3rem;
  left: 0;
  color: #3ee4c2;
  line-height: 20px;
}
.swiper3-pagination {
  bottom: -30px !important;
}
.recruiting-sector-section {
  background: radial-gradient(
      1200px 600px at top center,
      rgba(72, 255, 220, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #0e1917, #0b1412);
}
.sector-card {
  background: #1f3f3b;
  border: 1px solid rgba(72, 255, 220, 0.35);
  padding: 14px;
  height: 100%;
  text-align: center;
  border-radius: 14px;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}
.sector-clip {
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%);
}
.sector-card img {
  background: #ffffff;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 14px;
  transition: transform 0.35s ease;
}
.sector-card h6 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}
.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  border-color: #48ffdc;
}
.sector-card:hover img {
  transform: scale(1.05);
}
.sector-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(72, 255, 220, 0.55), transparent);
  pointer-events: none;
}
.batchSwiper .swiper-slide {
  width: auto !important;
}
.batchSwiper .swiper-wrapper {
  box-sizing: border-box;
}
.batchSwiper .swiper-slide {
  width: calc((100% - 40px) / 3) !important;
}
.batchSwiper .timer-card {
  background: #022d26f5;
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: all 0.4s ease;
  min-height: 420px;
  text-align: center;
}
.batchSwiper .timer-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(120deg, #32dbc6, transparent, #32dbc6);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s ease;
}
.batchSwiper .timer-card:hover::before {
  opacity: 1;
}
.batchSwiper .timer-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.batchSwiper .timer-card .status {
  display: inline-block;
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.batchSwiper .countdown-timer div {
  background: rgba(255, 255, 255, 0.08);
  padding: 15px 18px;
  border-radius: 14px;
  min-width: 70px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.batchSwiper .countdown-timer span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #32dbc6;
}
.batchSwiper .countdown-timer small {
  font-size: 11px;
  opacity: 0.7;
}
.batch-watermark {
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-size: 120px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
.terms-card {
  background: radial-gradient(
    120% 120% at 0% 0%,
    #235d56 0%,
    #0b0f0f 55%,
    #174242 100%
  );
  border: 1px solid rgba(0, 255, 200, 0.18);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.terms-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.terms-header h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin: 0;
  font-weight: 600;
}
.terms-header p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: #b6c6c3;
}
.chevron {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.collapsed .chevron {
  transform: rotate(180deg);
}
.terms-body {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
}
.terms-body ul li a,
.terms-body ul li {
  color: #32dbc6;
}
.terms-body p {
  margin-bottom: 0.85rem;
  color: #dbe7e5;
}
.terms-body strong {
  color: #ffffff;
  font-weight: 600;
}
.academic-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
}
.academic-subtitle {
  color: #b7d6d1;
  font-size: 14px;
  max-width: 720px;
}
.academic-pill {
  background: linear-gradient(
    180deg,
    rgba(34, 86, 78, 0.95),
    rgba(24, 62, 56, 0.95)
  );
  border: 1px solid rgba(72, 255, 220, 0.4);
  color: #48ffdc;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 14px;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: default;
}
.academic-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-color: #48ffdc;
}
.mentor-video-content h2 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 18px;
}
.mentor-video-content p {
  color: #c7ded9;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 520px;
}
.mentor-video-content .highlight {
  color: #4ff0d2;
  font-weight: 500;
}
.mentor-video-card {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}
.mentor-video-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.play-btn-t {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  top: 20%;
}
.play-btn-t:hover {
  transform: scale(1.1);
  background: rgba(79, 240, 210, 0.9);
  color: #001413;
}
.experience-wrapper {
  background: #173b37;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(79, 240, 210, 0.35);
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}
.experience-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(79, 240, 210, 0.18),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.experience-wrapper:hover {
  transform: translateY(-6px);
}
.experience-wrapper:hover::before {
  opacity: 1;
}
.experience-image {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: #0e2623;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.exp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.experience-wrapper:hover .experience-image img {
  transform: scale(1.06);
}
.experience-content h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}
.experience-wrapper:hover h2 {
  transform: translateX(4px);
}
.experience-content p {
  color: #cfe7e2;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 560px;
}
.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.experience-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #e7f6f2;
  font-size: 14px;
  opacity: 0;
  transform: translateY(8px);
  animation: listFadeUp 0.6s forwards;
}
.experience-content {
  padding-left: 12px;
}
.experience-list li:nth-child(1) {
  animation-delay: 0.15s;
}
.experience-list li:nth-child(2) {
  animation-delay: 0.3s;
}
.experience-list li:nth-child(3) {
  animation-delay: 0.45s;
}
.experience-list li:nth-child(4) {
  animation-delay: 0.6s;
}
.experience-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4ff0d2;
  color: #06201b;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes listFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .experience-wrapper,
  .experience-image img,
  .experience-list li,
  .subject-card,
  .subject-card::before {
    transition: none;
    animation: none;
    transform: none;
  }
}
.section-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-subtitle {
  color: #b9d8d2;
  max-width: 520px;
  margin-bottom: 48px;
}
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.subject-card {
  position: relative;
  background: #1c3f3a;
  padding: 28px 26px 32px;
  border: 1px solid rgba(79, 240, 210, 0.45);
  border-radius: 16px;
  transition: all 0.4s ease;
}
.subject-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(79, 240, 210, 0.22),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.subject-card:hover {
  transform: translateY(-8px);
}
.subject-card:hover::before {
  opacity: 1;
}
.subject-card h3 {
  color: #4ff0d2;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.subject-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #d8f0eb;
}
.teaching-section {
  background: radial-gradient(
      circle at top left,
      rgba(79, 240, 210, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #0b1312, #0a1110);
  padding: 90px 0;
}
.teaching-card {
  background: #173b37;
  border-radius: 22px;
  padding: 56px;
  border: 1px solid rgba(79, 240, 210, 0.35);
  position: relative;
  overflow: hidden;
}
.teaching-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(79, 240, 210, 0.18),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.teaching-card:hover::before {
  opacity: 1;
}
.teaching-title {
  font-size: 34px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}
.teaching-desc {
  color: #cfe7e2;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 26px;
}
.teaching-stats {
  display: flex;
  gap: 28px;
}
.stat span {
  font-size: 32px;
  font-weight: 600;
  color: #4ff0d2;
}
.stat p {
  margin: 0;
  font-size: 13px;
  color: #b8dad4;
}
.teaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}
.teach-item {
  background: rgba(79, 240, 210, 0.08);
  border: 1px solid rgba(79, 240, 210, 0.35);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  color: #e8f6f2;
  position: relative;
  transition: all 0.35s ease;
  display: flex;
}
.teach-item::before {
  content: "✓";
  margin-right: 10px;
  color: #4ff0d2;
  font-weight: 700;
}
.teach-item:hover {
  transform: translateY(-4px);
  background: rgba(79, 240, 210, 0.14);
}
.teaching-note {
  font-size: 13px;
  color: #b9dad3;
  line-height: 1.6;
  max-width: 560px;
}
.hero-alt-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.profile-surface-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(245, 252, 251, 0.92)
  );
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 22px;
  height: 100%;
  border: 1px solid rgba(34, 224, 196, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transition: all 0.35s ease;
}
.profile-surface-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(34, 224, 196, 0.35) inset;
}
.profile-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.profile-top img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}
.profile-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}
.profile-program {
  margin: 2px 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  color: #000;
}
.profile-meta {
  border-top: 1px dashed rgba(15, 23, 42, 0.15);
  padding-top: 14px;
}
.profile-meta span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}
.profile-meta p {
  margin: 6px 0 10px;
  font-size: 0.85rem;
  color: #0f172a;
}
.profile-link {
  margin-top: 16px;
}
.profile-link a {
  font-size: 14px;
  color: #00695e;
  font-weight: 700;
  text-decoration: none;
}
.profile-link a:hover {
  text-decoration: underline;
}
.company-meta {
  position: relative;
  margin-top: 16px;
  padding: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(240, 248, 247, 0.9)
  );
  border-radius: 14px;
  border: 1px solid rgba(11, 160, 154, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.company-meta::before {
  content: "Placed at";
  position: absolute;
  top: -9px;
  left: 14px;
  padding: 3px 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: #00695e;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
.company-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
}
.company-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.28) inset;
}
.company-chip img {
  max-height: 50px;
  max-width: 100px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}
.centre-card:hover .company-chip,
.mentor-card:hover .company-chip,
.profile-card:hover .company-chip {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}
.profile-surface-card:hover .company-meta {
  box-shadow: 0 14px 34px rgba(11, 160, 154, 0.25),
    inset 0 0 0 1px rgba(11, 160, 154, 0.45);
}
.placement-stats {
  background: radial-gradient(
      1200px 300px at top center,
      rgba(11, 160, 154, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #0b1f1e, #071716);
  padding: 70px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item {
  position: relative;
}
.stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  color: #e9ffff;
  letter-spacing: 0.5px;
}
.stat-item h3 .count {
  color: #0ba09a;
}
.stat-item p {
  margin-top: 8px;
  font-size: 17px;
  color: #cfeeed;
  line-height: 1.4;
}
.stat-item p span {
  font-size: 14px;
  opacity: 0.75;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 18%;
  height: 64%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(11, 160, 154, 0.35),
    transparent
  );
}
.image-highlight-section {
  padding: clamp(56px, 8vw, 70px) 0;
  background: #ffffff;
}
.image-highlight-wrap {
  position: relative;
  max-width: 1100px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.image-highlight-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #ffffff;
  animation: roadmapReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.image-highlight-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    circle at top center,
    rgba(11, 160, 154, 0.18),
    transparent 65%
  );
  opacity: 0;
  animation: glowFade 1.2s ease forwards;
  animation-delay: 0.4s;
}
@media (hover: hover) {
  .image-highlight-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.18),
      0 0 0 1px rgba(11, 160, 154, 0.25);
  }
  .image-highlight-wrap:hover img {
    transform: scale(1.015);
  }
}
@keyframes roadmapReveal {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes glowFade {
  to {
    opacity: 1;
  }
}
.placement-footprint-section {
  padding: clamp(60px, 8vw, 70px) 0;
}
.footprint-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(15, 51, 51, 0.95),
    rgba(9, 32, 32, 0.95)
  );
  border-radius: 26px;
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.footprint-sub {
  max-width: 420px;
  margin-bottom: 22px;
  color: rgba(234, 255, 251, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}
.footprint-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at left center,
    rgba(11, 160, 154, 0.25),
    transparent 60%
  );
  pointer-events: none;
}
.footprint-content::before {
  content: "";
  position: absolute;
  inset: -40px -80px -40px -40px;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(11, 160, 154, 0.18),
      transparent 60%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(255, 159, 28, 0.12),
      transparent 55%
    );
}
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.city-grid span {
  padding: 8px 14px;
  font-size: 0.85rem;
  color: #eafffb;
  background: rgba(11, 160, 154, 0.14);
  border: 1px solid rgba(11, 160, 154, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease;
  cursor: default;
}
.city-grid span:hover {
  transform: translateY(-2px);
  background: rgba(11, 160, 154, 0.25);
}
.footprint-map {
  position: relative;
  max-width: 450px;
  margin-left: auto;
}
.footprint-map img {
  width: 100%;
  height: auto;
  display: block;
}
.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ff9f1c;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 159, 28, 0.25),
    0 0 18px rgba(255, 159, 28, 0.7);
  animation: pulse 2.5s infinite ease-in-out;
}
.map-dot {
  cursor: pointer;
}
.map-dot::after {
  content: attr(data-city);
  position: absolute;
  bottom: 160%;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  background: #081c1b;
  color: #eafffb;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.map-dot::before {
  content: "";
  position: absolute;
  bottom: 135%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #081c1b;
  opacity: 0;
  transition: 0.25s ease;
}
.map-dot:hover::after,
.map-dot:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.d1 {
  top: 29%;
  left: 32%;
}
.d2 {
  top: 60%;
  left: 20%;
}
.d3 {
  top: 48%;
  left: 64%;
}
.d4 {
  top: 80%;
  left: 39%;
}
.d5 {
  top: 79%;
  left: 32%;
}
.d6 {
  top: 64%;
  left: 38%;
}
.d7 {
  top: 62%;
  left: 26%;
}
.d8 {
  top: 46%;
  left: 18%;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.5),
      0 0 18px rgba(255, 159, 28, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 159, 28, 0),
      0 0 24px rgba(255, 159, 28, 0.9);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 159, 28, 0), 0 0 18px rgba(255, 159, 28, 0.7);
  }
}
#modalImg {
  max-height: 90vh;
}
.award-modal-content {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  position: relative;
}
.award-modal-body img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}
.awardSwiper {
  padding: 10px 40px;
}
.awardSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.awardSwiper img {
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #f6f6f6;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}
.award-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background-color: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.award-img-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}
.award-img-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.award-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.award-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.award-img-wrapper:hover img {
  transform: scale(1.05);
}
.award-img-wrapper:hover .award-overlay {
  opacity: 1;
}
.eco-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.eco-big {
  grid-row: span 2;
}
.eco-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.gallery-header {
  text-align: center;
  padding: 40px 0 20px;
}
.gallery-header h2 {
  font-weight: 700;
}
.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}
.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 12px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
}
.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}
.floating-back {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(to right, #134e5e, #71b280);
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  transition: 0.3s;
}
.floating-back i {
  font-size: 20px;
}
.floating-back:hover {
  background: linear-gradient(to right, #04222b, #46a589);
}
.corp-training .section-eyebrow {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #efaf19;
}
.corp-training .main-title {
  font-weight: 700;
  color: #fff;
}
.corp-training .info-box {
  background: #f8f9fa;
  border-radius: 12px;
  transition: 0.3s ease;
  border: 1px solid #eee;
  color: #fff;
}
.corp-training .info-box h6 {
  color: #000;
}
.corp-training .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.section-dark {
  background-color: #0f172a;
}
.delivery-section {
  background-color: #0f172a;
  color: #fff;
}
.delivery-timeline {
  border-left: 2px solid #efaf19;
  padding-left: 30px;
}
.timeline-item {
  margin-bottom: 30px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 5px;
  width: 14px;
  height: 14px;
  background-color: #efaf19;
  border-radius: 50%;
}
.program-box-dark {
  background-color: #193738;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 12px;
  transition: all 0.3s ease;
  color: #fff;
}
.program-box-dark:hover {
  transform: translateY(-6px);
  border-color: #b38b2e;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.program-box-dark h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.section-dark-alt {
  background-color: #fff;
}
.process-box {
  background-color: #1f4644;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
  color: #fff;
}
.process-box:hover {
  transform: translateY(-6px);
  border-color: #b38b2e;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.process-number {
  font-size: 28px;
  font-weight: 700;
  color: #efaf19;
}
.impact-box:hover {
  transform: translateY(-6px);
  border-color: #b38b2e;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.impact-section {
  background: linear-gradient(135deg, #1e293b, #0f172a);
}
.impact-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #b38b2e;
}
.video-thumb-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.video-thumb-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.video-thumb-card img {
  transition: transform 0.5s ease;
}
.video-thumb-card:hover img {
  transform: scale(1.08);
}
.thumbplay-btn {
  position: absolute;
  width: 55px;
  height: 55px;
  background: #00c9be;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.thumbplay-btn::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 18px;
  border-left: 18px solid #000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.thumbplay-btn::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid #00c9be;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.rankers-section {
  background: #022424;
  color: #fff;
}
.ranker-card {
  background: linear-gradient(145deg, #041212, #071b1a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.ranker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}
.ranker-img {
  width: 200px;
  margin: auto;
  margin-bottom: 20px;
}
.ranker-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.ranker-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: 0.3px;
}
.ranker-marks {
  display: inline-block;
  background: linear-gradient(135deg, #1f7a6b, #26a69a);
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}
.ranker-course {
  color: #d4af37;
  font-weight: 600;
  font-size: 17px;
  margin-top: 5px;
}
.ranker-attempt {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 6px;
}
.ranker-card:nth-child(-n + 3) {
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}
.world-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #d4af37, #f5d77a);
  color: #111;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.section-title {
  color: #fff;
  font-weight: 700;
}
.section-title {
  color: #fff;
  font-weight: 700;
}
.brochure-card {
  display: block;
  text-align: center;
  background: rgb(50 101 105 / 28%);
  border: 1px solid rgb(28 132 126 / 53%);
  padding: 26px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}
.brochure-card img {
  height: 46px;
  margin-bottom: 12px;
  opacity: 0.9;
  transition: all 0.35s ease;
}
.brochure-card h6 {
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 15px;
}
.brochure-card span {
  font-size: 12px;
  color: #a7c6c6;
  letter-spacing: 0.3px;
}
.brochure-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}
.brochure-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}
.brochure-card:hover span {
  color: #d6e8e8;
}
.reward-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}
.reward-desc {
  color: #b7d7d7;
  margin-bottom: 25px;
}
.reward-amount {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 25px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}
.reward-amount span {
  display: block;
  font-size: 14px;
  opacity: 0.8;
}
.reward-amount h3 {
  color: #00ffd6;
  font-size: 32px;
  margin: 5px 0 0;
}
.reward-amount:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.reward-img {
  max-width: 390px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
#galleryTabs {
  border-bottom: none;
  gap: 10px;
}
#galleryTabs .nav-link {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 30px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
#galleryTabs .nav-link:hover {
  background: rgba(31, 111, 100, 0.35);
  color: #fff;
}
#galleryTabs .nav-link.active {
  background: #1f6f64;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.reviews-section {
  background: #000;
  padding: 60px 20px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
}


.greviews-section .swiper {
  padding: 10px 4px 40px;
}

.greviews-section .swiper {
  padding: 10px 4px 40px;
}

.review-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #e8eaed;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 270px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.review-card.expanded {
  height: auto;
}

.review-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 1px;
}

.google-logo {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

.review-card-body {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.review-card.expanded .review-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.show-more-btn {
  background: none;
  border: none;
  padding: 5px 0 0;
  color: #0f6e56;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  /*display: none;*/
  text-align: left;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.show-more-btn.visible {
  display: inline-block;
}

.show-more-btn:hover {
  color: #32dbc6;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
  margin-top: auto;
}

.review-user h6 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}

.review-user small {
  color: #9aa0a6;
  font-size: 11px;
  display: block;
}

.review-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  flex-shrink: 0;
}
  .tieups-section {
            color:#fff;
        }
.tieups-section .subtitle{
     color:#fff;
}
        /* ── Section heading ── */
        .tieups-section .section-title {
            font-size: 42px;
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 50px;
        }

        /* ── MOU Card ── */
        .mou-card {
            border-radius: 20px 115px 20px 20px;
             background: #f5f5f5;
clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 0 100%);
overflow: hidden;
height: 100%;
display: flex;
flex-direction: column;
        }

        .mou-card .mou-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            display: block;
        }

        .mou-card .mou-body {
            padding: 24px 20px 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
        }

        .mou-card .mou-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            text-align: center;
            line-height: 1.35;
            margin-bottom: 24px;
        }

        /* ── Logo row ── */
        .mou-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-top: auto;
            width: 100%;
            padding: 0 12px;
        }

        .mou-logos .logo-item {
            max-height: 52px;
            width: auto;
            max-width: 160px;
            object-fit: contain;
        }

        .mou-logos .logo-badge {
            max-height: 56px;
            width: auto;
            max-width: 180px;
            object-fit: contain;
            background: #005e32;
            border-radius: 10px;
            padding: 8px 14px;
        }

        .mou-logos .logo-white-bg {
            max-height: 56px;
            width: auto;
            max-width: 180px;
            object-fit: contain;
            background: #ffffff;
            border-radius: 10px;
            padding: 6px 12px;
        }
        em.em-bg-w{
    
   background: linear-gradient(110deg, #54c3b5 0%, #4b8b5a 60%, #000000 100%);
    background-clip: text;
}
.ez-roadmap .ez-h{
    font-size: clamp(20px, 4vw, 45px);
}
.ez-roadmap p{
    font-size: clamp(14px, 2vw, 17px) !important;
        font-weight: 400;
        color: #8b8b8b !important;
}
.ez-roadmap .ez-section-desc strong, .placement-section .ez-section-desc strong{
    color: rgb(0 0 0 / 90%);
}
.ez-brochure-card{
    background: #fff;
    border-radius: 50px;
    height: 100%;
}
.ez-brochure-card p {
    font-size: 13px;
    color: #2e2e2e;
    font-weight: 300;
}
.hz-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 40px;
  background: #0a1413;
}
.hz-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,178,161,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hz-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,178,161,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* breadcrumb */
.hz-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: .78rem;
  color: #7a9ab0;
}
.hz-breadcrumb a {
  color: #7a9ab0;
  text-decoration: none;
  transition: color .2s;
}
.hz-breadcrumb a:hover { color: #25b2a1; }
.hz-breadcrumb .hz-sep {
  color: #3a4f62;
  font-size: .7rem;
}
.hz-breadcrumb .hz-current { color: #25b2a1; }

/* pill badge */
.hz-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,178,161,.1);
  border: 1px solid rgba(37,178,161,.25);
  color: #25b2a1;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hz-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25b2a1;
  display: inline-block;
  animation: hz-pulse 1.8s ease-in-out infinite;
}
@keyframes hz-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

/* heading */
.hz-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.hz-title em {
  font-style: normal;
  color: #25b2a1;
}

/* gold badge row */
.hz-gold-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hz-gold-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,.08);
  border: 1px solid rgba(245,200,66,.2);
  border-radius: 10px;
  padding: 6px 14px 6px 8px;
}
.hz-gold-badge span {
  font-size: .8rem;
  font-weight: 600;
  color: #f5c842;
}

/* stats strip */
.hz-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(37,178,161,.15);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0;
  max-width: 520px;
}
.hz-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  flex: 1;
}
.hz-stat-item + .hz-stat-item {
  border-left: 1px solid rgba(255,255,255,.06);
}
.hz-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(37,178,161,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hz-stat-icon img { width: 18px; height: 18px; }
.hz-stat-label {
  font-size: .68rem;
  color: #7a9ab0;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  margin-bottom: 2px;
}
.hz-stat-value {
  font-size: 11px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
}

/* video side */
.hz-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  border: 1px solid rgba(37,178,161,.15);
}
.hz-video-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.hz-video-trigger {
  display: block;
  position: relative;
  text-decoration: none;
}
.hz-video-trigger::before {
  content: '';
  position: absolute;
  
  background: rgba(11,21,32,.35);
  transition: background .3s;
  z-index: 1;
  border-radius: 20px;
}
.hz-video-trigger:hover::before { background: rgba(11,21,32,.2); }


.hz-video-trigger:hover .hz-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #1a8a7c;
}

/* corner accent */
.hz-corner-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background:rgb(1 68 60 / 90%);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 3;
}
.hz-video-trigger .mob-img{display:none !important;}
.ov-section {
  background: #111b27;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.ov-section::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37,178,161,.08) 0%, transparent 70%);
  pointer-events: none;
}
.ov-pill {
  display: inline-block;
  background: rgba(37,178,161,.1);
  border: 1px solid rgba(37,178,161,.25);
  color: #25b2a1;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.ov-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -.02em;
}
.ov-title em { color: #25b2a1; font-style: normal; }
.ov-desc {
  font-size: .88rem;
  color: #a1bdd1;
  line-height: 1.75;
  margin: 0 0 28px;
}
.ov-desc strong { color: #d0dce8; }
.ov-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,178,161,.06);
  border: 1px solid rgba(37,178,161,.15);
  border-radius: 12px;
  padding: 14px 18px;
}
.ov-badge span { font-size: .8rem; color: #d0dce8; font-weight: 500; }
.ov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ov-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(37,178,161,.3);
  border-radius: 14px;
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, background .25s;
  display: flex;              /* changed — horizontal layout */
  align-items: flex-start;
  gap: 16px;
}
.ov-card:hover {
  border-color: rgba(37,178,161,.6);
  background: rgba(37,178,161,.05);
}
.ov-card::before {
  display: none;              /* remove left border strip — not needed in horizontal */
}
.ov-card--highlight {
  background: rgba(37,178,161,.08);
  border-color: rgba(37,178,161,.5);
}

/* big teal number on left */
.ov-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #25b2a1;
  letter-spacing: -.02em;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

/* text block on right */
.ov-text { display: flex; flex-direction: column; }

.ov-val {
  font-size: .95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}
.ov-sub {
  font-size: .73rem;
  color: #7a9ab0;
  line-height: 1.4;
}
.ov-grid .ov-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.eli-section { background: #111b27; border-radius: 16px; padding: 56px 48px; }
.eli-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.eli-img-wrap { border-radius: 20px; overflow: hidden; border: 1px solid rgba(37,178,161,.2); background: linear-gradient(135deg,#d4ede8,#c2e4dc); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.eli-img-placeholder { text-align: center; color: rgba(37,178,161,.45); font-size: 13px; font-weight: 600; }
.eli-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(37,178,161,.1); border: 1px solid rgba(37,178,161,.25); color: #25b2a1; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 16px; }
.eli-dot { width: 7px; height: 7px; border-radius: 50%; background: #25b2a1; display: inline-block; }
.eli-title { font-size: 26px; font-weight: 800; line-height: 1.2; color: #ffffff; margin-bottom: 10px; letter-spacing: -.02em; }
.eli-title em { font-style: normal; color: #25b2a1; background: rgba(37,178,161,.1); padding: 0 6px; border-radius: 6px; }
.eli-subtitle { font-size: 13px; color: #7a9ab0; line-height: 1.65; margin-bottom: 20px; }
.eli-stat-strip { display: flex; gap: 16px; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,.08); }
.eli-stat-val { font-size: 20px; font-weight: 800; color: #25b2a1; line-height: 1; }
.eli-stat-lbl { font-size: 11px; color: #777; font-weight: 500; margin-top: 3px; }
.eli-stat-divider { width: 1px; background: rgba(0,0,0,.1); align-self: stretch; }
.eli-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; list-style: none; margin-bottom: 24px;padding-left:0; }
.eli-item { display: flex; align-items: center; gap: 10px; background: rgba(37,178,161,.06); border: 1px solid rgba(37,178,161,.18); border-radius: 10px; padding: 11px 13px; }
.eli-item:last-child { grid-column: 1 / -1; }
.eli-check { width: 26px; height: 26px; border-radius: 50%; background: rgba(37,178,161,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.eli-item-text { font-size: 12.5px; font-weight: 600; color: #d0dce8; }
.eli-cta { display: inline-block; background: #25b2a1; color: #fff; font-size: 13px; font-weight: 700; padding: 13px 30px; border-radius: 999px; text-decoration: none; margin-bottom: 16px; }
.eli-note { font-size: 11.5px; color: #7a9ab0; font-style: italic; line-height: 1.6; padding-top: 12px;border-top-color: rgba(255,255,255,.08); }
.eli-note a { color: #25b2a1; }
.lms-section {
  background: #111b27;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.lms-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,178,161,.08) 0%, transparent 70%);
  pointer-events: none;
}
.lms-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,178,161,.05) 0%, transparent 70%);
  pointer-events: none;
}


/* header */
.lms-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,178,161,.1);
  border: 1px solid rgba(37,178,161,.25);
  color: #25b2a1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.lms-dot { width: 6px; height: 6px; border-radius: 50%; background: #25b2a1; display: inline-block; }
.lms-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.lms-title em { color: #25b2a1; font-style: normal; }
.lms-desc { font-size: .9rem; color: #7a9ab0; line-height: 1.7; margin-bottom: 0; }

/* grid */
.lms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 52px;
}

/* image side */
.lms-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.lms-img-inner {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(37,178,161,.15);
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  background: #16232f;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lms-img-inner img { width: 100%; height: auto; display: block; }
.lms-img-placeholder { text-align: center; color: rgba(37,178,161,.35); font-size: 12px; font-weight: 600; }

/* floating platform badges */
.lms-platform-strip {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(11,21,32,.92);
  border: 1px solid rgba(37,178,161,.2);
  border-radius: 14px;
  padding: 10px 16px;
  white-space: nowrap;
}
.lms-platform {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #d0dce8;
}
.lms-platform + .lms-platform {
  border-left: 1px solid rgba(255,255,255,.08);
  padding-left: 8px;
  margin-left: 0;
}
.lms-platform svg { flex-shrink: 0; }

/* right side */
.lms-right-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-align: left;
}
.lms-right-title em { color: #25b2a1; font-style: normal; }

/* feature list */
.lms-features { list-style: none; padding: 0; margin: 0 0 32px; }
.lms-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.lms-feature:last-child { border-bottom: none; }
.lms-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(37,178,161,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.lms-feature-text { font-size: .84rem; color: #d0dce8; line-height: 1.55; }
.lms-feature-text strong { color: #fff; }

/* buttons */
.lms-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.lms-btn-primary {
  display: inline-block;
  background: #25b2a1;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: .03em;
  transition: background .2s;
}
.lms-btn-primary:hover { background: #1a8a7c; color: #fff; }
.lms-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(37,178,161,.25);
  color: #d0dce8;
  font-size: 12px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.lms-btn-outline:hover {
  border-color: rgba(37,178,161,.5);
  background: rgba(37,178,161,.08);
  color: #fff;
}
.lms-btn-outline img { width: 18px; height: 18px; object-fit: contain; }
.fnd-section { position: relative; overflow: hidden; }
.fnd-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,178,161,.06) 0%, transparent 70%);
  pointer-events: none;
}
.fnd-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(37,178,161,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* header */
.fnd-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.fnd-header .ez-h { margin-bottom: 12px; }
.fnd-header .ez-section-desc { max-width: 560px; margin: 0 auto 16px; }
.fnd-header .fnd-body {
  font-size: .88rem;
  color: #7a9ab0;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}
.fnd-header .fnd-body strong { color: #d0dce8; }

/* stat strip */
.fnd-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(37,178,161,.15);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 24px;
}
.fnd-stat {
  padding: 14px 28px;
  text-align: center;
}
.fnd-stat + .fnd-stat { border-left: 1px solid rgba(255,255,255,.06); }
.fnd-stat-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #25b2a1;
  line-height: 1;
  margin-bottom: 4px;
}
.fnd-stat-lbl {
  font-size: .68rem;
  color: #7a9ab0;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

/* cards grid */
.fnd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* card */
.fnd-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(37,178,161,.12);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.fnd-card:hover {
  border-color: rgba(37,178,161,.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.35);
}
.fnd-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #25b2a1, #1a8a7c);
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity .25s;
}
.fnd-card:hover::before { opacity: 1; }

/* image */
.fnd-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.fnd-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s;
}
.fnd-card:hover .fnd-img-wrap img { transform: scale(1.04); }

/* overlay on image */
.fnd-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(11,21,32,.85) 100%);
}

/* bottom info */
.fnd-info {
  padding: 18px 18px 20px;
  position: relative;
}
.fnd-name {
  font-size: .95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}
.fnd-role {
  font-size: .72rem;
  color: #25b2a1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.fnd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.fnd-tag {
  background: rgba(37,178,161,.1);
  border: 1px solid rgba(37,178,161,.2);
  color: #7a9ab0;
  font-size: .65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
}

/* glow floor */
.fnd-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: rgba(37,178,161,.08);
  filter: blur(16px);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.fnd-card:hover .fnd-glow { opacity: 1; }
.fnd-linkedin {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(10,102,194,.2);
  border: 1px solid rgba(10,102,194,.35);
  border-radius: 8px;
  color: #5ba4e5;
  font-size: .85rem;
  text-decoration: none;
  z-index: 2;
  transition: background .2s, border-color .2s, color .2s;
}
.fnd-linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
}
.rec-section {
  background: #091c1e;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.rec-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(37,178,161,.07) 0%, transparent 70%);
  pointer-events: none;
}
.rec-inner {
  display: grid;
  grid-template-columns: 420px 1px 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}

.rec-stat-strip {
  display: flex;
  margin-top: 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(37,178,161,.15);
  border-radius: 14px;
  overflow: hidden;
  max-width: 375px;
}
.rec-stat { padding: 14px 20px; flex: 1; }
.rec-stat + .rec-stat { border-left: 1px solid rgba(255,255,255,.06); }
.rec-stat-val { font-size: 1.2rem; font-weight: 800; color: #25b2a1; line-height: 1; margin-bottom: 3px; }
.rec-stat-lbl { font-size: .65rem; color: #afcadc; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

.rec-divider { background: rgba(255,255,255,.06); align-self: stretch; margin: 0 32px; width: 1px; }

.rec-marquee-rows { display: flex; flex-direction: column; gap: 12px; }

.rec-marquee-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.rec-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: rec-scroll 12s linear infinite;
}
.rec-marquee-track:hover { animation-play-state: paused; }
@keyframes rec-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.rec-marquee-track--reverse {
  animation: rec-scroll-rev 16s linear infinite;
}
@keyframes rec-scroll-rev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.rec-logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 12px 24px;
  margin: 0 7px;
  transition: background .2s, border-color .2s, transform .2s;
  flex-shrink: 0;
  min-width: 130px;
  height: 60px;
}
.rec-logo-pill:hover {
  background: rgba(37,178,161,.08);
  border-color: rgba(37,178,161,.25);
}
.rec-logo-pill img {
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  /*opacity: .6;*/
  transition: opacity .2s;
}
.rec-logo-pill:hover img { opacity: 1; }

/* fallback text if image doesn't load */
.rec-logo-pill img[src=""] ,
.rec-logo-pill img:not([src]) {
  display: none;
}
.acc-section { position: relative; overflow: hidden; }
.acc-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(37,178,161,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* grid */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* card */
.acc-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(37,178,161,.12);
  border-radius: 16px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;          /* centered */
  text-align: center;           /* centered */
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
}
.acc-card:hover {
  border-color: rgba(37,178,161,.35);
  background: rgba(37,178,161,.05);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.acc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #25b2a1, #1a8a7c);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity .25s;
}
.acc-card:hover::before { opacity: 1; }

/* icon — no box, large, centered with glow */
.acc-icon {
  width: 100%;
  height: auto;
  background: none;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  position: relative;
  flex-shrink: 0;
}
.acc-icon::after {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  background: rgba(37,178,161,.15);
  border-radius: 50%;
  filter: blur(22px);
  z-index: 0;
  transition: background .25s;
}
.acc-card:hover .acc-icon::after {
  background: rgba(37,178,161,.25);
}
.acc-icon img {
  width: auto;
  height: 80px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* wide card — override for horizontal layout */
.acc-card--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 24px;
}
.acc-card--wide .acc-text { flex: 1; }
.acc-card--wide .acc-icon {
  width: auto;
  flex-shrink: 0;
}
.acc-card--wide .acc-icon::after {
  width: 100px;
  height: 100px;
}
.acc-card--wide .acc-icon img {
  height: 72px;
}

/* tag */
.acc-tag {
  display: inline-block;
  background: rgba(37,178,161,.08);
  border: 1px solid rgba(37,178,161,.18);
  color: #25b2a1;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 10px;
  border-radius: 999px;
}
.acc-tag--gold { background: rgba(245,200,66,.08); border-color: rgba(245,200,66,.2); color: #f5c842; }
.acc-tag--award { background: rgba(168,85,247,.08); border-color: rgba(168,85,247,.2); color: #c084fc; }
.acc-tag--mou { background: rgba(59,130,246,.08); border-color: rgba(59,130,246,.2); color: #60a5fa; }

/* text */
.acc-title {
  font-size: .9rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin: 10px 0;
}
.acc-sub {
  font-size: .75rem;
  color: #7a9ab0;
  line-height: 1.5;
  margin: 0;
}
.pf-section {
  background: #0b2018;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pf-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Left */
.pf-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #25b2a1;
  margin-bottom: 18px;
}

.pf-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.pf-title em {
  font-style: normal;
  color: #25b2a1;
}

.pf-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 440px;
}

/* City tags */
.pf-city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.pf-city-grid span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(37,178,161,.4);
  color: #ffffff;
  font-size: .82rem;
  font-weight: 600;
  background: transparent;
  transition: background .2s, border-color .2s;
  cursor: default;
}
.pf-city-grid span:hover {
  background: rgba(37,178,161,.12);
  border-color: #25b2a1;
}
/* highlight active cities like screenshot */
.pf-city-grid span.pf-active {
  border-color: #25b2a1;
  background: rgba(37,178,161,.12);
  font-weight: 700;
}

/* Stat boxes */
.pf-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pf-stat-box {
  background: rgba(37,178,161,.06);
  border: 1px solid rgba(37,178,161,.15);
  border-radius: 14px;
  padding: 20px 18px;
}
.pf-stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}
.pf-stat-lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

/* Right - map */

.pf-map-wrap img { display: none; } /* hide old image if still in HTML */
.pf-map-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Map dots */
.pf-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25b2a1;
  box-shadow: 0 0 0 4px rgba(37,178,161,.25);
  cursor: default;
}
.pf-dot::after {
  content: attr(data-city);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  background: rgba(11,32,24,.7);
  padding: 2px 8px;
  border-radius: 999px;
}
/* pulse animation */
.pf-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(37,178,161,.5);
  animation: pf-pulse 2s ease-in-out infinite;
}
@keyframes pf-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* Dot positions — tweak these % values to match your map image */
.pf-dot.d1 { top: 20%; left: 52%; } /* Delhi NCR  */
.pf-dot.d2 { top: 51%; left: 30%; } /* Mumbai     */
.pf-dot.d3 { top: 30%; right: 14%; } /* Kolkata   */
.pf-dot.d4 { top: 74%; left: 48%; } /* Chennai    */
.pf-dot.d5 { top: 66%; left: 38%; } /* Bengaluru  */
.pf-dot.d6 { top: 56%; right: 18%; } /* Hyderabad */
.pf-dot.d7 { top: 57%; left: 28%; } /* Pune       */
.pf-dot.d8 { top: 47%; left: 22%; } /* Ahmedabad  */
.pf-dot.d3::after,
.pf-dot.d6::after {
  left: auto;
  right: 16px;
}
.floating-words-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;        /* occupies only the right 40% of the hero */
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-words {
  position: absolute;
  inset: 0;
  pointer-events: none;
}


.word {
  position: absolute;
  font-weight: 500;
  opacity: 0;
  color: rgb(255 215 0 / 77%); /* adjust tint to match your hero bg */
  animation: floatUp 6s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(30px); }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-40px); }
}

/* Make sure your hero content sits above the floaters */
.hero-main .container {
  position: relative;
  z-index: 2;
}
.mentor-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(11,21,32,.92) 0%, transparent 100%);
  padding-top: 40px; /* fade starts higher */
}

.mentor-info .mentor-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.mentor-info .mentor-text strong {
  font-size: .88rem;
  color: #fff;
  line-height: 1.3;
}

.mentor-info .mentor-text small {
  font-size: 9px;
  color: #d0dce8;
  margin-top: 2px;
  font-weight:400;
}

.mentor-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #0a66c2;
  color: #fff;
  border-radius: 7px;
  font-size: 15px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.mentor-linkedin:hover {
  background: #004182;
  transform: translateY(-2px);
  color: #fff;
}
.plc-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 18px 24px;
}
.plc-stat-item { text-align: center; flex: 1; }
.plc-stat-num {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.plc-stat-num span { color: var(--color-primary, #1D9E75); font-size: 20px; }
.plc-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 5px;
  white-space: nowrap;
}
.plc-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}


 
.plc-btn-ghost {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .25s, color .25s;
}
.plc-btn-ghost:hover {
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.acca-video-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(18,35,35,.18);
  }
  .acca-corner-tag {
    position: absolute; top: 14px; left: 14px; z-index: 10;
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(18,35,35,.78);
    color: #fff; font-size: 12px; font-weight: 600;
    padding: 7px 14px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,.15);
  }
.opt1-section {
    background: #122323;
    padding: 72px 0;
  }
  .opt1-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal-light);
    border: 1px solid rgba(29,158,117,.25);
    color: var(--teal-dark);
    font-size: 12px; font-weight: 700; letter-spacing: .07em;
    text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
  }
  .opt1-label span {
    width: 7px; height: 7px; background: var(--teal);
    border-radius: 50%; display: inline-block;
    animation: dot-pulse 2s ease-in-out infinite;
  }
  @keyframes dot-pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.4; transform:scale(.75); }
  }
  .opt1-title {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    font-weight: 800; color: var(--navy); line-height: 1.2;
  }
  .opt1-title em { font-style: normal; color: var(--teal); }
  .opt1-desc { font-size: 15px; color: #8ca1a1; line-height: 1.75; max-width: 440px; }
  .opt1-bullets { list-style: none; padding: 0; margin: 0; }
  .opt1-bullets li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 11px 0; border-bottom: 1px solid rgb(125 200 197 / 37%);
    font-size: 14px; color: #fff;
  }
  .opt1-bullets li:last-child { border-bottom: none; }
  .opt1-bullet-icon {
    flex-shrink: 0; width: 32px; height: 32px;
    background: var(--teal-light); color: var(--teal);
    border-radius: 8px; display: flex; align-items: center;
    justify-content: center; font-size: 15px; margin-top: 1px;
  }
  .opt1-bullets strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
  .opt1-bullets small  { color: #8ca1a1; font-size: 12.5px; line-height: 1.4; }
  .opt1-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal); color: #fff;
    font-size: 14px; font-weight: 700;
    padding: 13px 28px; border-radius: 8px;
    text-decoration: none; transition: background .25s, transform .2s;
  }
  .opt1-cta:hover { background: var(--teal-dark); color: #fff; transform: translateY(-1px); }
    .acca-video-foot {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(18,35,35,.82) 0%, transparent 100%);
    color: #fff; font-size: 13px; font-weight: 500;
    padding: 30px 18px 14px;
  }
  .card-price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  text-align: right;
  line-height: 1.3;
}
.card-price-badge strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}
 .cc-thoughts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 14px;
        margin-bottom: 32px;
      }
      .cc-thought-card {
        background: rgba(255,255,255,.03);
        border: 1px solid rgba(37,178,161,.12);
        border-radius: 14px;
        padding: 20px 22px 20px 32px;
        font-size: .9rem;
        color: #7a9ab0;
        position: relative;
        transition: border-color .2s, color .2s;
      }
      .cc-thought-card::before {
        content: '"';
        position: absolute;
        top: 10px; left: 14px;
        font-size: 1.6rem;
        color: #25b2a1;
        opacity: .4;
        line-height: 1;
        font-family: Georgia, serif;
      }
      .cc-thought-card:hover { border-color: rgba(37,178,161,.35); color: #d0dce8; }

      /* gold border note */
      .cc-gold-note {
        border-left: 3px solid #f5c842;
        padding: 20px 24px;
        background: rgba(245,200,66,.04);
        border-radius: 0 12px 12px 0;
        font-size: .95rem;
        color: #7a9ab0;
        line-height: 1.75;
      }
      .cc-gold-note strong { color: #fff; }

      /* noise 3-col grid */
      .cc-noise-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 32px;
      }
      .cc-noise-card {
        background: rgba(255,255,255,.03);
        border: 1px solid rgba(37,178,161,.12);
        border-radius: 14px;
        padding: 28px 24px;
        transition: border-color .2s, transform .2s;
      }
      .cc-noise-card:hover { border-color: rgba(37,178,161,.3); transform: translateY(-4px); }
      .cc-noise-label {
        font-size: .65rem;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: #f5c842;
        margin-bottom: 10px;
        display: block;
      }
      .cc-noise-card h4 {
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
      }
      .cc-noise-card p { font-size: .85rem; color: #7a9ab0; line-height: 1.65; margin: 0; }

      /* needs 3-col */
      .cc-needs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }
      .cc-need-card {
        background: rgba(255,255,255,.03);
        border: 1px solid rgba(37,178,161,.12);
        border-radius: 14px;
        padding: 28px 24px;
        transition: border-color .2s, transform .2s;
      }
      .cc-need-card:hover { border-color: rgba(37,178,161,.35); transform: translateY(-4px); }
      .cc-need-num {
        font-size: 3rem;
        font-weight: 800;
        color: #25b2a1;
        opacity: .2;
        line-height: 1;
        margin-bottom: 12px;
        letter-spacing: -.04em;
      }
      .cc-need-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
      .cc-need-card p { font-size: .85rem; color: #7a9ab0; line-height: 1.65; margin: 0; }

      /* steps list */
      .cc-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
      .cc-step {
        display: grid;
        grid-template-columns: 28px 1fr;
        gap: 20px;
        align-items: start;
        padding: 24px 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
      }
      .cc-step:first-child { border-top: 1px solid rgba(255,255,255,.06); }
      .cc-step-arrow { color: #25b2a1; font-size: 1.1rem; font-weight: 800; padding-top: 2px; }
      .cc-step h5 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
      .cc-step p { font-size: .85rem; color: #7a9ab0; line-height: 1.65; margin: 0; }

      /* credibility bar */
      .cc-cred-bar {
        display: flex;
        align-items: center;
        gap: 28px;
        padding: 22px 28px;
        background: rgba(255,255,255,.03);
        border: 1px solid rgba(37,178,161,.15);
        border-radius: 14px;
        flex-wrap: wrap;
      }
      .cc-cred-item { display: flex; flex-direction: column; gap: 2px; }
      .cc-cred-num {
        font-size: 1.6rem;
        font-weight: 800;
        color: #f5c842;
        line-height: 1;
        letter-spacing: -.02em;
      }
      .cc-cred-label { font-size: .7rem; color: #7a9ab0; }
      .cc-cred-div { width: 1px; height: 36px; background: rgba(255,255,255,.08); }
      .cc-cred-text { flex: 1; font-size: .85rem; color: #7a9ab0; line-height: 1.65; }
      .cc-cred-text strong { color: #fff; font-weight: 500; }

      /* outcomes grid */
      .cc-outcomes-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }
      .cc-outcome-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 22px;
        background: rgba(255,255,255,.03);
        border: 1px solid rgba(37,178,161,.12);
        border-radius: 12px;
        transition: border-color .2s;
      }
      .cc-outcome-item:hover { border-color: rgba(37,178,161,.3); }
      .cc-outcome-check {
        width: 22px; height: 22px;
        border-radius: 50%;
        background: rgba(37,178,161,.1);
        border: 1px solid rgba(37,178,161,.3);
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0; margin-top: 2px;
      }
      .cc-outcome-check svg { display: block; }
      .cc-outcome-item p { font-size: .88rem; color: #7a9ab0; line-height: 1.65; margin: 0; }
      .cc-outcome-item p strong { color: #fff; font-weight: 600; }

      /* who list */
      .cc-who-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
      .cc-who-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px 22px;
        background: rgba(255,255,255,.03);
        border: 1px solid rgba(37,178,161,.12);
        border-radius: 12px;
        font-size: .9rem;
        color: #7a9ab0;
        transition: border-color .2s, color .2s, transform .2s;
      }
      .cc-who-item:hover { border-color: rgba(245,200,66,.3); color: #d0dce8; transform: translateX(4px); }
      .cc-who-dot {
        width: 8px; height: 8px;
        background: #f5c842;
        border-radius: 50%;
        flex-shrink: 0;
      }

      /* process 3-col */
      .cc-process-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }
      .cc-process-card {
        background: rgba(255,255,255,.03);
        border: 1px solid rgba(37,178,161,.12);
        border-radius: 14px;
        padding: 32px 24px;
        position: relative;
        overflow: hidden;
        transition: border-color .2s, transform .2s;
      }
      .cc-process-card:hover { border-color: rgba(37,178,161,.35); transform: translateY(-4px); }
      .cc-process-bg-num {
        position: absolute;
        top: 12px; right: 16px;
        font-size: 5rem;
        font-weight: 800;
        color: #25b2a1;
        opacity: .06;
        line-height: 1;
        letter-spacing: -.04em;
        pointer-events: none;
      }
      .cc-process-label {
        font-size: .65rem;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: #25b2a1;
        margin-bottom: 12px;
        display: block;
      }
      .cc-process-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
      .cc-process-card p { font-size: .85rem; color: #7a9ab0; line-height: 1.65; margin: 0; }

      /* final CTA proof line */
      .cc-proof-line {
        font-size: .9rem;
        color: #7a9ab0;
        margin: 32px auto 40px;
        max-width: 380px;
        line-height: 1.7;
        text-align: center;
        padding-top: 32px;
        border-top: 1px solid rgba(255,255,255,.06);
      }
      .cc-proof-num {
        font-size: 1.8rem;
        font-weight: 800;
        color: #f5c842;
        letter-spacing: -.02em;
        display: block;
        line-height: 1;
        margin-bottom: 6px;
      }

      /* btn gold */
      .btn-cc-gold {
        display: inline-block;
        background: linear-gradient(135deg, #f5c842, #d4a017);
        color: #111;
        font-weight: 800;
        font-size: 1rem;
        padding: 16px 38px;
        border-radius: 999px;
        text-decoration: none;
        transition: transform .2s, box-shadow .2s;
        letter-spacing: -.01em;
      }
      .btn-cc-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(245,200,66,.3);
        color: #111;
      }

      .cc-cta-note {
        font-size: .78rem;
        color: #3a4f62;
        margin-top: 14px;
        letter-spacing: .03em;
      }

      /* teal left-border intro */
      .cc-teal-intro {
        border-left: 3px solid #25b2a1;
        padding-left: 22px;
        font-size: 1rem;
        color: #7a9ab0;
        line-height: 1.8;
        margin-bottom: 48px;
        max-width: 560px;
      }
      .cc-teal-intro strong { color: #fff; font-weight: 500; }
      .level-tabs-wrapper {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 0 0 0;
}
.level-tab-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 0;
}
.level-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 18px 38px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
  position: relative;
}
.level-tab-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.level-tab-btn.active {
  color: #fff;
  border-bottom: 3px solid #22c55e;
  background: rgba(34, 197, 94, 0.06);
}

@media (max-width: 991px) {
  .fnd-grid { grid-template-columns: 1fr 1fr; }
  .rec-inner {
    grid-template-columns: 1fr;  /* stack vertically */
    gap: 32px;
  }
   .rec-inner > * {
    min-width: 0;
    width: 100%;
  }
  .rec-divider {
    display: none;               /* hide vertical line */
  }
  .rec-stat-strip {
    max-width: 100%;             /* full width */
  }
   .acc-grid { grid-template-columns: repeat(2, 1fr); }
  .acc-card--wide { grid-column: span 2; }
   .pf-card { grid-template-columns: 1fr; gap: 32px; }
  .pf-map-wrap { order: -1; }
  .pf-map-wrap img { max-width: 280px; margin: 0 auto; }
  .pf-stats { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 34px;
  }
  .stat-card h3 {
    font-size: 44px;
  }
  .hero-img {
    width: 100%;
  }
  .hero-general-img {
    max-width: 30%;
  }
  .hero-content {
    padding: 60px 20px;
  }
  .contact-option {
    min-height: 170px;
  }
  .contact-option i {
    font-size: 28px;
  }
  .how-card {
    padding: 26px 22px;
  }
  .how-icon {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }
  .image-highlight-section {
    padding: 50px 0;
  }
  .image-highlight-wrap {
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14),
      0 0 0 1px rgba(15, 23, 42, 0.06);
  }
  .image-highlight-wrap img {
    max-height: 70vh;
    object-fit: contain;
  }
  .programs-section {
    padding: 60px 0;
  }
  .new-card {
    padding: 30px 20px;
    border-radius: 20px;
    min-height: auto;
  }
  .new-card h4 {
    font-size: 20px;
  }
  .new-card ul {
    padding-left: 18px;
  }
  .new-card ul li {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .btn-program {
    padding: 12px;
    font-size: 14px;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
  .program-outcome {
    position: static;
    transform: none;
    margin-top: 20px;
    max-width: 100%;
    right: auto;
    top: auto;
  }
  .uni-card {
    flex-direction: column;
  }
  .uni-image {
    height: 220px;
  }
  .uni-content {
    padding: 25px;
  }
  .program-outcome h6 {
    font-size: 14px;
  }
  .program-outcome p {
    font-size: 13px;
  }
  .program-watermark {
    font-size: 45px;
    right: 10px;
    /*opacity: 0.05;*/
    top: 5px;
  }
  .badge-program {
    font-size: 11px;
    padding: 5px 12px;
  }
  .eco-grid {
    grid-template-columns: 1fr;
  }
  .eco-big {
    grid-row: auto;
  }
  .eco-grid img {
    height: 250px;
  }
  .download-section {
    padding: 50px 0;
  }
  .reward-section {
    padding: 60px 0;
    text-align: center;
  }
  .reward-img {
    margin-top: 30px;
    max-width: 220px;
  }
  .download-section {
    padding: 60px 0;
  }
  .brochure-card {
    padding: 20px 12px;
  }
 .eli-inner { grid-template-columns: 1fr; gap: 32px; }
  .eli-list { grid-template-columns: 1fr; }
  .eli-item:last-child { grid-column: auto; }
  .eli-section { padding: 36px 20px; } .lms-grid { grid-template-columns: 1fr; gap: 60px; }
  .lms-platform-strip { position: relative; bottom: auto; left: auto; transform: none; margin-top: 16px; justify-content: center; }
  .lms-img-wrap { margin-bottom: 0; }
}
.uf-section { position: relative; overflow: hidden; }

.uf-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.uf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #25b2a1, #1a8a7c);
  border-radius: 20px 20px 0 0;
}
.uf-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(37,178,161,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* left heading col */
.uf-left {
  padding-right: 32px;
}
.uf-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,178,161,.08);
  border: 1px solid rgba(37,178,161,.2);
  color: #25b2a1;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.uf-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
    font-weight: 800;
    line-height: 1.15;
}
.uf-title em { color: #25b2a1; font-style: normal; }
.uf-subtitle {
  font-size: .85rem;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

/* feature items */
.uf-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.uf-feature {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: background .2s;
  border-radius: 12px;
}
.uf-feature:hover { background: rgba(37,178,161,.04); }
.uf-feature + .uf-feature {
  border-left: 1px solid rgba(0,0,0,.07);
}

.uf-img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: rgba(37,178,161,.08);
  border: 1px solid rgba(37,178,161,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .2s, border-color .2s;
}
.uf-feature:hover .uf-img-wrap {
  background: rgba(37,178,161,.14);
  border-color: rgba(37,178,161,.3);
}
.uf-img-wrap img { width: 56px; height: 56px; object-fit: contain; }

.uf-badge {
  display: inline-block;
  background: rgba(37,178,161,.1);
  color: #25b2a1;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.uf-feat-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.uf-feat-desc {
  font-size: .82rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* divider between left and right */
.uf-divider {
  width: 1px;
  background: rgba(0,0,0,.07);
  align-self: stretch;
  margin: 0 8px;
}
@media (max-width: 767px) {
  .text-web {
    display: none;
  }
  .swiper-slide {
    margin-bottom: 55px !important;
  }
  .course-card h2 {
    font-size: 30px !important;
    line-height: 50px;
    margin-bottom: 20px !important;
  }
  .text-mob {
    display: block;
  }
  .footer .dropdown.custom-dropdown {
    margin-top: 40px;
  }
  .mentor-raise {
    transform: none;
  }

  .mentor p {
    position: relative;  /* take it out of absolute */
    bottom: auto;
    left: auto;
    padding: 6px 4px 0;
  }
.mentor-v{
        transform: translateY(-25px);
}
  .mentor.mentor-raise p {
    bottom: auto;
  }

  .mentor-info small {
    font-size: 10px;
  }
  .section-tag::before {
    right: 100%;
  }
  .video-wrapper {
    margin-bottom: 0;
  }
  .subtitle {
    text-align: center;
    font-size: 15px;
    line-height: 26px;
  }
  .benefits h2 {
    width: 100% !important;
    font-size: 24px;
    line-height: 36px;
  }
  .p-card4 {
    background-image: url(../img/prgrm-bg.webp);
  }
  .p-card5 {
    background-image: url(../img/prgrm-bg11.webp);
  }
  .z-vector {
    top: 85%;
    z-index: inherit;
  }
  .testimonial-container.home-testimonial .swiper4-pagination {
    bottom: 0 !important;
  }
  .testimonial-container.home-testimonial .btn-wrap {
    margin: 20px auto;
  }
  .alumini-container {
    background-image: url("../webp-img/meet-alumi-bg.webp");
  }
  .web-img {
    display: none;
  }
  .mob-img {
    display: block;
  }
  .section-dark.section-main {
    padding-top: 250px;
  }
  .results-section {
    padding-bottom: 90px;
  }
  .load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    z-index: 5;
    position: relative;
  }
  .mentor-card-inner {
    flex-direction: column;
    text-align: center;
    align-items: center !important;
  }
  .mentor-img {
    width: 120px;
    height: 120px;
  }
  .mentor-points li {
    text-align: left;
  }
  .batchSwiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
  }
  .batchSwiper .timer-card {
    width: 100%;
    max-width: 100%;
  }
  .academic-title {
    font-size: 22px;
  }
  .academic-subtitle {
    font-size: 13px;
  }
  .academic-pill {
    font-size: 12.5px;
    padding: 10px 12px;
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }
  .stat-item::after {
    display: none;
  }
  .stat-item h3 {
    font-size: 36px;
  }
  .image-highlight-section .lead {
    width: 100% !important;
  }
  .hz-hero { padding: 40px 0 30px; }
  .hz-stats { flex-direction: row; max-width: 100%; }
    .hz-stat-item{  padding: 10px 12px;}
  .hz-stat-item:first-child{border-right:1px solid rgba(37, 178, 161, .15);}
  .hz-stat-item + .hz-stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,.06); flex:none;}
  .hz-video-wrap { margin-top: 32px; }
  .hz-title { font-size: 1.7rem; }
   .ov-grid { grid-template-columns: 1fr 1fr; }
   .uf-card { padding: 32px 20px; }
  .uf-left { border-right: none; border-bottom: 1px solid rgba(0,0,0,.07); padding-right: 0; padding-bottom: 24px; margin-bottom: 24px; }
  .uf-features { grid-template-columns: 1fr; }
  .uf-feature + .uf-feature { border-left: none; border-top: 1px solid rgba(0,0,0,.07); }
  .uf-divider { display: none; }
  .mentor {
    border-radius: 12px;
  }
 .mentor-info {
    padding: 8px 10px;
    padding-top: 32px;
    gap: 8px;
  }

  .mentor-info .mentor-text strong {
    font-size: .75rem;
  }



  /* smaller linkedin icon */
  .mentor-linkedin {
    width: 26px;
    height: 26px;
    font-size: 12px;
    border-radius: 5px;
  }
 .cc-noise-grid,
        .cc-needs-grid,
        .cc-process-grid { grid-template-columns: 1fr; }
        .cc-outcomes-grid { grid-template-columns: 1fr; }
        .cc-cred-bar { flex-direction: column; gap: 16px; }
        .cc-cred-div { display: none; }
}
@media (max-width: 640px) {
  .programs-section .row { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  section {
    padding: 0 15px;
  }
  .hero-main {
    min-height: auto;
    padding: 0;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .core-value {
    padding: 20px 10px;
  }
  .core-value i {
    font-size: 2rem;
  }
  .founder-card img {
    max-width: 170px;
  }
  .accomplishment-card {
    padding: 22px 16px;
  }
  .accomplishment-card i {
    font-size: 34px;
  }
  .accomplishment-card p {
    font-size: 14px;
  }
  .contact-wrapper {
    padding: 40px 12px;
  }
  .contact-box {
    padding: 32px 20px 40px;
    border-radius: 16px;
  }
  .contact-box::after {
    width: 42px;
    height: 42px;
  }
  .contact-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .clipped-card {
    clip-path: none;
    border-radius: 1.25rem;
  }
  .sector-clip {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  }
  .sector-card h6 {
    font-size: 14px;
  }
  .terms-header {
    padding: 1rem 1.1rem;
  }
  .terms-body {
    padding: 0 1.1rem 1.25rem;
  }
  .mentor-video-content h2 {
    font-size: 24px;
  }
  .play-btn-t {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }
  .batchSwiper .countdown-timer div {
    padding: 10px !important;
  }
  .batchSwiper .countdown-timer span {
    font-size: 16px;
  }
  .gallery-img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  .gallery-img:hover {
    transform: scale(1.04);
  }
  #galleryTabs {
    justify-content: center;
  }
  #galleryTabs .nav-link {
    padding: 8px 18px;
    font-size: 14px;
  }
  .fnd-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fnd-stats { flex-direction: column; width: 100%; }
  .fnd-stat + .fnd-stat { border-left: none; border-top: 1px solid rgba(255,255,255,.06); }
  .fnd-info { padding: 12px 12px 14px; }
  .fnd-name { font-size: .85rem; }
  .rec-stat-strip {
    flex-direction: column;
  }
  .rec-stat + .rec-stat {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  /* make logo pills slightly smaller */
  .rec-logo-pill {
    min-width: 100px;
    padding: 10px 16px;
    margin: 0 5px;
  }
  .rec-logo-pill img {
    height: 22px;
  }
  .acc-grid { grid-template-columns: 1fr; }
  .acc-card--wide {
    grid-column: span 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .acc-icon img { height: 70px; }
  .level-tab-btn {
    font-size: 0.85rem;
    padding: 14px 18px;
  }
}
@media (max-width: 480px) {
  .image-highlight-section {
    padding: 40px 0;
  }
  .image-highlight-wrap {
    border-radius: 12px;
  }
   .ov-grid { grid-template-columns: 1fr; }
   .pf-stats { grid-template-columns: 1fr 1fr; }
  .pf-stat-box:last-child { grid-column: 1/-1; }
}
@media (max-width: 400px) {

  .mentor-info .mentor-text strong {
    font-size: .68rem;
  }

  .mentor-info .mentor-text small {
    font-size: .58rem;
  }

  .mentor-linkedin {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

}