:root {
  --navy: #1a2e44;
  --navy-d: #0f1e2e;
  --green: #6aaa2a;
  --green-l: #8dc63f;
  --green-d: #4d8a1a;
  --green-pale: #e8f5d0;
  --white: #ffffff;
  --black: #000;
  --offwhite: #f6faf0;
  --gray: #6b7a8d;
  --gray-l: #eef2f7;
  --text: #2c3e50;
  --shadow: 0 8px 40px rgba(26, 46, 68, 0.12);
  --shadow-g: 0 8px 40px rgba(106, 170, 42, 0.2);
  --radius: 14px;
  --radius-lg: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  min-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  line-height: 1.2
}

a {
  text-decoration: none;
  color: var(--navy);
  transition: all .3s ease
}

ul {
  list-style: none;
  padding: 0;
  margin: 0
}

img {
  max-width: 100%
}

.section-padding {
  padding: 90px 0
}

.bg-offwhite {
  background: var(--offwhite)
}



/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-d);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
  transition: opacity 1s ease, visibility 1s ease
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden
}

.pl-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 170, 42, .25) 0%, transparent 70%);
  animation: glowPulse 2s ease-in-out infinite
}

.pl-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: logoEntrance 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both
}

.pl-logo {
  width: 130px;
  height: 130px;
  border-radius: 24px;
  overflow: hidden;
  animation: logoGlow 2s ease-in-out 1.2s infinite;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center
}

.pl-logo img {
  width: 110px;
  object-fit: contain
}

.pl-brand {
  margin-top: 22px;
  text-align: center
}

.pl-brand-name {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 6px;
  color: #fff;
  text-transform: uppercase;
  animation: slideUp 0.7s ease 0.7s both
}

.pl-brand-name span {
  color: var(--green)
}

.pl-tagline {
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  margin-top: 6px;
  animation: slideUp 0.7s ease 0.9s both
}

.pl-progress-wrap {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  z-index: 3;
  animation: fadeIn 0.5s ease 0.5s both
}

.pl-progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  overflow: hidden
}

.pl-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-d), var(--green), var(--green-l));
  border-radius: 2px;
  animation: progressFill 2.5s cubic-bezier(.4, 0, .2, 1) 0.5s forwards;
  box-shadow: 0 0 10px rgba(106, 170, 42, .5)
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .6
  }

  50% {
    transform: scale(1.4);
    opacity: 1
  }
}

@keyframes logoEntrance {
  from {
    opacity: 0;
    transform: scale(0.4) rotate(-10deg)
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg)
  }
}

@keyframes logoGlow {

  0%,
  100% {
    box-shadow: 0 0 20px 0 rgba(106, 170, 42, 0.2)
  }

  50% {
    box-shadow: 0 0 50px 10px rgba(106, 170, 42, 0.5)
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes progressFill {
  0% {
    width: 0%
  }

  20% {
    width: 25%
  }

  50% {
    width: 60%
  }

  80% {
    width: 85%
  }

  100% {
    width: 100%
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes floatCircle {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-30px) scale(1.05)
  }
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes partnersScrollRev {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 16px 0;
  background: white;
  transition: all .4s ease
}

#navbar.scrolled {
  background: var(--navy-d);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px
}

.nav-logo img {
  height: 50px
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px
}

.nav-menu a {
  color: orange;
  font-weight: 500;
  font-size: 15px;
  position: relative
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--green);
  transition: right .3s ease
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  right: 0
}

.nav-menu a:hover {
  color: var(--black);
}

.nav-cta {
  background: #00000000;
  color: #0f1e2e;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all .3s
}

.nav-cta:hover {
  background: orange !important;

  transform: translateY(-2px)
}

.nav-cta::after {
  display: none !important
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #000;
  /* Changed from #fff */
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 70px;
  width: 100%;
  box-sizing: border-box;
  background: var(--navy-d);
  z-index: 8000;
  padding: 30px;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500
}

.mobile-nav a:hover {
  color: var(--green)
}

@media(max-width:991px) {
  .hamburger {
    display: flex
  }

  .hamburger span {
    background: #000 !important;
  }

  .nav-menu {
    display: none
  }
}

@media(max-width:768px) {
  .nav-inner {
    padding: 0 20px
  }

  .nav-logo img {
    height: 40px
  }
}

/* HERO */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-d) 0%, #1a3a55 40%, #1e4a20 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 170, 42, 0.15), transparent 70%)
}

.hero-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: floatCircle 8s ease-in-out infinite
}

.hero-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
  animation: floatCircle 10s ease-in-out infinite reverse
}

.hero-circle-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: 20%;
  animation: floatCircle 6s ease-in-out infinite
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff
}

.hero-badge {
  display: inline-block;
  background: rgba(106, 170, 42, .2);
  border: 1px solid rgba(106, 170, 42, .4);
  color: var(--green-l);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown .8s ease both
}

.hero-title {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeInUp .9s ease .2s both
}

.hero-title .highlight {
  background: linear-gradient(90deg, var(--green), var(--green-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, .75);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp .9s ease .35s both
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .9s ease .5s both
}

.btn-primary-w {
  background: var(--green);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.btn-primary-w:hover {
  background: var(--green-l);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(106, 170, 42, 0.4);
  color: #fff
}

.btn-outline-w {
  background: transparent;
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.btn-outline-w:hover {
  border-color: var(--green);
  background: rgba(106, 170, 42, .1);
  color: #fff
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  flex-wrap: wrap;
  animation: fadeInUp .9s ease .65s both
}

.hero-stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--green-l);
  line-height: 1
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-top: 4px
}

/* SESSIONS */
.sessions-section {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  animation: fadeInRight 1s ease .4s both
}

.sessions-heading {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px
}

.sessions-heading span {
  color: var(--green-l)
}

.sessions-carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: grab;
  user-select: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3)
}

.sessions-carousel-wrap:active {
  cursor: grabbing
}

.sessions-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform
}

.session-slide {
  flex: 0 0 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 600px;
  background: rgba(255, 255, 255, 0.05)
}

.session-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
  pointer-events: none
}

.session-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 30, 46, 0.95));
  padding: 45px 30px 35px;
  color: #fff
}

.session-slide-overlay h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px
}

.session-slide-overlay p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6
}

.sessions-controls,
.slider-controls {
  display: none !important
}

@media(max-width:768px) {
  .session-slide {
    height: 400px
  }
}

/* MARQUEE */
.marquee-section {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite
}

.marquee-item {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.marquee-item::after {
  content: '★';
  color: rgba(255, 255, 255, .5)
}

/* SECTION TITLES */
.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy)
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7
}

/* STATS */
#stats {
  background: linear-gradient(135deg, var(--navy-d), var(--navy));
  padding: 70px 0
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255, 255, 255, .1)
}

.stat-card:last-child {
  border-right: none
}

.stat-num {
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, var(--green), var(--green-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  margin-top: 10px;
  font-weight: 500
}

/* ABOUT */
.about-img-wrap {
  position: relative
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block
}

.about-exp-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-g)
}

.about-exp-badge .num {
  font-size: 42px;
  font-weight: 900;
  display: block;
  line-height: 1
}

.about-exp-badge .lbl {
  font-size: 13px;
  opacity: .9;
  font-weight: 500
}

.feature-list {
  list-style: none;
  padding: 0
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px
}

.feature-list li .fi-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--green-pale);
  color: var(--green-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 2px
}

.feature-list li h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--navy)
}

.feature-list li p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5
}

/* COURSES SLIDER */
/*==========================
    COURSES SLIDER
==========================*/

.courses-slider-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 4px;
}

.courses-slider-track {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.courses-slider-track:active {
  cursor: grabbing;
}

/* Slider Item */
.course-link {
  flex: 0 0 calc((100% - 48px) / 3);
  display: flex;
  text-decoration: none;
  color: inherit;
}

/* Tablet & Mobile */
@media (max-width:991px) {
  .course-link {
    flex: 0 0 100%;
  }
}

/* Card */
.course-card {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--gray-l);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 350px;
  transition: all .35s ease;
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: var(--shadow-g);
}

.course-card:hover::before {
  opacity: 1;
}

.course-card:hover .course-title,
.course-card:hover .course-desc,
.course-card:hover .course-meta {
  color: #fff !important;
}

.course-card:hover .course-icon {
  color: #222 !important;
}

/* Icon */

.course-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--green-pale);
  color: var(--green-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: .3s;
}

/* Title */

.course-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  min-height: 54px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  transition: color .3s;
}

/* Description */

.course-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  position: relative;
  z-index: 2;
  min-height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: auto;

  transition: color .3s;
}

/* Bottom */

.course-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--gray);
  position: relative;
  z-index: 2;
  transition: color .3s;
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/*==========================
    SLIDER CONTROLS
==========================*/

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-l);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.slider-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-l);
  cursor: pointer;
  transition: .3s;
}

.slider-dot.active {
  width: 22px;
  border-radius: 20px;
  background: var(--green);
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px
}

.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid var(--gray-l);
  text-align: center;
  transition: all .3s ease
}

.why-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-g)
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-l));
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(106, 170, 42, 0.35)
}

.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px
}

.why-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6
}

/* ==============================
       OUR TEAM SECTION
       ============================== */
#team {
  background: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

#team::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 170, 42, .06), transparent 70%);
  pointer-events: none;
}

#team::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 46, 68, .05), transparent 70%);
  pointer-events: none;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Card flip wrapper */
.team-card-wrap {
  perspective: 1200px;
  height: 380px;
  cursor: pointer;
}

.team-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: 22px;
}

.team-card-wrap:hover .team-card {
  transform: rotateY(180deg);
}

/* Front face */
.card-front,
.card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 22px;
  overflow: hidden;
}

.card-front {
  background: #fff;
  border: 1.5px solid var(--gray-l);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.4s, border-color 0.4s;
}

.team-card-wrap:hover .card-front {
  border-color: var(--green);
  box-shadow: var(--shadow-g);
}

.card-top-banner {
  width: 100%;
  height: 130px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.card-top-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(106, 170, 42, .28), transparent 60%);
  z-index: 1;
}

.card-top-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 18px 18px;
  z-index: 1;
}

.avatar-wrap {
  position: absolute;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%);
  width: 94px;
  height: 94px;
  border-radius: 50%;
  padding: 4px;
  z-index: 10;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
}

.avatar-initials {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.card-body-front {
  padding: 56px 22px 24px;
  text-align: center;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.member-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.member-role-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.member-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-bottom: 16px;
}

.skill-tag {
  background: var(--gray-l);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  transition: all .3s;
}

.hover-hint {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--gray);
  opacity: .75;
}

.hint-spinner {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--green);
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 1.6s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Back face */
.card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: 26px 24px 22px;
  position: relative;
  overflow: hidden;
}

.card-back::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 85%, rgba(106, 170, 42, .2), transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(26, 46, 68, .4), transparent 50%);
  z-index: 0;
}

.card-back::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 22px 22px;
  z-index: 0;
}

.back-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.back-header {
  margin-bottom: 12px;
}

.back-name {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.back-role-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-l);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.back-rule {
  height: 1px;
  background: linear-gradient(90deg, rgba(106, 170, 42, .5), transparent);
  margin: 12px 0;
}

.back-bio {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}

.back-stats-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.back-stat-box {
  flex: 1;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
}

.back-stat-val {
  font-size: 17px;
  font-weight: 900;
  color: var(--green-l);
  display: block;
  line-height: 1;
}

.back-stat-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .5px;
  margin-top: 3px;
  display: block;
}

.back-actions {
  display: flex;
  gap: 8px;
}

.back-btn {
  flex: 1;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

.back-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

/* Team strip */
.team-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  background: linear-gradient(135deg, var(--navy-d), #1a3d1a);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  position: relative;
  z-index: 2;
}

.strip-cell {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.strip-cell:last-child {
  border-right: none;
}

.strip-val {
  font-size: 36px;
  font-weight: 900;
  color: var(--green-l);
  line-height: 1;
  margin-bottom: 6px;
}

.strip-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .5px;
}

@media(max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 768px) {
  .team-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-cell:nth-child(2) {
    border-right: none;
  }

  .strip-cell:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, .07);
  }
}

@media(max-width: 540px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card-wrap {
    height: 360px;
  }
}

/* ============================== */

/* PARTNERS */
#partners {
  background: linear-gradient(135deg, var(--navy-d) 0%, #0d2318 60%, #0f1e2e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

#partners::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(106, 170, 42, .12) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(106, 170, 42, .08) 0%, transparent 55%)
}

#partners::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106, 170, 42, .5), transparent)
}

.partners-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(106, 170, 42, .07) 1px, transparent 1px);
  background-size: 32px 32px
}

.partners-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 2
}

.partners-tag {
  display: inline-block;
  background: rgba(106, 170, 42, .15);
  border: 1px solid rgba(106, 170, 42, .35);
  color: var(--green-l);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px
}

.partners-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px
}

.partners-title span {
  color: var(--green-l)
}

.partners-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  max-width: 520px;
  margin: 0 auto
}

.partners-carousel-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden
}

.partners-carousel-wrap::before,
.partners-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none
}

.partners-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #0f1e2e, transparent)
}

.partners-carousel-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #0f1e2e, transparent)
}

.partners-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: partnersScroll 32s linear infinite
}

.partners-track:hover {
  animation-play-state: paused
}

.partner-logo-card {
  flex-shrink: 0;
  width: 180px;
  height: 88px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  transition: all .4s ease;
  cursor: default;
  position: relative;
  overflow: hidden
}

.partner-logo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(106, 170, 42, .12), transparent);
  opacity: 0;
  transition: opacity .4s
}

.partner-logo-card:hover {
  background: rgba(106, 170, 42, .1);
  border-color: rgba(106, 170, 42, .4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .35), 0 0 0 1px rgba(106, 170, 42, .2)
}

.partner-logo-card:hover::before {
  opacity: 1
}

.partner-logo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1
}

.partner-logo-inner .p-icon {
  font-size: 22px;
  color: rgba(255, 255, 255, .4);
  transition: color .3s
}

.partner-logo-card:hover .p-icon {
  color: var(--green-l)
}

.partner-logo-inner .p-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .45);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .3s
}

.partner-logo-card:hover .p-name {
  color: #fff
}

.partners-track-2 {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: partnersScrollRev 38s linear infinite;
  margin-top: 22px
}

.partners-track-2:hover {
  animation-play-state: paused
}

@media(max-width:768px) {
  .partner-logo-card {
    width: 150px;
    height: 78px
  }
}

/* ALUMNI */
#alumni {
  background: var(--offwhite);
  padding: 90px 0;
  position: relative;
  overflow: hidden
}

#alumni::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 170, 42, .07), transparent 70%)
}

.alumni-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2
}

.alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch
}

@media(max-width:991px) {
  .alumni-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .alumni-grid {
    grid-template-columns: 1fr
  }
}

.alumni-card {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid var(--gray-l);
  overflow: hidden;
  transition: all .4s ease;
  position: relative;
  display: flex;
  flex-direction: column
}

.alumni-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(26, 46, 68, .13);
  border-color: var(--green)
}

.alumni-card-top {
  background: linear-gradient(135deg, var(--navy-d) 0%, #1a3d1a 100%);
  padding: 28px 28px 20px;
  position: relative;
  overflow: hidden;
  flex: 1
}

.alumni-card-top::after {
  content: '"';
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 100px;
  font-family: Georgia, serif;
  color: rgba(106, 170, 42, .18);
  line-height: 1;
  pointer-events: none
}

.alumni-achievement-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(106, 170, 42, .2);
  border: 1px solid rgba(106, 170, 42, .4);
  color: var(--green-l);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px
}

.alumni-quote {
  font-size: 14px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
  font-style: italic;
  position: relative;
  z-index: 1
}

.alumni-card-bottom {
  padding: 22px 28px 26px
}

.alumni-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px
}

.alumni-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15)
}

.alumni-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px
}

.alumni-role {
  font-size: 13px;
  color: var(--gray)
}

.alumni-stats-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.alumni-stat {
  flex: 1;
  min-width: 80px;
  background: var(--offwhite);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center
}

.alumni-stat-val {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-d), var(--green-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.alumni-stat-lbl {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: .5px;
  margin-top: 2px
}

.alumni-card.featured {
  border-color: var(--green)
}

.alumni-card.featured .alumni-card-top {
  background: linear-gradient(135deg, #0d2318 0%, #1a3a10 50%, var(--navy-d) 100%);
  padding-bottom: 28px
}

.alumni-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, var(--green-d), var(--green));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px
}

.alumni-counter-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  background: linear-gradient(135deg, var(--navy-d), #1a3d1a);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12)
}

@media(max-width:768px) {
  .alumni-counter-strip {
    grid-template-columns: repeat(2, 1fr)
  }
}

.alumni-counter-cell {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .07)
}

.alumni-counter-cell:last-child {
  border-right: none
}

.alumni-counter-val {
  font-size: 38px;
  font-weight: 900;
  color: var(--green-l);
  line-height: 1;
  margin-bottom: 6px
}

.alumni-counter-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .5px
}

/* CTA */
#cta {
  background: linear-gradient(135deg, var(--navy-d) 0%, #1a3d1a 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(106, 170, 42, .2), transparent 60%)
}

.cta-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px
}

.cta-text {
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px
}

.cta-box {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center
}

.cta-input {
  flex: 1;
  min-width: 220px;
  padding: 15px 22px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  outline: none;
  font-family: 'Outfit', sans-serif
}

.btn-cta-submit {
  background: var(--green);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap
}

.btn-cta-submit:hover {
  background: var(--green-l);
  transform: translateY(-2px)
}

/* CONTACT */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 50px
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--gray-l);
  text-align: center;
  transition: all .3s
}

.contact-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow)
}

.contact-card .cc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px
}

.contact-card h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px
}

.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow)
}

.form-group {
  margin-bottom: 22px
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  display: block
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-l);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color .3s;
  color: var(--text);
  background: #fafafa
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  background: #fff
}

.form-group textarea {
  min-height: 130px;
  resize: vertical
}

.btn-form {
  background: var(--green);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  width: 100%
}

.btn-form:hover {
  background: var(--green-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(106, 170, 42, .3)
}

/* FOOTER */
footer {
  background: var(--navy-d);
  color: rgba(255, 255, 255, .7);
  padding: 70px 0 0
}

.footer-logo img {
  height: 55px;
  margin-bottom: 18px
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  max-width: 280px
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all .3s
}

.footer-socials a:hover {
  background: var(--green);
  color: #fff
}

.footer-heading {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px
}

.footer-links li {
  margin-bottom: 10px
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  transition: color .3s
}

.footer-links a:hover {
  color: var(--green)
}

.footer-courses li {
  margin-bottom: 10px
}

.footer-courses a {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-courses a:hover {
  color: var(--green)
}

.footer-courses a::before {
  content: '▸';
  color: var(--green)
}

.footer-bottom {
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px
}

.footer-bottom p {
  font-size: 13px
}

.footer-bottom a {
  color: var(--green)
}

@media(max-width:576px) {
  .footer-logo {
    text-align: center
  }

  .footer-logo img {
    display: block;
    margin: 0 auto 18px
  }

  .footer-desc {
    max-width: 100%;
    text-align: center
  }

  .footer-socials {
    justify-content: center
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px
  }
}

/* SCROLL TOP */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 8000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(106, 170, 42, .4);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible
}

#scrollTop:hover {
  background: var(--green-l);
  transform: translateY(-3px)
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0)
}

/* RESPONSIVE */
@media(max-width:991px) {
  .hero-visual {
    margin-top: 60px
  }

  .about-exp-badge {
    right: 0
  }

  .contact-form {
    padding: 30px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center
  }
}

@media(max-width:768px) {
  .section-padding {
    padding: 60px 0
  }

  .hero-stats {
    gap: 30px
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
  }

  .stat-card:last-child {
    border-bottom: none
  }

  .cta-box {
    flex-direction: column
  }

  .cta-input {
    min-width: 100%
  }
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.meta-item i {
  font-size: 24px;
  color: #9ad43b;
  margin-top: 4px;
}

.meta-item strong {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 2px;
}

.meta-item div {
  color: #d8d8d8;
  line-height: 1.5;
}

.new-price {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.old-price {
  color: #a8a8a8;
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 15px;
}

@media (max-width:768px) {
  .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}