* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f8f9fa;
}

img {
  display: block;

  max-width: 100%;

  height: auto;
}

.header {
  width: 100%;
  display: grid;
  grid-template-columns: 210px 1fr 250px;
  align-items: center;
  gap: 0;
  padding: 16px 28px;
  background: #ffffff;
  border-top: 4px solid #0e5a46;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.header-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-left img {
  width: 320px;
  max-width: none;
  height: auto;
  margin: 0;
  display: block;
}

.header-center {
  text-align: center;
  /* padding: 0 10px; */
}

.header-center h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #156548;
  margin-bottom: 8px;
  line-height: 1.1;
}

.header-center h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.header-center p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
}

.header-center span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #c79a37;
  letter-spacing: 4px;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #e6e6e6;
  padding-left: 16px;
  /* margin-left: -40px; */
}

.header-right img {
  width: 300px;
  height: auto;
  max-width: 100%;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 15px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  background: #f3f4f6;
  color: #156548;
  font-size: 17px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #156548;
  color: #fff;
  transform: translateY(-3px);
}

/* hero section css */

.hero {
  display: grid;
  grid-template-columns: 65% 35%;
  min-height: 640px;
  overflow: hidden;
  background: #0f5a46;
}

/* left side */
.hero-left {
  position: relative;
  overflow: hidden;
  min-height: 760px;
}

/* img slider */
.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /*img contain or cover to fit the image*/
  filter: brightness(0.78) saturate(0.9) contrast(1.05);
}

/* dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 90, 70, 0.28), rgba(15, 90, 70, 0.28));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 470px;
  padding: 35px 45px;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  letter-spacing: 3px;
  font-size: 0.82rem;
  text-transform: uppercase;
  margin-bottom: 35px;
  backdrop-filter: blur(8px);
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  line-height: 0.92;
  letter-spacing: -1px;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 24px;
}

/* buttons */
.hero-buttons {
  display: flex;
  gap: 18px;
}

.btn-primary {
  display: inline-block;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  background: #d8b15a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
  box-shadow: 0 15px 35px rgba(216, 177, 90, 0.35);
}

.btn-primary:hover {
  background: #c79a37;
  transform: translateY(-4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.35s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #0e5a46;
}

/* stats */
.hero-stats {
  display: flex;
  gap: 22px;
  margin-top: 32px;
  justify-content: space-around;
  align-items: center;
  z-index: 2;
  padding: 0;
  background: none;
  /* backdrop-filter: blur(10px); */
}

.stat {
  text-align: left;
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.stat:last-child {
  border-right: none;
  padding-right: 0;
}

.stat h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: #e8c46b;
  margin-bottom: 5px;
}

.stat p {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* right side */

.hero-right {
  background: linear-gradient(180deg, #0f5a46, #114f3d);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 15px 35px 0;
}

.enquiry-card {
  width: 100%;
  max-width: 390px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.enquiry-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 8px;
}

.enquiry-card > p {
  color: #d7d7d7;
  margin-bottom: 30px;
}

/* input grp */

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.input-group label {
  color: #e8c46b;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s;
}

.input-group input::placeholder {
  color: #cfcfcf;
}

.input-group select {
  cursor: pointer;
}

.input-group input:focus,
.input-group select:focus {
  border-color: #d8b15a;
  box-shadow: 0 0 0 4px rgba(216, 177, 90, 0.18);
}

/* submit button */
.submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: #d8b15a;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  margin-top: 15px;
  box-shadow: 0 12px 30px rgba(216, 177, 90, 0.35);
}

.submit-btn:hover {
  background: #c79a37;
  transform: translateY(-4px);
}

.submit-btn:focus-visible{
outline:3px solid #E8C46B;
outline-offset:4px;
}

/* 


/* aout sbs section */

.about-section {
  width: 100%;
  background: #f8f6f1;
  padding: 110px 0;
  overflow: hidden;
}

.about-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

/* left content */

.section-tag {
  display: inline-block;
  color: #c79a37;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #0e4d3d;
  line-height: 1.15;
  margin-bottom: 8px;
}

.about-content h2 span {
  color: #c79a37;
}

.about-description {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 40px;
  max-width: 620px;
}

/* features */

.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 45px;
}

.feature {
  color: #0e5a46;
  font-size: 1.25rem;
}

.feature span {
  font-size: 1.05rem;
  color: #1d1d1d;
  font-weight: 500;
}

/* button */

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #0e5a46;
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.35s ease;
}

.about-btn:hover {
  background: #c79a37;
  transform: translateY(-4px);
}

.about-btn i {
  transition: all 0.35s ease;
}

.about-btn:hover i {
  transform: translateX(5px);
}

.about-image img {
  width: 100%;
  max-width: 620px;
  height: 450px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transition: 0.5s;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* why sbs */

.why-section {
  width: 100%;
  padding: 90px 0;
  background: #ffffff;
  padding-bottom: 70px;
}

.why-header {
  width: 90%;
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.why-header .section-tag {
  display: inline-block;
  color: #c79a37;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.why-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #0e4d3d;
  line-height: 1.15;
  margin-bottom: 20px;
}

.why-header h2 span {
  color: #c79a37;
}

.why-header p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
}

/* grid */

.why-grid {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* carrds */

.why-card {
  background: #fff;
  border: 1px solid #e8c46b;
  border-radius: 22px;
  padding: 20px;
  transition: 0.4s;
  position: relative;
  overflow: visible;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(14, 90, 70, 0.15);
  border-color: #c79a37;
}

.why-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #0e5a46;
  font-size: 1.9rem;
  margin-bottom: 2px;
  transition: all 0.35s ease;
}

.why-card:hover .why-icon {
  background: #0e5a46;
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

/* card content */
.why-card h3 {
  font-size: 1rem;
  color: #0e4d3d;
  margin-bottom: 1px;
  line-height: 1.35;
  font-weight: 700;
}

.why-card p {
  font-size: 0.6rem;
  line-height: 1.75;
  color: #666;
}

/* programme section */

.programme-section {
  width: 100%;
  padding: 40px 0;
  background: #f8f6f1;
}

.programme-header {
  position: relative;
  top: 12px;
  width: 90%;
  max-width: 850px;
  margin: 0 auto 30px;
  text-align: center;
}

.programme-header .section-tag {
  display: block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 5px;
  color: #c79a37;
}

.programme-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  color: #0e4d3d;
  font-weight: 600;
  margin: 8px 0;
}

/* main card */
.programme-card {
  width: 80%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 30% 70%;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* left panel */
.programme-left {
  background: linear-gradient(135deg, #0e5a46, #156548);
  color: #fff;
  padding: 32px 26px;
}

.programme-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.programme-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  color: #e8c46b;
  font-weight: 600;
}

.dual-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #fff;
}

.dual-badge i {
  color: #e8c46b;
}

.programme-duration {
  display: block;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #f2f2f2;
}

.programme-left ul {
  list-style: none;
}

.programme-left li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.4;
}

.programme-left li i {
  color: #e8c46b;
  margin-top: 3px;
  font-size: 1rem;
}

/* right pancel */

.programme-right {
  padding: 30px 34px;
}

.programme-right h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #0e4d3d;
  margin-bottom: 18px;
}

.spec-group {
  margin-bottom: 12px;
}

.spec-group h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0e4d3d;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.spec-group h4 i {
  color: #c79a37;
  margin-right: 8px;
}

.spec-group h4 span {
  background: #f4e7c0;
  color: #0e5a46;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: .3px;
}

/* specialization grif */
.specialization-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.specialization-box {
  min-height: 60px;
  border: 1px solid #e8e0cf;
  border-radius: 16px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.35;
  color: #0e4d3d;
  transition: all 0.35s ease;
  cursor: pointer;
  background: #fff;
}

.specialization-box i {
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  color: #c79a37;
  font-size: .92rem;
}

.specialization-box:hover {
  background: #0e5a46;
  color: #fff;
  border-color: #0e5a46;
  transform: translateY(-4px);
}

.specialization-box:hover i {
  color: #ffd468;
}

/* divider */
.spec-divider {
  height: 1px;
  background: #ece4d3;
  margin: 22px 0;
}

/* note  */
.programme-note {
  margin-top: 15px;
  background-color: #f8f6f1;
  border-left: 4px solid #c79a37;
  padding: 14px 18px;
  border-radius: 12px;
  color: #555;
  line-height: 1.8;
}

.programme-note i {
  color: #c79a37;
  margin-right: 10px;
}

.programme-note strong {
  color: #0e5a46;
}

/* admissions eligibility section */

.eligibility-section {
  width: 100%;
  padding: 50px 0;
  background: #ffffff;
}

.eligibility-header {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 45px;
  text-align: center;
}

.eligibility-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: #0e4d3d;
  font-weight: 600;
  margin: 15px 0;
}

.eligibility-header p {
  color: #666;
  font-size: 1rem;
}

/* grid */

.eligibility-grid {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* card */

.eligibility-card {
  background: #fff;
  border: 1px solid #e9e1d2;
  border-radius: 22px;
  padding: 26px;
  /* align-self: start; */
  transition: all 0.35s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.eligibility-card:hover {
  transform: translateY(-5px);
  border-color: #0e5a46;
  box-shadow: 0 18px 45px rgba(14, 90, 70, 0.12);
}

.eligibility-icon {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background: #f4e7c0;
  color: #0e5a46;
  font-size: 1.3rem;
  margin-bottom: 0;
  transition: all 0.35s ease;
}

.eligibility-card:hover .eligibility-icon {
  background: #0e5a46;
  color: #fff;
  transform: rotate(-8deg);
}

.eligibility-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}

.eligibility-title h3 {
  margin: 0;
}

.eligibility-card h3 {
  color: #0e4d3d;
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.eligibility-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 12px;
}

.eligibility-card ul {
  padding-left: 23px;
}

.eligibility-card li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
}

.eligibility-card li::marker {
  color: #c79a37;
}

.eligibility-card strong {
  color: #0e5a46;
}

/* footer */

.footer {
  width: 100%;
  background: #082a1e;
  color: #fff;
  padding: 40px 0 0;
}

.footer-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
}

/* left column */
.footer-logo {
  width: 80px;
  margin-bottom: 16px;
}

.footer-column h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-location {
  color: #e8c46b;
  font-style: italic;
  font-size: 1rem;
}

/* contact */
.footer-column h4 {
  color: #e8c46b;
  letter-spacing: 4px;
  font-size: 0.82rem;
  margin-bottom: 22px;
}

.footer-contact {
  list-style-type: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.7;
  color: #f5f5f5;
  white-space: nowrap;
}

.footer-contact li i {
  color: #e8c46b;
  margin-top: 3px;
  width: 18px;
}

.footer-social {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f8f6f1;
  color: #0e5a46;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.35s ease;
  font-size: 1rem;
  margin-bottom: 5px;
}

.footer-social a:hover {
  background: #e8c46b;
  color: #082a1e;
  transform: translateY(-5px);
}

.footer-tagline {
  width: 90%;
  max-width: 1400px;
  margin: 15px auto 5px;
  padding: 16px 0;
  text-align: center;
}

.footer-tagline strong {
  color: #e8c46b;
  font-size: 2rem;
  font-weight: 700;
}

.footer hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  color: #d8d8d8;
  font-size: 0.92rem;
}

.footer-bottom .hidden-credit {
  opacity: 0;
  transition: 0.3s;
}

.footer-bottom .hidden-credit:hover {
  opacity: 0.5;
}

/* responsive */
/* ======================================
   LARGE DESKTOP
====================================== */

@media (min-width: 1600px) {
  .header,
  .about-container,
  .why-grid,
  .programme-card,
  .eligibility-grid,
  .footer-container {
    max-width: 1550px;
  }

  .hero-content {
    width: 560px;
  }

  .hero-content h1 {
    font-size: 4rem;
  }
}

/* ======================================
   LAPTOP
====================================== */

@media (max-width: 1400px) {
  .header {
    grid-template-columns: 130px 1fr 230px;
    padding: 18px 25px;
  }

  .header-left img {
    width: 200px;
    margin-left: 81px;
  }

  .header-right img {
    width: 230px;
  }

  .header-center h1 {
    font-size: 2.6rem;
  }

  .hero {
    grid-template-columns: 62% 38%;
  }

  .hero-left {
    min-height: 640px;
  }

  .hero-content {
    width: 420px;
    padding: 30px;
  }

  .hero-content h1 {
    font-size: 3.2rem;
  }

  .enquiry-card {
    max-width: 350px;
  }

  .about-container {
    gap: 50px;
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .programme-card {
    width: 90%;
  }

  .programme-title h2 {
    font-size: 2.8rem;
  }

  .specialization-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1.3fr 0.8fr;
  }
}

/* ======================================
   TABLET
====================================== */

@media (max-width: 992px) {
  .header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header-left img {
    width: 120px;
  }

  .header-right {
    border: none;
    margin-left: 0;
    padding-left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    min-height: 520px;
  }

  .hero-right {
    padding: 40px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    text-align: center;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programme-card {
    grid-template-columns: 1fr;
  }

  .specialization-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eligibility-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: auto auto 20px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
    white-space: normal;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ======================================
   MOBILE
====================================== */

@media (max-width: 767px) {
  .header {
    padding: 15px;
  }

  .header-center h1 {
    font-size: 2rem;
  }

  .header-center h3 {
    font-size: 0.9rem;
  }

  .header-center p {
    font-size: 0.85rem;
  }

  .header-center span {
    letter-spacing: 1px;
    font-size: 0.9rem;
  }

  .hero-left {
    min-height: 460px;
  }

  .hero-content {
    padding: 25px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    gap: 15px;
  }

  .stat {
    border: none;
    padding: 0;
  }

  .about-section,
  .why-section,
  .programme-section,
  .eligibility-section {
    padding: 60px 0;
  }

  .about-content h2,
  .why-header h2,
  .programme-header h2,
  .eligibility-header h2 {
    font-size: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .specialization-grid {
    grid-template-columns: 1fr;
  }

  .programme-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .programme-title h2 {
    font-size: 2.6rem;
  }

  .spec-group h4 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-tagline strong {
    font-size: 1.3rem;
  }
}
