@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

:root {
  /* Material Design Green Color System */
  --mdc-theme-primary: #4caf50;
  --mdc-theme-primary-variant: #388e3c;
  --mdc-theme-secory: #8bc34a;
  --mdc-theme-secory-variant: #689f38;
  --mdc-theme-background: #fafafa;
  --mdc-theme-surface: #ffffff;
  --mdc-theme-error: #b00020;
  --mdc-theme-on-primary: #ffffff;
  --mdc-theme-on-secory: #000000;
  --mdc-theme-on-background: #000000;
  --mdc-theme-on-surface: #000000;
  --mdc-theme-on-error: #ffffff;

  /* Elevation levels */
  --mdc-elevation-01: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);
  --mdc-elevation-02: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);
  --mdc-elevation-04: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);
  --mdc-elevation-06: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);
  --mdc-elevation-08: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);
  --mdc-elevation-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);
  --mdc-elevation-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);

  /* Responsive typography */
  --font-size-base: clamp(14px, 2.5vw, 16px);
  --font-size-h1: clamp(24px, 5vw, 48px);
  --font-size-h2: clamp(20px, 4vw, 36px);
  --font-size-large: clamp(16px, 3vw, 20px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: var(--mdc-theme-background);
  color: var(--mdc-theme-on-background);
  line-height: 1.5;
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
  text-align: left;
  /* default page text alignment */
}

/* Focus states for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--mdc-theme-primary);
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.995);
  transition: opacity 520ms cubic-bezier(.2, .9, .2, 1), transform 520ms cubic-bezier(.2, .9, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Loader */
#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #1b3a1b;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  z-index: 9999;
}

/* Material Design App Bar */
/* Modern animated header */
header {
  position: sticky;
  top: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  height: 72px;
  background: linear-gradient(90deg, rgba(4, 46, 18, 0.96), rgba(9, 88, 38, 0.92));
  color: var(--mdc-theme-on-primary);
  box-shadow: 0 6px 20px rgba(6, 30, 12, 0.28);
  backdrop-filter: blur(6px) saturate(110%);
  transition: height 220ms ease, padding 220ms ease, box-shadow 220ms ease, background 280ms ease;
}

.logo {
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo .material-icons {
  transform-origin: center;
  transition: transform 320ms cubic-bezier(.2, .9, .2, 1);
}

.logo:hover .material-icons {
  transform: rotate(-8deg) scale(1.06);
}

.brand {
  font-weight: 600;
  letter-spacing: .3px;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: var(--mdc-theme-on-primary);
  margin: 0 16px;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* animated underline */
nav a {
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.45));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms cubic-bezier(.2, .9, .2, 1);
  border-radius: 2px;
  opacity: 0.95;
}

nav a:hover::after,
nav a:focus::after {
  transform: scaleX(1);
}

/* compact header when scrolled */
header.scrolled {
  height: 56px;
  padding: 10px 20px;
  box-shadow: 0 10px 30px rgba(11, 57, 34, 0.28);
  background: linear-gradient(90deg, rgba(11, 102, 41, 0.98), rgba(29, 150, 70, 0.95));
}

/* Active nav link */
#nav-menu a.active {
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
  color: var(--mdc-theme-on-primary);
}

#nav-menu a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--mdc-theme-on-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
#nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background-color: var(--mdc-theme-primary);
  box-shadow: var(--mdc-elevation-04);
  padding: 16px 0;
}

#nav-menu.active a {
  margin: 8px 24px;
  padding: 12px;
  border-radius: 4px;
  text-align: center;
}

#nav-menu.active a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Slider */
/* .slider img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: none;
  animation: fade 1s ease-in-out;
}

.slider img.active {
  display: block;
} */
body {
  margin: 0;
  padding: 0;
  text-align: left;
}

/* Full Width Banner */
.slider {
  width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.slider img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: none;
  animation: fade 1s ease-in-out;

}

.slider img.active {
  display: block;
}

/* Material Design Achievement Cards */
.achievement-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.achievement-card {
  background-color: var(--mdc-theme-surface);
  width: 280px;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--mdc-elevation-02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mdc-elevation-08);
}

.achievement-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--mdc-theme-primary);
}

.achievement-card h3 {
  margin-bottom: 12px;
  color: var(--mdc-theme-on-surface);
  font-weight: 500;
}

.achievement-card p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.4;
}

/* Material Icons */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

/* Icon sizes for different contexts */
.logo .material-icons {
  font-size: 28px;
  vertical-align: middle;
  margin-right: 8px;
}

.features .material-icons {
  font-size: 20px;
  color: var(--mdc-theme-primary);
}

.achievement-card .material-icons {
  font-size: 32px;
  color: var(--mdc-theme-primary);
  margin-bottom: 16px;
}

.social-icon .material-icons {
  font-size: 20px;
}

.logo-small .material-icons {
  font-size: 32px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Modern Hero Section */
/* Modern hero section with subtle pan and glass-panel content */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 24px;
  background-color: #07251a;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  /* background-position: center; */
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
  animation: bgPan 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* greenish shadow gradient for banner */
  background: linear-gradient(180deg, rgba(8, 60, 34, 0.55) 0%, rgba(6, 48, 30, 0.72) 65%, rgba(4, 30, 20, 0.82) 100%);
  z-index: 1;
  pointer-events: none;
}

/* add subtle inset depth at bottom of hero */
.hero-background::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(6, 80, 36, 0.28) 40%, rgba(6, 80, 36, 0.4) 100%);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(2, 10, 8, 0.5);
  backdrop-filter: blur(6px) saturate(120%);
  animation: revealCard 800ms cubic-bezier(.2, .9, .2, 1) both;
}

.hero-content1 {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(2, 10, 8, 0.5);
  /* backdrop-filter: blur(3px) saturate(120%); */
  animation: revealCard 800ms cubic-bezier(.2, .9, .2, 1) both;
}

.hero-text {
  color: #095826eb;
}
.hero-text1 {
  color: #fff;
}

.hero-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 18px 0;
  /* letter-spacing: -0.5px; */
  text-shadow: 0 2px 8px rgb(242 242 242);
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 40px 0;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Primary CTA styling */
.btn-primary,
.mdc-button.btn-primary {
  background: linear-gradient(90deg, var(--mdc-theme-primary), var(--mdc-theme-secondary));
  color: var(--mdc-theme-on-primary);
  border: none;
  padding: 12px 22px;
  border-radius: 28px;
  box-shadow: 0 6px 18px rgba(70, 160, 60, 0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(70, 160, 60, 0.22);
}

/* small reveal animations */
@keyframes bgPan {
  from {
    transform: scale(1.02) translateY(0);
  }

  to {
    transform: scale(1.06) translateY(-6%);
  }
}

@keyframes revealCard {
  from {
    transform: translateY(10px) scale(.995);
    opacity: 0
  }

  to {
    transform: none;
    opacity: 1
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-18px);
    opacity: 0
  }

  to {
    transform: none;
    opacity: 1
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(18px);
    opacity: 0
  }

  to {
    transform: none;
    opacity: 1
  }
}

/* About section entrance */
.about-overview .text {
  animation: slideInLeft 700ms cubic-bezier(.2, .9, .2, 1) both;
}

.about-overview .image-card {
  animation: slideInRight 700ms cubic-bezier(.2, .9, .2, 1) both;
}

/* CTA within about */
.about-cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-cta .btn-join {
  background: var(--mdc-theme-primary);
  color: var(--mdc-theme-on-primary);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  border: none;
  font-weight: 600;
  transition: transform 180ms cubic-bezier(.2, .9, .2, 1), box-shadow 180ms;
  box-shadow: 0 4px 12px rgba(70, 160, 60, 0.15);
}

.about-cta .btn-join:hover,
.about-cta .btn-join:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(70, 160, 60, 0.25);
}

.about-cta .btn-primary {
  background: transparent;
  border: 2px solid var(--mdc-theme-primary);
  color: var(--mdc-theme-primary);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 180ms cubic-bezier(.2, .9, .2, 1);
}

.about-cta .btn-primary:hover,
.about-cta .btn-primary:focus {
  background: var(--mdc-theme-primary);
  color: var(--mdc-theme-on-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(70, 160, 60, 0.22);
}

.hero-buttons .mdc-button {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background-color: var(--mdc-theme-secory) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.btn-primary:hover {
  background-color: #81c784 !important;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
  transform: translateY(-2px);
}

.btn-secory {
  background-color: transparent !important;
  border: 2px solid white !important;
  color: white !important;
}

.btn-secory:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: white !important;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  /* background: #ffffff1b; */
  background: #6fc56c69;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(30px);
  transition: all 0.3s cubic-bezier(0.4, 0.1, 0.2, 1);
}

.hero-stat-item:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(8px);
}

.hero-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-stat-icon .material-icons {
  font-size: 32px;
  color: white;
}

.hero-stat-content {
  color: white;
}

.hero-stat-value {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero-stat-text {
  font-size: 14px;
  margin: 8px 0 0 0;
  opacity: 0.9;
  font-weight: 500;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator .material-icons {
  font-size: 32px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Site Banner / Quick Features Section */
.site-banner {
  background: linear-gradient(135deg, var(--mdc-theme-primary) 0%, #2e7d32 100%);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}

.site-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.banner-tagline {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  color: white;
  margin: 0 0 48px 0;
  letter-spacing: -0.5px;
}

.banner-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.banner-feature-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid var(--mdc-theme-primary);
}

.banner-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.banner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--mdc-theme-primary), var(--mdc-theme-secory));
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.banner-icon .material-icons {
  font-size: 36px;
  color: white;
}

.banner-feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0 12px 0;
  color: var(--mdc-theme-primary);
}

.banner-feature-card p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin: 0;
}

.banner-stats-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.banner-stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-stat:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.banner-stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

.banner-stat-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.95;
}

/* Material Design Welcome Section */
.welcome-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--mdc-theme-background) 0%, rgba(76, 175, 80, 0.05) 100%);
}

.welcome-hero {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 650px;
  gap: 64px;
  align-items: center;
}

.welcome-content {
  color: var(--mdc-theme-on-background);
}

.welcome-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--mdc-theme-primary), var(--mdc-theme-secory));
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: var(--mdc-elevation-04);
}

.welcome-icon .material-icons {
  font-size: 40px;
  color: var(--mdc-theme-on-primary);
}

.welcome-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--mdc-theme-on-background);
}

.welcome-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 32px;
}

.welcome-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.stat-item {
  text-align: center;
  padding: 16px;
  background: var(--mdc-theme-surface);
  border-radius: 12px;
  box-shadow: var(--mdc-elevation-02);
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--mdc-theme-primary);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 4px;
  font-weight: 500;
}

.welcome-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--mdc-elevation-08);
}

.welcome-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.image-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--mdc-theme-primary);
  color: var(--mdc-theme-on-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--mdc-elevation-04);
}

/* Courses Section */
.courses-section {
  padding: 80px 24px;
  background: var(--mdc-theme-surface);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--mdc-theme-primary), var(--mdc-theme-secory));
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: var(--mdc-elevation-04);
}

.section-icon .material-icons {
  font-size: 40px;
  color: var(--mdc-theme-on-primary);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  margin: 0 0 16px 0;
  color: var(--mdc-theme-on-surface);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
  margin: 0;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.course-item {
  background: var(--mdc-theme-background);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--mdc-elevation-02);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.course-item:hover {
  box-shadow: var(--mdc-elevation-08);
  transform: translateY(-4px);
}

.course-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--mdc-theme-primary), var(--mdc-theme-secory));
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: var(--mdc-elevation-04);
}

.course-icon .material-icons {
  font-size: 36px;
  color: var(--mdc-theme-on-primary);
}

.course-item h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 16px 0;
  color: var(--mdc-theme-on-surface);
}

.course-item p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.course-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.course-features li {
  padding: 8px 0;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.course-features li:before {
  content: "✓";
  color: var(--mdc-theme-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--mdc-theme-background) 0%, rgba(76, 175, 80, 0.03) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 64px;
}

.feature-card {
  background: var(--mdc-theme-surface);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--mdc-elevation-02);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  box-shadow: var(--mdc-elevation-08);
  transform: translateY(-4px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--mdc-theme-primary), var(--mdc-theme-secory));
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: var(--mdc-elevation-04);
}

.feature-icon .material-icons {
  font-size: 36px;
  color: var(--mdc-theme-on-primary);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 16px 0;
  color: var(--mdc-theme-on-surface);
}

.feature-card p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px;
  background: var(--mdc-theme-surface);
  border-radius: 16px;
  box-shadow: var(--mdc-elevation-04);
}

.cta-section h3 {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 16px 0;
  color: var(--mdc-theme-on-surface);
}

.cta-section p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Material Design Buttons */
.mdc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.0892857143em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  outline: none;
  box-shadow: var(--mdc-elevation-02);
}

.mdc-button:hover {
  box-shadow: var(--mdc-elevation-04);
}

.mdc-button:active {
  box-shadow: var(--mdc-elevation-08);
}

.mdc-button--raised {
  background-color: var(--mdc-theme-primary);
  color: var(--mdc-theme-on-primary);
  box-shadow: var(--mdc-elevation-02);
}

.mdc-button--raised:hover {
  background-color: var(--mdc-theme-primary-variant);
  box-shadow: var(--mdc-elevation-04);
}

.mdc-button--outlined {
  background-color: transparent;
  color: var(--mdc-theme-primary);
  border: 1px solid var(--mdc-theme-primary);
  box-shadow: none;
}

/* Material Design Button Ripple Effect */
.mdc-button {
  position: relative;
  overflow: hidden;
}

.mdc-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s, height 0.6s;
  transform: translate(-50%, -50%);
}

.mdc-button:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background-color: var(--mdc-theme-primary);
  color: var(--mdc-theme-on-primary);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  box-shadow: var(--mdc-elevation-02);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--mdc-theme-primary-variant);
  box-shadow: var(--mdc-elevation-04);
  transform: translateY(-2px);
}

.contact-btn {
  background-color: transparent;
  border: 1px solid var(--mdc-theme-primary);
  color: var(--mdc-theme-primary);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.contact-btn:hover {
  background-color: var(--mdc-theme-primary);
  color: var(--mdc-theme-on-primary);
}

.welcome-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--mdc-elevation-08);
}

.welcome-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

.card-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background-color: var(--mdc-theme-surface);
  color: var(--mdc-theme-on-surface);
  padding: 8px 16px;
  border-radius: 16px;
  font-weight: 500;
  box-shadow: var(--mdc-elevation-04);
}

@media(max-width:900px) {

  /* Hero Section Responsive */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(32px, 5vw, 48px);
  }

  .hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .mdc-button {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
  }

  .hero-stat-item {
    padding: 20px;
  }

  /* Welcome Section */
  .welcome-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .welcome-card img {
    min-height: 220px;
  }

  header {
    padding: 16px 20px;
  }

  .logo {
    font-size: 19px;
  }

  nav a {
    margin: 0 12px;
  }

  .hero-overlay h1 {
    font-size: clamp(32px, 4vw, 40px);
  }

  .hero-overlay p {
    font-size: clamp(18px, 2.2vw, 18px);
  }
}

/* Material Design Course Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 24px;
}

.course-card {
  background-color: var(--mdc-theme-surface);
  border-radius: 8px;
  box-shadow: var(--mdc-elevation-02);
  overflow: hidden;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
}

.course-card:hover {
  box-shadow: var(--mdc-elevation-08);
  transform: translateY(-4px);
}

.course-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.course-card h3 {
  margin: 16px 20px 8px;
  color: var(--mdc-theme-on-surface);
  font-weight: 500;
}

.course-card p {
  margin: 0 20px 20px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.4;
}

.lab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 24px;
}

.lab-item {
  background-color: var(--mdc-theme-surface);
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--mdc-elevation-02);
  transition: box-shadow 0.3s ease;
}

.lab-item:hover {
  box-shadow: var(--mdc-elevation-04);
}

.lab-item h4 {
  margin: 0 0 12px 0;
  color: var(--mdc-theme-on-surface);
  font-weight: 500;
}

/* Early Preparation Section */
.early-prep-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(27, 94, 32, 0.08) 100%);
}

.early-prep-container {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}

.early-prep-content {
  color: var(--mdc-theme-on-background);
}

.early-prep-content .section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--mdc-theme-primary), var(--mdc-theme-secory));
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: var(--mdc-elevation-04);
}

.early-prep-content .section-icon .material-icons {
  font-size: 40px;
  color: var(--mdc-theme-on-primary);
}

.early-prep-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  margin: 0 0 32px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--mdc-theme-on-background);
}

.prep-intro {
  margin-bottom: 40px;
}

.intro-text {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  margin: 0 0 16px 0;
  font-weight: 500;
}

.intro-highlight {
  font-size: 20px;
  font-weight: 600;
  color: var(--mdc-theme-primary);
  margin: 0;
}

.selection-requirements {
  margin-bottom: 40px;
}

.requirement-title {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

.requirement-title strong {
  color: var(--mdc-theme-primary);
  font-weight: 600;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.requirement-item {
  background: var(--mdc-theme-surface);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--mdc-elevation-02);
  text-align: center;
  border-left: 4px solid var(--mdc-theme-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.requirement-item:hover {
  box-shadow: var(--mdc-elevation-04);
  transform: translateY(-4px);
}

.requirement-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--mdc-theme-primary), var(--mdc-theme-secory));
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: var(--mdc-elevation-02);
}

.requirement-icon .material-icons {
  font-size: 28px;
  color: var(--mdc-theme-on-primary);
}

.requirement-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: var(--mdc-theme-on-surface);
}

.requirement-item p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
  margin: 0;
}

.early-prep-cta {
  background: var(--mdc-theme-surface);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--mdc-theme-primary);
  box-shadow: var(--mdc-elevation-02);
}

.cta-text {
  font-size: 18px;
  color: var(--mdc-theme-on-surface);
  margin: 0 0 24px 0;
  font-weight: 500;
}

.cta-text strong {
  color: var(--mdc-theme-primary);
  font-size: 20px;
}

.early-prep-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--mdc-elevation-08);
  height: 670px;
}

.early-prep-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg, rgba(76, 175, 80, 0.6), rgba(27, 94, 32, 0.7)); */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px;
}

.overlay-text {
  text-align: center;
  color: white;
}

.overlay-icon {
  display: block;
  font-size: 48px;
  margin-bottom: 16px;
}

.overlay-text p {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.early-prep-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  background: var(--mdc-theme-surface);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--mdc-elevation-02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid var(--mdc-theme-primary);
}

.stat-box:hover {
  box-shadow: var(--mdc-elevation-08);
  transform: translateY(-4px);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--mdc-theme-primary), var(--mdc-theme-secory));
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: var(--mdc-elevation-04);
}

.stat-icon .material-icons {
  font-size: 36px;
  color: var(--mdc-theme-on-primary);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--mdc-theme-primary);
  margin: 0 0 8px 0;
}

.stat-desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  font-weight: 500;
}

.lab-item p {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}

/* Forms */
form input,
form textarea {
  width: 100%;
  box-sizing: border-box;
}

/* Modern Professional Footer */
.site-footer {
  /* background: linear-gradient(180deg, rgba(4, 30, 18, 0.96) 0%, rgba(6, 45, 24, 0.98) 100%); */
  background: linear-gradient(90deg, rgba(11, 102, 41, 0.98), rgba(29, 150, 70, 0.95));
  color: #f0f9f6;
  padding: 60px 24px 0;
  border-top: 1px solid rgba(76, 175, 80, 0.2);
  position: relative;
  overflow: hidden;
}

/* subtle animated background accent */
.site-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite;
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 200px 320px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}

.footer-col h4 {
  margin: 0 0 18px 0;
  color: #e8f5e9;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  opacity: 0.95;
}

.logo-small {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #4caf50;
  margin-bottom: 24px;
  font-size: 18px;
  opacity: 0.95;
}

.muted {
  color: rgba(240, 249, 246, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact div {
  margin: 10px 0;
  font-size: 14px;
  color: rgba(240, 249, 246, 0.75);
  transition: color 220ms ease;
}

.footer-contact div:hover {
  color: #4caf50;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(240, 249, 246, 0.72);
  text-decoration: none;
  font-weight: 400;
  display: inline-block;
  position: relative;
  transition: color 220ms cubic-bezier(.2, .9, .2, 1);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4caf50;
  transition: width 220ms cubic-bezier(.2, .9, .2, 1);
}

.footer-links a:hover {
  color: #4caf50;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links li {
  margin: 8px 0;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid rgba(76, 175, 80, 0.25);
  background: rgba(240, 249, 246, 0.06);
  color: #f0f9f6;
  font-size: 14px;
  transition: all 220ms cubic-bezier(.2, .9, .2, 1);
}

.newsletter-form input:hover {
  border-color: rgba(76, 175, 80, 0.45);
  background: rgba(240, 249, 246, 0.08);
}

.newsletter-form input:focus {
  border-color: #4caf50;
  background: rgba(240, 249, 246, 0.1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.newsletter-form input::placeholder {
  color: rgba(240, 249, 246, 0.45);
}

.newsletter-form button {
  padding: 12px 24px;
  border-radius: 6px;
  background: linear-gradient(90deg, #4caf50, #66bb6a);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 220ms cubic-bezier(.2, .9, .2, 1);
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.25);
}

.newsletter-form button:hover,
.newsletter-form button:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

.social-row {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.12);
  color: rgba(240, 249, 246, 0.8);
  text-decoration: none;
  transition: all 260ms cubic-bezier(.2, .9, .2, 1);
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.social-icon:hover {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
  border-color: #4caf50;
}

.footer-bottom {
  border-top: 1px solid rgba(76, 175, 80, 0.15);
  margin-top: 0;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
  color: rgba(240, 249, 246, 0.65);
  font-size: 13px;
}

.footer-bottom .credit a {
  color: #4caf50;
  text-decoration: none;
  font-weight: 500;
  transition: color 220ms;
}

.footer-bottom .credit a:hover {
  color: #66bb6a;
}

@media(max-width:900px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column
  }

  .newsletter-form button {
    width: 100%
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }
}

/* Responsive Design */
@media(max-width: 900px) {
  .site-banner {
    padding: 48px 20px;
  }

  .banner-tagline {
    margin-bottom: 36px;
  }

  .banner-features {
    gap: 20px;
    margin-bottom: 36px;
  }

  .banner-feature-card {
    padding: 24px 20px;
  }

  .banner-icon {
    width: 60px;
    height: 60px;
  }

  .banner-icon .material-icons {
    font-size: 28px;
  }

  .banner-feature-card h4 {
    font-size: 16px;
  }

  .banner-feature-card p {
    font-size: 13px;
  }

  .banner-stat {
    padding: 20px;
  }

  .banner-stat-number {
    font-size: 32px;
  }

  .banner-stat-label {
    font-size: 13px;
  }

  .welcome-hero {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .welcome-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .stat-item {
    min-width: 100px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .mdc-button {
    width: 100%;
  }

  .early-prep-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .early-prep-content .section-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .requirement-item {
    border-left: none;
    border-top: 4px solid var(--mdc-theme-primary);
  }

  .early-prep-cta {
    border-left: none;
    border-top: 4px solid var(--mdc-theme-primary);
  }

  .early-prep-image {
    height: 350px;
  }

  .requirements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 768px) {

  /* Hero Section Responsive */
  .hero-section {
    padding: 40px 16px;
    min-height: 90vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(28px, 4vw, 36px);
  }

  .hero-subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    margin-bottom: 32px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-item {
    padding: 16px;
    gap: 16px;
  }

  .hero-stat-icon {
    width: 50px;
    height: 50px;
  }

  .hero-stat-icon .material-icons {
    font-size: 24px;
  }

  .hero-stat-value {
    font-size: 24px;
  }

  .hero-stat-text {
    font-size: 12px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Site Banner */
  .site-banner {
    padding: 40px 16px;
  }

  .banner-tagline {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .banner-features {
    gap: 16px;
    margin-bottom: 32px;
    grid-template-columns: repeat(2, 1fr);
  }

  .banner-feature-card {
    padding: 20px 16px;
  }

  .banner-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }

  .banner-icon .material-icons {
    font-size: 24px;
  }

  .banner-feature-card h4 {
    font-size: 15px;
    margin: 12px 0 10px 0;
  }

  .banner-feature-card p {
    font-size: 12px;
  }

  .banner-stats-wrapper {
    gap: 16px;
  }

  .banner-stat {
    padding: 16px;
  }

  .banner-stat-number {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .banner-stat-label {
    font-size: 12px;
  }

  .welcome-section,
  .courses-section,
  .why-choose-section,
  .early-prep-section {
    padding: 60px 20px;
  }

  .welcome-icon,
  .section-icon,
  .course-icon,
  .feature-icon,
  .requirement-icon,
  .stat-icon {
    width: 70px;
    height: 70px;
  }

  .welcome-icon .material-icons,
  .section-icon .material-icons {
    font-size: 32px;
  }

  .course-icon .material-icons,
  .feature-icon .material-icons,
  .requirement-icon .material-icons {
    font-size: 28px;
  }

  .welcome-image img,
  .early-prep-image {
    height: 300px !important;
  }

  .course-item,
  .feature-card,
  .requirement-item {
    padding: 24px;
  }

  .requirement-title {
    font-size: 16px;
  }

  .requirement-item h4 {
    font-size: 16px;
  }

  .overlay-text p {
    font-size: 20px;
  }

  .stat-value {
    font-size: 28px;
  }

  .stat-number {
    font-size: 28px;
  }

  .cta-section {
    padding: 32px 24px;
  }
}

@media(max-width: 480px) {

  /* Hero Section Responsive */
  .hero-section {
    padding: 32px 12px;
    min-height: 85vh;
  }

  .hero-content {
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: clamp(13px, 1.5vw, 16px);
    margin-bottom: 24px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .hero-buttons .mdc-button {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat-item {
    padding: 12px;
    gap: 12px;
  }

  .hero-stat-icon {
    width: 44px;
    height: 44px;
  }

  .hero-stat-icon .material-icons {
    font-size: 20px;
  }

  .hero-stat-value {
    font-size: 20px;
  }

  .hero-stat-text {
    font-size: 11px;
  }

  /* Site Banner */
  .site-banner {
    padding: 32px 12px;
  }

  .banner-tagline {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .banner-features {
    gap: 12px;
    margin-bottom: 28px;
    grid-template-columns: 1fr;
  }

  .banner-feature-card {
    padding: 18px 14px;
  }

  .banner-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .banner-icon .material-icons {
    font-size: 22px;
  }

  .banner-feature-card h4 {
    font-size: 14px;
    margin: 10px 0 8px 0;
  }

  .banner-feature-card p {
    font-size: 11px;
    line-height: 1.4;
  }

  .banner-stats-wrapper {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .banner-stat {
    padding: 14px;
  }

  .banner-stat-number {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .banner-stat-label {
    font-size: 11px;
  }

  .welcome-section,
  .courses-section,
  .why-choose-section,
  .early-prep-section {
    padding: 40px 16px;
  }

  .welcome-icon,
  .section-icon,
  .course-icon,
  .feature-icon,
  .requirement-icon,
  .stat-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .welcome-icon .material-icons,
  .section-icon .material-icons {
    font-size: 28px;
  }

  .course-icon .material-icons,
  .feature-icon .material-icons,
  .requirement-icon .material-icons {
    font-size: 24px;
  }

  .welcome-content h2,
  .early-prep-section h2 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .welcome-stats {
    gap: 16px;
  }

  .stat-item {
    padding: 12px;
    min-width: 80px;
  }

  .stat-number {
    font-size: 24px;
  }

  .welcome-image img {
    height: 250px;
  }

  .course-item,
  .feature-card {
    padding: 20px;
  }

  .course-item h3,
  .feature-card h3 {
    font-size: 20px;
  }

  .cta-section {
    padding: 24px 16px;
  }

  .cta-section h3 {
    font-size: 24px;
  }
}

@keyframes fade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* Material Design Sections */
section {
  padding: 0.1px 0px;
  text-align: center;
}

h2 {
  color: var(--mdc-theme-on-background);
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.gallery-sub {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 8px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.5;
}

/* Highlights */
.highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 30px;
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  background: #2e5e2e;
  color: white;
}

/* Buttons */
button {
  background: #1b3a1b;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #3f7d3f;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

input,
textarea,
select {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Footer */
footer {
  background: #1b3a1b;
  color: white;
  padding: 30px;
}

.social a {
  color: white;
  font-size: 22px;
  margin: 0 10px;
  transition: 0.3s;
}

.social a:hover {
  color: #a3c293;
}

/* WhatsApp Button */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Material Design Popup */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--mdc-theme-surface);
  padding: 32px;
  border-radius: 8px;
  display: none;
  box-shadow: var(--mdc-elevation-24);
  z-index: 2000;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.popup.active {
  display: block;
}

.popup h3 {
  margin: 0 0 16px 0;
  color: var(--mdc-theme-on-surface);
  font-weight: 500;
}

.popup p {
  margin: 0 0 24px 0;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}

.popup.active {
  display: block;
}

/* Material Design Responsive */
@media (max-width: 768px) {
  header {
    padding: 16px 16px;
  }

  .logo {
    font-size: 18px;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-overlay {
    padding: 0 clamp(12px, 2vw, 16px);
  }

  .slider-controls {
    padding: 0 clamp(8px, 1.5vw, 12px);
  }

  .slider-btn .material-icons {
    font-size: 24px;
  }

  .counters {
    flex-direction: column;
    gap: 32px;
    padding: 48px 16px;
  }

  .counter-box h2 {
    font-size: 36px;
  }

  .counter-box p {
    font-size: 14px;
  }

  .welcome-section {
    padding: 64px 16px;
  }

  .welcome-text h2 {
    font-size: 36px;
  }

  .welcome-text {
    text-align: center;
  }

  .welcome-buttons {
    justify-content: center;
  }

  .features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    padding: 0 16px;
  }

  .gallery-item img {
    height: 180px;
  }

  .gallery-item figcaption {
    padding: 12px 16px;
    font-size: 14px;
  }

  .achievement-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 16px;
  }

  .achievement-card {
    width: 100%;
    padding: 24px 20px;
  }

  .testimonial {
    max-width: 500px;
    margin: 24px auto;
    padding: 20px;
  }

  .testimonial h4 {
    font-size: 16px;
  }

  .cards {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 20px;
  }

  .course-card {
    max-width: 100%;
  }

  .lab-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 20px;
  }

  .lab-item {
    padding: 20px;
  }

  section {
    padding: 64px 16px;
  }

  h2 {
    font-size: 28px;
  }

  .lightbox {
    padding: 16px;
  }

  .hero {
    height: 50vh;
    min-height: 350px;
  }

  .hero-overlay {
    padding: 0 clamp(8px, 1.5vw, 12px);
  }

  .slider-controls {
    padding: 0 clamp(6px, 1vw, 8px);
  }

  .slider-btn {
    width: clamp(40px, 6vw, 44px);
    height: clamp(40px, 6vw, 44px);
  }

  .slider-btn .material-icons {
    font-size: clamp(18px, 3vw, 20px);
  }

  .counters {
    padding: 32px 12px;
  }

  .counter-box h2 {
    font-size: 32px;
  }

  .hero .mdc-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero .mdc-button__label {
    font-size: 14px;
  }

  .slider-dots {
    bottom: 16px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero {
    height: 45vh;
    min-height: 300px;
  }

  .hero-overlay {
    padding: 0 clamp(6px, 1vw, 8px);
  }

  .slider-controls {
    padding: 0 clamp(4px, 0.8vw, 6px);
  }

  .slider-btn {
    width: clamp(36px, 5vw, 40px);
    height: clamp(36px, 5vw, 40px);
  }

  .slider-btn .material-icons {
    font-size: clamp(16px, 2.5vw, 18px);
  }

  .counters {
    padding: 24px 8px;
  }

  .counter-box h2 {
    font-size: 28px;
  }

  .counter-box p {
    font-size: 11px;
  }

  .hero .mdc-button {
    padding: 8px 16px;
    font-size: 12px;
  }

  .hero .mdc-button__label {
    font-size: 12px;
  }

  .slider-dots {
    bottom: 12px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }

  .welcome-section {
    padding: 48px 12px;
  }

  .welcome-text h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .lead {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .features {
    gap: 12px;
  }

  .features li {
    font-size: 14px;
    gap: 12px;
  }

  .welcome-buttons {
    flex-direction: column;
    align-items: center;
  }

  .welcome-buttons .mdc-button {
    width: 100%;
    max-width: 280px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 12px;
    gap: 12px;
  }

  .gallery-item img {
    height: 160px;
  }

  .gallery-item figcaption {
    padding: 10px 12px;
    font-size: 13px;
  }

  .achievement-container {
    grid-template-columns: 1fr;
    padding: 0 12px;
    gap: 16px;
  }

  .achievement-card {
    padding: 20px 16px;
  }

  .achievement-card h3 {
    font-size: 16px;
  }

  .testimonial {
    max-width: 100%;
    margin: 20px 12px;
    padding: 16px;
    font-size: 14px;
  }

  .testimonial h4 {
    font-size: 14px;
  }

  .cards {
    padding: 0 12px;
    gap: 16px;
  }

  .course-card h3 {
    font-size: 16px;
    margin: 12px 16px 6px;
  }

  .course-card p {
    font-size: 14px;
    margin: 0 16px 16px;
  }

  .lab-grid {
    padding: 0 12px;
    gap: 16px;
  }

  .lab-item {
    padding: 16px;
  }

  .lab-item h4 {
    font-size: 16px;
  }

  section {
    padding: 48px 12px;
  }

  h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .gallery-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* Modern touch: Better spacing for small screens */
  .welcome-card {
    border-radius: 12px;
    overflow: hidden;
  }

  .achievement-card .material-icons {
    font-size: 36px;
  }

  .testimonial-slider {
    padding: 0 12px;
  }
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
  .welcome-inner {
    max-width: 1400px;
  }

  .cards {
    max-width: 1400px;
    margin: 24px auto;
  }

  .gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
  }

  .achievement-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .lab-grid {
    max-width: 1400px;
    margin: 24px auto;
  }

  .hero-overlay h1 {
    font-size: 56px;
  }

  .hero-overlay p {
    font-size: 22px;
  }

  .welcome-text h2 {
    font-size: 52px;
  }

  .counters {
    max-width: 1400px;
    margin: 0 auto;
  }
}

.lightbox-img {
  height: 50vh;
}

/* Slider responsive styles */
}

/* Material Design Hero Section */
.hero {
  min-height: 80vh;
  height: 80vh;
  position: relative;
  overflow: hidden;
  top: 0;
  left: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.1, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: opacity;
}

.slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(76, 175, 80, 0.8), rgba(139, 195, 74, 0.6)); */
}

.slide.active {
  opacity: 1 !important;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  color: white;
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 clamp(16px, 3vw, 24px);
}

.hero-overlay h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-bottom: clamp(12px, 2vh, 16px);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  margin-bottom: clamp(24px, 4vh, 32px);
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  padding: 0 clamp(12px, 2vw, 24px);
}

.slider-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: clamp(48px, 8vw, 56px);
  height: clamp(48px, 8vw, 56px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.slider-btn .material-icons {
  font-size: clamp(24px, 4vw, 28px);
}

.slider-dots {
  position: absolute;
  bottom: clamp(16px, 3vh, 24px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(6px, 1vw, 8px);
  z-index: 3;
}

.slider-dot {
  width: clamp(10px, 2vw, 12px);
  height: clamp(10px, 2vw, 12px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.slider-dot.active {
  background: white;
  transform: scale(1.2);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Material Design Counters */
.counters {
  display: flex;
  justify-content: center;
  gap: 48px;
  text-align: center;
  background-color: var(--mdc-theme-primary);
  color: var(--mdc-theme-on-primary);
  /* padding: 64px 24px; */
}

.counter-box h2 {
  font-size: 48px;
  font-weight: 300;
  color: var(--mdc-theme-secory);
  margin-bottom: 8px;
}

.counter-box p {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
}

/* Material Design Testimonials */
.testimonial {
  display: none;
  max-width: 600px;
  margin: 32px auto;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--mdc-theme-on-background);
  padding: 24px;
  background-color: var(--mdc-theme-surface);
  border-radius: 8px;
  box-shadow: var(--mdc-elevation-02);
}

.testimonial.active {
  display: block;
}

.testimonial h4 {
  margin-top: 16px;
  font-style: normal;
  font-weight: 500;
  color: var(--mdc-theme-primary);
}

/* Material Design Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4px;
}

.gallery-item {
  background-color: var(--mdc-theme-surface);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--mdc-elevation-02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--mdc-elevation-08);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  padding: 16px 20px;
  font-weight: 500;
  color: var(--mdc-theme-on-surface);
  font-size: 16px;
}

/* Material Design Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 1000px;
  width: 100%;
  background-color: var(--mdc-theme-surface);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--mdc-elevation-24);
}

.lightbox-img {
  width: 100%;
  height: 80vh;
  object-fit: contain;
  background: #000;
}

.lightbox-caption {
  padding: 16px 24px;
  color: var(--mdc-theme-on-surface);
  font-weight: 500;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  top: 16px;
  right: 16px;
  font-size: 20px;
}

.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

@media(max-width:768px) {
  .lightbox-img {
    height: 55vh;
  }

  /* Slider responsive styles */
  .slider-controls {
    padding: 0 16px;
  }

  .slider-btn {
    width: 48px;
    height: 48px;
  }

  .slider-btn .material-icons {
    font-size: 24px;
  }

  .slider-dots {
    bottom: 16px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }
}

/* Join Us Page Styles */

/* Main Wrapper - Side by Side Layout */
.join-main-wrapper {
  display: flex;
  gap: 40px;
  padding: 80px 40px;
  max-width: 1800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--mdc-theme-background) 0%, rgba(76, 175, 80, 0.05) 100%);
  min-height: 100vh;
  align-items: flex-start;
}

/* Left Panel - Academy Information */
.join-left-panel {
  flex: 1;
  min-width: 0;
  position: sticky;
  top: 120px;
}

.info-container {
  padding: 48px;
  background: var(--mdc-theme-surface);
  border-radius: 16px;
  box-shadow: 0 10px 30px -15px rgba(76, 175, 80, 0.2), var(--mdc-elevation-04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(76, 175, 80, 0.08);
}

.info-container:hover {
  box-shadow: 0 15px 40px -10px rgba(76, 175, 80, 0.25), var(--mdc-elevation-08);
  transform: translateY(-4px);
}

.info-container h2 {
  color: var(--mdc-theme-primary);
  margin: 0 0 8px 0;
  font-size: 32px;
  line-height: 1.3;
}

.section-subtitle {
  color: rgba(0, 0, 0, 0.6);
  margin: 0 0 32px 0;
  font-size: 15px;
  line-height: 1.6;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.info-card {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(139, 195, 74, 0.04) 100%);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(76, 175, 80, 0.15);
  box-shadow: var(--mdc-elevation-01);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mdc-elevation-06);
  border-color: var(--mdc-theme-primary);
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.12) 0%, rgba(139, 195, 74, 0.08) 100%);
}

.info-icon {
  font-size: 40px !important;
  color: var(--mdc-theme-primary);
  margin-bottom: 12px;
  display: block;
}

.info-card h3 {
  color: var(--mdc-theme-primary);
  margin: 12px 0;
  font-size: 18px;
  font-weight: 600;
}

.info-card p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Right Panel - Registration Form */
.join-right-panel {
  flex: 1;
  min-width: 0;
}

.join-form-section {
  padding: 0;
  background-color: transparent;
}

.form-container {
  max-width: 100%;
  margin: 0;
  background: var(--mdc-theme-surface);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 10px 30px -15px rgba(76, 175, 80, 0.2), var(--mdc-elevation-04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(76, 175, 80, 0.08);
}

.form-container:hover {
  box-shadow: 0 15px 40px -10px rgba(76, 175, 80, 0.25), var(--mdc-elevation-08);
  transform: translateY(-4px);
}

.join-form-section h2 {
  color: var(--mdc-theme-primary);
  text-align: left;
  margin: 0 0 8px 0;
  font-size: 28px;
}

.form-subtitle {
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 32px;
}

.form-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.form-section h3 {
  color: var(--mdc-theme-primary);
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(76, 175, 80, 0.15);
}

.form-group {
  margin-bottom: 10px;
  text-align: justify;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--mdc-theme-on-background);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-icon {
  font-size: 20px !important;
  color: var(--mdc-theme-primary);
  flex-shrink: 0;
}

.required {
  color: var(--mdc-theme-error);
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: var(--mdc-theme-on-background);
  background-color: var(--mdc-theme-background);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(76, 175, 80, 0.3);
  background-color: rgba(76, 175, 80, 0.02);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mdc-theme-primary);
  background-color: var(--mdc-theme-background);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15), inset 0 0 0 1px var(--mdc-theme-primary);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  cursor: pointer;
  gap: 12px;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.form-actions .mdc-button {
  min-width: 180px;
}

/* Success Message */
.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(139, 195, 74, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(76, 175, 80, 0.2);
  animation: slideInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message .material-icons {
  font-size: 72px !important;
  color: #4caf50;
  margin-bottom: 16px;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-message h3 {
  color: var(--mdc-theme-primary);
  margin: 16px 0 8px;
  font-size: 24px;
  font-weight: 600;
}

.success-message p {
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
  line-height: 1.6;
}

/* Contact Information Section */
.join-contact-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, rgba(76, 175, 80, 0.05) 0%, var(--mdc-theme-background) 100%);
}

.contact-info {
  max-width: 1200px;
  margin: 0 auto;
}

.join-contact-section h2 {
  text-align: center;
  color: var(--mdc-theme-primary);
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.contact-card {
  background: var(--mdc-theme-surface);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--mdc-elevation-02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mdc-elevation-08);
}

.contact-card .material-icons {
  font-size: 40px !important;
  color: var(--mdc-theme-primary);
  margin-bottom: 16px;
  display: block;
}

.contact-card h4 {
  color: var(--mdc-theme-primary);
  margin: 16px 0;
  font-size: 18px;
}

.contact-card p {
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
  line-height: 1.8;
}

.contact-card a {
  color: var(--mdc-theme-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--mdc-theme-primary-variant);
  text-decoration: underline;
}

/* Responsive Design for Registration Form */
@media (max-width: 1200px) {
  .join-main-wrapper {
    gap: 24px;
    padding: 40px 16px;
  }

  .join-left-panel {
    position: relative;
    top: 0 !important;
  }

  .info-container {
    padding: 32px 24px;
  }

  .info-container h2 {
    font-size: 28px;
  }

  .form-container {
    padding: 32px 24px;
  }

  .join-form-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .join-main-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .join-left-panel {
    width: 100%;
  }

  .join-right-panel {
    width: 100%;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .join-main-wrapper {
    padding: 24px 16px;
    gap: 24px;
  }

  .info-container {
    padding: 24px 20px;
  }

  .info-container h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-card {
    padding: 20px 16px;
  }

  .info-icon {
    font-size: 36px !important;
  }

  .info-card h3 {
    font-size: 16px;
  }

  .info-card p {
    font-size: 12px;
  }

  .form-container {
    padding: 24px 16px;
  }

  .join-form-section h2 {
    font-size: 20px;
  }

  .form-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .form-section h3 {
    font-size: 16px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .mdc-button {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== CONTACT PAGE STYLES ==================== */

/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, var(--mdc-theme-primary) 0%, var(--mdc-theme-secory) 100%);
  padding: 80px 24px;
  text-align: center;
  color: white;
}

.contact-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 48px;
  margin: 0 0 16px 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact-hero p {
  font-size: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Main Contact Wrapper - Side by Side Layout */
.contact-main-wrapper {
  display: flex;
  gap: 40px;
  padding: 80px 40px;
  max-width: 1800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--mdc-theme-background) 0%, rgba(76, 175, 80, 0.05) 100%);
  min-height: 100vh;
  align-items: flex-start;
}

/* Left Panel - Contact Info */
.contact-left-panel {
  flex: 1;
  min-width: 0;
  position: sticky;
  top: 120px;
}

.contact-info-container {
  padding: 48px;
  background: var(--mdc-theme-surface);
  border-radius: 16px;
  box-shadow: 0 10px 30px -15px rgba(76, 175, 80, 0.2), var(--mdc-elevation-04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 32px;
}

.contact-info-container:hover {
  box-shadow: 0 15px 40px -10px rgba(76, 175, 80, 0.25), var(--mdc-elevation-08);
  transform: translateY(-4px);
}

.contact-info-container h2 {
  color: var(--mdc-theme-primary);
  margin: 0 0 32px 0;
  font-size: 28px;
  font-weight: 700;
}

.contact-detail-card {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(76, 175, 80, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-detail-card:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-detail-card:hover {
  transform: translateX(8px);
}

.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(139, 195, 74, 0.05) 100%);
  flex-shrink: 0;
}

.contact-detail-icon .material-icons {
  color: var(--mdc-theme-primary);
  font-size: 28px !important;
}

.contact-detail-content h3 {
  color: var(--mdc-theme-primary);
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
}

.contact-detail-content p {
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.contact-detail-content a {
  color: var(--mdc-theme-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-detail-content a:hover {
  color: var(--mdc-theme-primary-variant);
  text-decoration: underline;
}

/* Map Container */
.map-container {
  padding: 40px;
  background: var(--mdc-theme-surface);
  border-radius: 16px;
  box-shadow: 0 10px 30px -15px rgba(76, 175, 80, 0.2), var(--mdc-elevation-04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.map-container h2 {
  color: var(--mdc-theme-primary);
  margin: 0 0 24px 0;
  font-size: 24px;
  font-weight: 700;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px !important;
  display: block;
}

/* Right Panel - Contact Form */
.contact-right-panel {
  flex: 1;
  min-width: 0;
}

.contact-form-container {
  background: var(--mdc-theme-surface);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 10px 30px -15px rgba(76, 175, 80, 0.2), var(--mdc-elevation-04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(76, 175, 80, 0.08);
}

.contact-form-container:hover {
  box-shadow: 0 15px 40px -10px rgba(76, 175, 80, 0.25), var(--mdc-elevation-08);
  transform: translateY(-4px);
}

.contact-form-container h2 {
  color: var(--mdc-theme-primary);
  text-align: left;
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 700;
}

.form-description {
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.6;
}

.button-icon {
  margin-right: 8px;
  font-size: 20px !important;
}

/* Responsive Design for Contact Page */
@media (max-width: 1200px) {
  .contact-main-wrapper {
    gap: 24px;
    padding: 40px 16px;
  }

  .contact-left-panel {
    position: relative;
    top: 0 !important;
  }

  .contact-info-container {
    padding: 32px 24px;
  }

  .contact-form-container {
    padding: 32px 24px;
  }
}

@media (max-width: 900px) {
  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-main-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .contact-left-panel {
    width: 100%;
  }

  .contact-right-panel {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 24px;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-main-wrapper {
    padding: 24px 16px;
    gap: 24px;
  }

  .contact-info-container {
    padding: 24px 20px;
  }

  .contact-form-container {
    padding: 24px 16px;
  }

  .contact-detail-card {
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .contact-detail-icon {
    width: 48px;
    height: 48px;
  }

  .contact-detail-content h3 {
    font-size: 16px;
  }

  .contact-detail-content p {
    font-size: 13px;
  }

  .contact-info-container h2 {
    font-size: 24px;
  }

  .contact-form-container h2 {
    font-size: 20px;
  }

  .form-description {
    font-size: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .mdc-button {
    width: 100%;
  }

  .map-container {
    padding: 24px 16px;
  }

  .map-container h2 {
    font-size: 20px;
  }

  .map-container iframe {
    height: 320px;
  }
}

/* Container helper */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Hero section */
.hero {
  position: relative;
  background: url('../Images/school-building-CWEWBkDp.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mdc-theme-on-primary);
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.hero p {
  font-size: var(--font-size-large);
}

/* About overview layout */
.about-overview {
  padding: 20px 0;
}

.about-overview .section-title {
  text-align: left;
  font-size: var(--font-size-h2);
  /* margin-bottom: 40px; */
  color: var(--mdc-theme-primary-variant);
}

/* side-by-side content on wide screens, stacked on narrow devices */
.about-overview .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.about-overview .text {
  flex: 1 1 400px;
  order: 1;
  /* text first on desktop */
  background-color: var(--mdc-theme-surface);
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--mdc-elevation-02);
}

.about-overview .image-card {
  flex: 1 1 300px;
  order: 2;
  /* image on the right */
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--mdc-elevation-04);
  margin-left: auto;
  /* push card to the right */
}

.about-overview .text {
  text-align: left;
}

.about-overview .image-card {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* align content to the right */
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02));
  transition: transform 260ms cubic-bezier(.2, .9, .2, 1), box-shadow 260ms;
}

.about-overview .image-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--mdc-elevation-08);
}

/* swap order and stack for smaller viewports */
@media (max-width: 768px) {
  .about-overview .container {
    flex-direction: column;
  }

  .about-overview .image-card {
    order: 1;
    width: 100%;
  }

  .about-overview .text {
    order: 2;
  }
}

.about-overview .image-card img {
  /* width: 250px; fixed student photo width */
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

/* specific sizing for the academy logo inside about */
.about-image {
  /* width: 200px; */
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ensure card content justifies between text and image when container is wider */
.about-overview .container {
  justify-content: space-between;
}

.about-overview .card-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: var(--mdc-theme-secondary);
  color: var(--mdc-theme-on-secondary);
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
}

/* icons inside about-overview */
.about-overview .text h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-large);
}

.about-overview .text h3 .material-icons {
  font-size: 32px;
  color: var(--mdc-theme-primary);
}

.about-overview .card-badge .material-icons {
  font-size: 18px;
  vertical-align: middle;
  margin-right: 4px;
}

/* Features list: remove bullets and align items with icons */
.features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.85);
}

.features li .material-icons {
  font-size: 20px;
  color: var(--mdc-theme-primary);
  flex-shrink: 0;
}


/* Infrastructure responsive grid */
.infrastructure .lab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

/* Stats section */
.stats {
  background-color: var(--mdc-theme-secory);
  color: var(--mdc-theme-on-secory);
  padding: 40px 0;
}

/* Responsive tweaks for about page */
@media (max-width: 768px) {
  .about-overview .container {
    flex-direction: column;
  }

  .hero {
    height: 60vh;
  }
}

.stats .counters {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stats .counter-box {
  text-align: center;
  margin: 16px;
}

.stats .counter {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.stats p {
  margin: 8px 0 0;
}


/* Album Grid */
    .album {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: auto;
    }

    /* Photo Card */
    .photo {
        position: relative;
        overflow: hidden;
        margin: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        cursor: pointer;
        animation: fadeUp 1s ease forwards;
    }

    .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    /* Hover Effect */
    .photo:hover img {
        transform: scale(1.1);
    }

    /* Overlay */
    .overlay {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(0,0,0,0.6);
        color: white;
        text-align: center;
        padding: 10px;
        transform: translateY(100%);
        transition: transform 0.5s ease;
    }

    .photo:hover .overlay {
        transform: translateY(0);
    }

    /* Animations */
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeDown {
        from { opacity: 0; transform: translateY(-30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive Tweaks */

    @media (max-width: 480px) {
        h1 {
            font-size: 22px;
        }
    }