:root {
  --ink: #18212f;
  --muted: #657183;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #e7e1d7;
  --navy: #12395b;
  --maroon: #8c2332;
  --gold: #d7a64a;
  --green: #327466;
  --shadow: 0 24px 70px rgba(18, 57, 91, 0.18);
}

* { 
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(24, 33, 47, 0.84);
  color: #fff;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.dropdown-toggle::before {
    content: '';
    display: block;
    padding: 20px 0;
    position: absolute;
    width: 100px;
    top: 23px;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: #184170;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  max-width: 300px;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items:center;
  justify-content: center;
  gap: clamp(8px, 1.6vw, 18px);
  font-size: 14px;
  font-weight: 700;
}

.nav-item {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-weight: 800;
  padding: 0 10px;
}

.dropdown-toggle svg {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.main-nav a,
.dropdown-menu a {
  color: rgba(255, 255, 255, 0.82);
}

.dropdown-toggle:hover,
.dropdown-toggle:focus-visible,
.has-dropdown:hover .dropdown-toggle,
.has-dropdown.is-open .dropdown-toggle,
.main-nav a:hover {
  color: #fff;
}

.has-dropdown:hover .dropdown-toggle svg,
.has-dropdown.is-open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  width: 220px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  min-height: 40px;
  align-items: center;
  border-radius: 7px;
  color: var(--ink);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: #f3eee5;
  color: var(--maroon);
}

.header-action,
.button,
.hero-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.header-action {
  padding: 0 17px;
  background: var(--gold);
  color: #201704;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: transparent;
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 73px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px) clamp(28px, 6vw, 64px);
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 23, 37, 0.92), rgba(11, 23, 37, 0.62) 48%, rgba(11, 23, 37, 0.42)),
    linear-gradient(0deg, rgba(11, 23, 37, 0.7), rgba(11, 23, 37, 0.08) 52%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--maroon);
}

.hero h1 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(58px, 9vw, 126px);
  line-height: 0.9;
  color:#fff;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-width: 178px;
  padding: 0 20px;
}

.button.primary {
  background: var(--gold);
  color: #201704;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-panel {
  align-self: end;
  margin-bottom: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.panel-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 8px 0 18px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 31px;
  line-height: 1.04;
}

.hero-panel form {
  display: grid;
  gap: 13px;
}

.hero-panel label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-panel input,
.hero-panel select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
}

.hero-panel button {
  margin-top: 4px;
  background: var(--maroon);
  color: #fff;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-strip article {
  min-height: 118px;
  padding: 26px clamp(16px, 3vw, 36px);
  border-right: 1px solid var(--line);
}

.proof-strip strong {
  display: block;
  color: var(--navy);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.proof-strip span {
  display: block;
  max-width: 220px;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.intro-grid h2,
.section-heading h2,
.academic-copy h2,
.placement-copy h2,
.news-block h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.02;
}

.intro-grid p:last-child,
.academic-copy p,
.placement-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading a {
  color: var(--maroon);
  font-weight: 900;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.program-card {
  position: relative;
  min-height: 304px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(24, 33, 47, 0.06);
}

.program-card.featured {
  background: var(--navy);
  color: #fff;
}

.program-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-card.featured span {
  color: var(--gold);
}

.program-card h3 {
  margin: 22px 0 0;
  font-size: 23px;
  line-height: 1.18;
}

.program-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.program-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.program-card button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f1e8d5;
  color: var(--ink);
  cursor: pointer;
}

.academic-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 76px);
  background: var(--ink);
  color: #fff;
}

.academic-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-list article,
.life-grid article {
  min-height: 218px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.feature-list svg,
.life-grid svg {
  color: var(--gold);
}

.feature-list h3,
.life-grid h3 {
  margin: 32px 0 8px;
  font-size: 21px;
}

.feature-list p,
.life-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.placement-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.placement-visual {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.placement-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.metric-row span {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  line-height: 1.45;
}

.metric-row strong {
  display: block;
  color: var(--navy);
}

.life-section {
  background: #edf3ef;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.life-grid article {
  border-color: rgba(50, 116, 102, 0.18);
  background: var(--surface);
}

.life-grid h3 {
  color: var(--ink);
}

.life-grid p {
  color: var(--muted);
}

.news-testimonials {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.news-block,
.testimonial-block {
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(24, 33, 47, 0.07);
}

.news-block {
  padding: clamp(26px, 4vw, 44px);
}

.news-item {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.news-item:first-of-type {
  margin-top: 22px;
}

.news-item time {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.testimonial-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 42px);
  background: var(--maroon);
  color: #fff;
}

.testimonial-block svg {
  color: var(--gold);
}

.testimonial-block blockquote {
  margin: 54px 0 22px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
}

.testimonial-block cite {
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
  font-weight: 800;
}

.contact-hero {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: clamp(28px, 6vw, 82px);
  padding: clamp(84px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(44px, 7vw, 84px);
  background:
    linear-gradient(90deg, rgba(18, 57, 91, 0.95), rgba(24, 33, 47, 0.78)),
    url("https://www.jimsrohini.org/ICAMP2025/assets/images/DSC00162.jpg") center / cover;
  color: #fff;
}

.contact-hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.96;
}

.contact-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.45;
}

.quick-contact-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quick-contact-card span,
.contact-card span,
.email-card span,
.contact-form label span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-contact-card a {
  display: block;
  margin-top: 10px;
  color: var(--maroon);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1;
}

.quick-contact-card small,
.contact-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.contact-card,
.email-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(24, 33, 47, 0.06);
}

.contact-card {
  min-height: 300px;
  padding: 28px;
}

.contact-card.primary-contact {
  background: var(--navy);
  color: #fff;
}

.contact-card svg {
  color: var(--gold);
}

.contact-card span {
  margin-top: 30px;
}

.contact-card.primary-contact span,
.contact-card.primary-contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card h2 {
  margin: 10px 0 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.contact-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 900;
}

.email-section {
  padding-top: 0;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.email-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.email-card {
  display: grid;
  gap: 16px;
  min-height: 190px;
  align-content: start;
  padding: 24px;
}

.email-card svg {
  color: var(--green);
}

.email-card strong {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 18px;
}

.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  background: #edf3ef;
}

.enquiry-copy h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.03;
}

.enquiry-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.contact-note {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(50, 116, 102, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.45;
}

.contact-note svg {
  flex: 0 0 auto;
  color: var(--green);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label span {
  margin-bottom: 7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  min-height: 132px;
  padding-top: 13px;
  resize: vertical;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--maroon);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.map-band {
  height: clamp(320px, 48vw, 520px);
  background: #d8ddd8;
}

.map-band iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 72px);
  background: #101722;
  color: #fff;
}

.footer h2 {
  margin: 0 0 10px;
  font-family: "Source Serif 4", Georgia, serif;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    padding: 18px;
    border-radius: 8px;
    background: #18212f;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0 4px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 4px 0 10px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    display: none;
  }

  .has-dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.82);
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .hero,
  .academic-band,
  .placement-section,
  .intro-grid,
  .news-testimonials,
  .contact-hero,
  .contact-grid,
  .enquiry-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
  }

  .hero-panel {
    max-width: 520px;
  }

  .program-grid,
  .proof-strip,
  .email-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand strong {
    max-width: 165px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 86px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-strip,
  .program-grid,
  .feature-list,
  .life-grid,
  .metric-row,
  .email-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading a {
    display: inline-block;
    margin-top: 14px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .footer {
    display: block;
  }

  .footer-links {
    margin-top: 24px;
  }
}


/* our vision page  */

.vision-banner{
    background:url(images/vision-banner.jpg) center/cover;

    position:relative;
}

.vision-banner:before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(12,25,48,.75);
}

.banner-content{
    position:relative;
    color:#fff;
    max-width:700px;
}

.banner-content h1{
    font-size:60px;
    font-weight:700;
    margin:15px 0;
}

.subtitle,
.section-tag{
    color:#c69a45;
    letter-spacing:2px;
    font-weight:600;
}

.vision-overview,
.mission-section,
.quality-policy{
    padding:100px 0;
}

.vision-overview img,
.mission-section img{
    width:100%;
    border-radius:20px;
}

.vision-overview h2,
.mission-section h2,
.policy-box h2{
    font-size:42px;
    margin-bottom:20px;
}

.vision-highlights{
    background:#0f1b35;
    padding:90px 0;
}

.highlight-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    height:100%;
    transition:.3s;
}

.highlight-card:hover{
    transform:translateY(-8px);
}

.highlight-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.policy-box{
    background:#f7f8fb;
    border-radius:24px;
    padding:60px;
}

section{
      padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px) clamp(28px, 6vw, 64px) !important;
}

@media(max-width:768px){

    .banner-content h1{
        font-size:40px;
    }

    .vision-overview,
    .mission-section,
    .quality-policy{
        padding:70px 0;
    }

    .policy-box{
        padding:35px;
    }
}


/* about us */

/* =========================
   ABOUT PAGE REDESIGN
========================= */

:root {
    --primary: #0f1b35;
    --secondary: #c79c4b;
    --text: #555;
    --heading: #1a1a1a;
    --light-bg: #f7f8fb;
    --white: #fff;
    --radius: 20px;
    --shadow: 0 15px 40px rgba(0,0,0,.08);
}

section {
    position: relative;
}

.section-tag {
    display: inline-block;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--heading);
    font-weight: 700;
}

p {
    color: var(--text);
    line-height: 1.9;
    font-size: 16px;
}

/* =========================
   HERO
========================= */

.about-hero {
    background: linear-gradient(rgba(15,27,53,.85),
    rgba(15,27,53,.85)),
    url('../images/about-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0;
}

.about-hero .hero-content {
    max-width: 800px;
}

.about-hero .section-tag {
    color: #d9b26a;
}

.about-hero h1 {
    font-size: 70px;
    color: #fff;
    margin-bottom: 20px;
}

.about-hero p {
    color: rgba(255,255,255,.9);
    font-size: 20px;
    max-width: 650px;
}

/* =========================
   ABOUT SOCIETY
========================= */

.about-society {
    padding: 100px 0;
}

.about-society img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-society h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

/* =========================
   STATS
========================= */

.stats-section {
    background: var(--primary);
    padding: 90px 0;
}

.stat-box {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    text-align: center;
    padding: 40px 25px;
    border-radius: 16px;
    height: 100%;
    transition: .3s;
}

.stat-box:hover {
    transform: translateY(-8px);
}

.stat-box h3 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 10px;
}

.stat-box p {
    color: rgba(255,255,255,.8);
    margin: 0;
}

/* =========================
   INSTITUTIONS
========================= */

.institutions-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.institution-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.institution-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    font-weight: 600;
    transition: .3s;
    box-shadow: var(--shadow);
}

.institution-card:hover {
    transform: translateY(-8px);
}

/* =========================
   DISCIPLINES
========================= */

.disciplines {
    padding: 100px 0;
}

.discipline-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 35px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
    transition: .3s;
}

.discipline-card:hover {
    transform: translateY(-8px);
}

/* =========================
   SOCIAL IMPACT
========================= */

.social-impact {
    background: var(--light-bg);
    padding: 100px 0;
}

.social-impact h2 {
    font-size: 46px;
    margin-bottom: 25px;
}

.social-impact img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* =========================
   CTA
========================= */

.about-cta {
    background: var(--primary);
    padding: 100px 0;
    text-align: center;
}

.about-cta h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 30px;
}

.theme-btn {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.theme-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* =========================
   IMAGE OVERLAP EFFECT
========================= */

.about-society img,
.social-impact img {
    transition: .4s;
}

.about-society img:hover,
.social-impact img:hover {
    transform: scale(1.03);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .about-hero {
        padding: 100px 0;
    }

    .about-hero h1 {
        font-size: 52px;
    }

    .section-title h2,
    .about-society h2,
    .social-impact h2,
    .about-cta h2 {
        font-size: 36px;
    }

    .institution-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .about-society .row,
    .social-impact .row {
        row-gap: 40px;
    }
}

@media(max-width:767px) {

    .about-hero {
        padding: 80px 0;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .institution-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2,
    .about-society h2,
    .social-impact h2,
    .about-cta h2 {
        font-size: 30px;
    }

    .stats-section,
    .institutions-section,
    .disciplines,
    .social-impact,
    .about-society,
    .about-cta {
        padding: 70px 0;
    }

    .stat-box h3 {
        font-size: 38px;
    }
}


/*  chairman   */

/* HERO GATEWAY SECTION */
        .hero-section {
            background: linear-gradient(135deg, rgba(10,25,47,0.95) 0%, rgba(15,32,67,0.9) 100%), 
                        url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 5% 80px 5%;
            color: #ffffff;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 50px;
            align-items: center;
        }

        .hero-left .tagline {
            color: var(--accent-gold);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: inline-block;
        }

        .hero-left h2 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero-left p {
            font-size: 1.15rem;
            color: #cbd5e1;
            margin-bottom: 35px;
            max-width: 600px;
        }

        .cta-group {
            display: flex;
            gap: 15px;
        }

        .btn-primary {
            background: var(--accent-coral);
            color: #ffffff;
            padding: 14px 28px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }

        .btn-primary:hover {
            background: #c22e32;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: #ffffff;
            padding: 14px 28px;
            border: 1.5px solid rgba(255,255,255,0.3);
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-secondary:hover {
            border-color: #ffffff;
            background: rgba(255,255,255,0.05);
        }

        /* HERO WIDGET FORM */
        .lead-form-container {
            background: #ffffff;
            padding: 40px;
            border-radius: 8px;
            color: var(--text-dark);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .lead-form-container span {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #000;
            font-weight: 700;
        }

        .lead-form-container h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 0.8rem;
            color: #000;
            margin-bottom: 6px;
            font-weight: 500;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            font-size: 0.95rem;
            color: var(--text-dark);
            outline: none;
        }

        .form-group input:focus, .form-group select:focus {
            border-color: var(--primary-dark);
        }

        .btn-submit {
            width: 100%;
            background: var(--primary-dark);
            color: #ffffff;
            padding: 14px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        .btn-submit:hover {
            background: #132a4f;
        }

        /* QUICK STATS STRIP */
        .stats-strip {
            background: var(--bg-light);
            padding: 40px 5%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            border-bottom: 1px solid #e2e8f0;
        }

        .stat-card h4 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-dark);
        }

        .stat-card p {
            font-size: 0.9rem;
            color: #000;
            font-weight: 500;
        }

        /* CHAIRMAN MESSAGE SECTION (Split Concept) */
        .chairman-section {
            padding: 100px 5%;
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 80px;
            align-items: flex-start;
        }

        .chairman-meta {
            position: sticky;
            top: 120px;
        }

        .section-label {
            color: var(--accent-coral);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
        }

        .chairman-meta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--primary-dark);
            margin-bottom: 25px;
        }

        .chairman-meta p {
            color: #000;
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .profile-card {
            background: var(--bg-light);
            padding: 25px;
            border-left: 4px solid var(--primary-dark);
            border-radius: 0 8px 8px 0;
        }

        .profile-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .profile-title {
            font-size: 0.85rem;
            color: var(--accent-coral);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* TEXT CONTENT BOX WITH HIGHER HIERARCHY */
        .chairman-content {
            font-size: 1.1rem;
            color: #334155;
        }

        .chairman-content p {
            margin-bottom: 25px;
            text-align: justify;
        }

        .highlight-para {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-dark);
            line-height: 1.5;
            border-bottom: 2px dashed #e2e8f0;
            padding-bottom: 25px;
        }

        /* PILLARS / VISION GRID */
        .vision-grid {
            background: var(--bg-light);
            padding: 90px 5%;
        }

          .text-white{
          color:#fff;
        }

        .vision-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .vision-header h3 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .vision-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .vision-card {
            background: #ffffff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
        }

        .vision-card:hover {
            transform: translateY(-5px);
        }

        .icon-box {
            width: 50px;
            height: 50px;
            background: rgba(10,25,47,0.05);
            color: var(--primary-dark);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .vision-card h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--primary-dark);
        }

        .vision-card p {
            font-size: 0.95rem;
            color: #000;
        }

      

        @media (max-width: 1024px) {
            .hero-section, .chairman-section {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .chairman-meta {
                position: relative;
                top: 0;
            }
            .stats-strip, .vision-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .stats-strip, .vision-cards, .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero-left h2 {
                font-size: 2.5rem;
            }
        }


        /* bba programme */

        /* COMPONENT SPECIFIC STYLES */
    :root {
        --primary-navy: #0d233a;
        --accent-coral: #d9383a;
        --accent-gold: #f5a623;
        --bg-light: #f8f9fa;
        --text-dark: #1e293b;
        --text-muted: #64748b;
        --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-section {
        background: linear-gradient(135deg, rgba(13, 35, 58, 0.96) 0%, rgba(20, 48, 78, 0.92) 100%), 
                    url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        padding: 100px 5% 80px 5%;
        color: #ffffff;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 50px;
        align-items: center;
    }

    .hero-left .tagline {
        color: var(--accent-gold);
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        display: inline-block;
    }

    .hero-left h2 {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-left p {
        font-size: 1.15rem;
        color: #cbd5e1;
        margin-bottom: 35px;
        max-width: 600px;
    }

    .cta-group {
        display: flex;
        gap: 15px;
    }

    .btn-primary {
        background: var(--accent-coral);
        color: #ffffff;
        padding: 14px 28px;
        border: none;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        text-decoration: none;
    }

    .btn-primary:hover {
        background: #b82d2f;
        transform: translateY(-2px);
    }

    .btn-secondary {
        background: transparent;
        color: #ffffff;
        padding: 14px 28px;
        border: 1.5px solid rgba(255,255,255,0.3);
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }

    .btn-secondary:hover {
        border-color: #ffffff;
        background: rgba(255,255,255,0.05);
    }

    .lead-form-container {
        background: #ffffff;
        padding: 40px;
        border-radius: 8px;
        color: var(--text-dark);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .lead-form-container span {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-muted);
        font-weight: 700;
    }

    .lead-form-container h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 6px;
        font-weight: 500;
    }

    .form-group input, .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #e2e8f0;
        border-radius: 4px;
        font-size: 0.95rem;
        outline: none;
    }

    .btn-submit {
        width: 100%;
        background: var(--primary-navy);
        color: #ffffff;
        padding: 14px;
        border: none;
        border-radius: 4px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: var(--transition);
    }

    .stats-strip {
        background: var(--bg-light);
        padding: 40px 5%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        border-bottom: 1px solid #e2e8f0;
    }

    .stat-card h4 {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--primary-navy);
    }

    .stat-card p {
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    .overview-section {
        padding: 100px 5%;
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 80px;
    }

    .section-label {
        color: var(--accent-coral);
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        display: block;
    }

    .overview-meta h2 {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.2;
        color: var(--primary-navy);
        margin-bottom: 25px;
    }

    .criteria-box {
        background: var(--bg-light);
        padding: 25px;
        border-left: 4px solid var(--accent-coral);
        border-radius: 0 8px 8px 0;
        margin-top: 30px;
    }

    .criteria-box h5 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .criteria-box p {
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    .overview-content p {
        font-size: 1.1rem;
        color: #334155;
        margin-bottom: 25px;
    }

    .excellence-section {
        background: var(--bg-light);
        padding: 90px 5%;
    }

    .section-header-center {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 60px auto;
    }

    .section-header-center h3 {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--primary-navy);
        margin-bottom: 15px;
    }

    .grid-3-col {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .excellence-card {
        background: #ffffff;
        padding: 40px;
        border-radius: 8px;
        box-shadow: var(--card-shadow);
        transition: var(--transition);
    }

    .excellence-card:hover {
        transform: translateY(-5px);
    }

    .icon-indicator {
        width: 45px;
        height: 45px;
        background: rgba(13, 35, 58, 0.05);
        color: var(--primary-navy);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .excellence-card h4 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .excellence-card p {
        font-size: 0.95rem;
        color: var(--text-muted);
    }

    .placement-section {
        padding: 90px 5%;
        background: #ffffff;
    }

    .placement-flex {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .chip-container {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 25px;
    }

    .outcome-chip {
        background: var(--bg-light);
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--primary-navy);
        border: 1px solid #e2e8f0;
    }

    .testimonial-box {
        background: var(--primary-navy);
        color: #ffffff;
        padding: 50px;
        border-radius: 12px;
        position: relative;
    }

    .testimonial-box p {
        font-size: 1.25rem;
        font-style: italic;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .testimonial-box span {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--accent-gold);
        font-weight: 700;
    }

    /* RESPONSIVE MEDIA QUERIES */
    @media (max-width: 1024px) {
        .hero-section, .overview-section, .placement-flex {
            grid-template-columns: 1fr;
            gap: 50px;
        }
        .grid-3-col, .stats-strip {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .grid-3-col, .stats-strip {
            grid-template-columns: 1fr;
        }
        .hero-left h2 {
            font-size: 2.4rem;
        }
    }