@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ===================== HEADER ===================== */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 #e8e8e8;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  width: 138px;
}
@media (max-width: 767px) {
  .logo img {
    width: 90px;
  }
}

.logo-svg {
  display: flex;
  align-items: center;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  display: block;
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #ee2c3c;
  background: rgba(1, 66, 92, 0.06);
}

/* Dropdown */
.nav-links li {
  position: relative;
}

.nav-links li.drop > a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 5px;
  margin-top: -3px;
  transition: transform 0.2s;
}

.nav-links li.drop:hover > a::after {
  transform: rotate(225deg);
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 7px);
  left: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 8px;
  min-width: 200px;
  z-index: 10;
}

.nav-links li.drop:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: #444;
  border-radius: 6px;
}

.dropdown a:hover {
  background: #f0f7fb;
  color: #ee2c3c;
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-ghost {
  font-size: 13px;
  font-weight: 600;
  color: #ee2c3c;
  border: 1.5px solid #ee2c3c;
  padding: 7px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
}

.btn-ghost:hover {
  background: #ee2c3c;
  color: #fff;
}

.btn-red {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #e7000b;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-red:hover {
  background: #c3000a;
  box-shadow: 0 4px 16px rgba(231, 0, 11, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #ee2c3c;
  border-radius: 2px;
  transition: 0.25s;
}

/* ===================== MOBILE ===================== */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1001;
  flex-direction: column;
  padding: 80px 28px 40px;
  gap: 6px;
  overflow-y: auto;
}

.mob-menu.open {
  display: flex;
}

.mob-menu a {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.mob-menu a:hover {
  color: #e7000b;
}

.mob-close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 1002;
  background: #f5f5f5;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .upbtnscom {
    display: none;
  }
}
/* ===================================================
   SECTION SCROLL NAV
=================================================== */
.section-nav {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 66px;
  z-index: 900;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* gradient fade on edges — helps show scroll */
.section-nav::before,
.section-nav::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 2;
}

.section-nav::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.section-nav::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.section-nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.section-nav-inner::-webkit-scrollbar {
  display: none;
}

/* ── list ── */
.section-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  white-space: nowrap;
  gap: 2px;
  min-width: -moz-max-content;
  min-width: max-content;
}

/* ── link ── */
.section-nav ul li a {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.22s, border-color 0.22s, background 0.22s;
  letter-spacing: 0.01em;
  position: relative;
  border-radius: 4px 4px 0 0;
}

/* hover */
.section-nav ul li a:hover {
  color: #ee2c3c;
  background: rgba(238, 44, 60, 0.04);
  border-bottom-color: rgba(238, 44, 60, 0.3);
}

/* active */
.section-nav ul li a.active {
  color: #ee2c3c;
  border-bottom-color: #ee2c3c;
  background: rgba(238, 44, 60, 0.04);
  font-weight: 700;
}

/* active dot indicator above text */
.section-nav ul li a.active::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ee2c3c;
  opacity: 0.6;
}

/* ===================================================
   RESPONSIVE — tablet / mobile
=================================================== */
@media (max-width: 900px) {
  .section-nav ul {
    justify-content: flex-start;
  }
  .section-nav ul li a {
    font-size: 13.5px;
    padding: 14px 16px;
  }
}
@media (max-width: 560px) {
  .section-nav ul li a {
    font-size: 13px;
    padding: 13px 14px;
  }
  .section-nav::before,
  .section-nav::after {
    width: 24px;
  }
}
/* ===================================================
   EXPLORE UPGRAD LEARNING SUPPORT CENTRE CITY
   Prefix: ugexplore-
=================================================== */
.ugexplore-section {
  background: #f7f8fa;
  padding: 60px 0;
}
.ugexplore-section .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.ugexplore-inner {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  min-height: 380px;
  max-width: 100%;
}

/* ── LEFT — image column ── */
.ugexplore-img-col {
  position: relative;
  width: 34%;
  flex-shrink: 0;
  overflow: hidden;
}
.ugexplore-img-col .ugexplore-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.ugexplore-img-col .ugexplore-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}
.ugexplore-img-col .ugexplore-img-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
}
.ugexplore-img-col .ugexplore-img-badge .ugexplore-logo {
  height: 24px;
  width: auto;
  display: block;
}

/* ── CENTRE — heading + description ── */
.ugexplore-content {
  flex: 1;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.ugexplore-content .ugexplore-heading {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.ugexplore-content .ugexplore-heading-accent {
  color: #e7000b;
}
.ugexplore-content .ugexplore-desc {
  font-size: 14.5px;
  font-weight: 400;
  color: #555;
  line-height: 1.65;
}

.ugexplore-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ugexplore-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.ugexplore-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #ff6b00;
  font-weight: bold;
  font-size: 16px;
}

/* ── RIGHT — form card ── */
.ugexplore-form-col {
  width: 360px;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 30px;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}
.ugexplore-form-col .ugexplore-form-card {
  width: 100%;
}
.ugexplore-form-col .ugexplore-form-title {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
  text-align: center;
}
.ugexplore-form-col {
  /* Fields */
}
.ugexplore-form-col .ugexplore-field {
  margin-bottom: 14px;
  position: relative;
}
.ugexplore-form-col .ugexplore-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #fdfdfd;
  border: 1.5px solid #eaeaea;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.ugexplore-form-col .ugexplore-input-wrap:focus-within {
  border-color: #eb4242;
  background: #fff;
  box-shadow: 0 4px 12px rgba(235, 66, 66, 0.08);
}
.ugexplore-form-col .ugexplore-input-wrap .ugexplore-field-icon {
  width: 18px;
  height: 18px;
  color: #888;
  flex-shrink: 0;
  margin-left: 14px;
  transition: color 0.25s ease;
}
.ugexplore-form-col .ugexplore-input-wrap:focus-within .ugexplore-field-icon {
  color: #eb4242;
}
.ugexplore-form-col .ugexplore-input-wrap .ugexplore-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  padding: 12px 14px;
  min-width: 0;
}
.ugexplore-form-col .ugexplore-input-wrap .ugexplore-input::-moz-placeholder {
  color: #999;
  font-weight: 400;
}
.ugexplore-form-col .ugexplore-input-wrap .ugexplore-input::placeholder {
  color: #999;
  font-weight: 400;
}
.ugexplore-form-col {
  /* Phone row */
}
.ugexplore-form-col .ugexplore-phone-wrap {
  padding: 0;
}
.ugexplore-form-col .ugexplore-phone-wrap .ugexplore-flag-select {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8px 0 12px;
}
.ugexplore-form-col .ugexplore-phone-wrap .ugexplore-flag-select::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1.5px;
  background: #eaeaea;
  transition: background 0.25s ease;
}
.ugexplore-form-col .ugexplore-phone-wrap:focus-within .ugexplore-flag-select::after {
  background: #f2c7c7;
}
.ugexplore-form-col .ugexplore-phone-wrap .ugexplore-flag-dd {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  padding-right: 20px;
  min-width: 70px;
}
.ugexplore-form-col .ugexplore-phone-wrap .ugexplore-chevron {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  color: #888;
  pointer-events: none;
}
.ugexplore-form-col .ugexplore-phone-wrap .ugexplore-phone-input {
  padding-left: 14px;
}
.ugexplore-form-col {
  /* Select row */
}
.ugexplore-form-col .ugexplore-select-wrap {
  padding: 0;
}
.ugexplore-form-col .ugexplore-select-wrap .ugexplore-select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: #999;
  padding: 12px 40px 12px 14px;
  cursor: pointer;
  width: 100%;
}
.ugexplore-form-col .ugexplore-select-wrap .ugexplore-select option:not([value=""]) {
  color: #333;
}
.ugexplore-form-col .ugexplore-select-wrap:focus-within .ugexplore-select {
  color: #333;
}
.ugexplore-form-col .ugexplore-select-wrap .ugexplore-sel-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #888;
  pointer-events: none;
  transition: color 0.25s;
}
.ugexplore-form-col .ugexplore-select-wrap:focus-within .ugexplore-sel-arrow {
  color: #eb4242;
}
.ugexplore-form-col {
  /* Submit button */
}
.ugexplore-form-col .ugexplore-submit {
  width: 100%;
  background: linear-gradient(135deg, #e7000b 0%, #a60008 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  cursor: pointer;
  margin-top: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 14px rgba(231, 0, 11, 0.25);
}
.ugexplore-form-col .ugexplore-submit:hover {
  box-shadow: 0 6px 20px rgba(231, 0, 11, 0.4);
  transform: translateY(-2px);
}
.ugexplore-form-col .ugexplore-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(231, 0, 11, 0.2);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ugexplore-img-col {
    width: 28%;
  }
  .ugexplore-form-col {
    width: 290px;
  }
}
@media (max-width: 768px) {
  .ugexplore-inner {
    flex-direction: column;
    min-height: auto;
  }
  .ugexplore-img-col {
    width: 100%;
    height: 200px;
    order: 0;
  }
  .ugexplore-content {
    order: 1;
    padding: 28px 24px 20px;
  }
  .ugexplore-form-col {
    order: 2;
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 24px 28px;
  }
  .ugexplore-br {
    display: none;
  }
}
@media (max-width: 480px) {
  .ugexplore-content {
    padding: 22px 16px 16px;
  }
  .ugexplore-form-col {
    padding: 16px 16px 24px;
  }
}
/* ===================================================
   TOP RECRUITERS MARQUEE
   Prefix: ugrc-
=================================================== */
.ugrc-section {
  background: #fff;
  padding: 48px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.ugrc-section .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.ugrc-marquee-container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.ugrc-marquee-container::before, .ugrc-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.ugrc-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.ugrc-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.ugrc-marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.ugrc-marquee-track:hover {
  animation-play-state: paused;
}

.ugrc-marquee-track--top {
  animation: ugrc-scroll-rtl 25s linear infinite;
  margin-bottom: 30px;
}

.ugrc-marquee-track--bottom {
  animation: ugrc-scroll-ltr 25s linear infinite;
}

.ugrc-marquee-group {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px;
  /* Space before the duplicate group */
}

.ugrc-logo-item {
  width: 140px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ugrc-logo-item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.ugrc-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@keyframes ugrc-scroll-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes ugrc-scroll-ltr {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .ugrc-marquee-group {
    gap: 40px;
    padding-right: 40px;
  }
  .ugrc-marquee-track--top {
    margin-bottom: 20px;
  }
  .ugrc-logo-item {
    width: 110px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .ugrc-marquee-container::before,
  .ugrc-marquee-container::after {
    width: 60px;
  }
  .ugrc-marquee-group {
    gap: 30px;
    padding-right: 30px;
  }
  .ugrc-logo-item {
    width: 90px;
    height: 40px;
  }
  .ugrc-marquee-track--top {
    animation-duration: 20s;
  }
  .ugrc-marquee-track--bottom {
    animation-duration: 20s;
  }
}
/* ===================================================
   STAR FACULTY (EXPANDING CARDS)
   Prefix: ugfac-
=================================================== */
.ugfac-section {
  background: #fcfcfd;
  padding: 60px 0;
}

.ugfac-wrapper {
  display: flex;
  height: 360px;
  gap: 16px;
  width: 100%;
}

.ugfac-card {
  position: relative;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  transition: flex 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  background: #222;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  /* Inner image */
}
.ugfac-card .ugfac-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 15%;
     object-position: center 15%;
  opacity: 0.6;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.ugfac-card {
  /* Overlay gradient */
}
.ugfac-card .ugfac-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.7;
  transition: opacity 0.4s ease, background 0.4s ease;
}
.ugfac-card {
  /* Content block */
}
.ugfac-card .ugfac-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.ugfac-card .ugfac-content .ugfac-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: font-size 0.3s ease;
}
.ugfac-card .ugfac-content .ugfac-linkedin {
  color: #0a66c2;
  background: #fff;
  border-radius: 4px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2px;
}
.ugfac-card .ugfac-content .ugfac-linkedin svg {
  width: 18px;
  height: 18px;
}
.ugfac-card .ugfac-content .ugfac-title {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  background: #e7000b;
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.ugfac-card .ugfac-content .ugfac-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #e0e0e0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.ugfac-card {
  /* ACTIVE STATE */
}
.ugfac-card.active {
  flex: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.ugfac-card.active .ugfac-img {
  opacity: 1;
}
.ugfac-card.active .ugfac-overlay {
  opacity: 1;
  background: linear-gradient(0deg, rgba(0, 18, 50, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
}
.ugfac-card.active .ugfac-content .ugfac-name {
  font-size: 22px;
}
.ugfac-card.active .ugfac-content .ugfac-linkedin {
  display: flex;
}
.ugfac-card.active .ugfac-content .ugfac-title {
  max-height: 40px;
  opacity: 1;
  margin-bottom: 12px;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.ugfac-card.active .ugfac-content .ugfac-desc {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.ugfac-card {
  /* Non-active state */
}
.ugfac-card:not(.active) .ugfac-content {
  align-items: center;
  padding: 16px 10px;
}
.ugfac-card:not(.active) .ugfac-name {
  text-align: center;
}

@media (max-width: 900px) {
  .ugfac-wrapper {
    flex-direction: column;
    height: 700px;
  }
  .ugfac-card:not(.active) .ugfac-content {
    justify-content: center;
    padding: 12px;
  }
  .ugfac-card:not(.active) .ugfac-name {
    font-size: 16px;
    margin-bottom: 0;
  }
}
/* ===================================================
   WHY CHOOSE STICKY (STACKED CARDS)
   Prefix: ug-why-
=================================================== */
.why-choose-upgrad {
  /* Override existing padding if any */
  padding: 0;
  position: relative;
  background: #000;
  /* Fallback */
}

/* We still want the header to show above the stacking sections */
.ug-why-header-wrapper {
  padding: 60px 0 20px 0;
  background: #fdfdfd;
  position: relative;
  z-index: 100;
}
.ug-why-header-wrapper .sec-header {
  margin-bottom: 0;
}

.ug-why-stack-container {
  position: relative;
  width: 100%;
}

.ug-why-card {
  position: sticky;
  top: 80px;
  /* Offset for potential fixed navbar */
  height: 520px;
  /* Decreased height */
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.ug-why-card .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.ug-why-card {
  /* Left Column */
}
.ug-why-card .ug-why-content {
  flex: 1;
  max-width: 500px;
}
.ug-why-card .ug-why-step {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ug-why-card .ug-why-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.ug-why-card .ug-why-title span {
  color: #fff;
  font-weight: 400;
  opacity: 0.9;
}
.ug-why-card .ug-why-desc {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 32px;
  line-height: 1.5;
}
.ug-why-card .ug-why-metrics {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.ug-why-card .ug-why-metrics .ug-why-metric-item h4 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
}
.ug-why-card .ug-why-metrics .ug-why-metric-item p {
  font-size: 13px;
  color: #ccc;
  line-height: 1.3;
  margin: 0;
}
.ug-why-card .ug-why-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ug-why-card .ug-why-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
.ug-why-card {
  /* Right Column Image */
}
.ug-why-card .ug-why-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
  /* ensure image sits above the strip */
}
.ug-why-card .ug-why-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  /* Keep image proportional */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  /* Set border radius as requested */
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ── Continuous Background Strip ── */
.ug-why-strip {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  z-index: 0;
  pointer-events: none;
  /* Ignore clicks so text isn't blocked implicitly */
}
.ug-why-strip svg {
  width: 100%;
  height: 100%;
  display: block;
  color: rgba(255, 255, 255, 0.15);
  /* Fallback */
}
@media (max-width: 767px) {
  .ug-why-strip {
    display: none;
  }
}

/* The 7 Card Colors + Strip Colors */
.ug-why-card--1 {
  background: #080808;
}
.ug-why-card--1 .ug-why-strip svg {
  color: #ee2c3c;
}

.ug-why-card--2 {
  background: #5a0c14;
}
.ug-why-card--2 .ug-why-strip svg {
  color: #ff7a85;
}

.ug-why-card--3 {
  background: #103c89;
}
.ug-why-card--3 .ug-why-strip svg {
  color: #4dc5ff;
}

.ug-why-card--4 {
  background: #0c4d34;
}
.ug-why-card--4 .ug-why-strip svg {
  color: #44db9b;
}

.ug-why-card--5 {
  background: #3c115c;
}
.ug-why-card--5 .ug-why-strip svg {
  color: #d06dff;
}

.ug-why-card--6 {
  background: #124d52;
}
.ug-why-card--6 .ug-why-strip svg {
  color: #4ee0ec;
}

.ug-why-card--7 {
  background: #1e1e1e;
}
.ug-why-card--7 .ug-why-strip svg {
  color: #ee2c3c;
}

/* Mobile Logic */
@media (max-width: 900px) {
  .ug-why-card {
    height: auto;
    min-height: 100vh;
    padding: 60px 0;
  }
  .ug-why-card .container {
    flex-direction: column;
    gap: 30px;
  }
  .ug-why-card .ug-why-content {
    max-width: 100%;
    text-align: center;
  }
  .ug-why-card .ug-why-metrics {
    justify-content: center;
  }
  .ug-why-card .ug-why-image {
    justify-content: center;
  }
  .ug-why-card .ug-why-image img {
    max-height: 40vh;
  }
}
/* ===================================================
   RISE OF AI CAREERS SECTION
   Prefix: ug-aic-
=================================================== */
.ai-careers-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fff, #fef4f5);
  position: relative;
  overflow: hidden;
}

/* Header Adjustments specifically for this section */
.ai-careers-section .sec-header {
  margin-bottom: 50px;
}

.ug-aic-badge {
  display: inline-block;
  background: #fbe6e8;
  color: #c62334;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Two Column Layout */
.ug-aic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

/* Left Column */
.ug-aic-image-box {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
}
.ug-aic-image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Right Column Cards */
.ug-aic-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ug-aic-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}
.ug-aic-card .ug-aic-card-left {
  min-width: 100px;
}
.ug-aic-card .ug-aic-card-left h3 {
  color: #c62334;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}
.ug-aic-card .ug-aic-card-left span {
  display: block;
  color: #c62334;
  font-size: 18px;
  font-weight: 600;
}
.ug-aic-card .ug-aic-card-right p {
  color: #c62334;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}
.ug-aic-card .ug-aic-card-right span {
  display: block;
  color: #777;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Bottom Bar */
.ug-aic-bottom-bar {
  background: linear-gradient(135deg, #ff7b88, #c62334);
  border-radius: 12px;
  padding: 24px 30px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(198, 35, 52, 0.3);
}
.ug-aic-bottom-bar h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ug-aic-bottom-bar p {
  font-size: 15px;
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .ug-aic-grid {
    grid-template-columns: 1fr;
  }
  .ug-aic-image-box {
    min-height: 250px;
  }
  .ug-aic-card {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .ug-aic-card .ug-aic-card-left {
    min-width: auto;
  }
}
/* ===================================================
   FLOATING ACTION BUTTONS AND CALL MODAL
=================================================== */
.ug-support-fabs {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.ug-fab-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.ug-fab-tooltip {
  background: #1e1e1e;
  color: #fff;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.ug-fab-btn {
  background: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none; /* for <a> variant */
}
.ug-fab-btn svg {
  opacity: 0.97;
}
.ug-fab-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}
.ug-fab-btn.ug-fab-whatsapp {
  animation: waPulse 2.5s ease-in-out infinite;
}
.ug-fab-btn.ug-fab-call {
  background: #c62334;
  box-shadow: 0 4px 18px rgba(198, 35, 52, 0.45);
}
.ug-fab-btn.ug-fab-call svg {
  width: 18px !important;
  height: 18px !important;
}
.ug-fab-btn.ug-fab-call:hover {
  background: #a01d2a;
  box-shadow: 0 6px 24px rgba(198, 35, 52, 0.6);
}

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.75);
  }
}
/* Modal Overlay */
.ug-call-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85); /* Slightly darker overlay as per screenshot */
  z-index: 1000;
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
}

/* Modal Content */
.ug-call-modal-content {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.ug-call-modal-content h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.ug-call-modal-content .subtitle {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
}

.ug-call-modal-close {
  position: absolute;
  top: -40px;
  right: -20px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 28px;
  cursor: pointer;
}
.ug-call-modal-close:hover {
  color: #ccc;
}

.ug-call-form-row {
  display: flex;
  margin-bottom: 24px;
  border: 1px solid #c2c2c2;
  border-radius: 6px;
  overflow: hidden;
  height: 50px;
}
.ug-call-form-row .ug-call-country {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  background: #fff; /* screenshot has white bg here too */
  border-right: 1px solid #c2c2c2;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  cursor: pointer;
}
.ug-call-form-row .ug-call-input {
  flex: 1;
  border: none;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
}
.ug-call-form-row .ug-call-input::-moz-placeholder {
  color: #999;
}
.ug-call-form-row .ug-call-input::placeholder {
  color: #999;
}

.call-timing {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.ug-call-benefits {
  list-style: none;
  margin-bottom: 30px;
}
.ug-call-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
}

.ug-call-btn-submit {
  width: 100%;
  background: #dadada;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  cursor: not-allowed;
  margin-bottom: 30px;
  transition: all 0.2s ease;
  /* Enabled state automatically updated by JS */
}
.ug-call-btn-submit.active {
  background: #c62334;
  cursor: pointer;
}

.ug-call-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
  text-align: center;
}
.ug-call-footer p {
  font-size: 12px;
  color: #666;
  margin-bottom: 16px;
}

.ug-call-contacts {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.ug-call-contacts .ug-call-contact-box {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 14px;
  flex: 1;
  text-align: left;
}
.ug-call-contacts .ug-call-contact-box .label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #000;
  font-weight: 600;
  margin-bottom: 6px;
}
.ug-call-contacts .ug-call-contact-box .phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #111;
  font-weight: 800;
}

/* Base Responsive */
@media (max-width: 600px) {
  .ug-call-contacts {
    flex-direction: column;
  }
  .ug-call-modal-close {
    right: 0;
  }
  .ug-support-fabs {
    bottom: 20px;
    right: 20px;
  }
  .ug-support-fabs .ug-fab-tooltip {
    display: none; /* Hide text on mobile */
  }
}
/* ===================== SLIDING ENQUIRY FORM ===================== */
.enquiry-btn-fixed {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #e7000b 0%, #c3000a 100%);
  color: #fff;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  padding: 20px 12px;
  border-radius: 0px 12px 12px 0px;
  cursor: pointer;
  z-index: 9998;
  border: none;
  box-shadow: -6px 0 16px rgba(231, 0, 11, 0.25);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Vertical text */
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%) rotate(180deg);
}
.enquiry-btn-fixed:hover {
  padding-bottom: 26px;
  box-shadow: -8px 0 24px rgba(231, 0, 11, 0.4);
  background: linear-gradient(180deg, #ff3346 0%, #e7000b 100%);
}
.enquiry-btn-fixed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}
.enquiry-btn-fixed:hover::before {
  opacity: 1;
}

.sliding-form-wrapper {
  position: fixed;
  top: 0;
  right: -480px;
  width: 420px;
  height: 100vh;
  background: #f8fbfd;
  z-index: 10000;
  box-shadow: -10px 0 40px rgba(1, 26, 40, 0.15);
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.sliding-form-wrapper.open {
  right: 0;
}
.sliding-form-wrapper .sliding-form-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f0f7fb;
  border: 1px solid rgba(1, 66, 92, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #01425c;
  transition: all 0.2s;
  z-index: 10;
}
.sliding-form-wrapper .sliding-form-close:hover {
  background: #e1eff6;
  transform: rotate(90deg);
}
.sliding-form-wrapper .hero-right {
  margin: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
  padding: 60px 32px 30px;
  background: transparent;
  justify-content: flex-start;
}
.sliding-form-wrapper .hero-right::before, .sliding-form-wrapper .hero-right::after {
  display: none;
}
.sliding-form-wrapper .form-card {
  box-shadow: 0 16px 40px rgba(1, 66, 92, 0.08), 0 4px 12px rgba(1, 66, 92, 0.04);
  border: 1px solid rgba(1, 66, 92, 0.08);
  background: #fff;
  border-radius: 20px;
}

.sliding-form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 26, 40, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}
.sliding-form-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 480px) {
  .sliding-form-wrapper {
    width: 100%;
    right: -100%;
  }
}
/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* center vertically */
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  /* account for header */
  padding-bottom: 50px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(135deg, rgba(8, 15, 30, 0.95) 0%, rgba(12, 20, 40, 0.75) 100%), url("../images/hero-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .hero-bg {
    background-image: linear-gradient(135deg, rgba(8, 15, 30, 0.98) 0%, rgba(12, 20, 40, 0.9) 100%), url("../images/ai-image.jpg");
  }
}

.hero-inner-new {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 100px;
}
@media (max-width: 1024px) {
  .hero-inner-new {
    gap: 50px;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .hero-inner-new {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
    padding: 0 20px;
  }
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 20px 0;
}
.hero-left ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-left ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}
.hero-left ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #c62334;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .hero-left {
    align-items: center;
    text-align: center;
    padding: 10px 0;
  }
}

.hero-right-form {
  flex: 0 0 auto;
  width: 100%;
  max-width: 400px;
}
@media (max-width: 768px) {
  .hero-right-form {
    max-width: 100%;
  }
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: slideInRight 0.6s ease 0.3s both;
}
@media (max-width: 768px) {
  .hero-form-card {
    padding: 32px 24px;
  }
}

.hero-form-header {
  margin-bottom: 28px;
  text-align: center;
}
.hero-form-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.2;
}
.hero-form-header p {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.hero-form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-form-label {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.hero-form-input {
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}
.hero-form-input:focus {
  outline: none;
  border-color: #c62334;
  box-shadow: 0 0 0 3px rgba(198, 35, 52, 0.1);
  background: #f9f9f9;
}
.hero-form-input::-moz-placeholder {
  color: #999;
}
.hero-form-input::placeholder {
  color: #999;
}

.hero-phone-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-phone-wrap select {
  padding: 12px 8px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
  min-width: 80px;
  transition: all 0.3s ease;
}
.hero-phone-wrap select:focus {
  outline: none;
  border-color: #c62334;
  box-shadow: 0 0 0 3px rgba(198, 35, 52, 0.1);
}

.hero-phone-input {
  flex: 1;
}

.hero-form-submit {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #c62334 0%, #a01d2a 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  letter-spacing: 0.5px;
}
.hero-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198, 35, 52, 0.3);
}
.hero-form-submit:active {
  transform: translateY(0);
}

.hero-form-footer {
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid #e8e8e8;
  margin-top: 20px;
}

.hero-headline {
  font-size: clamp(40px, 6vw, 50px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  animation: fadeUp 0.6s ease both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .hero-headline {
    text-align: center;
  }
}

.hero-subheadline {
  font-size: clamp(17px, 2.4vw, 22px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin: 0 0 30px;
  line-height: 1.7;
  animation: fadeUp 0.6s ease 0.1s both;
  max-width: 100%;
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  .hero-subheadline {
    text-align: center;
    max-width: 600px;
  }
}

/* Reusing rating users but centered */
.centered-rating {
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.programs-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin: 0 0 22px;
  animation: fadeUp 0.6s ease 0.3s both;
}
.programs-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
}
.programs-divider::after {
  background: linear-gradient(-90deg, transparent, rgba(255, 255, 255, 0.3));
}
.programs-divider span {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .programs-divider {
    justify-content: center;
  }
}

/* Program tags */
.program-tags {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  animation: fadeUp 0.6s ease 0.4s both;
  width: 100%;
}
@media (max-width: 768px) {
  .program-tags {
    align-items: center;
    gap: 10px;
  }
}

.program-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .program-row {
    justify-content: center;
    width: 100%;
  }
}

.prog-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3px 8px;
  border-radius: 28px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.prog-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(198, 35, 52, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(198, 35, 52, 0.2);
}

/* Stats Banner */
.hero-stats-banner {
  display: flex;
  gap: 28px;
  margin-top: 70px;
  width: 100%;
  animation: fadeUp 0.6s ease 0.5s both;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .hero-stats-banner {
    justify-content: space-between;
    flex-direction: row;
    margin-top: 45px;
    gap: 16px;
  }
}
.hero-stats-banner .stat-box {
  flex: 0 1 auto;
  min-width: 160px;
  background: linear-gradient(180deg, rgba(4, 30, 55, 0.5) 0%, rgba(200, 20, 50, 0.2) 100%);
  border: 1.5px solid rgba(198, 35, 52, 0.4);
  border-radius: 16px;
  padding: 14px 22px;
  box-shadow: 0 4px 20px rgba(198, 35, 52, 0.15), inset 0 0 20px rgba(198, 35, 52, 0.08);
  transition: all 0.3s ease;
  min-width: 0;
  backdrop-filter: blur(10px);
}
.hero-stats-banner .stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(198, 35, 52, 0.25), inset 0 0 25px rgba(198, 35, 52, 0.12);
  border-color: rgba(198, 35, 52, 0.6);
}
@media (max-width: 767px) {
  .hero-stats-banner .stat-box {
    padding: 14px 9px;
  }
}
.hero-stats-banner .stat-num {
  font-size: clamp(13px, 2vw, 35px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stats-banner .stat-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .program-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .prog-btn {
    width: 100%;
    text-align: center;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Course Widget Strip */
.course-widget-wrapper {
  background: #ffffff;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  /* Optional subtle border */
}

.course-widget-strip {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 20px;
  /* Increased top/bottom space */
  max-width: 1100px;
  margin: 0 auto;
}

.cw-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  /* Small gap between label and value */
  padding: 20px 0;
}

.cw-label {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  /* Regular weight, slightly dark */
  color: #333333;
}

.cw-value {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  /* Bold orange */
  color: #e7000b;
}

.cw-divider {
  width: 1px;
  height: 48px;
  background: #e0e0e0;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .course-widget-strip {
    flex-wrap: wrap;
    padding: 24px 20px;
  }
  .cw-item {
    width: 45%;
    flex: none;
    margin-bottom: 24px;
  }
  .cw-divider {
    display: none;
  }
}
/* container */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.rating-users {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 10px;
}

/* Avatar group */
.users {
  display: flex;
}

.users img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
}

.users img:first-child {
  margin-left: 0;
}

/* Text */
.rating-text {
  display: flex;
  flex-direction: column;
}

.label {
  font-size: 14px;
  color: #ffffff;
}

/* Rating line */
.rating-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
}

/* Star */
.star {
  color: #fbbf24;
  font-size: 16px;
}

/* Rating value */
.value {
  font-weight: 700;
  color: #ffffff;
}

/* Dot */
.dot {
  color: #ffffff;
}

/* Reviews */
.reviews {
  color: #ffffff;
}
@media (max-width: 767px) {
  .reviews {
    font-size: 12px;
  }
}

/* ─── RIGHT PANEL ─────────────────────────────────────── */
.hero-right {
  width: 520px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 52px 44px;
}

.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(1, 26, 40, 0.35);
  backdrop-filter: blur(2px);
}

.hero-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg, #016a8e, #ee2c3c);
}

/* ─── FORM CARD ───────────────────────────────────────── */
.form-card {
  position: relative;
  z-index: 4;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(1, 66, 92, 0.1);
  animation: fadeUp 0.7s ease 0.25s both;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.form-card-header {
  text-align: center;
  margin-bottom: 24px;
}

.form-card-header h3 {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #01425c;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.form-card-header h3 span {
  color: #ee2c3c;
}

/* Trust badges */
.form-trust {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ftrust {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 600;
  color: #555;
  background: #f0f7fb;
  border: 1px solid rgba(1, 66, 92, 0.1);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.ftrust svg {
  width: 11px;
  height: 11px;
  color: #ee2c3c;
}

/* Divider */
.form-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #eee;
}

.form-divider span {
  font-size: 10.5px;
  color: #bbb;
  white-space: nowrap;
  letter-spacing: 0.04em;
  font-family: "Segoe UI", system-ui, sans-serif;
}

/* Input group */
.input-group {
  margin-bottom: 14px;
  position: relative;
}

.input-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: #666;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.input-wrap {
  position: relative;
}

.input-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: #aaa;
  pointer-events: none;
}

.input-wrap input,
.input-wrap select {
  width: 100%;
  padding: 11px 12px 11px 38px;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 13.5px;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: #333;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

.input-wrap input::-moz-placeholder {
  color: #bbb;
}

.input-wrap input::placeholder {
  color: #bbb;
}

.input-wrap input:focus,
.input-wrap select:focus {
  border-color: #016a8e;
  box-shadow: 0 0 0 3px rgba(1, 106, 142, 0.1);
}

.input-wrap select option {
  background: #fff;
  color: #333;
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.select-arrow svg {
  width: 13px;
  height: 13px;
  color: #aaa;
  left: unset;
  position: static;
  transform: none;
}

/* Phone field */
.phone-field-wrap {
  display: flex;
  gap: 0;
}

.country-select-wrap {
  position: relative;
  flex-shrink: 0;
}

.country-select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid #ddd;
  border-right: none;
  border-radius: 10px 0 0 10px;
  background: #f8fbfd;
  padding: 11px 28px 11px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  font-family: "Segoe UI", system-ui, sans-serif;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  min-width: 84px;
}

.country-select:focus {
  border-color: #016a8e;
}

.country-select-arrow {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.country-select-arrow svg {
  width: 11px;
  height: 11px;
  color: #999;
}

.phone-input {
  border-radius: 0 10px 10px 0 !important;
  border-left: 1px solid #e5e5e5 !important;
  padding-left: 14px !important;
}

.phone-field-wrap:focus-within .country-select,
.phone-field-wrap:focus-within .phone-input {
  border-color: #016a8e;
}

/* Submit button */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #ee2c3c 0%, #c3000a 100%);
  color: #fff;
  border: none;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(238, 44, 60, 0.4);
}

.submit-btn:hover::before {
  opacity: 1;
}

.submit-btn svg {
  width: 16px;
  height: 16px;
}

/* Form note */
.form-note {
  font-size: 10.5px;
  color: #aaa;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.form-note svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #ccc;
}

/* Live badge */
.campus-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(1, 26, 40, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: "Segoe UI", system-ui, sans-serif;
  animation: fadeUp 0.7s ease 0.5s both;
  pointer-events: none;
}

.campus-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
  }
  .hero-left {
    padding: 52px 6%;
  }
  .hero-divider {
    display: none;
  }
  .hero-right {
    width: 100%;
    padding: 44px 6% 60px;
  }
  .form-card {
    max-width: 100%;
  }
  .campus-badge {
    display: none;
  }
}
@media (max-width: 560px) {
  .hero-left {
    padding: 40px 5%;
  }
  .h-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 25px;
  }
  .h-stat:last-child {
    border-bottom: none;
  }
  .hero-right {
    padding: 36px 5% 52px;
  }
  .form-card {
    padding: 28px 20px;
  }
}
/* ══════════════════════════════════════════════
   SECTION 2
══════════════════════════════════════════════ */
.ugvtn-section {
  background: #f0f3f5;
  padding: 56px 0 72px;
}

.ugvtn-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Section heading ── */
.ugvtn-header {
  margin-bottom: 36px;
}

.ugvtn-heading {
  font-size: 28px;
  font-weight: 900;
  color: #0a0a0a;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.ugvtn-heading-accent {
  color: #ee2c3c;
}

.ugvtn-heading-sub {
  font-size: 13.5px;
  font-weight: 400;
  color: #888;
  margin-top: 5px;
}

/* ══════════════════════════════════════════════
   SPLIT WRAPPER
══════════════════════════════════════════════ */
.ugvtn-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 350px;
}

/* ══════════════════════════════════════════════
   LEFT — IMAGE PANEL
══════════════════════════════════════════════ */
.ugvtn-left {
  position: relative;
  overflow: hidden;
}

.ugvtn-left-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: saturate(0.9);
}

.ugvtn-left:hover .ugvtn-left-img {
  transform: scale(1.04);
}

/* gradient overlay */
.ugvtn-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(1, 20, 32, 0.22) 0%, rgba(1, 42, 60, 0.45) 40%, rgba(1, 20, 32, 0.85) 100%);
  z-index: 1;
}

/* left content on top of image */
.ugvtn-left-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 36px 40px;
}

/* top badge */
.ugvtn-left-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  width: -moz-fit-content;
  width: fit-content;
}

.ugvtn-left-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  flex-shrink: 0;
}

.ugvtn-left-badge span {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* bottom text block */
.ugvtn-left-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.ugvtn-left-title {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.ugvtn-left-title span {
  color: #ff3346;
}

.ugvtn-left-desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  max-width: 320px;
}

/* vertical divider line between panels */
.ugvtn-split::after {
  content: none;
}

/* ══════════════════════════════════════════════
   RIGHT — CARDS PANEL
══════════════════════════════════════════════ */
.ugvtn-right {
  background: #fafbfc;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

/* right header */
.ugvtn-right-header {
  margin-bottom: 24px;
}

.ugvtn-right-title {
  font-size: 15px;
  font-weight: 800;
  color: #0d0d0d;
  letter-spacing: -0.01em;
}

.ugvtn-right-sub {
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
  margin-top: 3px;
}

/* Stacked centre cards */
.ugvtn-centres {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

/* ── Centre card ── */
.ugvtn-centre {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eaeef2;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative;
}

.ugvtn-centre:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  border-color: rgba(238, 44, 60, 0.2);
}

/* left red accent bar */
.ugvtn-centre::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ee2c3c 0%, #016a8e 100%);
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity 0.22s;
}

.ugvtn-centre:hover::before {
  opacity: 1;
}

/* card inner */
.ugvtn-centre-inner {
  padding: 16px 18px 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* location icon thumb */
.ugvtn-centre-thumb {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fff2f3 0%, #ffe4e6 100%);
  border: 1.5px solid rgba(238, 44, 60, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, border-color 0.22s;
}

.ugvtn-centre:hover .ugvtn-centre-thumb {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-color: rgba(238, 44, 60, 0.3);
}

.ugvtn-centre-thumb svg {
  width: 24px;
  height: 24px;
  color: #ee2c3c;
  transition: transform 0.22s;
}

.ugvtn-centre:hover .ugvtn-centre-thumb svg {
  transform: scale(1.12);
}

/* centre info */
.ugvtn-centre-info {
  flex: 1;
  min-width: 0;
}

.ugvtn-centre-name {
  font-size: 14.5px;
  font-weight: 800;
  color: #0d0d0d;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ugvtn-centre-addr {
  font-size: 11.5px;
  font-weight: 400;
  color: #888;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.ugvtn-centre-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ugvtn-centre-phone {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: #016a8e;
  text-decoration: none;
  transition: color 0.2s;
}

.ugvtn-centre-phone:hover {
  color: #ee2c3c;
}

.ugvtn-centre-phone svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.ugvtn-centre-map {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s;
}

.ugvtn-centre-map:hover {
  color: #ee2c3c;
}

.ugvtn-centre-map svg {
  width: 10px;
  height: 10px;
}

/* centre actions */
.ugvtn-centre-actions {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-shrink: 0;
}

.ugvtn-cta-ghost {
  padding: 7px 14px;
  border: 1.5px solid #e2e6ea;
  border-radius: 8px;
  background: #fff;
  color: #444;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.ugvtn-cta-ghost:hover {
  border-color: #01425c;
  color: #01425c;
  background: #f0f7fa;
}

.ugvtn-cta-ghost svg {
  width: 11px;
  height: 11px;
}

.ugvtn-cta-solid {
  padding: 7px 14px;
  border: none;
  border-radius: 8px;
  background: #ee2c3c;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: "Segoe UI", system-ui, sans-serif;
  cursor: pointer;
}

.ugvtn-cta-solid:hover {
  background: #c3000a;
  box-shadow: 0 4px 14px rgba(238, 44, 60, 0.35);
}

.ugvtn-cta-solid svg {
  width: 11px;
  height: 11px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .ugvtn-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ugvtn-left {
    min-height: 340px;
  }
  .ugvtn-right {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
}
@media (max-width: 560px) {
  .ugvtn-left-title {
    font-size: 24px;
  }
  .ugvtn-left-stats {
    gap: 8px;
  }
  .ugvtn-centre-thumb {
    width: 50px;
    height: 50px;
  }
  .ugvtn-centre-actions {
    flex-direction: row;
  }
  .ugvtn-centre-inner {
    flex-direction: column;
  }
}
/* ===== SECTION COMMON ===== */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ee2c3c;
  margin-bottom: 10px;
}

.sec-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #ee2c3c;
  display: block;
}

.sec-title {
  font-size: 30px;
  font-weight: 900;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.2;
}

.sec-title span {
  color: #ee2c3c;
}

.sec-sub {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  line-height: 1.7;
}

.sec-header {
  margin-bottom: 48px;
}

/***section 3***/
/* ══════════════════════════════════════════════
   SECTION
══════════════════════════════════════════════ */
.ugobc-section {
  background: #f0f3f5;
  padding: 56px 0 72px;
}

.ugobc-viewall {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.ugobc-viewall a {
  display: flex;
  align-items: center;
}
.ugobc-viewall a svg {
  width: 16px;
  height: 16px;
}

/* Nav: dots + arrows */
.ugobc-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ugobc-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1.5px solid #e0e4e8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #444;
}

.ugobc-nav-btn:hover {
  background: #ee2c3c;
  border-color: #ee2c3c;
  color: #fff;
  box-shadow: 0 4px 14px rgba(238, 44, 60, 0.3);
}

/* Swiper sets this class on disabled nav elements */
.ugobc-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.ugobc-nav-btn svg {
  width: 17px;
  height: 17px;
}

/* Custom dots container — Swiper renders bullets inside here */
.ugobc-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ugobc-dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d0d5db;
  opacity: 1;
  transition: all 0.3s;
  cursor: pointer;
  margin: 0 !important;
  display: inline-block;
  flex-shrink: 0;
}

.ugobc-dots .swiper-pagination-bullet-active {
  background: #ee2c3c;
  width: 22px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════
   SWIPER
══════════════════════════════════════════════ */
.ugobc-swiper {
  overflow: hidden;
  /* extra bottom space so hover shadow isn't clipped */
  padding-bottom: 8px !important;
  margin-bottom: -8px;
}

/* hide Swiper's own built-in pagination (we use a custom one) */
.ugobc-swiper > .swiper-pagination {
  display: none;
}

/* ══════════════════════════════════════════════
   CARD
══════════════════════════════════════════════ */
.ugobc-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.045);
  transition: transform 0.28s, box-shadow 0.28s;
  position: relative;
  height: 100%;
}

.ugobc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.11), 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* top gradient accent bar */
.ugobc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ee2c3c 0%, #016a8e 100%);
  z-index: 3;
  border-radius: 18px 18px 0 0;
}

/* ── Image ── */
.ugobc-card-img {
  position: relative;
  height: 172px;
  overflow: hidden;
  background: #01293d;
  flex-shrink: 0;
}

.ugobc-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.45s ease, opacity 0.3s;
  opacity: 0.9;
}

.ugobc-card:hover .ugobc-card-img img {
  transform: scale(1.06);
  opacity: 1;
}

.ugobc-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 18, 32, 0.72) 100%);
  z-index: 1;
}

/* type pill on image */
.ugobc-card-img-pill {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 100px;
  padding: 4px 11px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ugobc-card-img-pill.genai {
  background: rgba(238, 44, 60, 0.8);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ugobc-card-img-pill.aipro {
  background: rgba(1, 66, 92, 0.85);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ugobc-card-img-pill.future {
  background: rgba(0, 131, 154, 0.85);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ugobc-card-img-pill.default {
  background: rgba(30, 30, 30, 0.7);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ugobc-card-img-pill svg {
  width: 9px;
  height: 9px;
}

/* duration chip */
.ugobc-card-img-dur {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 7px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 700;
  color: #01425c;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(6px);
}

.ugobc-card-img-dur svg {
  width: 11px;
  height: 11px;
  color: #ee2c3c;
}

/* ── Card Body ── */
.ugobc-card-body {
  padding: 18px 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ugobc-card-category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #016a8e;
  background: #e8f6fa;
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 9px;
  width: -moz-fit-content;
  width: fit-content;
}

.ugobc-card-category svg {
  width: 8px;
  height: 8px;
}

.ugobc-card-name {
  font-size: 14.5px;
  font-weight: 800;
  color: #0d0d0d;
  line-height: 1.35;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* ── Card Footer ── */
.ugobc-card-footer {
  padding: 16px 20px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.ugobc-btn-outline {
  padding: 10px 8px;
  border: 1.5px solid #dde2e7;
  border-radius: 9px;
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.ugobc-btn-outline:hover {
  border-color: #01425c;
  color: #01425c;
  background: #f0f7fa;
}

.ugobc-btn-outline svg {
  width: 13px;
  height: 13px;
}

.ugobc-btn-solid {
  padding: 10px 8px;
  border: none;
  border-radius: 9px;
  background: #ee2c3c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.2s;
  white-space: nowrap;
}

.ugobc-btn-solid:hover {
  background: #c3000a;
  box-shadow: 0 4px 16px rgba(238, 44, 60, 0.38);
}

.ugobc-btn-solid svg {
  width: 13px;
  height: 13px;
}

/**Why choose upgrad***/
.ufwcu-wrap {
  font-family: "Roboto", sans-serif;
  width: 100%;
  position: relative;
  padding: 0 56px;
}

/* ============================================================
   SWIPER OVERRIDE
============================================================ */
.ufwcu-swiper {
  width: 100%;
  overflow: hidden;
}

/* ============================================================
   CARD
============================================================ */
.ufwcu-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.28s, transform 0.28s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ufwcu-card:hover {
  box-shadow: 0 10px 36px rgba(0, 121, 141, 0.13);
  transform: translateY(-4px);
}

/* Image */
.ufwcu-card-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8f0f2;
}

.ufwcu-card-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ufwcu-card:hover .ufwcu-card-img-wrap img {
  transform: scale(1.04);
}

/* Text area */
.ufwcu-card-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ufwcu-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.ufwcu-card-sub {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
}

/* ============================================================
   ARROW BUTTONS — centered vertically on image
============================================================ */
.ufwcu-btn-prev,
.ufwcu-btn-next {
  position: absolute;
  top: calc((100% - 80px) / 2 * 0.36);
  /* roughly vertically centered on the image portion */
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #444;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ufwcu-btn-prev {
  left: 0;
}

.ufwcu-btn-next {
  right: 0;
}

.ufwcu-btn-prev:hover,
.ufwcu-btn-next:hover {
  background: #ee2c3c;
  border-color: #ee2c3c;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 121, 141, 0.3);
}

.ufwcu-btn-prev.swiper-button-disabled,
.ufwcu-btn-next.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.ufwcu-btn-prev svg,
.ufwcu-btn-next svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ufwcu-swiper .swiper-wrapper {
  align-items: stretch;
}

.ufwcu-swiper .swiper-slide {
  height: auto;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .ufwcu-wrap {
    padding: 0 44px;
  }
  .ufwcu-btn-prev {
    left: 0;
  }
  .ufwcu-btn-next {
    right: 0;
  }
  .ufwcu-card-title {
    font-size: 15px;
  }
  .ufwcu-card-sub {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .ufwcu-wrap {
    padding: 0 36px;
  }
  .ufwcu-btn-prev,
  .ufwcu-btn-next {
    width: 34px;
    height: 34px;
  }
  .ufwcu-btn-prev svg,
  .ufwcu-btn-next svg {
    width: 15px;
    height: 15px;
  }
}
/* ─── Contact us ───────────────────────────────────── */
.upctas-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #ee2c3c 0%, #003a44 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Glow */
.upctas-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  left: -120px;
}

.upctas-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -100px;
  right: -80px;
}

/* ─── CONTAINER ───────────────────────────────────── */
.upctas-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ─── LEFT CONTENT ─────────────────────────────────── */
.upctas-left h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.upctas-left p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 28px;
}

/* Feature Blocks */
.upctas-features {
  display: grid;
  gap: 14px;
}

.upctas-feature {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.upctas-feature:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}

.upctas-feature-icon {
  width: 34px;
  height: 34px;
  background: #fff;
  color: #0AB99D;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.upctas-feature-text {
  color: #fff;
  font-size: 14.5px;
}

/* ─── FORM CARD ───────────────────────────────────── */
.upctas-form-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* FORM TITLE */
.upctas-form-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #fff;
}

/* INPUT */
.upctas-input,
.upctas-select {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
}

/* BUTTON */
.upctas-btn {
  width: 100%;
  padding: 15px;
  background: #fff;
  color: #ee2c3c;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.upctas-btn:hover {
  background: #ee2c3c;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .upctas-container {
    grid-template-columns: 1fr;
  }
}
/**======Eligiblity Criteria****/
.eligiblity-critaria {
  padding-top: 70px;
}

/* ══════════════════════════════════════════════
   SECTION courses
══════════════════════════════════════════════ */
.eligiblity-critaria {
  padding: 56px 0 72px;
  background: #f0f3f5;
}

/* ══════════════════════════════════════════════
   SPLIT WRAPPER
══════════════════════════════════════════════ */
.ugecr-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 420px;
}

/* ══════════════════════════════════════════════
   LEFT — TAB LIST
══════════════════════════════════════════════ */
.ugecr-tabs {
  background: #fafbfc;
  border-right: 1px solid #eaeef2;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  overflow-y: auto;
}

.ugecr-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px 15px 22px;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  position: relative;
  transition: background 0.2s;
  border-left: 3px solid transparent;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.ugecr-tab:hover {
  background: #f3f6f8;
}

.ugecr-tab.ugecr-active {
  background: #fff;
  border-left-color: #ee2c3c;
  box-shadow: 2px 0 0 0 rgba(238, 44, 60, 0.08);
}

/* number badge */
.ugecr-tab-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f0f3f5;
  border: 1.5px solid #e4e8ec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #bbc0c8;
  flex-shrink: 0;
  transition: all 0.2s;
  line-height: 1;
}

.ugecr-tab:hover .ugecr-tab-num {
  background: #fff2f3;
  border-color: rgba(238, 44, 60, 0.25);
  color: #ee2c3c;
}

.ugecr-tab.ugecr-active .ugecr-tab-num {
  background: #ee2c3c;
  border-color: #ee2c3c;
  color: #fff;
  box-shadow: 0 4px 10px rgba(238, 44, 60, 0.3);
}

/* tab text */
.ugecr-tab-text {
  flex: 1;
  min-width: 0;
}

.ugecr-tab-label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 2px;
  transition: color 0.2s;
}

.ugecr-tab:hover .ugecr-tab-label,
.ugecr-tab.ugecr-active .ugecr-tab-label {
  color: #ee2c3c;
}

.ugecr-tab-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

.ugecr-tab:hover .ugecr-tab-title {
  color: #111;
}

.ugecr-tab.ugecr-active .ugecr-tab-title {
  color: #0d0d0d;
}

/* chevron */
.ugecr-tab-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  color: #ee2c3c;
}

.ugecr-tab.ugecr-active .ugecr-tab-arrow {
  opacity: 1;
  transform: translateX(2px);
}

.ugecr-tab-arrow svg {
  width: 16px;
  height: 16px;
}

/* thin divider between tabs */
.ugecr-tab + .ugecr-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: #f0f2f4;
}

/* ══════════════════════════════════════════════
   RIGHT — CONTENT PANEL
══════════════════════════════════════════════ */
.ugecr-panels {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.ugecr-panel {
  display: none;
  padding: 36px 40px;
  animation: ugecr-fade 0.28s ease;
  flex: 1;
}

.ugecr-panel.ugecr-panel-active {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@keyframes ugecr-fade {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* panel header */
.ugecr-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f2f4;
}

.ugecr-panel-course-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: #016a8e;
  background: #e8f6fa;
  border-radius: 4px;
  padding: 3px 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 7px;
  width: -moz-fit-content;
  width: fit-content;
}

.ugecr-panel-course-label svg {
  width: 9px;
  height: 9px;
}

.ugecr-panel-title {
  font-size: 20px;
  font-weight: 900;
  color: #0d0d0d;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ── Criteria list ── */
.ugecr-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ugecr-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #333;
  line-height: 1.55;
  font-weight: 500;
}

.ugecr-list-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e7f8fa;
  border: 1.5px solid #9fd5dc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ugecr-list-dot svg {
  width: 10px;
  height: 10px;
  color: #ee2c3c;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 860px) {
  .ugecr-wrap {
    grid-template-columns: 1fr;
  }
  .ugecr-tabs {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid #eaeef2;
    padding: 8px;
    gap: 6px;
  }
  .ugecr-tab {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
    border-left: none;
    border-bottom: 3px solid transparent;
    border-radius: 10px;
    padding: 12px 10px;
  }
  .ugecr-tab.ugecr-active {
    border-left-color: transparent;
    border-bottom-color: #ee2c3c;
  }
  .ugecr-tab + .ugecr-tab::before {
    display: none;
  }
  .ugecr-tab-arrow {
    display: none;
  }
  .ugecr-tab-title {
    white-space: normal;
    font-size: 12px;
  }
}
@media (max-width: 560px) {
  .ugecr-panel {
    padding: 24px 20px;
  }
  .ugecr-panel-title {
    font-size: 17px;
  }
  .sec-title {
    font-size: 22px;
  }
}
section.admission {
  padding: 80px 20px;
  background: #f5f7fa;
}

/* MAIN BOX */
.admission-box {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 2px solid #ee2c3c;
  border-radius: 16px;
  padding: 40px;
}

/* IMAGE */
.admission-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.admission-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* RIGHT SECTION BEAUTIFY */
.admission-content {
  position: relative;
}

/* vertical timeline line */
.steps-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 30px;
}

.steps-wrap::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, #ee2c3c, #dff3f6);
}

/* STEP CARD */
.step-item {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #f7fbfc);
  border: 1px solid #e6f0f2;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #ee2c3c;
}

/* NUMBER STYLE */
.step-num {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ee2c3c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CONTENT */
.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.step-content p {
  font-size: 14px;
  color: #555;
  margin-top: 4px;
  line-height: 1.6;
}

/* BADGE */
.step-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: #e6f7fa;
  color: #ee2c3c;
}

/* subtle glow effect */
.step-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(circle at top right, rgba(15, 108, 123, 0.08), transparent 60%);
  pointer-events: none;
}

/* ===============================
   RESPONSIVE IMPROVEMENTS
================================ */
/* Tablet */
@media (max-width: 992px) {
  .admission-box {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
    text-align: center;
  }
  /* Image on top */
  .admission-image {
    order: -1;
    align-items: center;
  }
  .admission-image img {
    max-width: 300px;
  }
  /* Steps alignment */
  .steps-wrap {
    padding-left: 0;
  }
  .steps-wrap::before {
    display: none;
    /* remove timeline line for clean mobile */
  }
  .step-item {
    text-align: left;
    justify-content: flex-start;
  }
  .step-num::before {
    display: none;
  }
}
/* Mobile */
@media (max-width: 600px) {
  section.admission {
    padding: 50px 15px;
  }
  .admission-box {
    padding: 20px;
    border-radius: 12px;
  }
  .admission-image img {
    max-width: 220px;
  }
  .step-item {
    padding: 14px;
    gap: 12px;
  }
  .step-num {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .step-content h3 {
    font-size: 14px;
  }
  .step-content p {
    font-size: 13px;
  }
  .step-badge {
    font-size: 10px;
    padding: 3px 8px;
  }
}
/* Extra small devices */
@media (max-width: 400px) {
  .admission-image img {
    max-width: 180px;
  }
  .step-content h3 {
    font-size: 13px;
  }
  .step-content p {
    font-size: 12px;
  }
}
/* ===== TESTIMONIALS ===== */
section.testimonials {
  background: #fbfbfb;
  padding: 70px 0;
}

/* Swiper wrapper */
.test-swiper {
  width: 100%;
  padding-bottom: 52px !important; /* space for pagination dots */
  padding-left: 4px;
  padding-right: 4px;
}

.test-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.test-swiper .test-card {
  width: 100%;
}

/* Prev / Next arrows — upGrad red */
.test-swiper-prev,
.test-swiper-next {
  display: none !important;
}

.test-swiper-prev::after,
.test-swiper-next::after {
  font-size: 18px !important;
  font-weight: 700;
}

/* Pagination dots */
.test-swiper-pagination .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.test-swiper-pagination .swiper-pagination-bullet-active {
  background: #ee2c3c;
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .test-swiper-pagination {
    bottom: 10px;
  }
}
.test-card {
  border: 1px solid #ee2c3c;
  border-radius: 10px;
  padding: 28px;
  transition: 0.25s;
}

.test-card:hover {
  border-color: #00161f;
  box-shadow: 0 6px 24px rgba(1, 66, 92, 0.08);
}

.test-stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.test-text {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-ava {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #ee2c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.test-name {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.test-role {
  font-size: 12px;
  color: #888;
}

/* ===== FAQ ===== */
section.faq {
  background: #f7fbfd;
  padding: 70px 0;
}

/* header above the split */
.faq-header {
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 28px;
  font-weight: 900;
  color: #000;
  margin-bottom: 10px;
}

.faq-header h2 span {
  color: #ee2c3c;
}

.faq-header p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.sec-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #ee2c3c;
  margin-bottom: 8px;
}

/* ── main split ── */
.faq-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}

/* ══ LEFT — category tabs ══ */
.faq-cats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 90px;
}

.faq-cat {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1.5px solid #e8ecef;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.faq-cat:hover {
  border-color: rgba(238, 44, 60, 0.3);
  color: #ee2c3c;
  background: #fff9f9;
}

.faq-cat.faq-cat-active {
  border-color: #ee2c3c;
  color: #ee2c3c;
  background: #fff;
  box-shadow: 0 2px 12px rgba(238, 44, 60, 0.1);
}

/* contact card */
.faq-contact {
  background: #ee2c3c;
  border-radius: 10px;
  padding: 20px 18px;
  color: #fff;
  margin-top: 8px;
}

.faq-contact h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.faq-contact p {
  font-size: 12.5px;
  opacity: 0.8;
  margin-bottom: 14px;
  color: #fff;
}

.faq-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c3000a;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 7px;
  text-decoration: none;
  transition: 0.2s;
}

.faq-contact a:hover {
  background: #a0000a;
}

/* ══ RIGHT — panels ══ */
.faq-panel {
  display: none;
}

.faq-panel.faq-panel-active {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── accordion item ── */
.faq-item {
  border-bottom: 1px solid #eaeef2;
  background: #fff;
  padding: 0 10px;
}

.faq-item:first-child {
  border-top: 1px solid #eaeef2;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 14.5px;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.2s;
}

.faq-item.open .faq-q {
  color: #ee2c3c;
}

.faq-q:hover {
  color: #ee2c3c;
}

/* +/− icon — plain, no background */
.faq-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #aaa;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: #ee2c3c;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
}

.faq-a {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  padding: 0 4px;
  transition: max-height 0.38s ease, padding 0.28s;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 4px 18px;
}

/* fee table */
.faq-fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  border: 1px solid #e4e8ec;
  border-radius: 8px;
  overflow: hidden;
}

.faq-fee-table th {
  background: #f7f9fb;
  padding: 10px 14px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  border-bottom: 1px solid #e4e8ec;
}

.faq-fee-table td {
  padding: 10px 14px;
  color: #333;
  border-bottom: 1px solid #f0f2f4;
}

.faq-fee-table tr:last-child td {
  border-bottom: none;
}

.faq-fee-table td:last-child,
.faq-fee-table th:last-child {
  text-align: right;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 860px) {
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .faq-cats {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .faq-cat {
    padding: 10px 14px;
    font-size: 13px;
  }
  .faq-contact {
    display: none;
  }
}
@media (max-width: 560px) {
  .faq-q {
    font-size: 13.5px;
  }
  .faq-a {
    font-size: 13.5px;
  }
}
.map-location {
  padding: 70px 0;
}

/* ===== FOOTER ===== */
footer {
  background: #0b1f2b;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand h3 span {
  color: #e7000b;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.fsoc {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.2s;
}

.fsoc:hover {
  background: #e7000b;
  color: #fff;
}

.fsoc svg {
  width: 15px;
  height: 15px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-addr {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

.footer-addr strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */