: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
       ============================== */
/* ==============================
       OUR TEAM SECTION
       ============================== */
/*==============================
 TEAM SHOWCASE
==============================*/

/* Team Header Start */
.team-header{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}

.team-header .section-tag{
    display:inline-block;
    margin-bottom:18px;
}

.team-header .section-title{
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
    color:var(--navy);
}

.team-header .section-title span{
    color:var(--green);
}

.team-header .section-subtitle{
    max-width:750px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    color:#5f6b7a;
}

.team-header .section-subtitle strong{
    color:var(--navy);
}
@media(max-width:768px){

    .team-header{
        margin-bottom:45px;
    }

    .team-header .section-title{
        font-size:40px;
    }

    .team-header .section-subtitle{
        font-size:16px;
        line-height:1.7;
        padding:0 15px;
    }

}
/* Team Header end  */
#team{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 0;
    background:#f7f9fc;
    position:relative;
    overflow:hidden;
}
#team .container{
    width:100%;
    max-width:1450px;
}

#team::before{
    content:'';
    position:absolute;
    width:550px;
    height:550px;
    top:-180px;
    right:-180px;
    border-radius:50%;
    background:rgba(115,177,47,.08);
    filter:blur(20px);
}

#team::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    bottom:-150px;
    left:-150px;
    border-radius:50%;
    background:rgba(10,32,61,.05);
    filter:blur(20px);
}

/*==============================
SLIDER
==============================*/

.team-slider{

    position:relative;
    overflow:hidden;

}

.team-slider-track{

    display:flex;

    transition:.7s ease;

}

/*==============================
SLIDE
==============================*/

.team-slide{

    min-width:100%;

    display:grid;

    grid-template-columns:

        330px
        1fr
        250px;

    align-items:center;

    gap:45px;

    background:#fff;

    border-radius:28px;

    padding:40px;

    box-shadow:

    0 25px 80px rgba(0,0,0,.08);

    border:1px solid #e8ecef;

}

/*==============================
IMAGE
==============================*/

.team-image{

    position:relative;

}

.team-image::before{

    content:'';

    position:absolute;

    inset:-15px;

    border-radius:30px;

    background:

    linear-gradient(
    135deg,
    rgba(115,177,47,.15),
    rgba(10,32,61,.08)
    );

    z-index:0;

}

.team-image img{

    position:relative;

    z-index:1;

    width:100%;

    height:460px;

    object-fit:cover;

    border-radius:24px;

    display:block;

}

/*==============================
CENTER
==============================*/

.team-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.team-small-title{

    display:inline-block;

    color:#73b12f;

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-weight:700;

    margin-bottom:15px;

}

.team-content h2{

    font-size:42px;

    color:#10243d;

    font-weight:800;

    margin-bottom:8px;

}

.team-content h5{

    font-size:18px;

    font-weight:600;

    color:#73b12f;

    margin-bottom:30px;

}

.team-content p{

    font-size:17px;

    color:#555;

    line-height:1.9;

    margin-bottom:35px;

}

/*==============================
SKILLS
==============================*/

.team-skills{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.team-skills span{

    padding:9px 18px;

    background:#eef8e6;

    color:#73b12f;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

}

/*==============================
RIGHT PANEL
==============================*/

.team-side{

    background:#f8fafc;

    border-radius:24px;

    padding:25px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    height:100%;

}

.team-stat{

    text-align:center;

    padding:22px 15px;

    border-bottom:1px solid #ececec;

}

.team-stat:last-child{

    border-bottom:none;

}

.team-stat span{

    display:block;

    font-size:34px;

    color:#73b12f;

    font-weight:800;

    margin-bottom:8px;

}

.team-stat small{

    color:#666;

    font-size:14px;

}

/*==============================
SOCIAL
==============================*/

.team-social{

    display:flex;

    justify-content:center;

    gap:14px;

    margin-top:35px;

}

.team-social a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    background:#fff;

    color:#10243d;

    text-decoration:none;

    font-size:20px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.team-social a:hover{

    background:#73b12f;

    color:#fff;

    transform:translateY(-6px);

}

/*==============================
BUTTONS
==============================*/

.team-nav{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:56px;

    height:56px;

    border:none;

    border-radius:50%;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    cursor:pointer;

    z-index:10;

    transition:.3s;

}

.team-nav:hover{

    background:#73b12f;

    color:#fff;

}

.team-nav.prev{

    left:-28px;

}

.team-nav.next{

    right:-28px;

}

/*==============================
DOTS
==============================*/

.team-dots{

    display:flex;

    justify-content:center;

    gap:12px;

    margin-top:35px;

}

.team-dots button{

    width:14px;

    height:14px;

    border:none;

    border-radius:50%;

    background:#d8d8d8;

    cursor:pointer;

    transition:.3s;

}

.team-dots button.active{

    background:#73b12f;

    transform:scale(1.3);

}

/*=========================================
    SLIDE ANIMATION
==========================================*/

.team-slide{
    opacity:0;
    transform:translateY(30px);
    animation:teamFade .8s ease forwards;
}

@keyframes teamFade{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}


/*=========================================
IMAGE HOVER
==========================================*/

.team-image{

    overflow:hidden;
    border-radius:28px;

}

.team-image img{

    transition:1s ease;

}

.team-slide:hover .team-image img{

    transform:scale(1.06);

}


/*=========================================
CONTENT ANIMATION
==========================================*/

.team-content h2{

    transition:.4s;

}

.team-slide:hover .team-content h2{

    color:#73b12f;

}

.team-content p{

    transition:.4s;

}

.team-slide:hover .team-content p{

    color:#444;

}


/*=========================================
SKILLS
==========================================*/

.team-skills span{

    transition:.35s;

}

.team-skills span:hover{

    background:#73b12f;

    color:#fff;

    transform:translateY(-4px);

}


/*=========================================
RIGHT PANEL
==========================================*/

.team-side{

    transition:.45s;

    border:1px solid #edf1f4;

}

.team-slide:hover .team-side{

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}


/*=========================================
STAT BOX
==========================================*/

.team-stat{

    transition:.35s;

}

.team-stat:hover{

    background:#fff;

    border-radius:15px;

    transform:translateY(-5px);

}

.team-stat span{

    transition:.4s;

}

.team-stat:hover span{

    color:#10243d;

}


/*=========================================
BUTTONS
==========================================*/

.team-nav{

    transition:.35s;

}

.team-nav:hover{

    transform:translateY(-50%) scale(1.08);

}


/*=========================================
DOTS
==========================================*/

.team-dots button{

    transition:.35s;

}

.team-dots button:hover{

    transform:scale(1.3);

    background:#73b12f;

}


/*=========================================
TABLET
==========================================*/

@media(max-width:1100px){

.team-slide{

grid-template-columns:280px 1fr;

}

.team-side{

grid-column:1/-1;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

margin-top:20px;

}

.team-social{

grid-column:1/-1;

}

.team-content h2{

font-size:34px;

}

.team-content p{

font-size:16px;

}

.team-image img{

height:400px;

}

}


/*=========================================
TABLET
==========================================*/

@media(max-width:991px){

.team-slide{

grid-template-columns:1fr;

text-align:center;

padding:35px;

}

.team-image{

max-width:420px;

margin:auto;

}

.team-image img{

height:420px;

}

.team-content{

align-items:center;

}

.team-content h2{

font-size:32px;

}

.team-content h5{

margin-bottom:18px;

}

.team-skills{

justify-content:center;

}

.team-side{

grid-template-columns:repeat(3,1fr);

}

.team-nav{

display:none;

}

}


/*=========================================
MOBILE
==========================================*/

@media(max-width:768px){

.team-slide{

padding:25px;

gap:30px;

}

.team-image{

max-width:300px;

}

.team-image img{

height:330px;

}

.team-content h2{

font-size:28px;

}

.team-content h5{

font-size:17px;

}

.team-content p{

font-size:15px;

line-height:1.8;

}

.team-side{

grid-template-columns:1fr;

}

.team-stat{

padding:18px;

}

.team-stat span{

font-size:30px;

}

.team-social{

margin-top:25px;

}

}


/*=========================================
SMALL MOBILE
==========================================*/

@media(max-width:480px){

.team-slide{

padding:18px;

border-radius:18px;

}

.team-image{

max-width:240px;

}

.team-image img{

height:260px;

border-radius:18px;

}

.team-content h2{

font-size:24px;

}

.team-content h5{

font-size:15px;

}

.team-content p{

font-size:14px;

}

.team-small-title{

font-size:11px;

letter-spacing:1px;

}

.team-skills span{

font-size:12px;

padding:7px 12px;

}

.team-stat span{

font-size:26px;

}

.team-stat small{

font-size:12px;

}

.team-social a{

width:42px;

height:42px;

font-size:18px;

}

.team-dots{

margin-top:20px;

}

}

/* ============================== */

/* 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;
  }
}