/* 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;
}

/* 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.3rem;
  letter-spacing: 0.1em;
  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: 2.4rem;
  line-height: 1.25;
  font-weight: 900;
  font-family: "edge", sans-serif;
  letter-spacing: 3.5px;
  color: hsl(36 55% 58%);
}
.hero h2 {
  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 */
}

/* <!-- Industry Runs section  --> */

/* 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;
}
.section .container {
  padding-left: 3rem;
  padding-right: 3rem;
}

.text-p {
  font-family: "sora", sans-serif;
  font-size: 1.05rem;
  color: #5b5a57;
  line-height: 1.7;
}
.mb-6 {
  margin-bottom: 1.5rem;
}

/* LEFT TEXT */
.section-heading {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 300;
  font-family: "edge", serif; /* font-slab */
}

/* udit model css  */
.udit-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.model-heading {
  color: #000;
  font-family: "edge", serif;
  line-height: 1.375;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 3rem;
}
.bt-top {
  border-top: 1px solid #e0dfdc;
}
.model-card {
  padding-right: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 2px solid #000000;
}
.model-card h3 {
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.model-card p {
  font-family: Sora, sans-serif;
  line-height: 1.625;
  font-size: 0.88rem;
  opacity: 0.75;
}
.model-card strong {
  display: block;
  font-family: Sora, sans-serif;
  opacity: 1;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* What You Actually Do css */
.mb-12 {
  margin-bottom: 3rem;
}
.do-here {
  background-color: #f6f5f3;
  border-top: 1px solid #e8e6e3;
  border-bottom: 1px solid #e8e6e3;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.border-right {
  border-right: 1px solid #e0dfdc;
}

.feature-card {
  padding: 32px;
  border-top: 1px solid #e0dfdc;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 8px;
  font-family: Sora, sans-serif;
}

.feature-card p {
  color: hsl(40 2% 35%);
  font-size: 0.88rem;
  line-height: 1.7;
  font-family: Sora, sans-serif;
}

/* Journey section  css */

.journey-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.journey-top h2 {
  font-size: 28px;
  font-weight: 600;
}

.journey-top p {
  max-width: 600px;
  font-size: 14px;
  opacity: 0.7;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.year {
  display: block;
  margin-bottom: 0.25rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: edge, serif;
}
.journey-col {
  border-top: 2px solid #000;
  padding-right: 2rem;
}

.journey-col h3 {
  font-weight: 700;
  font-size: 1.05rem;
  font-family: edge, serif;
  margin-bottom: 1rem;
}

.journey-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.journey-col ul li {
  font-family: Sora, sans-serif;
  color: hsl(40 2% 35%);
  line-height: 1.625;
  font-size: 0.8rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid hsl(40 7% 94%);
}

.highlight {
  line-height: 1.625;
  font-weight: 500;
  margin-top: 15px;
  padding: 0.75rem;
  background: hsl(40 14% 96%);
  font-size: 0.78rem;
  margin-top: 1rem;
  font-family: Sora, sans-serif;
}

/* career-section css  */
.career-section {
  background: #000;
}

.career-top {
  margin-bottom: 40px;
}

.career-top h2 {
  font-family: edge, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 10px;
  color: hsl(0 0% 100%);
  line-height: 1.375;
  margin-bottom: 1rem;
}

.career-top p {
  font-size: 1.05rem;
  max-width: 600px;
  color: hsl(40 2% 53%);
  font-family: Sora, sans-serif;
  margin-bottom: 3rem;
  margin-bottom: 3rem;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.career-col {
  border-top: 2px solid hsl(0deg 0% 100% / 30%);
  padding-right: 1.5rem;
}

.career-col h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: #fff;
  margin-top: 1rem;
  font-family: Sora, sans-serif;
}

.role {
  opacity: 0.7;
  line-height: 1.625;
  font-size: 0.78rem;
  color: #fff;
  font-family: Sora, sans-serif;
}

.company {
  font-size: 0.72rem;
  color: #777;
  border-top: 1px solid hsl(0deg 0% 100% / 10%);
  padding-top: 0.625rem;
  opacity: 0.5;
  line-height: 1.625;
  color: #fff;
  font-family: Sora, sans-serif;
  margin-top: 0.625rem;
}

/* comparision section  */
.table-row {
  display: grid;
  grid-template-columns: 2.5fr 271px 185px 192px;
  border-bottom: 1px solid hsl(40 6% 87%);
  align-items: center;
}
.table-row-top-border {
  border-top: 2px solid #000 !important;
}
.comparision-bgc {
  background-color: #f6f5f3;
}
.table-header-2 {
  display: grid;
  grid-template-columns: 2.5fr 271px 185px 192px;
  border-bottom: 1px solid hsl(40 6% 87%);
  align-items: center;
}

.table-header-2 div {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  color: hsl(40 2% 35%) !important;

  text-transform: uppercase;
  text-align: left;
  font-family: Sora, sans-serif;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.table-row div {
  font-size: 0.85rem !important;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #5b5a57;
  letter-spacing: 0.05em;
  /* text-transform: uppercase; */
  /* font-weight: 500; */
  font-family: Sora, sans-serif;
}

.table-header-2 div:last-child {
  color: hsl(0 0% 0%) !important;
  height: 39.55px;
}
.col-black {
  color: #000 !important;
}

.tick {
  color: hsl(36 55% 58%) !important; /* orange tick */
  font-weight: 600;
}

.x {
  font-size: 0.85rem;
  opacity: 0.3;
}

/* 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;
}

/* 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(105, 105, 92);
  font-family: "sora", 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);
  text-decoration: none;
}
.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;
  text-decoration: none;
}

.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: -0.025em;
    line-height: 1.05;
  }
  .stat-value {
    font-size: 24px !important;
    line-height: 24px !important;
  }
  .stat2 {
    border-right: none;
  }
  .stat {
    padding: 20px !important;
  }
}
@media (max-width: 769px) {
  .udit-model-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .model-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* feature cs  */
  .feature-card {
    padding: 20px;
    border-top: 1px solid #e0dfdc;
  }
  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  /* journey css  */
  .journey-col {
    border-top: 2px solid #000;
    padding-right: 0;
  }
}
/* Tablet */
@media (max-width: 992px) {
  .career-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .career-col {
    border-top: 2px solid hsl(0deg 0% 100% / 30%);
    padding-right: 0.75rem;
    padding-bottom: 2rem;
  }

  /* comparision css  */
  .table-row {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .table-header-2 {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .table-header-2 div:last-child {
    color: hsl(0 0% 0%) !important;
    height: fit-content;
  }
  .hero h1 {
    font-size: 1.9rem;
    letter-spacing: 0.1em;
    line-height: 1.25;
  }
  .hero-tag {
    font-size: 1.1rem;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 0.1em !important;
  }
  .hero {
    padding: 100px 24px 96px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .career-grid {
    grid-template-columns: 1fr;
  }
  .section .container {
    padding-left: 0;
    padding-right: 0;
  }
}
