@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

/* ─── COOKIE CONSENT BANNER ──────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #3d1560;
  color: #fff;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -8px 40px rgba(61, 21, 96, 0.6);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

#cookie-banner.ck-visible {
  transform: translateY(0);
}

#cookie-banner.ck-hiding {
  transform: translateY(105%);
}

.ck-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.ck-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.ck-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ck-icon-wrap svg {
  width: 18px;
  height: 18px;
  color: #ED7425;
}

.ck-copy {
  flex: 1;
}

.ck-copy strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
}

.ck-copy p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

.ck-copy p a {
  color: #ED7425;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.ck-copy p a:hover {
  opacity: 0.8;
}

.ck-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ck-btn-accept {
  background: #ED7425;
  color: #fff;
  border: none;
  padding: 11px 26px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.ck-btn-accept:hover {
  background: #c85f18;
  transform: translateY(-1px);
}

.ck-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.ck-btn-decline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.ck-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  flex-shrink: 0;
}

.ck-close:hover {
  color: rgba(255, 255, 255, 0.7);
}

.ck-close svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .ck-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 20px 20px;
  }

  .ck-actions {
    justify-content: space-between;
  }

  .ck-btn-accept {
    flex: 1;
    text-align: center;
  }
}

/* ─── END COOKIE ─────────────────────────────────────────── */

:root {
  --primary: #f37021;
  --secondary: #4a1d6d;
  --text: #333;
  --text-light: #666;
  --bg-section: #ffffff;
  --bg-card: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #f8fafc;
  color: var(--text);
  line-height: 1.6;
}

.testimonials-section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Slider Container */
.testi-slider-container {
  position: relative;
  width: 100%;
  padding-bottom: 50px;
}

.testi-slider-wrapper {
  overflow: hidden;
  cursor: grab;
}

.testi-slider-wrapper:active {
  cursor: grabbing;
}

.testi-grid {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testi-card {
  flex: 0 0 100%;
  padding: 0 15px;
  opacity: 0.5;
  transform: scale(0.95);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .testi-card {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .testi-card {
    flex: 0 0 33.333%;
  }
}

.testi-card.active {
  opacity: 1;
  transform: scale(1);
}


.testi-card:hover .testi-card-inner {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testi-quote {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(243, 112, 33, 0.3);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.testi-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--secondary);
}

blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 30px;
  flex-grow: 1;
}

.testi-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testi-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 600;
}

.testi-info span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Controls */
.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.testi-nav-btn {
  background: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  color: var(--secondary);
}

.testi-nav-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.testi-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 300px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.testi-dot.active {
  background: var(--primary);
  width: 25px;
  border-radius: 5px;
}

/* Animation classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.accred-section {
  padding: 80px 0;
  background: radial-gradient(circle at 50% -20%, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
  position: relative;
}

.accred-label {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  padding: 10px 0;
}

.logo-slider::before,
.logo-slider::after {
  content: "";
  height: 100%;
  width: 150px;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-track {
  display: flex;
  width: calc(270px * 18);
  /* (250px + 20px margin) * 18 logos */
  animation: scroll 40s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-270px * 9));
  }

  /* Scrolls half-way (one full set) */
}

.accred-pill {
  width: 250px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  transition: var(--transition);
  margin: 0 10px;
  border-radius: 20px;
}

.accred-pill img {
  max-width: 100px;
  /*filter: grayscale(100%) brightness(0.8);*/
  opacity: 0.8;
  transition: var(--transition);
}

.accred-pill:hover {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.accred-pill:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.nl-sec {
  padding: 80px 20px;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

/* Decorative glowing blob in the corner */
.nl-sec::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--primary);
  opacity: 0.4;
  border-radius: 50%;
  filter: blur(80px);
}

.nl-form {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  /* Very subtle transparent white */
  padding: 8px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  /* Glass blur effect */
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 25px;
  color: white;
  outline: none;
}

.nl-form button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 35px;
  border-radius: 40px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nl-form button:hover {
  background: white;
  color: var(--primary);
  transform: translateX(3px);
}

.nl-success-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: white;
  margin-top: 20px;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .nl-form {
    flex-direction: column;
    border-radius: 24px;
    background: transparent;
    box-shadow: none;
  }

  .nl-form input {
    background: rgba(255, 255, 255, 0.05);
    height: 55px;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .nl-form button {
    width: 100%;
    height: 55px;
    border-radius: 12px;
  }
}


/* ─── RESET & TOKENS ──────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --o: #ED7425;
  --od: #c85f18;
  --ol: #fff4ec;
  --p: #5E2390;
  --pl: #f5edfc;
  --dark: #642A7D;
  --mid: #374151;
  --gray: #6B7280;
  --light: #F9FAFB;
  --border: #F3F4F6;
  --w: #ffffff;
  --r: 1260px;
  --ease: cubic-bezier(.25, .46, .45, .94);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--w);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: spin 1s linear infinite;
  display: inline-block;
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

ul {
  list-style: none
}

.wrap {
  max-width: var(--r);
  margin: 0 auto;
  padding: 0 32px
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(.95);
    box-shadow: 0 0 0 0 rgba(237, 116, 37, .4)
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 18px rgba(237, 116, 37, 0)
  }

  100% {
    transform: scale(.95)
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

/* ─── SHARED COMPONENTS ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .875rem;
  transition: all .25s var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: .01em;
  white-space: nowrap
}

.btn-primary {
  background: var(--o);
  color: #fff;
  box-shadow: 0 4px 14px rgba(237, 116, 37, .3)
}

.btn-primary:hover {
  background: var(--od);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(237, 116, 37, .4)
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--o);
  color: var(--o);
  font-family: "Plus Jakarta Sans", sans-serif;

}

.btn-outline:hover {
  background: var(--o);
  color: #fff
}

.btn-white {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15)
}

.btn-white:hover {
  background: var(--o);
  color: #fff;
  transform: translateY(-2px)
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: #fff;
  backdrop-filter: blur(6px)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .22)
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.badge-orange {
  background: var(--ol);
  color: var(--o)
}

.badge-light {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  backdrop-filter: blur(6px)
}

.section-label {
  display: inline-block;
  background: var(--ol);
  color: var(--o);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px
}

.section-title {
  font-family: "DM Serif Display", serif;
  letter-spacing: 2px;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.22;
  margin-bottom: 12px
}

.about-content .section-title .accent {
  color: #000;
}

.section-title .accent {
  color: #fff;
}

.section-sub {
  font-size: .97rem;
  color: #fff;
  line-height: 1.78;
  max-width: 540px;
  margin: 0 auto;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.rule {
  width: 52px;
  height: 3px;
  background: var(--o);
  border-radius: 3px;
  margin: 16px auto 0
}

.section-head {
  text-align: center;
  margin-bottom: 56px
}

.section-head.left {
  text-align: left
}

.section-head.left .rule {
  margin: 16px 0 0
}

.section-head.left .section-sub {
  margin: 0
}

/* ─── REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.up {
  opacity: 1;
  transform: translateY(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal-left.up {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal-right.up {
  opacity: 1;
  transform: translateX(0)
}

.delay-1 {
  transition-delay: .1s
}

.delay-2 {
  transition-delay: .2s
}

.delay-3 {
  transition-delay: .3s
}

.delay-4 {
  transition-delay: .4s
}

.delay-5 {
  transition-delay: .5s
}

/* ─── TOP BAR ────────────────────────────────────── */
.topbar {
  background:
    repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, .04) 0px,
      rgba(255, 255, 255, .04) 1px,
      transparent 1px,
      transparent 6px),
    linear-gradient(90deg,
      hsl(24, 100%, 34%) 0%,
      hsl(22, 96%, 42%) 50%,
      hsl(18, 90%, 36%) 100%);
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px
}

.tb-left {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.tb-left i,
.tb-left .lucide {
  color: #fff;
  margin-right: 5px;
  width: 13px;
  height: 13px;
  opacity: .85;
}

.tb-right {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.tb-right a {
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 5px
}

.tb-right a:hover,
.tb-right a.active {
  color: #fff;
}

.tb-right .lucide {
  width: 14px;
  height: 14px
}

/* ─── NAVBAR ─────────────────────────────────────── */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .3s
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: var(--r);
  margin: 0 auto;
  gap: 16px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--dark);
  letter-spacing: -.5px;
  flex-shrink: 0
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--o);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: .3s
}

.logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.08)
}

.logo .hi {
  color: var(--o)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.nav-item {
  position: relative;
}

.nav-links>.nav-item>a {
  color: var(--mid);
  font-weight: 500;
  font-size: .875rem;
  padding: 14px 14px;
  border-radius: 7px;
  transition: .2s;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links>.nav-item>a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--o);
  border-radius: 2px;
  transform: scaleX(0);
  transition: .2s
}

.nav-links>.nav-item>a:hover {
  color: var(--o)
}

.nav-links>.nav-item>a:hover::after,
.nav-links>.nav-item>a.active::after {
  transform: scaleX(1)
}

.nav-links>.nav-item>a.active {
  color: var(--o)
}

.nav-item>a i {
  font-size: 0.7rem;
  transition: transform 0.3s;
  opacity: 0.6;
}

.nav-item:hover>a i {
  transform: rotate(180deg);
}

/* Dropdown Common */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 100;
  padding: 12px 8px;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px !important;
  color: var(--mid) !important;
  font-size: 0.85rem !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  transition: .2s !important;
}

.dropdown a::after {
  display: none !important;
}

.dropdown a:hover {
  background: var(--ol) !important;
  color: var(--o) !important;
  padding-left: 18px !important;
}

/* Mega Menu */
.has-mega {
  position: static !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 100;
  padding: 48px 0;
}

/* Resources Mega Menu — 3 columns */
.resources-mega {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--r);
  margin: 0 auto;
  padding: 32px 40px;
  border-radius: 0 0 16px 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  right: auto;
  min-width: 820px;
}

.has-mega:hover .resources-mega {
  transform: translateX(-50%) translateY(0);
}

.mega-col {
  padding: 0 24px;
  border-right: 1px solid var(--border);
}

.mega-col:first-child {
  padding-left: 0;
}

.mega-col:last-child {
  border-right: none;
  padding-right: 0;
}

.mega-heading {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--o);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.mega-heading svg,
.mega-heading i {
  width: 14px;
  height: 14px;
}

.mega-link {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 10px !important;
  border-radius: 8px !important;
  color: var(--mid) !important;
  font-size: 0.84rem !important;
  font-weight: 400 !important;
  transition: background 0.2s, padding-left 0.2s !important;
  margin-bottom: 2px;
  white-space: normal !important;
}

.mega-link svg,
.mega-link i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--o);
  margin-top: 3px;
}

.mega-link span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mega-link strong {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.84rem;
}

.mega-link em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--gray);
}

.mega-link:hover {
  background: var(--ol) !important;
  padding-left: 14px !important;
}

.mega-link:hover strong {
  color: var(--o);
}

.mega-link::after {
  display: none !important;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  max-width: var(--r);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}

.mega-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ol);
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-col h4 i {
  color: var(--o);
  font-size: 1rem;
}

.mega-col ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-col ul a {
  padding: 8px 12px !important;
  font-size: 0.85rem !important;
  color: var(--gray) !important;
  white-space: normal !important;
  border-radius: 8px !important;
  transition: .2s !important;
  font-weight: 500 !important;
}

.mega-col ul a:hover {
  background: var(--ol) !important;
  color: var(--o) !important;
  padding-left: 18px !important;
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px
}

.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s var(--ease)
}

.ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.ham.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mob-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 32px 24px;
  background: #fff;
  border-top: 1px solid var(--border)
}

.mob-menu a {
  padding: 11px 14px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--mid);
  transition: .2s;
  font-size: .9rem
}

.mob-menu a:hover {
  background: var(--ol);
  color: var(--o)
}

.mob-menu .mob-cta {
  margin-top: 12px;
  justify-content: center;
  width: 100%;
  border-radius: 8px
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 680px;
  overflow: hidden
}

.slider-wrap {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform .9s cubic-bezier(.77, 0, .175, 1)
}

.slide {
  width: 33.333%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.06);
  transition: transform 9s linear
}

.slide.active .slide-img {
  transform: scale(1)
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1
}

.s1 .slide-overlay {
  background: linear-gradient(108deg, rgba(17, 24, 39, .82) 28%, rgba(94, 35, 144, .3) 100%)
}

.s2 .slide-overlay {
  background: linear-gradient(108deg, rgba(17, 24, 39, .82) 28%, rgba(94, 35, 144, .3) 100%)
}

.s3 .slide-overlay {
  background: linear-gradient(108deg, rgba(17, 24, 39, .82) 28%, rgba(94, 35, 144, .3) 100%)
}

.slide-body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 9%
}

.slide-text {
  max-width: 620px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s .3s var(--ease), transform .8s .3s var(--ease)
}

.slide.active .slide-text {
  opacity: 1;
  transform: translateY(0)
}

.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px
}

.slide-eyebrow i {
  color: var(--o)
}

.slide-text h1 {
  font-family: "DM Serif Display", serif;
  letter-spacing: 2px;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px
}

.slide-text h1 em {
  font-style: normal;
  color: var(--o)
}

.slide-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .86);
  margin-bottom: 32px;
  line-height: 1.78;
  max-width: 520px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.slide-metrics {
  display: flex;
  gap: 0;
  margin-top: 48px
}

.metric {
  flex: 0 0 auto
}

.metric strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--o);
  line-height: 1;
  font-family: "DM Serif Display", serif;
}

.metric span {
  font-size: .7rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.metric+.metric {
  border-left: 1px solid rgba(255, 255, 255, .18);
  padding-left: 28px;
  margin-left: 28px
}

.hero-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
  pointer-events: none
}

.arrow {
  pointer-events: all;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: .25s var(--ease);
  font-size: .9rem
}

.arrow:hover {
  background: var(--o);
  border-color: var(--o);
  transform: scale(1.08)
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: .3s var(--ease)
}

.dot.active {
  background: var(--o);
  width: 26px;
  border-radius: 6px
}

.hero-trust {
  position: absolute;
  bottom: 48px;
  right: 6%;
  z-index: 10;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .22);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 4s ease-in-out infinite
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--o);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0
}

.trust-text strong {
  display: block;
  font-size: .85rem;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.3
}

.trust-text span {
  font-size: .72rem;
  color: var(--gray)
}

/* ─── STATS STRIP ────────────────────────────────────────── */
.stats-strip {
  background: var(--o);
  padding: 48px 0;
  border: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat-block {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.4)
}

.stat-block:last-child {
  border-right: none
}

.stat-block i,
.stat-block .lucide {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 10px;
  display: block;
  width: 24px;
  height: 24px;
  margin-left: auto;
  margin-right: auto
}

.stat-num {
  font-family: "DM Serif Display", serif;
  letter-spacing: 2px;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 6px
}

.stat-block p {
  color: rgba(255, 255, 255, 0.85);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .3px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

/* ─── COURSES ────────────────────────────────────── */
.courses-sec {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 100%, rgba(103, 44, 128, 0.5) 0%, transparent 55%),
    linear-gradient(135deg, #ed7326 0%, #d4621a 40%, #672c80 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.courses-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 95% 50%, rgba(237, 116, 38, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 5% 50%, rgba(103, 44, 128, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.search-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  border: 1.5px solid var(--border);
  max-width: 520px;
  margin: 0 auto 52px;
  transition: .25s
}

.search-wrap:focus-within {
  border-color: var(--o);
  box-shadow: 0 4px 24px rgba(237, 116, 37, .1)
}

.search-wrap i {
  color: var(--gray);
  margin-right: 8px;
  font-size: .9rem
}

.search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: .9rem;
  font-family: inherit;
  background: transparent;
  color: var(--dark);
  padding: 10px 0
}

.search-wrap button {
  background: var(--o);
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 7px;
  font-weight: 600;
  font-size: .82rem;
  cursor: pointer;
  transition: .2s;
  font-family: inherit
}

.search-wrap button:hover {
  background: var(--od)
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px
}

.course-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.cat-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--mid);
  cursor: pointer;
  transition: all .25s var(--ease);
  font-family: "Plus Jakarta Sans", sans-serif;

}

.cat-btn:hover {
  border-color: var(--o);
  color: var(--o)
}

.cat-btn.active {
  background: var(--o);
  border-color: var(--o);
  color: #fff;
  box-shadow: 0 4px 12px rgba(237, 116, 37, .25)
}

.course-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .08);
  border-color: rgba(237, 116, 37, .2)
}

.card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--ol);
  flex-shrink: 0
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .8s var(--ease)
}

.course-card:hover .card-img img {
  transform: scale(1.08)
}

.card-level {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, .9);
  color: var(--dark);
  font-size: .62rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .5px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  z-index: 2
}

.card-school-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--o);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--ol);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--o);
  font-size: 1.25rem;
  margin-bottom: 16px;
  transition: .3s
}

.course-card:hover .card-icon {
  background: var(--o);
  color: #fff;
  transform: rotate(-5deg)
}

.card-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: "DM Serif Display", serif;
  letter-spacing: 1px;
}

.card-desc {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin-top: auto
}

.card-meta {
  display: flex;
  gap: 16px
}

.card-meta span {
  font-size: .75rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.card-meta .lucide {
  color: var(--o);
  width: 14px;
  height: 14px
}

.card-arrow {
  width: 36px;
  height: 36px;
  background: var(--ol);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--o);
  transition: .3s
}

.card-arrow .lucide {
  width: 16px;
  height: 16px
}

.course-card:hover .card-arrow {
  background: var(--o);
  color: #fff;
  transform: translateX(4px)
}

.load-more-wrap {
  text-align: center;
  margin-top: 20px
}

/* ─── WHY US ──────────────────────────────────────── */
.why-sec {
  background: #fff;
  padding: 88px 0
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.why-card {
  padding: 32px 26px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ol), #fff);
  opacity: 0;
  transition: .3s
}

.why-card:hover::before {
  opacity: 1
}

.why-card:hover {
  border-color: rgba(237, 116, 37, .3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(237, 116, 37, .09)
}

.why-card>* {
  position: relative;
  z-index: 1
}

.why-ico {
  width: 56px;
  height: 56px;
  background: var(--ol);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--o);
  margin-bottom: 18px;
  transition: .3s
}

.why-ico .lucide {
  width: 24px;
  height: 24px
}

.why-card-ico {
  width: 56px;
  height: 56px;
  background: var(--ol);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--o);
  margin-bottom: 18px;
  transition: .3s
}

.why-card:hover .why-ico {
  background: var(--o);
  color: #fff;
  transform: rotate(-6deg) scale(1.08)
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.why-card p {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.75;
  font-family: "Plus Jakarta Sans", sans-serif;

}

/* ─── ABOUT ──────────────────────────────────────── */
.about-sec {
  background: var(--light);
  padding: 88px 0
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-visuals {
  position: relative;
  height: 520px
}

.av-main {
  width: 73%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .16)
}

.av-sub {
  width: 52%;
  height: 270px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 4px solid #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .14)
}

.av-badge {
  position: absolute;
  top: 48%;
  left: 52%;
  transform: translate(-50%, -50%);
  background: var(--o);
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 5;
  border: 4px solid #fff;
  box-shadow: 0 8px 28px rgba(237, 116, 37, .4);
  animation: float 5s ease-in-out infinite
}

.av-badge .lucide {
  width: 24px;
  height: 24px
}

.about-content p {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 14px;
  margin: 24px 0 32px
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--dark);
  font-family: "Plus Jakarta Sans", sans-serif;

}

.check-item i {
  color: var(--o);
  font-size: .78rem;
  flex-shrink: 0
}

.mv-sec {
  background: #fff;
  padding: 60px 0 88px;
}

.mv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mv-card {
  background: var(--light);
  padding: 44px 32px;
  border-radius: 20px;
  text-align: center;
  transition: all .35s var(--ease);
  border: 1px solid var(--border);
}

.mv-card:hover {
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .06);
  border-color: var(--o);
}

.mv-card i {
  font-size: 2rem;
  color: var(--o);
  margin-bottom: 24px;
  display: block;
}

.mv-card h4 {
  font-family: "DM Serif Display", serif;
  letter-spacing: 2px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.mv-card p {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.7;
  font-family: "Plus Jakarta Sans", sans-serif;

}

/* ─── NEW REGISTRATION SECTION — EMBEDDED ON HERO‑STYLE IMAGE ─── */
.register-sec {
  padding: 0;
  background-image: url('https://images.unsplash.com/photo-1584820927498-cfe5211fd8bf?w=1400&q=85');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.7) 0%, rgba(237, 116, 37, 0.4) 100%);
  z-index: 1;
}

.reg-card-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin: 60px 20px;
}

.reg-card {
  background: #fff;
  border-radius: 24px;
  padding: 42px 38px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(237, 116, 37, 0.2);
}

.reg-card .form-tag {
  background: var(--o);
  color: #fff;
  display: inline-block;
  padding: 4px 20px;
  border-radius: 40px;
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.reg-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 6px;
}

.reg-card .form-sub {
  color: var(--gray);
  font-size: .9rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.form-group {
  margin-bottom: 12px
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: inherit;
  font-size: .875rem;
  outline: none;
  transition: .2s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--o);
  box-shadow: 0 0 0 3px rgba(237, 116, 37, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 74px
}

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center
}

.form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 9px;
  font-weight: 800;
  border: none;
  background: var(--o);
  color: #fff;
  transition: .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.form-submit:hover {
  background: var(--od);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(237, 116, 37, .3)
}

.form-note {
  font-size: .71rem;
  color: var(--gray);
  text-align: center;
  margin-top: 10px
}

.form-note a {
  color: var(--o)
}

/* ─── SPONSOR BANNER ─────────────────────────────── */
.sponsor-sec {
  background: var(--light);
  padding: 36px 0
}

.sponsor-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden
}

.sponsor-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(237, 116, 37, .08)
}

.sponsor-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 40%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03)
}

.sponsor-text {
  flex: 1;
  min-width: 260px;
  position: relative;
  z-index: 1
}

.sponsor-label {
  display: inline-block;
  background: rgba(237, 116, 37, .18);
  color: var(--o);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase
}

.sponsor-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  color: #fff;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px
}

.sponsor-text p {
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
  line-height: 1.75
}

.sponsor-text strong {
  color: var(--o)
}

.sponsor-cta {
  background: var(--o);
  color: #fff;
  padding: 14px 36px;
  border-radius: 9px;
  font-weight: 800;
  font-size: .875rem;
  box-shadow: 0 8px 24px rgba(237, 116, 37, .3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .25s
}

.sponsor-cta:hover {
  background: var(--od);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(237, 116, 37, .4)
}

/* ─── TESTIMONIALS ───────────────────────────────── */
.testi-sec {
  background: #fff;
  padding: 88px 0
}

.testi-grid {
  gap: 24px
}

.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%
}

.testi-card:hover {
  border-color: rgba(237, 116, 37, .35);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(237, 116, 37, .09)
}

.testi-quote {
  width: 36px;
  height: 36px;
  background: var(--o);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  margin-bottom: 14px;
  flex-shrink: 0
}

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px
}

.testi-quote .lucide {
  width: 18px;
  height: 18px
}

.testi-stars .lucide {
  color: var(--o);
  width: 14px;
  height: 14px
}

.news-read .lucide {
  width: 14px;
  height: 14px
}

.f-logo .lucide {
  width: 18px;
  height: 18px
}

.f-links .lucide {
  width: 12px;
  height: 12px
}

.f-contact-item .lucide {
  width: 16px;
  height: 16px;
  color: var(--o);
  margin-top: 3px;
  flex-shrink: 0
}

.socials a .lucide {
  width: 16px;
  height: 16px
}

.testi-card blockquote {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.testi-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--ol);
  flex-shrink: 0
}

.testi-info strong {
  display: block;
  font-size: .875rem;
  color: var(--dark);
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.testi-info span {
  font-size: .73rem;
  color: var(--gray);
  font-family: "Plus Jakarta Sans", sans-serif;

}

/* ─── NEWS ───────────────────────────────────────── */
.news-sec {
  background: var(--light);
  padding: 88px 0
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.news-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%
}

.news-card:hover {
  border-color: rgba(237, 116, 37, .35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .09)
}

.news-img-wrap {
  height: 196px;
  overflow: hidden;
  flex-shrink: 0
}

.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: .55s var(--ease)
}

.news-card:hover .news-img-wrap img {
  transform: scale(1.05)
}

.news-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px
}

.news-tag {
  background: var(--ol);
  color: var(--o);
  font-size: .67rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.news-date {
  font-size: .73rem;
  color: var(--gray)
}

.news-body h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.46;
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.news-body p {
  font-size: .84rem;
  color: var(--gray);
  line-height: 1.74;
  flex: 1;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.news-read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--o);
  font-size: .8rem;
  font-weight: 700;
  margin-top: 14px;
  transition: .2s;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.news-read:hover {
  gap: 9px
}

/* ─── ACCREDITATION ──────────────────────────────── */
.accred-sec {
  background: #fff;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.accred-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px
}

.accred-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px
}

.accred-pill {
  background: var(--light);
  border: 1.5px solid var(--border);
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 700;
  color: var(--mid);
  font-size: .8rem;
  transition: .2s;
  cursor: default;
  letter-spacing: .2px
}

.accred-pill:hover {
  background: var(--ol);
  border-color: rgba(237, 116, 37, .3);
  color: var(--o)
}

/* ─── NEWSLETTER ─────────────────────────────────── */
.nl-sec {
  position: relative;
  padding: 88px 0;
  text-align: center;
  overflow: hidden;
  /* Gradient over background image */
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, .06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(0, 0, 0, .15) 0%, transparent 50%),
    linear-gradient(135deg,
      hsla(24, 100%, 34%, .92) 0%,
      hsla(22, 96%, 44%, .88) 35%,
      hsla(20, 90%, 50%, .88) 60%,
      hsla(16, 85%, 42%, .92) 80%,
      hsla(10, 78%, 32%, .95) 100%),
    url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1400&q=80') center/cover no-repeat;
}

/* Diagonal mesh overlay for texture depth */
.nl-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, .025) 0px,
      rgba(255, 255, 255, .025) 1px,
      transparent 1px,
      transparent 28px);
  pointer-events: none;
  z-index: 0;
}

/* Glowing orb — top left */
.nl-sec::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 100, .22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Second glowing orb — bottom right via pseudo on .nl-inner wrapper */
.nl-inner {
  position: relative;
  z-index: 1;
}

.nl-inner::before {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Eyebrow label ── */
.nl-sec .nl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}

/* ── Heading ── */
.nl-sec h2 {
  font-family: "DM Serif Display", serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .18);
}

/* ── Sub-text ── */
.nl-sec p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .97rem;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.72;
}

/* ── Input wrapper ── */
.nl-form {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, .97);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, .25),
    0 0 0 1px rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px);
}

/* ── Email input ── */
.nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 22px;
  color: var(--dark);
  font-size: .9rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  min-width: 0;
}

.nl-form input::placeholder {
  color: #a0aec0;
}

/* ── Submit button ── */
.nl-form button {
  background: var(--dark);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: .83rem;
  padding: 0 28px;
  border: none;
  cursor: pointer;
  transition: background .22s, transform .18s;
  letter-spacing: .4px;
  flex-shrink: 0;
  border-radius: 0;
}

.nl-form button:hover {
  background: #1a0a26;
  transform: scale(1.03);
}

/* ── Privacy micro-note ── */
.nl-sec .nl-note {
  margin-top: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .74rem;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nl-sec .nl-note svg {
  width: 12px;
  height: 12px;
  color: rgba(255, 255, 255, .5);
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: #281032;
  color: rgba(255, 255, 255, .65);
  padding: 0 0 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 28px
}

.f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px
}

.f-logo .logo-mark {
  width: 38px;
  height: 38px;
  background: var(--o);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem
}

.f-logo .hi {
  color: var(--o)
}

.footer-col>p {
  font-size: .84rem;
  line-height: 1.84;
  color: rgba(255, 255, 255, .46);
  max-width: 260px
}

.footer-col h5 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.f-links li {
  margin-bottom: 8px
}

.f-links a {
  color: rgba(255, 255, 255, .52);
  font-size: .83rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: .2s
}

.f-links a i {
  color: var(--o);
  font-size: .64rem
}

.f-links a:hover {
  color: var(--o);
  padding-left: 4px
}

.f-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 11px;
  font-size: .83rem;
  color: rgba(255, 255, 255, .52);
  line-height: 1.65
}

.f-contact-item i {
  color: var(--o);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 20px
}

.socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .88rem;
  transition: .25s
}

.socials a:hover {
  background: var(--o);
  color: #fff;
  transform: translateY(-3px)
}

.f-nl input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  color: #fff;
  font-size: .83rem;
  outline: none;
  font-family: inherit;
  margin-top: 12px;
  margin-bottom: 8px;
  transition: .2s
}

.f-nl input:focus {
  border-color: var(--o)
}

.f-nl input::placeholder {
  color: rgba(255, 255, 255, .3)
}

.f-nl button {
  width: 100%;
  background: var(--o);
  border: none;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: .2s;
  font-family: inherit;
  font-weight: 700;
  font-size: .82rem
}

.f-nl button:hover {
  background: var(--od)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .77rem;
  color: rgba(255, 255, 255, .3)
}

.footer-bottom a {
  color: rgba(255, 255, 255, .3);
  transition: .2s
}

.footer-bottom a:hover {
  color: var(--o)
}

.footer-accred {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px
}

.footer-accred span {
  background: rgba(255, 255, 255, .07);
  font-size: .67rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .45);
  padding: 3px 10px;
  border-radius: 5px
}

/* ─── COOKIE ─────────────────────────────────────── */
#cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 380px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
  border-radius: 14px;
  border-left: 4px solid var(--o);
  padding: 18px 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: .84rem;
  animation: fadeUp .5s var(--ease)
}

.ck-title {
  font-weight: 800;
  font-size: .9rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 7px
}

.ck-btns {
  display: flex;
  gap: 8px
}

.ck-btn {
  padding: 8px 20px;
  border-radius: 7px;
  font-weight: 600;
  font-size: .78rem;
  border: none;
  cursor: pointer;
  transition: .2s;
  font-family: inherit
}

.ck-btn.accept {
  background: var(--dark);
  color: #fff
}

.ck-btn.accept:hover {
  background: #000
}

.ck-btn.decline {
  background: var(--border);
  color: var(--gray)
}

footer#contactSection {
  position: relative;
  background: linear-gradient(165deg, #281032 0%, #281032 40%, #0f2847 100%);
  color: #c8d6e5;
  overflow: hidden;
}

/* ---------- Subtle Classy Pattern Overlay ---------- */
.footer-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("images/new-bg.png");
  background-size: cover;
}

footer#contactSection::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(56, 163, 226, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Soft radial glow accent bottom-right */
footer#contactSection::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Footer Top (Main Grid) ---------- */
.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 48px;
}

/* ---------- Brand Column ---------- */
.footer-brand .logo {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-brand .logo:hover {
  opacity: 0.85;
}

.footer-brand>p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(200, 214, 229, 0.72);
  max-width: 320px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

/* ---------- Social Icons ---------- */
.socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(200, 214, 229, 0.8);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
  background: rgba(56, 163, 226, 0.15);
  border-color: rgba(56, 163, 226, 0.35);
  color: #5ec2f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 163, 226, 0.12);
}

.social-btn svg {
  flex-shrink: 0;
}

/* ---------- Link Columns ---------- */
.footer-col h4,
.footer-newsletter-col h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after,
.footer-newsletter-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #e87425, rgb(239 208 185));
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.footer-col ul li a {
  color: rgba(200, 214, 229, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.25s ease;
  position: relative;
  padding-left: 0;
}

.footer-col ul li a::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid #ed7425;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  opacity: 0;
  transition: all 0.25s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 18px;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  left: 0;
}

/* ---------- Contact Column ---------- */
.contact-group {
  margin-bottom: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.contact-icon-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.contact-icon-label svg {
  color: #ed7425;
  flex-shrink: 0;
}

.phone-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.phone {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 24px;
}

.phone a {
  color: rgba(200, 214, 229, 0.8);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease;
}

.phone a:hover {
  color: #5ec2f5;
}

.email-link {
  display: inline-block;
  padding-left: 24px;
  color: rgba(200, 214, 229, 0.8);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.email-link:hover {
  color: #5ec2f5;
}

.address-text {
  display: block;
  padding-left: 24px;
  color: rgba(200, 214, 229, 0.7);
  font-size: 0.9rem;
}

/* ---------- Footer Bottom ---------- */
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(200, 214, 229, 0.45);
  font-family: "Plus Jakarta Sans", sans-serif;

}

.footer-copy a {
  color: rgba(200, 214, 229, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-copy a:hover {
  color: #5ec2f5;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(200, 214, 229, 0.45);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.footer-bottom-links .divider {
  color: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(200, 214, 229, 0.55);
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(200, 214, 229, 0.85);
}

.lang-badge svg {
  flex-shrink: 0;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
    padding: 56px 32px 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 520px;
  }

  .footer-brand>p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px 32px;
  }

  .footer-brand {
    grid-column: auto;
    text-align: center;
  }

  .footer-brand>p {
    margin-left: auto;
    margin-right: auto;
  }

  .socials {
    justify-content: center;
  }

  .footer-col h4,
  .footer-newsletter-col h4 {
    text-align: center;
  }

  .footer-col h4::after,
  .footer-newsletter-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col ul li a:hover {
    padding-left: 0;
  }

  .footer-col ul li a::before {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    text-align: center;
  }
}

/*.footer-top {*/
/*    display: grid;*/
/*    grid-template-columns: 2fr 1fr 1fr 1.6fr;*/
/*    gap: 48px;*/
/*    margin-bottom: 48px;*/
/*    padding-bottom: 48px;*/
/*    border-bottom: 1px solid rgba(255, 255, 255, 0.06);*/
/*}*/
/*.footer-brand p {*/
/*    font-size: 13px;*/
/*    color: rgba(255, 255, 255, 0.5);*/
/*    line-height: 1.8;*/
/*    margin-bottom: 24px;*/
/*}*/
/*footer{*/
/*        padding: 64px 56px 28px;*/
/*}*/
/*.footer-col ul a {*/
/*    text-decoration: none;*/
/*    color: rgba*/
/*#ffffff80*/
/*(255, 255, 255, 0.5);*/
/*    font-size: 14px;*/
/*    transition: color var(--transition);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 6px;*/
/*}*/
/* ─── RESPONSIVE ─────────────────────────────────── */
@media(max-width:1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat-block:nth-child(2) {
    border-right: none
  }

  .stat-block:nth-child(3) {
    border-top: 1px solid var(--border)
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 52px
  }

  .about-visuals {
    height: 400px
  }

  .av-main {
    width: 68%;
    height: 330px
  }

  .av-sub {
    height: 220px
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .mv-cards {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:900px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  .nav-links,
  .desk-cta {
    display: none
  }

  .ham {
    display: flex
  }

  .hero {
    height: 560px
  }

  .slide-text h1 {
    font-size: 2.3rem
  }

  .hero-trust {
    display: none
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

  .news-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .sponsor-card {
    padding: 36px 28px
  }

  .sponsor-text h2 {
    font-size: 1.5rem
  }

  .topbar .wrap {
    flex-direction: column;
    text-align: center;
    gap: 6px
  }

  .slide-body {
    padding: 0 6%
  }

  .mv-cards {
    grid-template-columns: 1fr
  }

  .courses-grid {
    grid-template-columns: 1fr
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .section-title {
    font-size: 2rem
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .stats-row {
    grid-template-columns: 1fr
  }

  .stat-block {
    border-right: none !important;
    border-bottom: 1px solid var(--border)
  }

  .stat-block:last-child {
    border-bottom: none
  }
}

@media(max-width:480px) {
  .hero {
    height: 520px
  }

  .slide-text h1 {
    font-size: 1.9rem
  }

  .slide-text p {
    font-size: .9rem
  }

  .slide-actions {
    flex-direction: column
  }

  .metric strong {
    font-size: 1.6rem
  }

  .about-visuals {
    height: 310px
  }

  .av-main {
    height: 250px;
    width: 70%
  }

  .av-sub {
    height: 170px
  }

  .reg-card {
    padding: 30px 22px
  }

  .wrap {
    padding: 0 20px
  }
}

/* --- Extracted from contact.html --- */

/* ─── RESET & TOKENS ──────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --o: #ED7425;
  --od: #c85f18;
  --ol: #fff4ec;
  --p: #5E2390;
  --pl: #f5edfc;
  --dark: #642A7D;
  --mid: #374151;
  --gray: #6B7280;
  --light: #F9FAFB;
  --border: #F3F4F6;
  --w: #ffffff;
  --r: 1260px;
  --ease: cubic-bezier(.25, .46, .45, .94);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--w);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: spin 1s linear infinite;
  display: inline-block;
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

ul {
  list-style: none
}

.wrap {
  max-width: var(--r);
  margin: 0 auto;
  padding: 0 32px
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.up {
  opacity: 1;
  transform: translateY(0)
}

/* ─── SHARED COMPONENTS ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .875rem;
  transition: all .25s var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: .01em;
  white-space: nowrap
}

.btn-primary {
  background: var(--o);
  color: #fff;
  box-shadow: 0 4px 14px rgba(237, 116, 37, .3)
}

.btn-primary:hover {
  background: var(--od);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(237, 116, 37, .4)
}

/* ─── TOP BAR & NAVBAR ───────────────────────────── */
.topbar {
  background:
    repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, .04) 0px,
      rgba(255, 255, 255, .04) 1px,
      transparent 1px,
      transparent 6px),
    linear-gradient(90deg,
      hsl(24, 100%, 34%) 0%,
      hsl(22, 96%, 42%) 50%,
      hsl(18, 90%, 36%) 100%);
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px
}

.tb-left {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  align-items: center
}

.tb-left i,
.tb-left .lucide {
  color: var(--o);
  margin-right: 5px;
  width: 13px;
  height: 13px
}

.tb-right {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px
}

.tb-right a {
  color: rgba(255, 255, 255, .6);
  font-weight: 500;
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 5px
}

.tb-right a:hover,
.tb-right a.active {
  color: var(--o)
}

.nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .3s
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: var(--r);
  margin: 0 auto;
  gap: 16px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--dark);
  letter-spacing: -.5px;
  flex-shrink: 0
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.nav-item {
  position: relative;
}

.nav-links>.nav-item>a {
  color: var(--mid);
  font-weight: 500;
  font-size: .875rem;
  padding: 14px 14px;
  border-radius: 7px;
  transition: .2s;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links>.nav-item>a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--o);
  border-radius: 2px;
  transform: scaleX(0);
  transition: .2s
}

.nav-links>.nav-item>a:hover {
  color: var(--o)
}

.nav-links>.nav-item>a:hover::after,
.nav-links>.nav-item>a.active::after {
  transform: scaleX(1)
}

.nav-links>.nav-item>a.active {
  color: var(--o)
}

.nav-item>a i {
  font-size: 0.7rem;
  transition: transform 0.3s;
  opacity: 0.6;
}

.nav-item:hover>a i {
  transform: rotate(180deg);
}

/* Dropdown Common */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 100;
  padding: 12px 8px;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px !important;
  color: var(--mid) !important;
  font-size: 0.85rem !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  transition: .2s !important;
}

.dropdown a::after {
  display: none !important;
}

.dropdown a:hover {
  background: var(--ol) !important;
  color: var(--o) !important;
  padding-left: 18px !important;
}

/* Mega Menu */
.has-mega {
  position: static !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 100;
  padding: 48px 0;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  max-width: var(--r);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}

.mega-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ol);
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-col h4 i {
  color: var(--o);
  font-size: 1rem;
}

.mega-col ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-col ul a {
  padding: 8px 12px !important;
  font-size: 0.85rem !important;
  color: var(--gray) !important;
  white-space: normal !important;
  border-radius: 8px !important;
  transition: .2s !important;
  font-weight: 500 !important;
}

.mega-col ul a:hover {
  background: var(--ol) !important;
  color: var(--o) !important;
  padding-left: 18px !important;
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px
}

.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s var(--ease)
}

.mob-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 32px 24px;
  background: #fff;
  border-top: 1px solid var(--border)
}

.mob-menu a {
  padding: 11px 14px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--mid);
  transition: .2s;
  font-size: .9rem
}

.mob-menu a:hover {
  background: var(--ol);
  color: var(--o)
}

/* ─── PAGE TITLE HERO ────────────────────────────── */
.page-title-hero {
  position: relative;
  background: linear-gradient(135deg, #3a1259 0%, #642A7D 40%, #4a1d6b 70%, #2d1240 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  text-align: center;
}

.page-title-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("images/new-bg.png");
  background-size: cover;
  opacity: 0.04;
  pointer-events: none;
}

.page-title-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, #4f1f6d, transparent);
  pointer-events: none;
  z-index: 2;
}

.page-title-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.page-title-orb--1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(237, 116, 37, 0.12) 0%, transparent 70%);
  top: -80px;
  right: -60px;
}

.page-title-orb--2 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(94, 35, 144, 0.2) 0%, transparent 70%);
  bottom: -40px;
  left: -40px;
}

.page-title-content {
  position: relative;
  z-index: 1;
  max-width: var(--r);
  margin: 0 auto;
  padding: 0 32px;
}

.page-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s var(--ease) both;
}

.page-title-hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 16px;
  animation: fadeUp 0.7s 0.1s var(--ease) both;
}

.page-title-hero h1 .accent {
  color: var(--o);
}

.page-title-accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--o), rgba(237, 116, 37, 0.3));
  border-radius: 3px;
  margin: 0 auto 24px;
  animation: fadeUp 0.7s 0.15s var(--ease) both;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  animation: fadeUp 0.7s 0.3s var(--ease) both;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.page-breadcrumb a:hover {
  color: var(--o);
}

.page-breadcrumb .bc-current {
  color: var(--o);
  font-weight: 600;
}

/* ─── CONTACT SECTION ────────────────────────────── */
.contact-sec {
  padding: 90px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

/* Info Side */
.contact-info-side h2 {
  font-family: "DM Serif Display", serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.contact-info-side p {
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 480px;
}

.info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.info-icon {
  width: 52px;
  height: 52px;
  background: var(--ol);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--o);
  flex-shrink: 0;
  transition: .3s;
}

.info-card:hover .info-icon {
  background: var(--o);
  color: #fff;
  transform: translateY(-3px);
}

.info-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.info-text p,
.info-text a {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
  display: block;
  transition: .2s;
}

.info-text a:hover {
  color: var(--o);
}

/* Form Side */
.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(100, 42, 125, 0.05);
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mid);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--light);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--dark);
  transition: all 0.3s;
  outline: none;
}

.form-control:focus {
  border-color: var(--o);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(237, 116, 37, 0.08);
}

textarea.form-control {
  min-height: 140px;
  resize: none;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* Map Section */
.map-sec {
  padding-bottom: 90px;
}

.map-container {
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--light);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.1);
}

/* ─── FOOTER ─────────────────────────────────────── */
footer#contactSection {
  position: relative;
  background: linear-gradient(165deg, #281032 0%, #281032 40%, #0f2847 100%);
  color: #c8d6e5;
  overflow: hidden;
}

/* ---------- Subtle Classy Pattern Overlay ---------- */
.footer-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("images/new-bg.png");
  background-size: cover;
}

footer#contactSection::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(56, 163, 226, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Soft radial glow accent bottom-right */
footer#contactSection::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Footer Top (Main Grid) ---------- */
.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 48px;
}

/* ---------- Brand Column ---------- */
.footer-brand .logo {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-brand .logo:hover {
  opacity: 0.85;
}

.footer-brand>p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(200, 214, 229, 0.72);
  max-width: 320px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

/* ---------- Social Icons ---------- */
.socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(200, 214, 229, 0.8);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
  background: rgba(56, 163, 226, 0.15);
  border-color: rgba(56, 163, 226, 0.35);
  color: #5ec2f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 163, 226, 0.12);
}

.social-btn svg {
  flex-shrink: 0;
}

/* ---------- Link Columns ---------- */
.footer-col h4,
.footer-newsletter-col h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after,
.footer-newsletter-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #e87425, rgb(239 208 185));
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.footer-col ul li a {
  color: rgba(200, 214, 229, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.25s ease;
  position: relative;
  padding-left: 0;
}

.footer-col ul li a::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid #ed7425;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  opacity: 0;
  transition: all 0.25s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 18px;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  left: 0;
}

/* ---------- Contact Column ---------- */
.contact-group {
  margin-bottom: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.contact-icon-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.contact-icon-label svg {
  color: #ed7425;
  flex-shrink: 0;
}

.phone-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.phone {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 24px;
}

.phone a {
  color: rgba(200, 214, 229, 0.8);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease;
}

.phone a:hover {
  color: #5ec2f5;
}

.email-link {
  display: inline-block;
  padding-left: 24px;
  color: rgba(200, 214, 229, 0.8);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.email-link:hover {
  color: #5ec2f5;
}

.address-text {
  display: block;
  padding-left: 24px;
  color: rgba(200, 214, 229, 0.7);
  font-size: 0.9rem;
}

/* ---------- Footer Bottom ---------- */
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(200, 214, 229, 0.45);
  font-family: "Plus Jakarta Sans", sans-serif;

}

.footer-copy a {
  color: rgba(200, 214, 229, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-copy a:hover {
  color: #5ec2f5;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(200, 214, 229, 0.45);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.footer-bottom-links .divider {
  color: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(200, 214, 229, 0.55);
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(200, 214, 229, 0.85);
}

.lang-badge svg {
  flex-shrink: 0;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
    padding: 56px 32px 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 520px;
  }

  .footer-brand>p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px 32px;
  }

  .footer-brand {
    grid-column: auto;
    text-align: center;
  }

  .footer-brand>p {
    margin-left: auto;
    margin-right: auto;
  }

  .socials {
    justify-content: center;
  }

  .footer-col h4,
  .footer-newsletter-col h4 {
    text-align: center;
  }

  .footer-col h4::after,
  .footer-newsletter-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col ul li a:hover {
    padding-left: 0;
  }

  .footer-col ul li a::before {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .desk-cta {
    display: none;
  }

  .ham {
    display: flex;
  }

  .page-title-hero h1 {
    font-size: 2.2rem;
  }

  .contact-form-card {
    padding: 32px 24px;
  }
}

/* --- Extracted from course-details.html --- */

/* ─── RESET & TOKENS ──────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --o: #ED7425;
  --od: #c85f18;
  --ol: #fff4ec;
  --p: #5E2390;
  --pl: #f5edfc;
  --dark: #642A7D;
  --mid: #374151;
  --gray: #6B7280;
  --light: #F9FAFB;
  --border: #F3F4F6;
  --w: #ffffff;
  --r: 1260px;
  --ease: cubic-bezier(.25, .46, .45, .94);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--w);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

ul {
  list-style: none
}

.wrap {
  max-width: var(--r);
  margin: 0 auto;
  padding: 0 32px
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ─── SHARED COMPONENTS ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .875rem;
  transition: all .25s var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: .01em;
  white-space: nowrap
}

.btn-primary {
  background: var(--o);
  color: #fff;
  box-shadow: 0 4px 14px rgba(237, 116, 37, 0.3)
}

.btn-primary:hover {
  background: var(--od);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(237, 116, 37, 0.4)
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--o);
  color: var(--o);
}

.btn-outline:hover {
  background: var(--o);
  color: #fff
}

/* ─── TOP BAR ────────────────────────────────────── */
.topbar {
  background:
    repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, .04) 0px,
      rgba(255, 255, 255, .04) 1px,
      transparent 1px,
      transparent 6px),
    linear-gradient(90deg,
      hsl(24, 100%, 34%) 0%,
      hsl(22, 96%, 42%) 50%,
      hsl(18, 90%, 36%) 100%);
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px
}

.tb-left {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  align-items: center
}

.tb-left i,
.tb-left .lucide {
  color: #fff;
  margin-right: 5px;
  width: 13px;
  height: 13px;
  opacity: .85;
}

.tb-right {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px
}

.tb-right a {
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
  transition: .2s
}

.tb-right a:hover,
.tb-right a.active {
  color: #fff
}

/* ─── NAVBAR ─────────────────────────────────────── */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .3s
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: var(--r);
  margin: 0 auto;
  gap: 16px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--dark);
  letter-spacing: -.5px;
  flex-shrink: 0
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0
}

.nav-item {
  position: relative;
}

.nav-links>.nav-item>a {
  color: var(--mid);
  font-weight: 500;
  font-size: .875rem;
  padding: 14px 14px;
  border-radius: 7px;
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-links>.nav-item>a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--o);
  border-radius: 2px;
  transform: scaleX(0);
  transition: .2s
}

.nav-links>.nav-item>a:hover {
  color: var(--o)
}

.nav-links>.nav-item>a:hover::after,
.nav-links>.nav-item>a.active::after {
  transform: scaleX(1)
}

.nav-links>.nav-item>a.active {
  color: var(--o)
}

.nav-item>a i {
  font-size: 0.7rem;
  transition: transform 0.3s;
  opacity: 0.6;
}

.nav-item:hover>a i {
  transform: rotate(180deg);
}

/* Dropdown Common */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 100;
  padding: 12px 8px;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px !important;
  color: var(--mid) !important;
  font-size: 0.85rem !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  transition: .2s !important;
}

.dropdown a::after {
  display: none !important;
}

.dropdown a:hover {
  background: var(--ol) !important;
  color: var(--o) !important;
  padding-left: 18px !important;
}

/* Mega Menu */
.has-mega {
  position: static !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 100;
  padding: 48px 0;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  max-width: var(--r);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}

.mega-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ol);
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-col h4 i {
  color: var(--o);
  font-size: 1rem;
}

.mega-col ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-col ul a {
  padding: 8px 12px !important;
  font-size: 0.85rem !important;
  color: var(--gray) !important;
  white-space: normal !important;
  border-radius: 8px !important;
  transition: .2s !important;
  font-weight: 500 !important;
}

.mega-col ul a:hover {
  background: var(--ol) !important;
  color: var(--o) !important;
  padding-left: 18px !important;
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px
}

.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s var(--ease)
}

.ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.ham.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mob-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 32px 24px;
  background: #fff;
  border-top: 1px solid var(--border)
}

.mob-menu a {
  padding: 11px 14px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--mid);
  transition: .2s;
  font-size: .9rem
}

.mob-menu a:hover {
  background: var(--ol);
  color: var(--o)
}

.mob-menu .mob-cta {
  margin-top: 12px;
  justify-content: center;
  width: 100%;
  border-radius: 8px
}

/* ─── COURSE HERO ────────────────────────────────── */
.course-hero {
  position: relative;
  background: linear-gradient(135deg, #3a1259 0%, #b23d09 40%, #2d1240 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  color: #fff;
}

.course-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("images/new-bg.png");
  background-size: cover;
  opacity: 0.04;
  pointer-events: none;
}

.course-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.course-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.course-badge i {
  color: var(--o);
}

.course-hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.course-hero p.intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.course-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.course-meta-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.course-meta-item i {
  color: var(--o);
  font-size: 1.2rem;
  margin-bottom: 8px;
  display: block;
}

.course-meta-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.course-meta-item span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-visual img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* ─── COURSE CONTENT ──────────────────────────────── */
.course-main {
  padding: 80px 0;
  background: #fff;
}

.course-grid-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

.course-sec-title {
  font-family: "DM Serif Display", serif;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.course-sec-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--o);
  border-radius: 2px;
}

.course-description p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.modules-list {
  margin-top: 48px;
  display: grid;
  gap: 16px;
}

.module-item {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: .3s;
}

.module-item:hover {
  border-color: var(--o);
  background: #fff;
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.module-num {
  width: 40px;
  height: 40px;
  background: var(--ol);
  color: var(--o);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.module-info h4 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.module-info p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Requirements Section */
.requirements-box {
  margin-top: 60px;
  background: var(--pl);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(94, 35, 144, 0.1);
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.req-item {
  display: flex;
  gap: 12px;
}

.req-item i {
  color: var(--p);
  margin-top: 4px;
}

.req-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.req-item p {
  font-size: 0.88rem;
  color: var(--mid);
}

/* ─── SIDEBAR ───────────────────────────────────── */
.course-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.price-box {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.price-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.price-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  font-family: "DM Serif Display", serif;
}

.price-sub {
  font-size: 0.85rem;
  color: var(--o);
  font-weight: 600;
}

.sidebar-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-info-list {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.side-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}

.side-info-item:last-child {
  border-bottom: none;
}

.side-info-item span {
  color: var(--gray);
}

.side-info-item strong {
  color: var(--dark);
}

.help-card {
  margin-top: 24px;
  background: var(--dark);
  border-radius: 20px;
  padding: 24px;
  color: #fff;
  text-align: center;
}

.help-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.help-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.help-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--o);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer#contactSection {
  position: relative;
  background: linear-gradient(165deg, #281032 0%, #281032 40%, #0f2847 100%);
  color: #c8d6e5;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("images/new-bg.png");
  background-size: cover;
}

footer#contactSection::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(56, 163, 226, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

footer#contactSection::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 48px;
}

.footer-brand .logo {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-brand>p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(200, 214, 229, 0.72);
  max-width: 320px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(200, 214, 229, 0.8);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
  background: rgba(56, 163, 226, 0.15);
  border-color: rgba(56, 163, 226, 0.35);
  color: #5ec2f5;
  transform: translateY(-2px);
}

.footer-col h4,
.footer-newsletter-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after,
.footer-newsletter-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #e87425, rgb(239 208 185));
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(200, 214, 229, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.contact-group {
  margin-bottom: 20px;
}

.contact-icon-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.contact-icon-label svg {
  color: #ed7425;
}

.phone-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.phone {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 24px;
}

.phone a,
.email-link {
  color: rgba(200, 214, 229, 0.8);
  font-size: 0.92rem;
  font-weight: 500;
}

.address-text {
  padding-left: 24px;
  color: rgba(200, 214, 229, 0.7);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(200, 214, 229, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 12px;
  font-size: 0.82rem;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .course-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .course-hero h1 {
    font-size: 2.8rem;
  }

  .course-hero p.intro {
    margin: 0 auto 32px;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .course-grid-layout {
    grid-template-columns: 1fr;
  }

  .course-sidebar {
    position: static;
    margin-top: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .desk-cta {
    display: none;
  }

  .ham {
    display: flex;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .socials {
    justify-content: center;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px 32px;
  }

  .footer-brand {
    grid-column: auto;
    text-align: center;
  }

  .footer-brand>p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    text-align: center;
  }
}

/* --- PAGE TITLE HERO (For Contact & FAQs & Others) --- */
.page-title-hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
}

.page-title-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.page-title-orb--1 {
  width: 300px;
  height: 300px;
  background: var(--p);
  top: -100px;
  left: -100px;
}

.page-title-orb--2 {
  width: 250px;
  height: 250px;
  background: var(--o);
  bottom: -100px;
  right: -100px;
}

.page-title-content {
  position: relative;
  z-index: 1;
}

.page-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-title-hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  margin-bottom: 16px;
}

.page-title-accent {
  width: 60px;
  height: 3px;
  background: var(--o);
  margin: 0 auto 24px;
  border-radius: 3px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.2s;
}

.page-breadcrumb a:hover {
  color: #fff;
}

.bc-current {
  color: var(--o);
  font-weight: 600;
}

/* --- FAQ PAGE --- */
.faq-sec {
  padding: 80px 0;
  background: var(--light);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: .3s;
}

.faq-item:hover {
  border-color: var(--o);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.faq-num {
  font-weight: 800;
  color: var(--o);
  font-size: 1.1rem;
}

.faq-question h3 {
  flex: 1;
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 700;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  color: var(--gray);
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--o);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  padding-left: 60px;
  color: var(--gray);
  font-size: 0.95rem;
}

.faq-answer-inner ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.faq-cta {
  margin-top: 60px;
  text-align: center;
  background: var(--w);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-cta h3 {
  font-size: 2rem;
  font-family: "DM Serif Display", serif;
  color: var(--dark);
  margin-bottom: 12px;
}

.faq-cta p {
  color: var(--gray);
  margin-bottom: 24px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* --- CONTACT PAGE --- */
.contact-sec {
  padding: 80px 0;
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-side h2 {
  font-family: "DM Serif Display", serif;
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.contact-info-side>p {
  color: var(--gray);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--ol);
  color: var(--o);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.info-text p,
.info-text a {
  color: var(--gray);
  font-size: 0.95rem;
  display: block;
}

.info-text a:hover {
  color: var(--o);
}

.contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: .3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--o);
  box-shadow: 0 0 0 4px rgba(237, 116, 37, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

.map-sec {
  padding: 0 0 80px;
  background: var(--light);
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- COURSE PAGES STYLES --- */
.course-hero {
  position: relative;
  background: linear-gradient(135deg, #3a1259 0%, #b54e0b 40%, #2d1240 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  color: #fff;
}

.course-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  max-width: var(--r);
  margin: 0 auto;
  padding: 0 32px;
}

.course-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.course-badge i {
  color: var(--o);
}

.course-hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.course-hero p.intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.course-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.course-meta-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.course-meta-item i {
  color: var(--o);
  font-size: 1.2rem;
  margin-bottom: 8px;
  display: block;
}

.course-meta-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.course-meta-item span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-visual img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.course-main {
  padding: 80px 0;
  background: #fff;
}

.course-grid-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  max-width: var(--r);
  margin: 0 auto;
  padding: 0 32px;
}

.course-sec-title {
  font-family: "DM Serif Display", serif;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.course-sec-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--o);
  border-radius: 2px;
}

.course-description p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.modules-list {
  margin-top: 48px;
  display: grid;
  gap: 16px;
}

.module-item {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: .3s;
}

.module-item:hover {
  border-color: var(--o);
  background: #fff;
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.module-num {
  width: 40px;
  height: 40px;
  background: var(--ol);
  color: var(--o);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.module-info h4 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.module-info p {
  font-size: 0.85rem;
  color: var(--gray);
}

.requirements-box {
  margin-top: 60px;
  background: var(--pl);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(94, 35, 144, 0.1);
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.req-item {
  display: flex;
  gap: 12px;
}

.req-item i {
  color: var(--p);
  margin-top: 4px;
}

.req-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.req-item p {
  font-size: 0.88rem;
  color: var(--mid);
}

.course-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.price-box {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.price-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.price-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  font-family: "DM Serif Display", serif;
}

.price-sub {
  font-size: 0.85rem;
  color: var(--o);
  font-weight: 600;
}

.sidebar-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-info-list {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.side-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}

.side-info-item:last-child {
  border-bottom: none;
}

.side-info-item span {
  color: var(--gray);
}

.side-info-item strong {
  color: var(--dark);
}

.help-card {
  margin-top: 24px;
  background: var(--dark);
  border-radius: 20px;
  padding: 24px;
  color: #fff;
  text-align: center;
}

.help-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.help-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.help-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--o);
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .course-hero-content {
    grid-template-columns: 1fr;
  }

  .course-grid-layout {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* --- COURSES PAGE --- */
.courses-page-sec {
  padding: 80px 0;
  background: var(--light);
}

.courses-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.course-cat-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: .3s;
}

.course-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--o);
}

.course-cat-card h4 {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}

.course-cat-card h4 svg,
.course-cat-card h4 i {
  color: var(--o);
  background: var(--ol);
  width: 48px;
  height: 48px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.course-cat-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-cat-card ul li a {
  display: block;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  transition: .2s;
}

.course-cat-card ul li a::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--o);
  opacity: 0.5;
  transition: .2s;
}

.course-cat-card ul li a:hover {
  color: var(--o);
}

.course-cat-card ul li a:hover::before {
  opacity: 1;
  transform: translateX(4px);
}

/* --- ABOUT PAGE --- */
.about-page-sec {
  padding: 100px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.about-page-sec .sec-title {
  font-family: "DM Serif Display", serif;
  font-size: 3.2rem;
  color: var(--dark);
  margin-bottom: 30px;
  line-height: 1.1;
}

.about-visual {
  position: sticky;
  top: 120px;
}

.visual-stack {
  position: relative;
  height: 650px;
}

.v-img {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 6px solid #fff;
  transition: transform 0.5s ease;
}

.v-img:hover {
  transform: translateY(-10px) scale(1.02);
  z-index: 10;
}

.v-img--1 {
  width: 80%;
  height: 450px;
  top: -20px;
  left: 0;
  z-index: 2;
}

.v-img--2 {
  width: 65%;
  height: 380px;
  bottom: 0;
  right: -20px;
  z-index: 3;
}

.v-img--3 {
  width: 50%;
  height: 280px;
  top: 120px;
  right: -50px;
  z-index: 1;
}

.v-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v-experience-badge {
  position: absolute;
  bottom: 0;
  left: 30px;
  background: var(--o);
  color: #fff;
  padding: 30px;
  border-radius: 24px;
  z-index: 5;
  box-shadow: 0 15px 30px rgba(237, 116, 37, 0.4);
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.v-exp-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  font-family: "DM Serif Display", serif;
}

.v-exp-txt {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* --- PARTNERS SECTION --- */
.about-partners-sec {
  background: var(--light);
  padding: 60px;
  border-radius: 32px;
  margin-bottom: 60px;
  border: 1px solid var(--border);
}

.partners-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.partners-text h3 {
  font-family: "DM Serif Display", serif;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.partners-text p {
  font-size: 1rem !important;
  margin-bottom: 16px !important;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.partner-item {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
}

.partner-item i {
  color: var(--o);
  width: 32px;
  height: 32px;
}

.partner-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--dark);
}

.partner-item span {
  font-size: 0.8rem;
  color: var(--gray);
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .partners-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visual-stack {
    height: 550px;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-visual {
    position: relative;
    top: 0;
  }
}

@media (max-width: 500px) {
  .visual-stack {
    height: 400px;
  }

  .v-img--1 {
    width: 85%;
  }

  .v-img--2 {
    width: 75%;
    height: 250px;
  }

  .v-img--3 {
    display: none;
  }

  .about-page-sec .sec-title {
    font-size: 2.4rem;
  }
}

.about-page-sec p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 16px;
  background: var(--light);
  border-radius: 12px;
}

.about-list li i,
.about-list li svg {
  color: var(--o);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-highlight-box {
  background: var(--ol);
  border-left: 4px solid var(--o);
  padding: 30px;
  border-radius: 0 16px 16px 0;
  margin-top: 40px;
}

.about-highlight-box p {
  margin-bottom: 0;
  color: var(--dark);
  font-weight: 500;
  font-size: 1.1rem;
}

.vm-sec {
  background: #ed7425;
  padding: 100px 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vm-card {
  background: #fff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--o);
}

.vm-card.mission {
  border-top-color: var(--p);
}

.vm-icon {
  width: 70px;
  height: 70px;
  background: var(--ol);
  color: var(--o);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.vm-card.mission .vm-icon {
  background: var(--pl);
  color: var(--p);
}

.vm-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.vm-card p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.values-sec {
  padding: 100px 0;
  background: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  transition: .3s;
  border: 1px solid var(--border);
  height: 100%;
}

.value-card:hover {
  background: #fff;
  border-color: var(--o);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.value-card .v-icon {
  width: 50px;
  height: 50px;
  color: var(--o);
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.value-card p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

.course-cat-card ul li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}

.faq-section {
  padding: 80px 0 100px;
  background: var(--w);
}

.faq-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ol);
  color: var(--o);
  font-family: "DM Serif Display", serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.faq-question h3 {
  flex: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
  transition: color 0.2s;
}

.faq-answer-inner p {
  margin-bottom: 12px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.faq-answer-inner li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}

.faq-item.active .faq-num {
  background: var(--o);
  color: #fff;
  transform: rotate(-5deg);
}

.faq-answer-inner strong {
  color: var(--dark);
  font-weight: 600;
}

.faq-answer-inner li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--o);
}

.faq-answer-inner ul,
.faq-answer-inner ol {
  list-style: none;
  margin: 8px 0;
  padding: 0;
}

.faq-item.active .faq-toggle {
  background: var(--pl);
  transform: rotate(180deg);
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.faq-answer-inner {
  padding: 0 24px 24px 76px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.85;
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  color: var(--gray);
  transition: all 0.3s var(--ease);
}

@media (max-width: 768px) {

  .about-list,
  .vm-grid {
    grid-template-columns: 1fr;
  }
}


/* --- ADMISSIONS PAGE REDESIGN -------------------------- */
.admissions-sec {
  padding: 80px 0;
  background: var(--w);
}

.page-wrap {
  display: flex;
  gap: 48px;
  max-width: var(--r);
  margin: 0 auto;
  align-items: flex-start;
}

.page-wrap .sidebar {
  flex: 0 0 300px;
  position: sticky;
  top: 120px;
  background: var(--light);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.sidebar-section-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 12px;
  padding-left: 12px;
  opacity: 0.6;
}

.s-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 16px;
  color: var(--mid);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: left;
  width: 100%;
  font-family: inherit;
}

.s-btn:hover {
  background: var(--pl);
  color: var(--p);
}

.s-btn.active {
  background: var(--w);
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  color: var(--p);
}

.s-dot {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}

.s-btn.active .s-dot {
  background: var(--o);
  box-shadow: 0 0 0 4px var(--ol);
}

.sidebar-cta {
  margin-top: 16px;
  padding: 16px;
  background: var(--w);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: center;
  font-family: inherit;
}

.sidebar-cta:hover {
  border-color: var(--o);
  color: var(--o);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237, 116, 37, 0.1);
}

.page-wrap .content {
  flex: 1;
  min-width: 0;
}

.panel {
  display: none;
  animation: fadeUp 0.6s var(--ease);
}

.panel.active {
  display: block;
}

.panel-hero {
  margin-bottom: 48px;
}

.panel-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--pl);
  color: var(--p);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.panel-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.panel-desc {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 650px;
  line-height: 1.6;
}

.panel-body {
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 32px;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--o);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(237, 116, 37, 0.3);
}

.step-line {
  width: 2px;
  background: var(--border);
  flex: 1;
  margin: 8px 0;
}

.step:last-child .step-line {
  display: none;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  margin-top: 8px;
}

.step-desc {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Fee Table */
.fee-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--w);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.fee-table th {
  padding: 20px 24px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.fee-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.fee-table tr:last-child td {
  border-bottom: none;
}

.fee-badge {
  background: #ecfdf5;
  color: #059669;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Info List */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.info-item-icon {
  width: 56px;
  height: 56px;
  background: var(--pl);
  color: var(--p);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.info-item:hover .info-item-icon {
  transform: scale(1.05) rotate(5deg);
  background: var(--p);
  color: #fff;
}

.info-item-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.info-item-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  padding: 32px;
  background: var(--w);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--p);
}

.card.hl-orange {
  background: var(--ol);
  border-color: var(--o);
}

.card-icon {
  font-size: 2.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.card-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .page-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .page-wrap .sidebar {
    flex: none;
    width: 100%;
    position: static;
    flex-direction: row;
    overflow-x: auto;
    padding: 12px;
    border-radius: 16px;
    scrollbar-width: none;
  }

  .page-wrap .sidebar::-webkit-scrollbar {
    display: none;
  }

  .sidebar-section-label {
    display: none;
  }

  .s-btn {
    white-space: nowrap;
    width: auto;
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .sidebar-cta {
    display: none;
  }

  .panel-title {
    font-size: 2rem;
  }
}

/* --- INDUSTRY LIAISON PAGE -------------------------- */
.liaison-sec {
  padding: 80px 0;
}

.liaison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.liaison-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.l-feat {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.l-feat i {
  width: 48px;
  height: 48px;
  background: rgba(237, 116, 37, 0.1);
  color: var(--o);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.l-feat h4 {
  margin-bottom: 4px;
  color: var(--dark);
  font-size: 1.05rem;
}

.l-feat p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
}

.l-visual-card {
  background: var(--p);
  padding: 40px;
  border-radius: 24px;
  position: relative;
}

.l-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.l-stat {
  color: #fff;
}

.l-stat strong {
  display: block;
  font-size: 2.2rem;
  font-family: 'DM Serif Display';
  margin-bottom: 4px;
  color: var(--o);
}

.l-stat span {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 500;
}

.partners-grid-sec {
  background: #f9f9fc;
  padding: 64px;
  border-radius: 24px;
  text-align: center;
}

.partners-grid-sec .section-head {
  margin-bottom: 40px;
}

.p-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

.p-logo-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--p);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

@media (max-width: 991px) {

  .admissions-grid,
  .liaison-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .admissions-sidebar {
    order: -1;
  }

  .partners-grid-sec {
    padding: 40px 20px;
  }
}

@media (max-width: 991px) {

  .admissions-grid,
  .liaison-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .admissions-sidebar {
    order: -1;
  }

  .partners-grid-sec {
    padding: 40px 20px;
  }
}

/* --- INDUSTRY LIAISON MIRROR (OVERWRITES) --- */
#liaison-wrap .s-btn.active .s-dot {
  background: var(--p);
  box-shadow: 0 0 0 4px var(--pl);
}

#liaison-wrap .stat {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s var(--ease);
}

#liaison-wrap .stat:hover {
  transform: translateY(-5px);
}

/* ─── NEWS SECTION ───────────────────────────────── */
.news-sec {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  /* Gradient over background image */
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 255, 255, .07) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(0, 0, 0, .25) 0%, transparent 60%),
    linear-gradient(135deg,
      hsla(24, 100%, 38%, .91) 0%,
      hsla(22, 95%, 46%, .88) 28%,
      hsla(20, 88%, 52%, .88) 55%,
      hsla(14, 80%, 38%, .92) 100%),
    url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=1400&q=80') center/cover no-repeat;
}

/* Subtle noise texture overlay */
.news-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Large decorative circles */
.news-sec::after {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  top: -160px;
  right: -120px;
  pointer-events: none;
  z-index: 0;
}

.news-sec .wrap {
  position: relative;
  z-index: 1;
}

/* Override section-head text colors to white on dark gradient */
.news-sec .section-label {
  color: rgba(255, 255, 255, .9) !important;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.news-sec .section-label i,
.news-sec .section-label svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, .85);
}

.news-sec .section-title {
  color: #fff !important;
}

.news-sec .section-title .accent {
  color: #ffe0b3;
}

.news-sec .section-sub {
  color: rgba(255, 255, 255, .78) !important;
}

.news-sec .rule {
  background: rgba(255, 255, 255, .35);
}

/* ── News Grid ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ── News Card ── */
.news-card {
  background: rgba(255, 255, 255, .96);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, .18),
    0 1px 4px rgba(0, 0, 0, .08);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, .28),
    0 4px 12px rgba(0, 0, 0, .12);
}

/* ── Card Image ── */
.news-img-wrap {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.news-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17, 24, 39, .2) 100%);
  transition: opacity .35s;
}

.news-card:hover .news-img-wrap::after {
  opacity: 0;
}

.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  display: block;
}

.news-card:hover .news-img-wrap img {
  transform: scale(1.07);
}

/* ── Card Body ── */
.news-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Meta row: tag + date ── */
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.news-tag {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: hsl(24, 100%, 92%);
  color: hsl(24, 100%, 35%);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.news-date {
  font-size: .75rem;
  color: var(--gray);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

/* ── Card Heading ── */
.news-body h4 {
  font-family: "DM Serif Display", serif;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}

/* ── Card Excerpt ── */
.news-body p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .84rem;
  color: var(--gray);
  line-height: 1.72;
  margin-bottom: 18px;
}

/* ── Read More Link ── */
.news-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .83rem;
  font-weight: 700;
  color: hsl(24, 100%, 38%);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
  transition: gap .2s, color .2s;
}

.news-read:hover {
  gap: 10px;
  color: hsl(24, 100%, 28%);
}

.news-read i,
.news-read svg {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}

.news-read:hover i,
.news-read:hover svg {
  transform: translateX(3px);
}

/* ─── BACK TO TOP ────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(24, 100%, 42%), hsl(20, 90%, 36%));
  color: #fff;
  box-shadow: 0 6px 24px rgba(237, 116, 37, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .3s, visibility .3s, transform .3s, box-shadow .2s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 10px 32px rgba(237, 116, 37, .55);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}