


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


:root {
  
  --green: #1a4a2e;
  --green-dark: #0f2d1c;
  --gold: #c9960c;
  --gold-light: #f0b429;
  --white: #ffffff;
  --off-white: #f9f7f2;
  --gray: #666;
  --light-gray: #f0f0f0;
  --text: #222;
}


html {
  
  scroll-behavior: smooth;
  min-height: 100%;
}


body {
  
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  padding-top: 5rem;
  min-height: 100%;
}




.navbar {
  
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #12513D;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.25s ease;
}


.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}


.page-container {
  
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 1.5rem;
}


.nav-inner {
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}


.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}


.site-logo {
  height: 54px;
  width: auto;
  display: block;
}


.nav-links {
  
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}


.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 500;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  transition: color 0.25s ease;
}

.nav-links a:hover,

.nav-links a.active {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.14);
}


.nav-cta {
  flex-shrink: 0;
}

.btn-gold,

.button-secondary {
  display: inline-block;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  font-weight: 700;
}


.btn-gold {
  background: var(--gold);
  color: #ffffff;
  border: 2px solid var(--gold);
}


.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}


.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.9);
  background: transparent;
}


.hamburger {
  
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}


.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-nav {
  
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 24px 16px;
  background: #12513D;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}


.mobile-nav.open {
  display: flex;
  max-height: 400px;
  padding: 16px 24px 20px;
}


.mobile-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.25s ease;
}

.mobile-nav a:hover,

.mobile-nav a.active {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding-left: 12px;
  padding-right: 12px;
}


.mobile-nav a:last-child {
  border-bottom: none;
  margin-top: 8px;
}




.hero {
  
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 5% 90px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 55%, #1a4a30 100%);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.35);
}

.hero-bg {
  
  position: absolute;
  inset: 0;
  
  background: url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero-overlay {
  
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,38,20,0.88) 45%, rgba(10,38,20,0.5) 100%);
  z-index: 2;
}

.hero-provider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  
  background: url('images/Rectangle 7.png') center / contain no-repeat;
  background-color: rgba(0,0,0,0.12);
  border-radius: 0 0 10px 10px;
  z-index: 3;
}

.hero > *:not(.hero-bg):not(.hero-overlay):not(.hero-provider) {
  position: relative;
  z-index: 3;
}

.hero-content {
  
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
}


.provider-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 22px;
  border-radius: 4px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}


.hero-badge-white {
  display: inline-block;
  background: white;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 25px;
  margin-bottom: 18px;
}


.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 8px;
}


.hero h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-light);
  display: block;
}


.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  margin: 18px auto 36px;
  max-width: 680px;
}


.hero-btns {
  
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-btns a {
  min-width: 200px;
}


.btn-gold {
  
  background: var(--gold);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
}


.btn-gold:hover {
  background: var(--gold-light);
  transform: scale(1.03);
}


.btn-outline {
  
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold-light);
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
}


.btn-outline:hover {
  background: var(--gold-light);
  color: white;
}


.hero-stats {
  
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}


.avatars {
  display: flex;
}

.avatars img,

.avatar-placeholder {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  object-fit: cover;
  background: #555;
}

.avatars img:first-child,

.avatar-placeholder:first-child {
  margin-left: 0;
}


.student-number-img {
  height: 44px;
  width: auto;
  display: none;
}


.stat-text {
  color: white;
  font-size: 14px;
}


.stat-text strong {
  color: var(--gold-light);
  font-size: 16px;
}




.ticker {
  
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: white;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}


.ticker-track {
  
  display: flex;
  gap: 60px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}


.ticker-track span {
  font-size: 13px;
  font-weight: 500;
}


.ticker-sep {
  color: var(--gold-light);
  font-size: 18px;
}


@keyframes ticker {
  
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}




section {
  
  padding: 70px 5%;
}


.section-tag {
  
  display: inline-block;
  background: rgba(201, 150, 12, 0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}


.section-title {
  
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.3;
}


.section-sub {
  color: var(--gray);
  font-size: 15px;
  max-width: 600px;
  line-height: 1.7;
}


.center {
  text-align: center;
}


.center .section-sub {
  margin: 0 auto;
}




.impact {
  background: var(--off-white);
}


.stats-grid {
  
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}


.stat-card {
  
  background: white;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--gold);
}


.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}


.stat-card .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
}


.stat-card .num span {
  color: var(--gold);
}


.stat-card p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}




.who-grid {
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 10px;
}


.who-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}


.who-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}


.who-text p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 16px;
}




.why {
  background: var(--off-white);
}


.why-grid {
  
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}


.why-card {
  background: white;
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s;
}


.why-card:hover {
  transform: translateY(-4px);
}


.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green), #2d7a50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}


.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}


.why-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}




.quality-grid {
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}


.highlights h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
}


.highlight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}


.hi-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}


.hi-text strong {
  display: block;
  font-size: 14px;
  color: var(--green);
  margin-bottom: 2px;
}


.hi-text p {
  font-size: 13px;
  color: var(--gray);
}


.quality-img {
  position: relative;
}


.quality-img img {
  width: 100%;
  border-radius: 16px;
  height: 400px;
  object-fit: cover;
}


.badge-100 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--green);
  color: white;
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}


.badge-100 .big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
}


.badge-100 p {
  font-size: 12px;
}




.approach {
  background: var(--green);
}


.approach .section-title {
  color: white;
}


.approach .section-sub {
  color: rgba(255, 255, 255, 0.75);
}


.approach .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}


.approach-grid {
  
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}


.approach-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 28px 22px;
  color: white;
  transition: background 0.2s;
}


.approach-card:hover {
  background: rgba(255, 255, 255, 0.14);
}


.approach-num {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 14px;
}


.approach-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gold-light);
}


.approach-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}




.courses-tabs {
  
  display: flex;
  gap: 16px;
  margin: 30px 0 24px;
  flex-wrap: wrap;
}


.tab-btn {
  padding: 10px 24px;
  border-radius: 25px;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}

.tab-btn.active,

.tab-btn:hover {
  background: var(--green);
  color: white;
}


.courses-grid {
  
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


.course-card {
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}


.course-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}


.course-tag {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}


.course-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}


.course-detail {
  font-size: 13px;
  color: var(--gray);
  margin: 5px 0;
}


.course-detail strong {
  color: var(--text);
}


.course-card .btn-gold {
  margin-top: 16px;
  padding: 9px 20px;
  font-size: 13px;
}


.admission-banner {
  
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
}


.admission-banner h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
}


.admission-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 4px;
}




.classroom {
  background: var(--off-white);
}


.classroom-grid {
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 10px;
}


.classroom-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}


.classroom-imgs img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}


.classroom-imgs img:first-child {
  grid-column: 1 / -1;
  height: 220px;
}




.faculty-grid {
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}


.faculty-img img {
  width: 100%;
  border-radius: 16px;
  height: 380px;
  object-fit: cover;
}


.faculty-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
}


.faculty-text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}


.faculty-list {
  list-style: none;
}


.faculty-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 10px;
}


.faculty-list li::before {
  content: '\2713';
  width: 24px;
  height: 24px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}




.testimonials {
  background: var(--off-white);
}


.testimonials-grid {
  
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}


.testi-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  position: relative;
}


.testi-card::before {
  content: '"';
  font-size: 60px;
  color: var(--gold-light);
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}


.stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 10px;
}


.testi-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
}


.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}


.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}


.testi-author strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}


.testi-author span {
  font-size: 12px;
  color: var(--gray);
}




.resources-grid {
  
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}


.resource-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}


.resource-card:hover {
  transform: translateY(-4px);
}


.resource-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}


.resource-body {
  padding: 20px;
  background: white;
}


.resource-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}


.resource-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}


.resource-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}


.resource-link:hover {
  text-decoration: underline;
}




.cta {
  
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #2d7a50 100%);
  padding: 80px 5%;
}


.cta-grid {
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}


.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}


.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}


.cta-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.cta-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 14px;
}


.cta-info-item span:first-child {
  font-size: 18px;
}


.cta-form {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}


.cta-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
}


.form-row {
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}


.form-group {
  margin-bottom: 16px;
}


.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,

.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,

.form-group select:focus {
  border-color: var(--green);
}


.btn-submit {
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Poppins', sans-serif;
}


.btn-submit:hover {
  background: var(--gold-light);
}




.footer-cta {
  background: var(--green);
  padding: 40px 5%;
  text-align: center;
}


.footer-cta h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}


.footer-cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-bottom: 0;
}




footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 5% 30px;
}


.footer-grid {
  
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}


.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.6);
}


.footer-logo {
  height: 46px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}


.socials {
  display: flex;
  gap: 10px;
}


.social-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}


.social-icon:hover {
  background: var(--gold);
}


footer h4 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}


footer ul {
  list-style: none;
}


footer ul li {
  margin-bottom: 10px;
}


footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}


footer ul li a:hover {
  color: var(--gold-light);
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}




@media (max-width: 900px) {
  
  .nav-links,
  
  .nav-cta {
    display: none;
  }

  
  .hamburger {
    display: flex;
  }

  
  .hero {
    padding: 20px 5% 60px;
    min-height: auto;
  }

  
  .hero-content {
    padding-top: 30px;
  }

  
  .hero h1 {
    font-size: clamp(2.2rem, 6vw, 2.8rem);
  }

  
  .hero p {
    font-size: 14px;
    max-width: 100%;
  }

  
  .hero-btns {
    margin-bottom: 30px;
  }

  
  .hero-stats {
    flex-direction: column;
    gap: 10px;
  }

  .who-grid,
  .quality-grid,
  .classroom-grid,
  .faculty-grid,
  
  .cta-grid {
    grid-template-columns: 1fr;
  }

  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  
  .courses-grid {
    grid-template-columns: 1fr 1fr;
  }

  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  
  .resources-grid {
    grid-template-columns: 1fr 1fr;
  }

  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-grid,
  .quality-grid,
  .classroom-grid,
  .faculty-grid,
  
  .cta-grid {
    grid-template-columns: 1fr;
  }

  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  
  .courses-grid {
    grid-template-columns: 1fr 1fr;
  }

  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  
  .resources-grid {
    grid-template-columns: 1fr 1fr;
  }

  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  
  .form-row {
    grid-template-columns: 1fr;
  }
}




@media (max-width: 600px) {
  
  .hero {
    padding: 18px 4% 56px;
  }

  
  .hero-content {
    padding-top: 40px;
  }

  
  .hero h1 {
    font-size: 2.4rem;
  }

  
  .hero p {
    font-size: 14px;
  }

  
  .hero-btns a {
    width: 100%;
    justify-content: center;
  }

  
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  
  .why-grid {
    grid-template-columns: 1fr;
  }

  
  .approach-grid {
    grid-template-columns: 1fr;
  }

  
  .courses-grid {
    grid-template-columns: 1fr;
  }

  
  .resources-grid {
    grid-template-columns: 1fr;
  }

  
  .footer-grid {
    grid-template-columns: 1fr;
  }

  
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  
  .admission-banner {
    flex-direction: column;
    text-align: center;
  }
}
