/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
    font-family: sora;
    src: url(./assets/Sora-Regular-D3v_cnAE.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: edge;
    src: url(./assets/EdgeL-Medium-D9PFAdZz.otf) format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

/* Logo */
.logo img {
  height: 56px;
  width: auto;
}

/* Desktop Nav */
.nav-links {
  display: none;
  gap: 48px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-family: 'sora',sans-serif;
  font-weight: 500;
  color: rgb(75 85 99);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  line-height: 20px;
}

.nav-links a:hover {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Mobile Button */
.mobile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
}

/* Hidden Utility */
.hidden {
  display: none;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  z-index: 40;
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 20px;
  z-index: 50;
}

.mobile-menu a {
  font-family: 'sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgb(75 85 99);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: #111827;
}

/* Section */
.hero {
  background: #000000; /* adjust if needed */
  color: #fff;
  padding: 100px 20px 96px;
  min-height: auto;
  display: flex;
  align-items: center;
}
.hero-form {
    /* margin-top: -45px; */
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

/* Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.hero-content {
  padding-top: 64px;
}

/* Tag */
.hero-tag {
      font-family: 'edge', sans-serif;
    display: inline-block;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: hsl(36 55% 58%);
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
    line-height: 37px;
}

/* Heading */
.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 32px;
  font-weight: 900;
  font-family: 'edge', sans-serif;
  letter-spacing: -1.4px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat {
  padding: 20px 20px 20px 0;
  border-right: 1px solid hsl(0deg 0% 60%); 
}

.stat:nth-child(4n) {
  border-right: none;
  padding-left: 20px;
}

.stat-value {
      font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
    font-family: 'edge', sans-serif;
}

.stat-label {
     font-size: 0.78rem;
    color: hsl(0deg 0% 100% / 40%);
    line-height: 1.25;
    font-family: 'sora', sans-serif;
}

/* FORM */
.hero-form form {
  background: #fff;
  color: #000;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px -12px rgba(0,0,0,0.15);
}

/* Form text */
.hero-form h3 {
  font-family: 'edge', sans-serif;
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 800;
  line-height: 28px;
}
.hero-form .p1 { margin-bottom: 28px;}
.hero-form p {
  font-family: 'sora', sans-serif;
     font-size: 14px;
    line-height: 23px;
  margin-bottom: 20px;
  color: #6b7280;
}
.hero-form .form-note {
  font-family: 'sora', sans-serif;
     font-size: 11px;
    line-height: 17px;
  margin-top: 16px;
  margin-bottom: 0;
  color: #6b7280;
}

/* Labels */
.hero-form label {
  font-family: 'sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 17px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: hsl(45deg 2.25% 34.9%);
}

/* Inputs */
.hero-form input,
.hero-form select {
  font-family: 'sora', sans-serif;
  font-size: 15px;
  line-height: 23px;
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid hsl(48deg 4.42% 77.84%);
  margin-bottom: 20px;
  outline: none;
  background: transparent;
}

.hero-form input:focus,
.hero-form select:focus {
  border-bottom: 1px solid #000;
}

/* Phone row */
.phone-row {
  display: flex;
  gap: 8px;
}

.phone-row button {
  padding: 8px 16px;
    background: hsl(36.1deg 55.14% 58.04%);
  border: none;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
      height: 32px;
    width: 75px;
  font-family: 'edge',sans-serif;
text-transform: uppercase;
}
.phone-row button:hover {
  background: #B97E31;

}
/* Submit */
.submit-btn {
  font-family: 'edge',sans-serif;
text-transform: uppercase;
  padding: 16px;
  background: hsl(36.1deg 55.14% 58.04%);
  border: none;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.2s;
  font-size: 15px;
  line-height: 23px;
}

.submit-btn:hover {
  transform: scale(1.01);
  background: #B97E31;

}

/* Note */
.form-note {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin-top: 10px;
}
/* Section */
.section {
  padding: 56px 20px;
  background: #ffffff; /* bg-background */
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* Grid Layout */
.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* LEFT TEXT */
.section-heading {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 300;
  font-family: 'edge',serif; /* font-slab */
}

/* CARD */
.card {
  background: #F8F8F6; /* bg-brand-off-white/70 */
  border-radius: 16px; /* rounded-2xl */
  padding: 32px;
}

/* TEXT */
.card-text {
  font-size: 1.05rem;
  color: #6b7280; /* text-brand-gray-500 */
  line-height: 1.7;
  margin-bottom: 48px;
  font-family: 'sora', sans-serif;
}

/* FEATURES GRID */
.features {
  display: grid;
  grid-template-columns: 1fr;
}

/* FEATURE ITEM */
.feature {
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 2px solid currentColor;
}

/* HEADINGS */
.feature h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'sora' ,sans-serif;
}

/* PARAGRAPH */
.feature p {
  font-size: 0.88rem;
  font-family: 'sora',sans-serif;
  opacity: 0.75;
  line-height: 1.6;
}
/* SECTION */
.programmes {
  padding: 56px 20px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

/* HEADER GRID */
.programmes-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.heading {
  font-size: 1.6rem;
  font-weight: 300;
  font-family: 'edge', sans-serif;
      line-height: 35px;
}

.subtext {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
  font-family: 'sora', sans-serif;
}

/* CARDS GRID */
.programmes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* CARD */
.programme-card {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.programme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* TOP LINE */
.top-line {
  height: 4px;
  background: #d4af37;
}

/* HERO */
.card-hero {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-hero.dark {
  background: linear-gradient(to bottom right, #111110, #252520);
}

.card-hero.brown {
  background: linear-gradient(to bottom right, #2d1f1f, #4a2e2e);
}

/* HERO TEXT */
.hero-text {
  text-align: center;
  padding: 0 24px;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  line-height: 1;
  font-family: 'edge', 'Times New Roman', Times, serif;

}

.hero-text span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 12px;
}

/* BODY */
.card-body {
  padding: 24px 4px;
}

/* TAG */
.tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(138, 136, 133);
  display: block;
  margin-bottom: 8px;
  font-family: 'edge', sans-serif;
  font-weight: 700;
  line-height: 17px;
}

/* TITLE */
.card-body h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  font-family: 'edge',sans-serif;
}

/* DESC */
.desc {
    font-family: 'sora', sans-serif;
  font-size: 0.95rem;
  color: rgb(91, 90, 87);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 25px;
}

/* LIST */
.list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.list li {
    font-family: 'sora', sans-serif;
  display: flex;
  gap: 8px;
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgb(91, 90, 87);
  border-bottom: 1px solid #f3f4f6;
  line-height: 20px;
}

.list span {
  color: #d1d5db;
}

/* META */
.meta {
  font-size: 0.78rem;
  color: rgb(138, 136, 133);
  padding: 16px 0;
  border-top: 1px solid #e5e7eb;
  margin-bottom: 20px;
  line-height: 1.7;
  font-family: 'sora', sans-serif;
}

.meta strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: rgb(91, 90, 87);
  font-family: 'sora', sans-serif;

}

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: #f3f4f6;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'edge', sans-serif;
  line-height: 20px;
  color: #000;

}

.btn:hover {
  background: #CFA059;
  color: #000;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
/* Section */
.full-image-section {
  width: 100%;
}

/* Image */
.full-image {
  width: 100%;
  height: auto;
  display: block;
}

/* SECTION */
.events {
  padding: 56px 20px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

/* HEADER */
.events-header h2 {
  font-family: 'edge', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.3;
}

.events-header p {
  font-family: 'sora', sans-serif;
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* GRID */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* CARD */
.event-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* IMAGE WRAPPER */
.image-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

/* MAIN IMAGE */
.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* HOVER ZOOM (group-hover equivalent) */
.event-card:hover .main-img {
  transform: scale(1.05);
}

/* AVATAR IMAGE */
.avatar {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* CONTENT */
.event-content {
  padding-top: 20px;
}

.event-content h3 {
  font-family: 'edge', sans-serif;
  line-height: 29px;
    font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.event-content p {
  font-family: 'sora', sans-serif;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* SECTION */
.campus {
  padding: 56px 20px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

/* HEADER */
.campus-header h2 {
  font-family: 'edge', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.3;
}

.campus-subtext {
  font-family: 'sora', sans-serif;
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* GRID */
.campus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* LEFT */
.campus-left h3 {
  font-size: 1.4rem;
  font-family: 'edge', sans-serif;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 43px;
  letter-spacing: -0.01em;
}

.campus-left p {
  font-size: 0.95rem;
  font-family: 'sora', sans-serif;
  color: #6b7280;
  line-height: 1.7;
}

/* RIGHT GRID */
.campus-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* FEATURE */
.feature {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 12px;
  border-top: 2px solid #000; /* border-foreground */
}

.feature strong {
  display: block;
  font-family: 'edge', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.feature p {
  font-family: 'sora', sans-serif;
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.6;
}

/* SECTION */
.beliefs {
  padding: 56px 20px;
  background: #f9fafb; /* bg-brand-off-white */
  border-top: 1px solid #e5e7eb;
}

/* HEADING */
.beliefs-heading {
  font-family: 'edge', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 48px;
  line-height: 1.3;
}

/* TABLE WRAPPER (important for mobile scroll) */
.table-wrapper {
  overflow-x: auto;
}

/* TABLE */
.beliefs-table {
  width: 100%;
  border-collapse: collapse;
}

/* HEADER */
.beliefs-table th {
  text-align: left;
  padding: 12px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid #000;
}

.beliefs-table th.muted {
  color: #6b7280;
  font-family: 'sora', sans-serif;
}

.beliefs-table th:not(.muted) {
  color: #000;
  font-family: 'sora', sans-serif;

}

/* CELLS */
.beliefs-table td {
  padding: 12px 10px;
  font-size: 0.78rem;
  border-bottom: 1px solid #e5e7eb;
}

/* MUTED COLUMN */
.beliefs-table td.muted {
  font-family: 'sora', sans-serif;
  color: #6b7280;
}

/* HIGHLIGHT COLUMN */
.beliefs-table td.highlight {
  font-family: 'sora', sans-serif;
  font-weight: 600;
}

/* SECTION */
.cta {
  padding: 64px 20px; /* py-16 */
  background: #000; /* bg-primary */
  color: #fff; /* text-primary-foreground */
  text-align: center;
}

/* HEADING */
.cta-heading {
  font-family: 'edge', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto 24px;
}

/* SUBTEXT */
.cta-subtext {
  font-size: 1.05rem;
  font-family: 'sora', sans-serif;
  color: hsl(40 2% 53%);
  margin-bottom: 40px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 18px 56px;
  font-family: 'edge', sans-serif;
  background: hsl(36 55% 58%);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 16px;
}

.cta-btn:hover {
  background: #B97E31; /* gold-dark */
}

/* FEATURES */
.cta-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

/* ITEM */
.cta-item {
  font-size: 14px;
  color: rgb(91, 90, 87);
  font-family: 'soar', sans-serif;
  line-height: 20px;
}

.cta-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  font-family: 'edge', sans-serif;
}
/* FOOTER */
.footer {
  background: #000;
  color: #fff;
}

/* TOP */
.footer-top {
  padding: 40px 20px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* HEADINGS */
.footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: 'sora', sans-serif;
}

/* GOLD LINE */
.divider {
  width: 32px;
  height: 2px;
  background: hsl(36.1deg 55.14% 58.04%);
  margin-bottom: 24px;
}

/* SOCIAL */
.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.socials a:hover {
  color: hsl(36 55% 58%);
}

/* TEXT */
.footer-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 16px;
  font-family: 'soar', sans-serif ;
}

/* CONTACT */
.contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-family: 'sora', sans-serif;
}

.contact a {
   color: rgba(255,255,255,0.6);
}
.contact a:hover {
  color: hsl(36.1deg 55.14% 58.04%);
}

/* LINKS */
.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  font-family: 'sora', sans-serif;
}

.links a:hover {
  color: hsl(36.1deg 55.14% 58.04%);
}

/* ========================= */
/* BOTTOM */
/* ========================= */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-inner {
  padding: 40px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

/* COPYRIGHT */
.copyright {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  text-align: left;
  order: 2;
  font-family: 'soar', sans-serif;
}

/* LOGO */
.footer-logo {
  order: 1;
}

.footer-logo img {
  height: 96px;
  width: auto;
  filter: brightness(0) invert(1);
  max-width: 100%;
}

/* MOBILE MENU */
#mobile-menu-content,
#mobile-menu-overlay {
  display: none;
}

#mobile-menu-content.active,
#mobile-menu-overlay.active {
  display: flex;
}

/* ACCORDION */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.3s ease;
}

.accordion-content.open {
  max-height: 2000px;
  margin-top: 40px;
}

/* ICON ROTATION */
.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-icon.rotate {
  transform: rotate(90deg);
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (min-width: 768px) {

  .footer-top {
    padding: 64px 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
    padding: 56px 40px 48px;
  }

  .copyright {
    order: 1;
  }

  .footer-logo {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .footer-logo img {
    height: 160px;
  }
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (min-width: 640px) {

  .cta-features {
    flex-direction: row;
    gap: 48px;
  }
}

@media (min-width: 768px) {

  .cta {
    padding: 120px 40px; /* md:py-[120px] */
  }
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (min-width: 768px) {

  .beliefs {
    padding: 112px 40px;
  }

  .beliefs-table th,
  .beliefs-table td {
    padding-left: 16px;
    padding-right: 16px;
  }

  .beliefs-table td {
    font-size: 0.85rem;
  }
}
/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (min-width: 768px) {

  .campus {
    padding: 112px 40px;
  }

  .campus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campus-left h3 {
    font-size: 1.8rem;
  }

  .feature {
    padding-right: 24px; /* md:pr-6 */
  }
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (min-width: 768px) {

  .events {
    padding: 112px 40px;
  }

  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .image-wrapper {
    height: 320px;
  }

  .avatar {
    width: 96px;
    height: 96px;
  }
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (min-width: 768px) {

  .programmes {
    padding: 112px 40px;
  }

  .programmes-header {
    grid-template-columns: 300px 1fr;
  }

  .programmes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-hero {
    height: 280px;
  }

  .hero-text {
    font-size: 3rem;
  }
}

/* ========================= */
/* 📱 RESPONSIVE (md ≥ 768px) */
/* ========================= */

@media (min-width: 768px) {

  .section {
    padding: 112px 40px; /* md:py-28 */
  }

  .section-grid {
    grid-template-columns: 300px 1fr; /* exact match */
  }

  .card {
    padding: 40px; /* md:p-10 */
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature {
    padding-right: 32px; /* md:pr-8 */
  }
}

/* Responsive */
@media (min-width: 768px) {
  .hero {
    padding: 130px 0px 96px;
  }
  .hero .container{
    padding: 0 48px;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat {
    padding: 30px 20px;
  }

  /* .stat:nth-child(2n) {
    border-right: 1px solid rgba(255,255,255,0.12);
    padding-left: 0;
  } */
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 400px;
    gap: 80px;
  }
}

/* Responsive */
@media (min-width: 768px) {
  .navbar {
    padding: 18px 47px;
  }

  .logo img {
    height: 64px;
  }

  .nav-links {
    display: flex;
  }

  .mobile-btn {
    display: none;
  }

  .mobile-menu,
  .overlay {
    display: none !important;
  }
}

@media (max-width:769px) {
  .logo img { width: 307px;}
  .hero-content { padding-top: 40px;}
  .hero-tag { font-size: 22px; line-height: 32px;}
  .hero h1 {    letter-spacing: -.025em; line-height: 1.05;}
  .stat-value { font-size: 24px !important; line-height: 24px !important;}
  .stat2{border-right: none;} 
  .stat {padding: 20px !important;}
}