@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;
  }
}
/* ===================== 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);
  }
}
.why-upgrad {
  position: relative;
  padding: 88px 0;
  background: #ffffff;
  overflow: hidden;
}

.why-upgrad-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.why-upgrad-card {
  position: relative;
  min-height: 100%;
  padding: 26px 24px 24px;
  border: 1px solid rgba(1, 66, 92, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(1, 26, 40, 0.05);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.why-upgrad-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #ee2c3c 0%, #016a8e 100%);
  opacity: 0;
  transition: opacity 0.26s ease;
}

.why-upgrad-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(1, 26, 40, 0.12);
  border-color: rgba(238, 44, 60, 0.18);
}

.why-upgrad-card:hover::before {
  opacity: 1;
}

.why-upgrad-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff1f3 0%, #ebf8fc 100%);
  border: 1px solid rgba(238, 44, 60, 0.14);
  color: #ee2c3c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.why-upgrad-card__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.9;
}

.why-upgrad-card__title {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #121212;
}

.why-upgrad-card__copy {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #666;
}

@media (max-width: 991px) {
  .why-upgrad {
    padding: 72px 0;
  }
  .why-upgrad-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .why-upgrad {
    padding: 60px 0;
  }
  .why-upgrad-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-upgrad-card {
    padding: 22px 20px;
    border-radius: 18px;
  }
}
.tech-stack-section {
  padding: 0 0 88px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.tech-stack-panel {
  position: relative;
  padding: 38px 36px 34px;
  border: 1px solid rgba(1, 66, 92, 0.1);
  border-radius: 28px;
  background: radial-gradient(circle at top right, rgba(238, 44, 60, 0.08), transparent 26%), linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  box-shadow: 0 20px 48px rgba(1, 26, 40, 0.06);
  overflow: hidden;
}

.tech-stack-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(1, 106, 142, 0.06);
  pointer-events: none;
}

.tech-stack-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 10px;
  list-style: none;
}

.tech-stack-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(1, 66, 92, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(1, 26, 40, 0.04);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #3a3a3a;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tech-stack-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ee2c3c;
  box-shadow: 0 0 0 4px rgba(238, 44, 60, 0.08);
  flex-shrink: 0;
}

.tech-stack-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 44, 60, 0.24);
  box-shadow: 0 10px 24px rgba(1, 26, 40, 0.08);
}

@media (max-width: 767px) {
  .tech-stack-section {
    padding: 0 0 60px;
  }
  .tech-stack-panel {
    padding: 28px 20px 24px;
    border-radius: 22px;
  }
  .tech-stack-pills {
    gap: 10px 8px;
  }
  .tech-stack-pill {
    padding: 8px 12px;
    font-size: 12px;
  }
}
.curriculam-section {
  padding: 50px 0 88px;
  background: #ffffff;
}

.curriculam-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.curriculam-item {
  border: 1px solid rgba(1, 66, 92, 0.1);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(1, 26, 40, 0.04);
  overflow: hidden;
  transition: box-shadow 0.24s ease, border-color 0.24s ease;
}

.curriculam-item.is-open {
  border-color: rgba(238, 44, 60, 0.16);
  box-shadow: 0 24px 54px rgba(1, 26, 40, 0.08);
}

.curriculam-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 0;
  background: #ffffff;
  color: #161616;
  text-align: left;
  cursor: pointer;
  transition: background 0.24s ease, color 0.24s ease;
}

.curriculam-item.is-open .curriculam-trigger {
  background: linear-gradient(135deg, #ee2c3c 0%, #c3000a 100%);
  color: #ffffff;
}

.curriculam-trigger__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(238, 44, 60, 0.08);
  color: #ee2c3c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.curriculam-item.is-open .curriculam-trigger__badge {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.curriculam-trigger__title {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.curriculam-trigger__icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(1, 66, 92, 0.12);
  background: #ffffff;
  color: #ee2c3c;
  flex-shrink: 0;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.curriculam-item.is-open .curriculam-trigger__icon {
  transform: rotate(180deg);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.curriculam-trigger__icon svg {
  width: 16px;
  height: 16px;
}

.curriculam-panel {
  background: #ffffff;
  animation: curriculamFade 0.28s ease;
}

.curriculam-panel[hidden] {
  display: none;
}

.curriculam-panel__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.curriculam-block {
  padding: 28px 24px 30px;
}

.curriculam-block + .curriculam-block {
  border-left: 1px solid rgba(1, 66, 92, 0.08);
}

.curriculam-block__title {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ee2c3c;
}

.curriculam-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.curriculam-list li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: #4d4d4d;
}

.curriculam-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ee2c3c;
}

@keyframes curriculamFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .curriculam-panel__inner {
    grid-template-columns: 1fr;
  }
  .curriculam-block + .curriculam-block {
    border-left: 0;
    border-top: 1px solid rgba(1, 66, 92, 0.08);
  }
}
@media (max-width: 767px) {
  .curriculam-section {
    padding: 0 0 60px;
  }
  .curriculam-item {
    border-radius: 18px;
  }
  .curriculam-trigger {
    padding: 16px 16px;
    gap: 12px;
  }
  .curriculam-trigger__title {
    font-size: 0.92rem;
  }
  .curriculam-trigger__icon {
    width: 30px;
    height: 30px;
  }
  .curriculam-block {
    padding: 20px 16px 22px;
  }
  .curriculam-list li {
    font-size: 13px;
  }
}
.campare-section {
  padding: 0 0 88px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.campare-table-shell {
  border: 1px solid rgba(1, 66, 92, 0.1);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(1, 26, 40, 0.06);
  overflow: hidden;
}

.campare-table-scroll {
  overflow-x: auto;
}

.campare-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.campare-table thead th {
  padding: 18px 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  color: #ffffff;
}

.campare-table thead th:first-child,
.campare-table thead th:last-child {
  background: #130d0d;
}

.campare-table thead th:nth-child(2) {
  background: linear-gradient(135deg, #ee2c3c 0%, #c3000a 100%);
}

.campare-table tbody td {
  padding: 18px 20px;
  border-top: 1px solid rgba(1, 66, 92, 0.08);
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.6;
  color: #4f4f4f;
  background: #ffffff;
}

.campare-table tbody tr:nth-child(even) td {
  background: #fcfdff;
}

.campare-table tbody td:first-child {
  width: 26%;
  font-weight: 700;
  color: #161616;
}

.campare-table tbody td:nth-child(2) {
  width: 37%;
  font-weight: 600;
  color: #ee2c3c;
}

.campare-table tbody td:last-child {
  width: 37%;
}

@media (max-width: 767px) {
  .campare-section {
    padding: 0 0 60px;
  }
  .campare-table-shell {
    border-radius: 20px;
  }
  .campare-table thead th,
  .campare-table tbody td {
    padding: 14px 16px;
  }
  .campare-table tbody td {
    font-size: 13px;
  }
}
.career-outcome-section {
  padding: 50px 0 30px;
  background: #ffffff;
}

.career-outcome-roles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.career-outcome-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 184px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(1, 66, 92, 0.1);
  border-radius: 18px;
  background: #ffffff;
  color: #1b1b1b;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.career-outcome-card::after {
  content: attr(data-number);
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(1, 66, 92, 0.1);
  transition: color 0.22s ease;
}

.career-outcome-card.is-active {
  border-color: rgba(238, 44, 60, 0.18);
  background: linear-gradient(135deg, #ee2c3c 0%, #c3000a 100%);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(238, 44, 60, 0.22);
}

.career-outcome-card.is-active::after {
  color: rgba(255, 255, 255, 0.18);
}

.career-outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(1, 26, 40, 0.08);
}

.career-outcome-card__title {
  max-width: 80%;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.career-outcome-card__copy {
  max-width: 92%;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #666;
  transition: color 0.22s ease;
}

.career-outcome-card.is-active .career-outcome-card__copy {
  color: rgba(255, 255, 255, 0.84);
}

.career-outcome-sectors {
  border: 1px solid rgba(1, 66, 92, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  box-shadow: 0 16px 36px rgba(1, 26, 40, 0.04);
  padding: 22px 22px 24px;
}

.career-outcome-sectors__title {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9da4ab;
}

.career-outcome-sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.career-outcome-sector-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(1, 66, 92, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  font-weight: 600;
  color: #474747;
}

.career-outcome-sector-item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #016a8e;
  box-shadow: 0 0 0 4px rgba(1, 106, 142, 0.08);
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .career-outcome-roles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .career-outcome-section {
    padding: 0 0 60px;
  }
  .career-outcome-roles {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .career-outcome-card {
    min-height: auto;
    padding: 18px 16px;
  }
  .career-outcome-card::after {
    font-size: 1.6rem;
    right: 14px;
  }
  .career-outcome-card__title,
  .career-outcome-card__copy {
    max-width: none;
  }
  .career-outcome-sectors {
    padding: 18px 16px 20px;
    border-radius: 18px;
  }
  .career-outcome-sector-item {
    font-size: 11px;
    padding: 8px 12px;
  }
}
.fee-structure-section {
  padding: 70px 0 88px;
  background: #ffffff;
}

.fee-structure-shell {
  position: relative;
  padding: 44px clamp(24px, 4vw, 44px);
  border: 1px solid rgba(1, 66, 92, 0.12);
  border-radius: 32px;
  background: radial-gradient(circle at top right, rgba(1, 106, 142, 0.06), transparent 30%), radial-gradient(circle at bottom left, rgba(238, 44, 60, 0.08), transparent 24%), linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
  box-shadow: 0 20px 48px rgba(1, 26, 40, 0.05);
  overflow: hidden;
}

.fee-structure-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(238, 44, 60, 0.08);
  border-radius: 24px;
  pointer-events: none;
}

.fee-structure-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(238, 44, 60, 0.14);
  border-radius: 999px;
  background: #fff4f5;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #c62334;
}

.fee-structure-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ee2c3c;
  box-shadow: 0 0 0 4px rgba(238, 44, 60, 0.08);
  flex-shrink: 0;
}

.fee-structure-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 560px;
}

.fee-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 22px 22px;
  border: 1px solid rgba(1, 66, 92, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(1, 26, 40, 0.06);
}

.fee-card--upfront {
  border-color: transparent;
  background: linear-gradient(180deg, #ee2c3c 0%, #d71f33 100%);
  box-shadow: 0 24px 44px rgba(215, 31, 51, 0.22);
}

.fee-card--upfront::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.fee-card__label,
.fee-card__price,
.fee-card__title,
.fee-card__subtext,
.fee-card__list,
.fee-card__cta {
  position: relative;
  z-index: 1;
}

.fee-card__label {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fee-card--upfront .fee-card__label,
.fee-card--upfront .fee-card__price,
.fee-card--upfront .fee-card__subtext,
.fee-card--upfront .fee-card__list li {
  color: #ffffff;
}

.fee-card--emi .fee-card__label {
  color: #7e8897;
}

.fee-card__price,
.fee-card__title {
  margin-top: 10px;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.fee-card__price {
  font-size: clamp(2.1rem, 3.4vw, 2.8rem);
}

.fee-card__title {
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  color: #121212;
}

.fee-card__subtext {
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.55;
}

.fee-card--upfront .fee-card__subtext {
  color: rgba(255, 255, 255, 0.82);
}

.fee-card--emi .fee-card__subtext {
  color: #6b7280;
}

.fee-card__list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
}

.fee-card__list li {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 1.5;
}

.fee-card__list li::before {
  content: "/";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
}

.fee-card--upfront .fee-card__list li::before {
  color: rgba(255, 255, 255, 0.86);
}

.fee-card--emi .fee-card__list li {
  color: #5c6470;
}

.fee-card--emi .fee-card__list li::before {
  color: #ee2c3c;
}

.fee-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.fee-card__cta:hover {
  transform: translateY(-2px);
}

.fee-card__cta--light {
  background: #ffffff;
  color: #d71f33;
  box-shadow: 0 12px 26px rgba(163, 24, 40, 0.18);
}

.fee-card__cta--dark {
  background: #ee2c3c;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(215, 31, 51, 0.18);
}

@media (max-width: 991px) {
  .fee-structure-section {
    padding: 0 0 72px;
  }
  .fee-structure-shell {
    padding: 36px 24px;
    border-radius: 28px;
  }
  .fee-structure-grid {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .fee-structure-section {
    padding: 0 0 60px;
  }
  .fee-structure-shell {
    padding: 28px 18px;
    border-radius: 22px;
  }
  .fee-structure-shell::before {
    inset: 10px;
    border-radius: 16px;
  }
  .fee-structure-heading {
    margin-bottom: 26px;
  }
  .fee-structure-heading .course-section-title {
    font-size: 2.2rem;
  }
  .fee-structure-badge {
    padding: 9px 12px;
    line-height: 1.35;
  }
  .fee-structure-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .fee-card {
    padding: 22px 18px 18px;
    border-radius: 18px;
  }
}
/* ===================================================
   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 */
  }
}
/* ===================================================
   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;
  }
}
section.certifications {
  position: relative;
  overflow: hidden;
  padding: 0 0 88px;
}

/* Decorative corners */
section.certifications::before,
section.certifications::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

section.certifications::before {
  top: 20px;
  right: 20px;
  border-right: none;
  border-bottom: none;
}

section.certifications::after {
  bottom: 20px;
  left: 20px;
  border-left: none;
  border-top: none;
}

.cert-content {
  position: relative;
  z-index: 1;
  background: #000000;
  border-radius: 16px;
  padding: 60px 50px;
}

.cert-header {
  text-align: center;
  margin-bottom: 50px;
}

.cert-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cert-header p {
  font-size: 14px;
  color: #b0b0b0;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.cert-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 140px;
}

.badge-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
  position: relative;
}

.cert-badge:nth-child(2) .badge-icon {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.cert-badge:nth-child(3) .badge-icon {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.badge-text {
  text-align: center;
}

.badge-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.badge-text p {
  font-size: 12px;
  color: #a0a0a0;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
  section.certifications {
    padding: 40px 30px;
  }
  .cert-header h2 {
    font-size: 24px;
  }
  .cert-badges {
    gap: 30px;
  }
  .badge-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
  .badge-text h3 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  section.certifications {
    padding: 30px 20px;
    border-radius: 12px;
  }
  .cert-header {
    margin-bottom: 40px;
  }
  .cert-header h2 {
    font-size: 20px;
  }
  .cert-header p {
    font-size: 12px;
  }
  .cert-badges {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  .badge-icon {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }
  .badge-text h3 {
    font-size: 13px;
  }
  .badge-text p {
    font-size: 11px;
  }
}
/* ===================================================
   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;
  }
}
/*Course hero section*/
.course-herobtn {
  flex-wrap: wrap;
}
.course-herobtn a {
  font-size: 16px;
  padding: 14px 25px;
}
@media (max-width: 767px) {
  .course-herobtn a {
    width: 100%;
  }
}

/**common heading section **/
.course-section-heading {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.course-section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.course-section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ee2c3c;
}

.course-section-title {
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #121212;
}

.course-section-title span {
  color: #ee2c3c;
}

.course-section-copy {
  margin-top: 20px;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #656565;
}

.course-section-heading--center .course-section-title,
.course-section-heading--center .course-section-copy {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .course-section-heading {
    margin-bottom: 28px;
  }
  .course-section-title {
    max-width: none;
    font-size: 2rem;
    line-height: 1.2;
  }
  .course-section-copy {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.7;
  }
}
/***common heading section end ***/
.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;
}

/* 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;
}

@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;
  }
}
/* ===== 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;
}

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;
}

.step-itemlp {
  font-size: 16px;
  line-height: 1.4;
}

/* ===============================
   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;
  }
}
/* ══════════════════════════════════════════════
   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: rgba(255, 255, 255, 0.55);
  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;
  }
}
/* ===== 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;
  }
}
/* ===== 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=course.css.map */