:root {
  --r: #ee1005;
  --o: #ff4d00;
  --dr: #e12d23;
  --cream: #fbf4ef;
  --dark: #0e0300;
  --mid: #5a3020;
  --border: rgba(238, 16, 5, 0.1);
    --o: #ff4d00; /* The orange/red used in the SVG */
  --r: #ee1005; /* A deeper red for gradients */
}
/* *{
  outline: 3px solid yellow;
} */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Helvetica", Arial, sans-serif;
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
}

/* ── TICKER ── */
.ticker {
  background: var(--r);
  height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
.t-track {
  display: inline-flex;
  animation: tick 32s linear infinite;
  white-space: nowrap;
}
.t-track span {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 40px;
}
.t-track span::after {
  content: "◆";
  margin-left: 40px;
  opacity: 0.35;
  font-size: 7px;
}
@keyframes tick {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── NAV ── */
.nav-wrap {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgb(255 255 255);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  height: 66px;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.logo-img{
  width: 200px;
}
.logo-sq {
  width: 38px;
  height: 38px;
  background: var(--r);
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
}
.logo-txt {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.logo-sub {
  font-size: 9px;
  font-weight: 400;
  color: var(--mid);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.n-links {
  display: flex;
  gap: 2px;
}
.n-links a {
  font-family: "Montserrat", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 6px;
  transition: 0.15s;
}
.n-links a:hover {
  color: var(--r);
  background: rgba(238, 16, 5, 0.05);
}
.n-apply {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  background: var(--r);
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 7px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  letter-spacing: 0.2px;
}
.n-apply:hover {
  background: var(--dr);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(238, 16, 5, 0.3);
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO — full viewport image split ── */
.hero {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(100vh - 100px);
}

/* LEFT — dark cinematic image canvas */
.h-left {
  position: relative;
  overflow: hidden;
  background: #0e0300;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* Simulated dental students photo layers */
.img-layer {
  position: absolute;
  inset: 0;
}
.img-l1 {
  background: linear-gradient(145deg, #7a1a10 0%, #2a0600 55%, #0e0300 100%);
}
.img-l2 {
  position: absolute;
  inset: 0;
     background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 75%) 45%, rgb(0 0 0) 100%);
}
/* SVG texture overlay */
.img-svg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}
/* Floating image cards — dental photos simulation */
.float-img {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.fi-1 {
  width: 260px;
  height: 340px;
  top: 60px;
  right: 80px;
  background: linear-gradient(160deg, #c9473a 0%, #5c0e08 100%);
  transform: rotate(2deg);
}
.fi-2 {
  width: 190px;
  height: 240px;
  top: 160px;
  right: 20px;
  background: linear-gradient(160deg, #e8573a 0%, #9a2d20 100%);
  transform: rotate(-1.5deg);
  opacity: 0.75;
}
.fi-3 {
  width: 140px;
  height: 170px;
  bottom: 200px;
  right: 160px;
  background: linear-gradient(160deg, #d4a491 0%, #b53528 100%);
  transform: rotate(1deg);
  opacity: 0.6;
}
/* Photo label chips on float imgs */
.fi-chip {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
/* Content on left */
/* --- Positioning the Container --- */
.h-left {
  position: relative; /* Established positioning context for children */
  overflow: hidden;   /* Prevents the SVG from spilling out */
  min-height: 100vh;  /* Or whatever height you require */
  /* If you want a default dark background */
  background-color: #111; 
}

/* --- Base Styling for Layers --- */
/* This ensures both .img-l1 and .img-l2 cover the whole area */
.img-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Lowest z-index in the stack */
}

/* --- Apply the Background Image Here --- */
.img-l1 {
  /* Replace with your image path */
  background-image: url('./images/images/banner.png'); 
  
  background-size: cover;      /* Scale to cover the container */
  background-position: center;  /* Center the image */
  background-repeat: no-repeat; /* Do not tile */
}

/* --- Optional: Add a dark overlay gradient over the image --- */
/* This helps content readability. If you don't need it, you can remove this rule */
.img-l2 {
      background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 75%) 45%, rgb(0 0 0) 100%);
    z-index: 2;
}

/* --- Styling the SVG Wave --- */
.img-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 140%;
  height: 100%;
  
  /* Critical: preserveAspectRatio="none" is usually needed in the HTML for SVGs to scale this way. */
  /* Alternatively, use object-fit in CSS: */
  object-fit: cover; 
  
  z-index: 3;        /* Stacks above the image layers, but below the content */
  opacity: 0.3;       /* Adjust transparency to blend with the background image */
}

/* --- Provided Content Styling (remains mostly the same) --- */
.h-left-content {
  position: relative;
  z-index: 5; /* Highest layer, above SVG and image */
  padding: 52px 56px 56px;
}

/* --- Variables (Required for provided code to function) --- */


/* --- ALL OTHER CSS STYLES YOU PROVIDED BELOW --- */

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 77, 0, 0.15);
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: 100px;
  padding: 7px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 28px;
}
/* ... (Keep all rest of your provided CSS) ... */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(255 77 0 / 22%);
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: 100px;
  padding: 7px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 28px;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--o);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.7);
  }
}
.h-title {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: clamp(36px, 5.2vw, 76px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -2.5px;
  margin-bottom: 32px;
}
.h-title span {
  
  color: var(--o);
}
/* KPI pills row */
.kpi-row {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.kpi-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 18px;
  text-align: center;
  flex: 1;
  min-width: 80px;
}
.kpi-n {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--o);
  line-height: 1;
}
.kpi-l {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
  font-weight: 500;
  line-height: 1.3;
}
.h-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-red {
  background: linear-gradient(90deg, var(--r), var(--o));
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 15px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  letter-spacing: 0.3px;
}
.btn-red:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(238, 16, 5, 0.4);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 15px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}
/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 5;
  opacity: 0.4;
}
.scroll-hint span {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(4px, 4px);
  }
}

/* RIGHT — form panel */
.h-right {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
}
.h-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--r), var(--o));
}
.h-right-deco {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(238, 16, 5, 0.05);
  pointer-events: none;
}
.h-right-deco2 {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 77, 0, 0.04);
  pointer-events: none;
}
.form-box {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
}
.f-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 8px;
}
.f-title {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.f-sub {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 22px;
  line-height: 1.6;
}
.seats-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(238, 16, 5, 0.07);
  border: 1px solid rgba(238, 16, 5, 0.15);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--r);
}
.s-dot {
  width: 7px;
  height: 7px;
  background: var(--r);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.5s ease-in-out infinite;
}
.f-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fg {
  margin-bottom: 12px;
}
.fl {
  font-family: "Montserrat", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 5px;
}
.fi {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #e2d5cf;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: "Helvetica", Arial, sans-serif;
  color: var(--dark);
  background: #fff;
  transition: 0.2s;
  outline: none;
}
.fi:focus {
  border-color: var(--r);
  box-shadow: 0 0 0 3px rgba(238, 16, 5, 0.08);
  background: #fff;
}
.fi-sel {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%235a3020' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  appearance: none;
  cursor: pointer;
}
.btn-submit {
  width: 100%;
  background: linear-gradient(90deg, var(--r), var(--o));
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: 0.25s;
  margin-top: 6px;
  letter-spacing: 0.3px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(238, 16, 5, 0.35);
}
.f-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--mid);
  flex-wrap: wrap;
}
.f-trust-sep {
  color: rgba(90, 48, 32, 0.3);
}

/* ── PROOF STRIP ── */
.proof {
  background: var(--dark);
  padding: 0;
}
.proof-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.proof-scroll::-webkit-scrollbar {
  display: none;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  min-width: 180px;
}
.p-num {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--o);
  line-height: 1;
}
.p-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  font-weight: 500;
}

/* ── SECTION BASICS ── */
.s {
  padding: 100px 0;
}
.s-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--r);
  flex-shrink: 0;
}
.s-h2 {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.8px;
  color: var(--dark);
}
.s-h2 span {
  
  color: var(--o);
}
.s-h2 .red {
  color: var(--r);
}
.s-p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  max-width: 520px;
}

/* ── LEGACY — magazine layout ── */
.legacy {
  background: #fff;
}
/* Staggered photo grid */
.photo-stack {
  position: relative;
  height: 580px;
}
.ps-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(155deg, #9a2d20 0%, #2a0600 100%);
}
.ps-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}
.ps-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  padding: 7px 14px;
}
.ps-inner-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  opacity: 0.1;
}
.ps-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(155deg, #d4a491 0%, #b53528 100%);
}
.ps-3 {
  position: absolute;
  top: 320px;
  left: 30px;
  width: 36%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(155deg, #e8573a 0%, #7a1a10 100%);
}
.founder-badge {
  position: absolute;
  bottom: 287px;
    right: 10px;
  background: var(--o);
  border-radius: 14px;
  padding: 20px 24px;
  color: #fff;
  text-align: center;
  z-index: 5;
  box-shadow: 0 20px 50px rgba(255, 77, 0, 0.4);
}
.fb-n {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}
.fb-l {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}
.pull-q {
  border-left: 4px solid var(--o);
  padding: 18px 22px;
  background: rgba(255, 77, 0, 0.05);
  border-radius: 0 12px 12px 0;
  margin-top: 32px;
}
.pull-q p {
  font-size: 17px;
  
  line-height: 1.65;
  color: var(--dark);
  font-weight: 500;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.chip {
  font-family: "Montserrat", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--mid);
}

/* ── INFRA — dark full bleed image wall ── */
/* ── INFRASTRUCTURE SECTION STYLES ── */
.infrastructure-section {
  padding: 120px 0 80px; /* Large top padding to account for overlapping image */
  background-color: var(--bg-light, #f9fafb);
}
#infraCarousel, 
#infraCarousel .carousel-inner, 
#infraCarousel .carousel-item {
  height: 100%;
}
.infra-card {
  background: linear-gradient(135deg, #1a0a00 0%, #3d1410 100%);
  border-radius: 14px;
  padding: 0 50px 70px;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

/* Image that overlaps the top of the card */
.infra-image-wrapper {
  width: 90%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  transform: translateY(-60px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.infra-image-wrapper img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transition: transform 0.5s ease;
}

.infra-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Adjusting content margin to compensate for image transform */
.infra-content {
  margin-top: -10px;
}

.infra-subtitle {
  color: var(--primary-color, #ff4800);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.infra-title {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.infra-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #cbd5e1; /* Slate 300 for readability on dark bg */
  max-width: 850px;
  margin: 0 auto 60px;
}

/* Features Grid spacing */
.infra-features {
  row-gap: 45px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
  background-color: rgba(255, 255, 255, 0.08);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-item:hover .feature-icon {
 background-color: #ffffff;
  transform: translateY(-5px);
}

.feature-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #ffffff;
}

.feature-desc {
  font-size: 15px;
  color: #94a3b8; /* Slate 400 */
  margin: 0;
  font-weight: 400;
}

/* Responsive Adjustments using px strictly */
@media (max-width: 1200px) {
  .infra-title {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .infra-image-wrapper {
    width: 95%;
    height: 320px;
    transform: translateY(-50px);
  }
  .infra-title {
    font-size: 30px;
  }
  .infra-desc {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .infrastructure-section {
    padding: 90px 0 60px;
  }
  .infra-card {
    padding: 0 25px 50px;
    border-radius: 32px;
  }
  .infra-image-wrapper {
    height: 260px;
    transform: translateY(-40px);
    border-radius: 14px;
  }
  .infra-title {
    font-size: 26px;
  }
  .infra-features {
    row-gap: 35px;
  }
  .feature-title {
    font-size: 18px;
  }
  .feature-desc {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .infra-image-wrapper {
    height: auto;
    transform: translateY(-30px);
    border-radius: 14px;
  }
  .infra-title {
    font-size: 24px;
  }
  .infra-desc {
    font-size: 15px;
  }
}
/* ── MEDICITY — image-first horizontal scroll cards ── */
.med-s {
  background: var(--cream);
}
.med-hero-img {
  width: 100%;
  height: 530px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;

  background: 
    linear-gradient(145deg, rgba(154, 44, 32, 0), rgba(14, 3, 0, 0)),
    url('./images/medicity.webp');

  background-size: cover;
  background-position: center;
}
.med-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 60%
  );
  z-index: 1;
}
.med-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 52px;
}
.med-hero-content h3 {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.med-hero-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  /* max-width: 500px; */
  line-height: 1.7;
  margin: 0;
}
.med-stat-overlay {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mso {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
}
.mso-n {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--o);
  line-height: 1;
}
.mso-l {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.med-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.mbi {
  height: 210px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.mb1 {
  background: linear-gradient(155deg, #c9473a, #4a0e08);
}
.mb2 {
  background: linear-gradient(155deg, #e8573a, #9a2d20);
}
.mb3 {
  background: linear-gradient(155deg, #d4a491, #b53528);
}
/* Horizontal cards */
.med-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.mc {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}
.mc:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(238, 16, 5, 0.1);
}
.mc-img {
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mc-img-1 {
  background: linear-gradient(155deg, #b53528, #2a0600);
}
.mc-img-2 {
  background: linear-gradient(155deg, #c9473a, #4a0e08);
}
.mc-img-3 {
  background: linear-gradient(155deg, #e8573a, #9a2d20);
}
.mc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 77, 0, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 5px;
  padding: 4px 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.mc-body {
  padding: 20px;
}
.mc-title {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.mc-desc {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.65;
}

/* ── HOSTEL — full hero image with overlay content ── */
/* ── HOSTEL & LIVING SECTION STYLES ── */
.hostel-section {
  padding: 50px 0;
  background-color: var(--bg-light, #f9fafb);
}

/* ── GALLERY STYLES ── */
.hostel-gallery {
  display: flex;
  gap: 20px;
}

.gallery-col-large {
  flex: 1;
}

.gallery-col-small {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hostel-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.hostel-img-wrapper.img-large {
  height: 560px;
}

.hostel-img-wrapper.img-small {
  height: 270px;
  border-radius: 14px; /* Slightly smaller radius for smaller images */
}

.hostel-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hostel-img-wrapper:hover img {
  transform: scale(1.05);
}

.img-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--secondary-color, #0f172a);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ── CONTENT STYLES ── */
.hostel-content {
  padding-left: 30px;
}

.hostel-subtitle {
  color: var(--primary-color, #ff4800);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.hostel-title {
  color: var(--secondary-color, #0f172a);
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.hostel-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-light, #6b7280);
  margin-bottom: 15px;
}

/* Checklist */
.hostel-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.hostel-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-color, #0f172a);
  margin-bottom: 16px;
}

.hostel-features-list li i {
  color: var(--accent-color, #10b981);
  font-size: 20px;
}

/* Notice Box */
.hostel-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: rgba(255, 72, 0, 0.05); /* Very faint primary color */
  border: 1px solid rgba(255, 72, 0, 0.2);
  padding: 24px;
  border-radius: 14px;
}

.notice-icon {
  font-size: 24px;
  line-height: 1;
}

.notice-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--secondary-color, #0f172a);
}

.notice-text strong {
  color: var(--primary-color, #ff4800);
  font-weight: 500;
}

/* ── RESPONSIVE ADJUSTMENTS ── */
@media (max-width: 1200px) {
  .hostel-title {
    font-size: 36px;
  }
  .gallery-col-small {
    flex: 0 0 200px;
  }
}

@media (max-width: 991px) {
  .hostel-section {
    padding: 80px 0;
  }
  .hostel-content {
    padding: 20px;
    margin-top: 20px;
  }
  .hostel-title {
    font-size: 32px;
  }
  .hostel-gallery {
    gap: 15px;
  }
  .gallery-col-small {
    gap: 15px;
  }
  .hostel-img-wrapper.img-large {
    height: 400px;
    border-radius: 14px;
  }
  .hostel-img-wrapper.img-small {
    height: 192px;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .hostel-section {
    padding: 60px 0;
  }
  .hostel-gallery {
    flex-direction: column; /* Stack images on smaller screens */
  }
  .gallery-col-small {
    flex-direction: row;
  }
  .hostel-img-wrapper.img-large {
    height: 350px;
  }
  .hostel-img-wrapper.img-small {
    flex: 1;
  }
  .hostel-title {
    font-size: 30px;
  }
  .hostel-desc {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hostel-title {
    font-size: 28px;
  }
  .gallery-col-small {
    flex-direction: column;
  }
  .hostel-img-wrapper.img-large, .hostel-img-wrapper.img-small {
    height: 250px;
    border-radius: 14px;
  }
  .hostel-notice {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
}

/* ── CAMPUS LIFE — interactive tabs ── */
/* ── CAMPUS LIFE SECTION STYLES ── */
.campus-life-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #1a0a00 0%, #3d1410 100%);
  border-radius: 14px; /* Optional: adds a nice rounded containment if placed inside a wrapper, otherwise safe to remove */
  margin: 20px 40px; /* Creates separation from other sections if rounded */
}

/* ── COLLAGE STYLES ── */
.campus-collage {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.collage-row {
  display: flex;
  gap: 20px;
}

.collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.collage-item.main-img {
  height: 380px;
  width: 100%;
}

.collage-item.sub-img {
  height: 250px;
  flex: 1;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collage-item:hover img {
  transform: scale(1.05);
}

.collage-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85); /* Dark translucent background */
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── CONTENT STYLES ── */
.campus-content {
  padding-left: 40px;
}

.campus-subtitle {
  color: var(--primary-color, #ff4800);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.campus-title {
  color: #ffffff; /* White text for dark bg */
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.campus-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #cbd5e1; /* Lighter grey for readability on dark */
  margin-bottom: 20px;
}

/* ── FEATURES GRID ── */
.campus-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.campus-feature-card {
  background-color: rgba(255, 255, 255, 0.03); /* Subtle glass effect */
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 14px;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.campus-feature-card:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-number {
  font-size: 46px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.08); /* Faint watermark-style number */
  line-height: 1;
  margin-bottom: 10px;
  font-family: var(--font-main);
  transition: color 0.3s ease;
}

.campus-feature-card:hover .feature-number {
  color: var(--primary-color, #ff4800); /* Lights up on hover */
}

.feature-heading {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* ── RESPONSIVE ADJUSTMENTS ── */
@media (max-width: 1200px) {
  .campus-title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .campus-life-section {
    padding: 80px 0;
    margin: 0; /* Remove margin on smaller screens */
    border-radius: 0;
  }
  .campus-content {
    padding: 20px;
  }
  .collage-item.main-img {
    height: 280px;
  }
  .collage-item.sub-img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .campus-life-section {
    padding: 60px 0;
  }
  .campus-title {
    font-size: 30px;
  }
  .campus-desc {
    font-size: 16px;
  }
  .campus-features-grid {
    grid-template-columns: 1fr; /* Stack features to 1 column */
    gap: 16px;
  }
  .campus-feature-card {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .campus-title {
    font-size: 28px;
  }
  .collage-row {
    flex-direction: column; /* Stack all images vertically */
  }
  .collage-item.main-img, 
  .collage-item.sub-img {
    height: 220px;
    border-radius: 14px;
  }
}

/* ── PROGRAMMES — full image cards ── */
.prog-s {
  background: var(--cream);
}
.prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}
.prog-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.pc-img {
  height: 290px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.pc-img-bds {
  background:
    linear-gradient(155deg, rgba(154,45,32,0.25), rgba(14,3,0,0.45)),
    url('./images/bds.webp');
    
  background-size: cover;
  background-position: center;
}

.pc-img-mds {
  background:
    linear-gradient(155deg, rgba(154,45,32,0.25), rgba(14,3,0,0.55)),
    url('./images/mds.webp');
    
  background-size: cover;
  background-position: center;
}
.ps-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pc-img-svg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}
.pc-img-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.pc-img-content .label {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.pc-img-content .prog-title {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -1.5px;
}
.pc-img-content .prog-sub {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.3px;
}
.pc-deco-icon {
  position: absolute;
  right: 28px;
  bottom: 28px;
  font-size: 90px;
  opacity: 0.08;
  z-index: 1;
}
.pc-body {
  background: #fff;
  padding: 30px;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 22px 22px;
  height: 100%;
}
.pc-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.pm {
  padding: 13px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pm:nth-child(even) {
  border-right: none;
}
.pm:nth-last-child(-n + 2) {
  border-bottom: none;
}
.pm-k {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 3px;
}
.pm-v {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}
.pc-feats {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}
.pc-feats li {
  font-size: 13px;
  color: var(--mid);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-feats li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--r);
  flex-shrink: 0;
}
.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.st {
  font-family: "Montserrat", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  background: rgba(238, 16, 5, 0.06);
  color: var(--r);
  border: 1px solid rgba(238, 16, 5, 0.14);
}
.btn-pc {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, var(--r), var(--o));
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  letter-spacing: 0.3px;
}
.btn-pc:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(238, 16, 5, 0.3);
}

/* ── CTA — full bleed image bg ── */
.cta-s {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #4a0e08 0%, #0e0300 100%);
}
.cta-img-bg {
  position: absolute;
  inset: 0;
}
.cta-img-bg-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(155deg, #9a2d20, #2a0600);
  opacity: 0.6;
}
.cta-img-bg-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100% ;
  height: 100%;
  background: linear-gradient(155deg, #7a1a10, #0e0300);
  opacity: 0.4;
  border-radius: 0 20px 0 0;

}
.cta-svg {
  position: absolute;
  inset: 0;
  opacity: 3.15;
  pointer-events: none;
  width: 167%;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(14 3 0 / 82%) 50%, rgb(14 3 0 / 94%) 100%);

}
.cta-content {
  position: relative;
  z-index: 2;
  padding: 100px 35px;
}
.cta-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 16px;
}
.cta-h {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
}
.cta-h span {
  
  color: var(--o);
}
.cta-p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 44px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-cta1 {
  background: #fff;
  color: var(--r);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 16px 34px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  letter-spacing: 0.3px;
}
.btn-cta1:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--dr);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.btn-cta2 {
  background: transparent;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 16px 26px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
.btn-cta2:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
/* Right side stats */
.cta-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cs {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px 26px;
}
.cs-n {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--o);
  line-height: 1;
}
.cs-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.cs-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin-top: 14px;
  overflow: hidden;
}
.cs-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--r), var(--o));
  border-radius: 2px;
}

/* ── FOOTER ── */
/* --- Footer Admission Focus Styles --- */

.footer-admission-focus {
  background-color: var(--dark);
  padding: 80px 0 40px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  position: relative;
  border-top: 1px solid var(--border);
}

.footer-brand-center {
  margin-bottom: 48px;
}

.footer-brand-center img {
  max-width: 280px;
  height: auto;
  margin-bottom: 20px;
}

.footer-subtext {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  font-weight: 500;
}

/* --- Action Row: Links and CTA --- */

.footer-action-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.action-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.action-link:hover {
  color: var(--o);
}

.footer-svg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--o);
  transition: all 0.3s ease;
}

.action-link:hover .footer-svg-icon {
  background: var(--o);
  color: #fff;
  transform: translateY(-3px);
}

/* --- CTA Button --- */

.btn-footer-cta {
  background: linear-gradient(90deg, var(--r), var(--o));
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(238, 16, 5, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-footer-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(238, 16, 5, 0.5);
  color: #fff;
}

/* --- Bottom Bar & Divider --- */

.footer-simple-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, #ffffff63, rgb(238 16 5 / 70%), #80808085);
  margin-bottom: 30px;
  opacity: 0.5;
}

.footer-bottom-bar p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

/* --- Responsive Adjustments --- */

@media (max-width: 768px) {
  .footer-action-row {
    flex-direction: column;
    gap: 25px;
  }
  
  .footer-admission-focus {
    padding: 60px 20px 30px;
  }
  
  .btn-footer-cta {
    width: 100%;
    text-align: center;
  }
  .med-stat-overlay {
    display: none !important;
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.med-hero-content h3 {
    
    font-size: 28px;
    
}
.hh-content h2 {
    font-size: 30px;
    
}
}

/* ── SCROLL REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.rv.show {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.45s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .fi-1 {
    width: 200px;
    height: 260px;
  }
  .fi-2 {
    width: 150px;
    height: 190px;
  }
  .hh-right {
    display: none;
  }
}
@media (max-width: 991px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .h-left {
    min-height: 70vh;
  }
  .h-right {
    padding: 48px 32px;
  }
  .photo-stack {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
  }
  .ps-main {
    position: relative;
    width: 100%;
    height: 260px;
    grid-column: 1/3;
  }
  .ps-2 {
    position: relative;
    width: 100%;
    height: 180px;
    bottom: auto;
    right: auto;
  }
  .ps-3 {
    position: relative;
    width: 100%;
    height: 180px;
    top: auto;
    left: auto;
  }
  .founder-badge {
    position: relative;
    right: auto;
    bottom: auto;
    grid-column: auto;
  }
  .photo-wall {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 180px;
  }
  .pw-a {
    grid-row: 1/3;
    grid-column: 1;
  }
  .pw-d {
    grid-column: 2;
  }
  .med-bottom-row,
  .med-cards {
    grid-template-columns: 1fr 1fr;
  }
  .prog-grid {
    grid-template-columns: 1fr;
  }
  .tab-panel.active {
    grid-template-columns: 1fr;
  }
  .n-links {
    display: none;
  }
  .ham {
    display: flex;
  }
  .campus-tabs {
    flex-wrap: wrap;
  }
 
  .hostel-imgs {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .h-title {
    font-size: 36px;
    letter-spacing: -1.5px;
  }
  .kpi-row {
    gap: 8px;
  }
  .kpi-pill {
    padding: 10px 12px;
  }
  .f-grid {
    grid-template-columns: 1fr;
  }
  .fi-1,
  .fi-2,
  .fi-3 {
    display: none;
  }
  .proof-scroll {
    gap: 0;
  }
  .photo-wall {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 150px 150px;
  }
  .pw-a {
    grid-row: 1;
    grid-column: 1;
  }
  .pw-d {
    grid-column: 1;
  }
  .med-bottom-row,
  .med-cards {
    grid-template-columns: 1fr;
  }
  .hostel-imgs {
    grid-template-columns: 1fr;
  }
  .i-counters {
    grid-template-columns: 1fr 1fr;
  }
  .tab-panel.active .tp-imgs-row {
    grid-template-columns: 1fr;
  }
  .n-apply{
    display: none;
  }
  .med-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 23px;
}
.med-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgb(0 0 0 / 41%) 60%);
    z-index: 1;
}
.h-left-content {
    position: relative;
    z-index: 5;
    padding: 40px 30px 56px;
}
}
.admission-ticker {
  background: linear-gradient(90deg, var(--r), var(--o));
  padding: 15px 0;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.t-track {
  display: flex;
  align-items: center;
  animation: marquee 30s linear infinite; /* Adjust time for speed */
  width: max-content;
}

.t-item {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 40px; /* Space between items */
}

.t-item span {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 15px;
  font-size: 18px;
}

/* The Magic Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Moves the track by exactly half its width */
    transform: translateX(-50%);
  }
}

/* Pause on Hover */
.admission-ticker:hover .t-track {
  animation-play-state: paused;
}
/* Target icons specifically within your feature lists */
.hostel-features-list i, 
.infra-features .feature-icon i {
    color: #ff4d00 !important;
}

/* If you want a slight glow effect to match the 'premium' feel */
.hostel-features-list i {
    text-shadow: 0px 0px 8px rgba(255, 77, 0, 0.2);
}
.mc-img {
  position: relative;
  overflow: hidden;
}

.mc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ===============================
   STICKY APPLY BUTTON
================================== */

/* Desktop */
.sticky-apply-btn {
  position: fixed;
  right: -58px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 9999;

  background: linear-gradient(90deg, var(--r), var(--o));;
  color: #fff;
  text-decoration: none;

  padding: 14px 38px;
  border-radius: 14px 14px 0 0;

  font-family: sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.sticky-apply-btn:hover {
  right: -52px;
  background: linear-gradient(90deg, var(--r), var(--o));;
}

/* Mobile */
@media (max-width: 768px) {
      .sticky-apply-btn {
        right: 15px;
        left: 15px;
        bottom: 5px;
        top: auto;
        transform: none;
        width: auto;
        text-align: center;
        border-radius: 14px;
        padding: 16px 20px;
    }

  .sticky-apply-btn:hover {
    right: 15px;
  }
  .logo-img{
  width: 160px;
}
}
.tc-wrap{
    margin-top:4px;
}

.tc-label{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:14px;
    line-height:1.5;
    cursor:pointer;
    color:#666;
}

.tc-check{
    margin-top:3px;
    accent-color:#000;
    width:16px;
    height:16px;
    flex-shrink:0;
}