@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --blue-deep: #0D47A1;
  --blue-primary: #1565C0;
  --blue-mid: #1976D2;
  --blue-light: #1E88E5;
  --blue-pale: #E3F2FD;
  --gold-dark: #E65100;
  --gold-primary: #F5A623;
  --gold-light: #FFB300;
  --gold-pale: #FFF8E1;
  --white: #FFFFFF;
  --gray-100: #F8FAFC;
  --gray-200: #EEF2F7;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --text-dark: #0F172A;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .12);
  --shadow-md: 0 4px 20px rgba(13, 71, 161, .15);
  --shadow-lg: 0 10px 40px rgba(13, 71, 161, .20);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s ease;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ── Top Bar ── */
.top-bar {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  padding: .35rem 0;
  border-bottom: 2px solid var(--gold-primary);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.top-bar a:hover {
  color: var(--gold-light);
}

.top-bar span {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.top-bar .icon {
  font-size: .9rem;
}

/* ── Header / Navbar ── */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(13, 71, 161, .12);
  transition: box-shadow var(--transition);
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(13, 71, 161, .22);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 0;
}

/* Logo block */
.nav-brand {
  display: flex;
  align-items: center;
}

.site-logo-img {
  height: 75px;
  max-width: 350px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(13, 71, 161, .15));
  transition: transform var(--transition);
}

.nav-brand:hover .site-logo-img {
  transform: scale(1.03);
}

.nav-brand-text {}

.nav-brand-text .brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--blue-primary);
  letter-spacing: -.5px;
  line-height: 1.1;
}

.nav-brand-text .brand-name span {
  color: var(--gold-primary);
}

.nav-brand-text .brand-sub {
  font-size: .7rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: .05em;
  text-transform: uppercase;
  border-top: 1px solid var(--gray-200);
  margin-top: .15rem;
  padding-top: .15rem;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.nav-links a {
  /*font-size: .875rem;*/
  font-weight: 500;
  color: var(--gray-800);
  padding: .5rem .8rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition), background var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}

.nav-links a:hover {
  color: var(--blue-primary);
}

.nav-links a:hover::after {
  left: .8rem;
  right: .8rem;
}

.nav-links a.active {
  color: var(--blue-primary);
  font-weight: 600;
}

.nav-links a.active::after {
  left: .8rem;
  right: .8rem;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  color: var(--white) !important;
  padding: .5rem 1.2rem !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.btn-nav-cta::after {
  display: none !important;
}

.btn-nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-lg) !important;
  color: var(--gold-light) !important;
}

/* ── Nav Dropdown ── */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  cursor: pointer;
}

.nav-item-dropdown .dropdown-toggle .arrow {
  font-size: .75rem;
  transition: transform var(--transition);
}

.nav-item-dropdown:hover .dropdown-toggle .arrow {
  transform: rotate(180deg);
}

.nav-item-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--gray-200);
  padding: .5rem 0;
  margin-top: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .25s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1000;
  list-style: none;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: .65rem 1.2rem;
  /*font-size: .88rem;*/
  font-weight: 500;
  color: var(--gray-800);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background: var(--blue-pale);
  color: var(--blue-primary);
  padding-left: 1.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  border-radius: var(--radius-sm);
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: .75rem 0 1rem;
  border-top: 1px solid var(--gray-200);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav a:hover {
  background: var(--blue-pale);
  color: var(--blue-primary);
}

/* ── Container ── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Section Utility ── */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border: 1px solid rgba(245, 166, 35, .3);
  padding: .3rem .85rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-title span {
  color: var(--blue-primary);
}

.section-lead {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: .6rem;
}

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

.text-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero Slider Section ── */
.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  padding: 0;
  margin: 0;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 440px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-slider-track {
  display: flex !important;
  flex-direction: row !important;
  width: 300% !important;
  height: 100% !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-slide-item {
  width: 33.333333% !important;
  height: 100% !important;
  flex-shrink: 0 !important;
  position: relative;
  overflow: hidden;
}

.hero-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(13, 71, 161, .75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .4);
  color: var(--white);
  font-size: 1.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  z-index: 10;
}

.slider-btn:hover {
  background: var(--blue-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

.slider-btn.prev-btn {
  left: 1.5rem;
}

.slider-btn.next-btn {
  right: 1.5rem;
}



/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(13, 71, 161, .75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .4);
  color: var(--white);
  font-size: 1.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  z-index: 10;
}

.slider-btn:hover {
  background: var(--blue-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

.slider-btn.prev-btn {
  left: 1.5rem;
}

.slider-btn.next-btn {
  right: 1.5rem;
}



.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Decorative circles */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
}

.hero-deco-1 {
  width: 500px;
  height: 500px;
  border: 60px solid var(--gold-primary);
  top: -120px;
  right: -120px;
  animation: floatSlow 8s ease-in-out infinite alternate;
}

.hero-deco-2 {
  width: 300px;
  height: 300px;
  background: var(--gold-primary);
  bottom: -80px;
  left: -60px;
  animation: floatSlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatSlow {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(255, 179, 0, .12);
  border: 1px solid rgba(255, 179, 0, .35);
  padding: .3rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-title .highlight {
  color: var(--gold-primary);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .82);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stat pills */
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
  letter-spacing: .04em;
  margin-top: .15rem;
}

/* Hero card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  color: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  max-width: 360px;
  width: 100%;
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-card-logo-img {
  max-width: 260px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto 1.4rem;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.hero-card p {
  font-size: .8rem;
  opacity: .8;
  margin-bottom: 1.2rem;
}

.hero-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}

.chip {
  font-size: .7rem;
  font-weight: 600;
  background: rgba(245, 166, 35, .2);
  border: 1px solid rgba(245, 166, 35, .4);
  color: var(--gold-light);
  padding: .25rem .7rem;
  border-radius: 99px;
  letter-spacing: .03em;
}

/* ── Welcome Section ── */
.welcome-section {
  background: var(--white);
  padding: 3.5rem 0 2rem;
}

.welcome-card {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--blue-pale) 100%);
  border: 1px solid rgba(21, 101, 192, .15);
  border-left: 5px solid var(--blue-primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: var(--white);
  border: 1px solid rgba(21, 101, 192, .25);
  padding: .3rem .9rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.welcome-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1.35;
}

.welcome-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: .95rem;
  color: var(--gray-800);
  line-height: 1.8;
  text-align: justify;
}

.welcome-body p {
  margin-bottom: 1rem;
}

.welcome-body p:last-child {
  margin-bottom: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: .02em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245, 166, 35, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, .5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .8);
  transform: translateY(-2px);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245, 166, 35, .3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, .45);
}

/* ── Marquee / Notice ── */
.notice-bar {
  background: var(--gold-pale);
  border-top: 1px solid rgba(245, 166, 35, .2);
  border-bottom: 3px solid var(--gold-primary);
  padding: .6rem 0;
  overflow: hidden;
}

.marquee-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.marquee-label {
  flex-shrink: 0;
  background: var(--gold-primary);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .9rem;
  border-radius: 0 4px 4px 0;
  margin-right: 1rem;
}

.marquee-track {
  overflow: hidden;
  flex: 1;
}

.marquee-inner {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
}

.marquee-inner:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  font-size: .82rem;
  color: var(--gray-800);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.marquee-dot {
  color: var(--blue-primary);
  font-size: 1rem;
}

/* ── Feature Cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--gold-primary));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 101, 192, .2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--blue-pale), #BBDEFB);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform var(--transition), background var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-mid));
  transform: rotate(-5deg) scale(1.1);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.feature-card p {
  font-size: .83rem;
  color: var(--gray-600);
  line-height: 1.6;
  text-align: center;
}

/* ── Courses ── */
.courses-bg {
  background: var(--gray-100);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.course-card-head {
  padding: 1.6rem 1.6rem 1rem;
  background: linear-gradient(135deg, var(--blue-pale) 0%, #fff 100%);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 100px;
}

.course-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(21, 101, 192, .3);
}

.course-meta {
  flex: 1;
}

.course-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: .15rem;
}

.course-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.course-body {
  padding: 1.2rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-desc {
  font-size: .83rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.2rem;
}

.course-tag {
  font-size: .68rem;
  font-weight: 600;
  background: var(--blue-pale);
  color: var(--blue-primary);
  border: 1px solid rgba(21, 101, 192, .2);
  padding: .2rem .55rem;
  border-radius: 99px;
}

.course-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .8rem;
  border-top: 1px solid var(--gray-200);
  font-size: .78rem;
  color: var(--gray-600);
}

.course-footer .duration {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.course-footer .seats {
  color: var(--gold-dark);
  font-weight: 600;
}

/* ── Why Choose Us / Stats Banner ── */
.stats-banner {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-primary) 100%);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(245, 166, 35, .12);
  right: -100px;
  top: -100px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
  position: relative;
}

.stat-box {}

.stat-box .num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  font-family: 'Inter', sans-serif;
  letter-spacing: -.02em;
}

.stat-box .plus {
  font-size: 2rem;
}

.stat-box .label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  margin-top: .4rem;
  font-weight: 500;
}

/* ── Testimonials ── */
.testimonials-bg {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  line-height: 1;
  color: var(--blue-pale);
  font-family: 'Playfair Display', serif;
  position: absolute;
  top: .8rem;
  left: 1.2rem;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 101, 192, .15);
}

.test-text {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  padding-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.test-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
}

.test-course {
  font-size: .75rem;
  color: var(--blue-primary);
  font-weight: 500;
}

.test-stars {
  color: var(--gold-primary);
  font-size: .85rem;
  margin-bottom: .2rem;
}

/* ── Faculty ── */
.faculty-bg {
  background: var(--gray-100);
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.faculty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.2rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

.faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.faculty-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 16px rgba(21, 101, 192, .3);
  border: 3px solid var(--gold-primary);
}

.faculty-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
  margin-bottom: .2rem;
}

.faculty-role {
  font-size: .75rem;
  color: var(--blue-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.faculty-exp {
  font-size: .78rem;
  color: var(--gray-600);
  margin-top: .4rem;
}

/* ── Admission / CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-primary) 60%, var(--blue-mid) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, .18) 0%, transparent 70%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: .8rem;
}

.cta-section p {
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .15rem;
}

.contact-item-value {
  font-size: .9rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--blue-pale);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: .35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .87rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

/* ── Footer Transparent Graphics ── */
footer.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1c3d 0%, var(--gray-800) 60%, #0d2347 100%);
  color: rgba(255, 255, 255, .75);
  padding: 3.8rem 0 0;
}

.footer-graphic-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(245, 166, 35, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(21, 101, 192, 0.12) 0%, transparent 45%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 36px 36px, 36px 36px;
  pointer-events: none;
  z-index: 1;
}

.footer-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.footer-deco-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

.footer-deco-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.15) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: pulseGlow 8s ease-in-out infinite alternate-reverse;
}

.footer-deco-3 {
  width: 180px;
  height: 180px;
  border: 1px dashed rgba(245, 166, 35, 0.2);
  border-radius: 50%;
  top: 40%;
  right: 15%;
  animation: spinSlow 35s linear infinite;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.6;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.footer-svg-graphic {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.footer-svg-right {
  top: -40px;
  right: -50px;
}

.footer-svg-left {
  bottom: 10px;
  left: -40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand {}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 100px;
  max-width: 320px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.footer-brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand-name span {
  color: var(--gold-primary);
}

.footer-brand-sub {
  font-size: .65rem;
  color: var(--gold-primary);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: .82rem;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255, 255, 255, .6);
}

.footer-socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: rgba(255, 255, 255, .7);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--blue-primary);
  color: var(--white);
  transform: translateY(-2px);
  border-color: var(--blue-primary);
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: .5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: .55rem;
}

.footer-col ul li a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

.footer-bottom a {
  color: var(--gold-primary);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ── Scroll-to-top ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: none;
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: var(--shadow-lg);
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--gold-primary));
  border-radius: 2px;
  margin: .8rem auto 0;
}

.divider-left {
  margin-left: 0;
}

/* ── Floating Socials ── */
.floating-socials {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 9999;
}

.fs-btn {
  width: max-content;
  min-width: 48px;
  max-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 13px 0 16px;
  color: #fff;
  font-size: 1.35rem;
  text-decoration: none;
  transition: max-width 1.5s cubic-bezier(0.4, 0, 0.2, 1), left 0.7s ease, opacity 0.7s ease;
  overflow: hidden;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  border-radius: 0 24px 24px 0;
  position: relative;
  left: -8px;
  opacity: 0.7;
  white-space: nowrap;
}

.fs-btn i {
  min-width: 22px;
  text-align: center;
  margin-left: 8px;
}

.fs-btn span {
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
  pointer-events: none;
}

.fs-btn:hover {
  max-width: 280px;
  left: 0;
  color: #fff;
  opacity: 1;
}

.fs-btn:hover span {
  opacity: 1;
  transform: translateX(0);
}

.fs-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.fs-wa {
  background: #25D366;
}

.fs-yt {
  background: #FF0000;
}

.fs-enquiry {
  background: var(--blue-primary);
}

.fs-franchisee {
  background: var(--gold-primary);
}

/* ── Media Queries ── */
@media (max-width: 992px) {
  .hero-slider-container {
    height: 320px;
  }

  .features-grid,
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-slider-container {
    height: 220px;
  }

  .features-grid,
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid>.footer-col:last-child {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .top-bar {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}