/* ════════════════════════════════════════════════════════════════════
   SENGUNTHAR COLLEGE OF NURSING - MAIN STYLESHEET
   Consolidated & Organized Stylesheet
   ════════════════════════════════════════════════════════════════════ */

/* ─── 0. FONTS (single source for all pages) ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── 1. ROOT VARIABLES & RESET ─── */
:root {
  /* Primary Palette */
  --pink-deep: #C2185B;
  --pink-mid: #E91E8C;
  --pink-soft: #F48FB1;
  --pink-pale: #FCE4EC;
  --pink-blush: #FFF0F5;
  --gradient: linear-gradient(135deg, var(--pink-deep), var(--pink-mid));

  /* Neutral Palette */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A6A;
  --text-light: #8A8AAA;
  --border: #EDD5E4;
  --shadow: 0 20px 60px rgba(194, 24, 91, 0.1);
  --shadow-sm: 0 4px 20px rgba(194, 24, 91, 0.08);
  --gold: #D4A853;

  /* Clinical Laboratory & Secondary page aliases */
  --pink: #C2185B;
  --pink-dark: #880E4F;
  --light-pink: #FFF0F5;
  --sub-title-bg: #FCE4EC;
  --dark-bg: #1A0A10;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── 2. SHARED COMPONENTS & LAYOUTS ─── */
section {
  padding: 60px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-tag {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink-deep);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--pink-deep);
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-soft));
  border-radius: 3px;
  margin: 24px 0;
}

/* ─── 3. HEADER & NAVIGATION ─── */
header {
  background: var(--white);
  border-bottom: 1px solid #F0D0DC;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(194, 24, 91, 0.07);
}

.header-top {
  background: var(--pink-deep);
  text-align: center;
  padding: 7px 24px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.06em;
}

.header-top span {
  opacity: 0.6;
  margin: 0 10px;
}

.header-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-emblem img {
  height: 52px;
  width: auto;
  max-width: 250px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  background: var(--pink-blush);
  color: var(--pink-deep);
}

nav a.active {
  font-weight: 600;
}

/* Dropdown styling */
nav .dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

nav .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

nav .dropdown-trigger::after {
  content: '▼';
  font-size: 8px;
  margin-left: 2px;
  transition: transform 0.2s;
  opacity: 0.7;
}

nav .dropdown:hover .dropdown-trigger::after {
  transform: rotate(180deg);
}

nav .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(194, 24, 91, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(194, 24, 91, 0.08);
  z-index: 1000;
  padding: 8px 0;
  margin-top: 0;
  animation: fadeInDropdown 0.2s ease-out;
}

nav .dropdown-content a {
  color: var(--text-mid);
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.82rem;
  border-radius: 0;
  transition: background 0.18s, color 0.18s;
  text-align: left;
}

nav .dropdown-content a:hover {
  background-color: var(--pink-blush);
  color: var(--pink-deep);
}

nav .dropdown:hover .dropdown-content {
  display: block;
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.header-cta {
  background: var(--gradient);
  color: #FFF;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(194, 24, 91, 0.25);
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.header-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pink-deep);
  border-radius: 2px;
  transition: 0.3s;
}

.header-main {
  position: relative;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 95;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
  gap: 4px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
}

.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  width: 100%;
  text-align: left;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--pink-blush);
  color: var(--pink-deep);
}

.mobile-nav.open {
  display: flex;
}

.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-trigger {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-trigger::after {
  content: '▼';
  font-size: 8px;
  margin-left: 8px;
  transition: transform 0.2s;
  opacity: 0.7;
}

.mobile-dropdown-trigger.active {
  color: var(--pink-deep);
  font-weight: 600;
}

.mobile-dropdown-trigger.active::after {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  gap: 4px;
  background: rgba(194, 24, 91, 0.01);
  border-radius: 8px;
  margin-bottom: 8px;
}

.mobile-dropdown-content.open {
  display: flex;
}

.mobile-dropdown-content a {
  font-size: 0.85rem;
  padding: 8px 14px;
}

/* ─── 4. GLOBAL FOOTER ─── */
footer {
  background: var(--white);
  padding: 72px 0 0 0;
  border-top: 1px solid rgba(194, 24, 91, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 56px 60px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 44px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  max-width: 250px;
  display: block;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 9px;
  margin-bottom: 22px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(194, 24, 91, 0.04);
  border: 1px solid rgba(194, 24, 91, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(194, 24, 91, 0.1);
  border-color: rgba(194, 24, 91, 0.3);
}

.footer-accred-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.footer-accred-pill {
  background: var(--pink-blush);
  border: 1px solid rgba(194, 24, 91, 0.1);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 11px;
  color: var(--pink-deep);
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  color: var(--pink-deep);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 13px;
  color: var(--text-mid);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--pink-deep);
}

.footer-col ul li a::before {
  content: '›';
  color: var(--pink-deep);
  font-size: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.fci-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(194, 24, 91, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.fci-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

.fci-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 12px;
  margin-bottom: 2px;
}

/* Full Width Blush Pink Footer Bottom */
.footer-bottom {
  background: var(--pink-blush);
  border-top: 1px solid rgba(194, 24, 91, 0.08);
  padding: 22px 0;
  width: 100%;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-mid);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--pink-deep);
}

/* Dark Footer Overrides (for pages that require a dark themed footer) */
footer.dark-footer {
  background: var(--dark-bg);
  border-top: none;
}

footer.dark-footer .footer-brand-desc,
footer.dark-footer .fci-text,
footer.dark-footer .footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
}

footer.dark-footer .fci-text strong,
footer.dark-footer .footer-col h5 {
  color: var(--white);
}

footer.dark-footer .social-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

footer.dark-footer .social-btn:hover {
  background: var(--pink-deep);
}

footer.dark-footer .footer-accred-pill {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

footer.dark-footer .footer-inner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}


/* ─── 5. INDEX PAGE STYLES ─── */

/* Hero Banner with Background Video */
.hero {
  min-height: 80vh;
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Fallback image while video loads */
  background: url('https://images.unsplash.com/photo-1551601651-2a8555f1a136?w=1400&q=80&auto=format&fit=crop') center/cover no-repeat, var(--pink-blush);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  /* visible but doesn't overpower text */
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  /* Pink-rose cinematic overlay */
  background: linear-gradient(120deg, rgb(194 24 91 / 48%) 0%, rgb(233 30 140 / 85%) 45%, rgb(194 24 91 / 54%) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(194, 24, 91, 0.08), rgba(233, 30, 140, 0.04));
  pointer-events: none;
  z-index: 1;
}

.hero-bg-circle.c1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
}

.hero-bg-circle.c2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
}

.hero-bg-cross {
  position: absolute;
  right: 340px;
  top: 80px;
  font-size: 60px;
  color: rgba(194, 24, 91, 0.06);
  font-weight: 300;
  pointer-events: none;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.40);
  color: var(--white);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink-deep);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: rgba(255, 200, 220, 1);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(194, 24, 91, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(194, 24, 91, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.60);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--white);
  font-weight: 600;
  margin-left: -8px;
}

.hero-trust-avatars span:first-child {
  margin-left: 0;
}

.hero-trust-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-trust-text strong {
  color: var(--white);
}

/* Enquiry Card */
.enquiry-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 30px 80px rgba(194, 24, 91, 0.14);
  border: 1px solid rgba(194, 24, 91, 0.08);
  position: relative;
}

/* 
.enquiry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-mid), var(--pink-soft));
  border-radius: 24px 24px 0 0;
} */

.enquiry-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.enquiry-card p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #EDD5E4;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--pink-blush);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'DM Sans', sans-serif;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-mid);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  font-family: 'DM Sans', sans-serif;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(194, 24, 91, 0.35);
}

/* About Grid */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  /* margin-top: 60px; */
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-blush));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}

.about-image-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194, 24, 91, 0.05), transparent);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-pale);
  text-align: center;
}

.about-badge-float strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: var(--pink-deep);
}

.about-badge-float span {
  font-size: 12px;
  color: var(--text-light);
}

.about-right h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-right h2 em {
  font-style: italic;
  color: var(--pink-deep);
}

.about-right p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px !important;
  font-style: italic;
  color: var(--pink-deep) !important;
  line-height: 1.5 !important;
  padding-left: 20px;
  border-left: 3px solid var(--pink-soft);
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.chip {
  background: var(--pink-pale);
  color: var(--pink-deep);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--pink-deep) 0%, #880E4F 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-top: 8px;
}

.stats .section-title {
  color: var(--white);
}

.stats .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

.stats .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.stats .divider {
  background: rgba(255, 255, 255, 0.4);
}

/* Courses Section */
.courses {
  background: var(--off-white);
}

.course-card-main {
  margin-top: 60px;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.course-card-left {
  background: linear-gradient(160deg, var(--pink-deep), #880E4F);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.course-card-left::before {
  content: '🏥';
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 120px;
  opacity: 0.1;
}

.course-card-left .course-degree {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 16px;
}

.course-card-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.course-card-left p {
  opacity: 0.85;
  font-size: 14px;
  line-height: 1.7;
}

.course-card-right {
  padding: 60px;
}

.course-card-right h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.course-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.course-info-item {
  padding: 18px;
  background: var(--pink-blush);
  border-radius: 14px;
}

.course-info-item .ci-label {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.course-info-item .ci-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--pink-deep);
  margin-top: 4px;
}

.course-modules h5 {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}

.module-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gradient);
}

/* Why Choose Section */
.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.why-card {
  padding: 36px 28px;
  border: 1.5px solid #EDD5E4;
  border-radius: 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  border-color: var(--pink-mid);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--pink-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.why-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Facilities Section */
.facilities {
  background: var(--pink-blush);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.facility-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

.facility-card:hover {
  transform: translateY(-6px);
}

.facility-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--pink-blush);
}

.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

/* .facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194, 24, 91, 0.45), rgba(136, 14, 79, 0.55));
  transition: opacity 0.3s ease;
  z-index: 1;
} */

.facility-card:hover .facility-img img {
  transform: scale(1.08);
}

.facility-card:hover .facility-overlay {
  opacity: 0.3;
}

.facility-body {
  padding: 24px;
}

.facility-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.facility-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--pink-blush);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--pink-pale);
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
}

.t-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.t-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
}

.t-author-info strong {
  display: block;
  font-size: 14px;
}

.t-author-info span {
  font-size: 12px;
  color: var(--text-light);
}

/* Life at Sengunthar */
.life {
  background: var(--off-white);
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 60px;
}

.life-cell {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 200px;
  display: block;
}

.life-cell.tall {
  grid-row: span 2;
  min-height: 416px;
}

.life-cell.wide {
  grid-column: span 2;
}

.life-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.life-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(136, 14, 79, 0.9) 0%, rgba(194, 24, 91, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  transition: background 0.4s ease;
}

.life-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 3;
}

.life-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  display: block;
}

.life-cell:hover .life-img {
  transform: scale(1.08);
}

.life-cell:hover .life-overlay {
  background: linear-gradient(to top, rgba(136, 14, 79, 0.95) 0%, rgba(194, 24, 91, 0.55) 60%, rgba(0, 0, 0, 0) 100%);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-soft));
  padding: 50px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '✚';
  position: absolute;
  font-size: 300px;
  opacity: 0.04;
  color: var(--white);
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.cta-section::after {
  content: '✚';
  position: absolute;
  font-size: 200px;
  opacity: 0.04;
  color: var(--white);
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-section h2 em {
  font-style: italic;
  opacity: 0.85;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-white {
  background: var(--white);
  color: var(--pink-deep);
  border: none;
  padding: 18px 44px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cta-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}


/* ─── 6. ABOUT PAGE STYLES ─── */

.page-hero {
  margin-top: 0px;
  min-height: 440px;
  position: relative;
  background: linear-gradient(135deg, #750f4e 0%, #bd3076 40%, #880E4F 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(194, 24, 91, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(233, 30, 140, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.page-hero-crosses {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero-crosses span {
  position: absolute;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.03);
  font-weight: 300;
  line-height: 1;
  user-select: none;
}

.hero-img-col {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44%;
  overflow: hidden;
}

.hero-img-col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 160px;
  background: linear-gradient(90deg, #4A0025, transparent);
  z-index: 2;
}

.hero-img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(74, 0, 37, 0.6) 100%);
  z-index: 2;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 440px;
  background: linear-gradient(160deg, #FCE4EC 0%, #F48FB1 50%, #C2185B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  opacity: 0.35;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  padding: 0 60px 60px;
  max-width: 700px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.breadcrumb a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--pink-soft);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.breadcrumb-current {
  font-size: 13px;
  color: var(--pink-soft);
  font-weight: 500;
}

.page-hero-tag {
  display: inline-block;
  background: rgba(194, 24, 91, 0.35);
  border: 1px solid rgba(244, 143, 177, 0.4);
  color: var(--pink-soft);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--pink-soft);
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 520px;
}

.hero-year-badge {
  position: absolute;
  right: 46%;
  top: 40px;
  z-index: 4;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-pale);
  text-align: center;
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-year-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--pink-deep);
  line-height: 1;
}

.hero-year-badge span {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.intro-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  color: var(--pink-deep);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--pink-soft);
}

.intro-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}

.intro-body p:last-child {
  margin-bottom: 0;
}

.intro-highlight-card {
  background: linear-gradient(135deg, var(--pink-blush), var(--pink-pale));
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(194, 24, 91, 0.1);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.intro-highlight-card::after {
  content: '✚';
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 120px;
  color: rgba(194, 24, 91, 0.06);
  pointer-events: none;
}

.intro-highlight-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.intro-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.intro-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.intro-list-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  color: var(--white);
  font-weight: 700;
}

.founder-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-pale);
  display: flex;
  gap: 18px;
  align-items: center;
}

.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.founder-info .fi-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-info h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text-dark);
  margin: 4px 0;
}

.founder-info p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.vm-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.vm-card-head {
  padding: 36px 36px 28px;
  position: relative;
  overflow: hidden;
}

.vm-card.vision .vm-card-head {
  background: linear-gradient(135deg, var(--pink-deep), #880E4F);
}

.vm-card.mission .vm-card-head {
  background: linear-gradient(135deg, #880E4F, #4A0025);
}

.vm-card-head-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}

.vm-card-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.vm-card-head p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.vm-card-head::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.vm-card-body {
  background: var(--white);
  padding: 36px;
}

.vm-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--pink-deep);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pink-pale);
}

.vm-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vm-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

.vm-points li::before {
  content: '✦';
  color: var(--pink-soft);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.core-values-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.cv-pill {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  border: 1.5px solid var(--pink-pale);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.cv-pill:hover {
  border-color: var(--pink-mid);
  transform: translateY(-4px);
}

.cv-pill .cv-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.cv-pill .cv-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--pink-deep);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.accred-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 20px;
}

.accred-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.accred-badges-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.accred-badge {
  background: var(--white);
  border: 1.5px solid var(--pink-pale);
  border-radius: 18px;
  padding: 24px 20px;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.accred-badge:hover {
  border-color: var(--pink-mid);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.accred-badge::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.accred-badge:hover::after {
  transform: scaleX(1);
}

.accred-badge-icon img {
  max-width: 100px;
  margin-bottom: 12px;
}

.accred-badge-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-deep);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.accred-badge-full {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.affil-timeline {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--pink-pale);
  padding-left: 36px;
  margin-left: 20px;
}

.affil-item {
  position: relative;
  padding-bottom: 36px;
}

.affil-item:last-child {
  padding-bottom: 0;
}

.affil-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--pink-pale);
}

.affil-year {
  font-size: 11px;
  color: var(--pink-deep);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.affil-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.affil-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

.achievements .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.achievements .section-title {
  color: var(--white);
}

.achievements .divider {
  background: rgba(255, 255, 255, 0.3);
}

.ach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.ach-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 36px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.ach-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.ach-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 143, 177, 0.4);
}

.ach-card:hover::before {
  opacity: 1;
}

.ach-icon {
  font-size: 38px;
  margin-bottom: 18px;
}

.ach-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.ach-num sup {
  font-size: 24px;
  vertical-align: super;
}

.ach-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.award-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.award-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
}

.award-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 143, 177, 0.4);
}

.award-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-body h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 6px;
}

.award-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  /* grid-template-columns: 1fr 420px; */
  gap: 80px;
  align-items: center;
}

.cta-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.cta-left h2 em {
  font-style: italic;
  color: var(--pink-deep);
}

.cta-left p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta-contact-row {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.cta-contact-item span {
  font-size: 13px;
  color: var(--text-mid);
}

.cta-contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
}

.cta-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(194, 24, 91, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-mid), var(--pink-soft));
  border-radius: 24px 24px 0 0;
}

.cta-form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-bottom: 6px;
}

.cta-form-card>p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.cta-form-card textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #EDD5E4;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--pink-blush);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'DM Sans', sans-serif;
  resize: none;
}

.cta-form-card textarea:focus {
  border-color: var(--pink-mid);
  background: var(--white);
}


/* ─── 7. TRUST PAGE STYLES ─── */

.page-title-bar {
  background: linear-gradient(135deg, #750f4e 0%, #bd3076 40%, #880E4F 100%);
  padding: 80px 0;
  color: var(--white);
}

.page-title-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.page-title-bar h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  line-height: 1.15;
  margin-top: 14px;
  margin-bottom: 16px;
}

.page-title-bar h1 em {
  font-style: italic;
  color: var(--pink-soft);
}

.page-title-accent {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.accent-line {
  width: 40px;
  height: 2px;
  background: var(--pink-soft);
}

.accent-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.trust-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  color: var(--pink-deep);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--pink-soft);
}

.trust-intro p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}

.trust-visual {
  position: relative;
}

.trust-float-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-pale);
  text-align: center;
  z-index: 2;
}

.trust-float-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--pink-deep);
  line-height: 1;
}

.trust-float-badge span {
  font-size: 11px;
  color: var(--text-light);
}

.trust-visual-main {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-pale);
  position: relative;
}

.trust-visual-main img {
  width: 100%;
  height: auto;
  display: block;
}

.trust-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
}

.trust-visual-caption strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.trust-visual-caption p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Vertical Story Timeline */
.trust-timeline {
  position: relative;
  max-width: 900px;
  margin: 60px 0px 0px 0px;
}

.timeline-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 120px;
  width: 2px;
  background: var(--pink-pale);
}

.timeline-item {
  display: flex;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year-col {
  width: 120px;
  position: relative;
  text-align: right;
  padding-right: 36px;
  flex-shrink: 0;
}

.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--pink-deep);
  line-height: 1;
}

.timeline-dot {
  position: absolute;
  right: -7px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--pink-pale);
  z-index: 2;
}

.timeline-body {
  padding-left: 36px;
}

.timeline-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.timeline-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Objectives Grid */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.obj-card {
  padding: 36px 28px;
  border: 1.5px solid #EDD5E4;
  border-radius: 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.obj-card:hover {
  border-color: var(--pink-mid);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.obj-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--pink-pale);
  line-height: 1;
}

.obj-icon {
  width: 52px;
  height: 52px;
  background: var(--pink-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.obj-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 12px;
}

.obj-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.trust-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pink-deep) 0%, #880E4F 100%);
}

.trust-stats .section-tag {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.trust-stats .section-title {
  color: var(--white);
}

.trust-stats .divider {
  background: rgba(255, 255, 255, 0.35);
}

/* Members Section Table */
.members-section {
  background: var(--off-white);
}

.table-wrapper {
  margin-top: 52px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(194, 24, 91, 0.08);
}

.table-header-bar {
  background: linear-gradient(135deg, var(--pink-deep), #880E4F);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table-header-bar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
}

.table-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  background: var(--pink-blush);
  border-bottom: 2px solid var(--pink-pale);
}

thead th {
  padding: 16px 28px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: var(--pink-deep);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

thead th:first-child {
  width: 56px;
}

thead th.th-center {
  text-align: center;
}

tbody tr {
  border-bottom: 1px solid rgba(194, 24, 91, 0.06);
  transition: background 0.18s;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover {
  background: var(--pink-blush);
}

td {
  padding: 18px 28px;
  font-size: 14px;
  color: var(--text-mid);
  vertical-align: middle;
}

td:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text-light);
  font-weight: 600;
  text-align: center;
}

.td-avatar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
}

.td-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}

.td-name small {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 2px;
}

.designation-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-pale);
  color: var(--pink-deep);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.designation-pill.chair {
  background: #FBE9E7;
  color: #BF360C;
}

.designation-pill.sec {
  background: #E8F5E9;
  color: #2E7D32;
}

.designation-pill.tres {
  background: #FFF8E1;
  color: #F57F17;
}

.designation-pill.trustee {
  background: var(--pink-pale);
  color: var(--pink-deep);
}

.designation-pill.spec {
  background: #EDE7F6;
  color: #4527A0;
}

.td-center {
  text-align: center;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
}

.status-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #43A047;
  display: block;
  box-shadow: 0 0 0 2px rgba(67, 160, 71, 0.2);
}

.table-footnote {
  padding: 16px 28px;
  background: var(--pink-blush);
  border-top: 1px solid var(--pink-pale);
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-footnote::before {
  content: 'ℹ️';
  font-size: 14px;
}


/* ─── 8. CLINICAL LABORATORY PAGE STYLES ─── */

.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 55px solid rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.hero-orb.o1 {
  width: 380px;
  height: 380px;
  top: -80px;
  right: -70px;
}

.hero-orb.o2 {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: -40px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-pink);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--pink-dark);
  transition: background 0.2s, transform 0.2s;
}

.pill:hover {
  background: var(--sub-title-bg);
  transform: translateY(-2px);
}

.pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 2;
}

.trust-story {
  background: var(--pink-blush);
}

.accreditation {
  background: var(--pink-blush);
}

.accreditation-strip {
  background: var(--light-pink);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.accreditation-strip svg {
  width: 28px;
  height: 28px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.accreditation-strip p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.accreditation-strip strong {
  color: var(--pink-dark);
}

.overview-visual {
  position: relative;
}

.ov-main {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 72px rgba(194, 24, 91, 0.15);
}

.ov-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ov-float {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(194, 24, 91, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.ov-float-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ov-float-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.ov-float-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

.ov-float-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.ov-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--gradient);
  border-radius: 14px;
  padding: 14px 18px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 8px 28px rgba(194, 24, 91, 0.3);
}

.ov-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.ov-badge-label {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.85;
}

.labs-section {
  padding: 0 0 96px;
}

.labs-header {
  text-align: center;
  margin-bottom: 52px;
}

.labs-header .section-desc {
  max-width: 560px;
  margin: 0 auto;
}

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

.lab-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s;
  display: flex;
  flex-direction: column;
}

.lab-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(194, 24, 91, 0.13);
}

.lab-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.lab-img {
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}

.lab-card.featured .lab-img {
  aspect-ratio: auto;
}

.lab-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.lab-card:hover .lab-img img {
  transform: scale(1.05);
}

.lab-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(136, 14, 79, 0.5) 0%, transparent 50%);
}

.lab-img-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.lab-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lab-card.featured .lab-body {
  justify-content: center;
}

.lab-icon {
  width: 44px;
  height: 44px;
  background: var(--sub-title-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.lab-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.8;
}

.lab-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.lab-desc {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.lab-equipment {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.equip-tag {
  background: var(--light-pink);
  color: var(--pink-dark);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.equip-section {
  background: var(--light-pink);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.equip-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(194, 24, 91, 0.06);
}

.equip-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.equip-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}

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

.equip-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s;
}

.equip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(194, 24, 91, 0.1);
}

.equip-item-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--sub-title-bg);
}

.equip-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.equip-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.equip-item-desc {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.5;
}

.gallery-section {
  padding: 96px 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 14px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(136, 14, 79, 0.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
}

.outcomes-section {
  background: var(--dark-bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.outcomes-section::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 70px solid rgba(194, 24, 91, 0.08);
}

.outcomes-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.outcomes-header {
  text-align: center;
  margin-bottom: 56px;
}

.outcomes-header .section-title {
  color: var(--white);
}

.outcomes-header .section-desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto;
}

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

.outcome-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.3s;
}

.outcome-card:hover {
  background: rgba(194, 24, 91, 0.1);
  border-color: rgba(194, 24, 91, 0.3);
}

.outcome-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}

.outcome-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.outcome-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.schedule-section {
  padding: 96px 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.timetable {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(194, 24, 91, 0.07);
}

.timetable-head {
  background: var(--gradient);
  padding: 18px 24px;
}

.timetable-head h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.timetable-head p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 3px;
}

.timetable-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.86rem;
  transition: background 0.2s;
}

.timetable-row:last-child {
  border-bottom: none;
}

.timetable-row:hover {
  background: var(--light-pink);
}

.timetable-row.header-row {
  background: var(--sub-title-bg);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 12px 24px;
}

.timetable-row span:last-child {
  color: var(--pink);
  font-weight: 500;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-c {
  background: var(--light-pink);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.2s;
}

.info-c:hover {
  transform: translateX(5px);
}

.info-c-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-c-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.info-c-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}

.info-c-val {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.55;
}

.cta-banner {
  margin: 0 0 96px;
  background: var(--gradient);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 56px 64px;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: 200px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, 0.07);
}

.cta-banner-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 340px;
  overflow: hidden;
}

.cta-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-text h2 em {
  font-style: italic;
  font-weight: 400;
}

.cta-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cta-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--pink-dark);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.cta-btn-white:hover {
  transform: translateY(-2px);
}

.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: background 0.2s;
}

.cta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}


/* ─── 9. CONTACT PAGE STYLES ─── */

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: -36px auto 0;
  max-width: 860px;
  position: relative;
  z-index: 10;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(194, 24, 91, 0.18);
}

.info-card {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}

.info-card:last-child {
  border-right: none;
}

.info-card:hover {
  background: var(--light-pink);
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sub-title-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.8;
}

.info-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}

.info-value {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.45;
}

.main-section {
  padding: 80px 0 0 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}

.detail-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.detail-item {
  display: flex;
  gap: 16px;
  /* background: var(--light-pink); */
  /* border-radius: 14px; */
  padding: 18px 20px;
  /* align-items: flex-start; */
  border-bottom: 1px solid var(--border);
  /* transition: transform 0.2s, box-shadow 0.2s; */
}

/* .detail-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(194, 24, 91, 0.1);
} */

.detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.detail-text-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}

.detail-text-val {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.55;
}

.detail-text-val a {
  color: var(--text-dark);
  text-decoration: none;
}

.detail-text-val a:hover {
  color: var(--pink);
}

.hours-block {
  background: var(--gradient);
  border-radius: 16px;
  padding: 24px;
  color: var(--white);
}

.hours-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-weight: 400;
  opacity: 0.85;
}

.hours-row span:last-child {
  font-weight: 600;
}

.form-wrapper {
  background: var(--light-pink);
  border-radius: 24px;
  padding: 44px 40px;
  border: 1px solid var(--border);
  position: sticky;
  top: 110px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 30px;
  font-weight: 300;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.field label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-dark);
}

.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #C0A0AD;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.1);
}

.field select {
  appearance: none;
  cursor: pointer;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.success-msg {
  display: none;
  background: #FFF0F5;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  color: var(--pink-dark);
  font-size: 0.92rem;
  font-weight: 500;
  margin-top: 16px;
}

.map-section {
  padding-bottom: 100px;
}

.map-header {
  text-align: center;
  margin-bottom: 36px;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(194, 24, 91, 0.12);
  border: 2px solid var(--border);
  position: relative;
}

.map-placeholder {
  height: 380px;
  background: var(--light-pink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
}

.map-placeholder svg {
  width: 56px;
  height: 56px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.5;
}

.map-placeholder p {
  font-size: 1rem;
  color: var(--pink-dark);
  font-weight: 500;
}

.map-placeholder small {
  font-size: 0.82rem;
  color: var(--text-light);
}

.map-pin {
  width: 64px;
  height: 64px;
  background: var(--gradient);
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.3);
  animation: bouncePin 2s infinite;
}

.map-pin-inner {
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  transform: rotate(45deg);
}

@keyframes bouncePin {

  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }

  50% {
    transform: rotate(-45deg) translateY(-8px);
  }
}

.map-btn {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 8px;
  box-shadow: 0 6px 20px rgba(194, 24, 91, 0.25);
  transition: opacity 0.2s, transform 0.2s;
}

.map-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}


/* ─── 10. ANIMATIONS & RESPONSIVE ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: animFadeUp 0.7s ease forwards;
}

@keyframes animFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {

  .section-inner,
  .header-main,
  .footer-inner,
  .footer-bottom-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 40px;
  }

  .course-card-main {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .facilities-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .life-cell.wide {
    grid-column: span 1;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .award-row {
    grid-template-columns: 1fr;
  }

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

  .lab-card.featured {
    grid-column: span 2;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {

  nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-inner,
  .header-main,
  .footer-inner,
  .footer-bottom-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .about-grid,
  .intro-grid,
  .accred-intro,
  .trust-intro-grid,
  .main-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-main {
    height: 320px;
  }

  .hero-img-col {
    display: none;
  }

  .page-hero-content {
    max-width: 100%;
    padding: 40px 24px;
  }

  .hero-year-badge {
    position: static;
    margin-top: 20px;
    display: inline-block;
  }

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

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

  .affil-timeline {
    margin-left: 0;
  }

  .trust-timeline {
    padding-left: 20px;
  }

  .timeline-track {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-year-col {
    width: 100%;
    text-align: left;
    padding-right: 0;
    margin-bottom: 8px;
  }

  .timeline-dot {
    left: -7px;
    right: auto;
  }

  .timeline-body {
    padding-left: 20px;
  }

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

  .info-strip {
    grid-template-columns: 1fr;
    border-radius: 14px;
    margin-top: 20px;
  }

  .info-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .info-card:last-child {
    border-bottom: none;
  }

  .form-wrapper {
    padding: 30px 24px;
    position: static;
  }

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

  .lab-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .lab-card.featured .lab-img {
    aspect-ratio: 16/9;
  }

  .equip-header {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 2;
  }

  .gallery-item {
    height: 200px;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {

  .why-grid,
  .facilities-grid,
  .testimonials-grid,
  .life-grid,
  .ach-grid,
  .equip-items {
    grid-template-columns: 1fr;
  }

  .core-values-strip {
    grid-template-columns: 1fr;
  }
}

/* ─── 13. CHAIRMAN'S MESSAGE PAGE STYLES ─── */

.page-title-bar {
  background: var(--pink-blush);
  border-bottom: 1px solid rgba(194, 24, 91, 0.08);
  padding: 52px 60px 56px;
  position: relative;
  overflow: hidden;
}

.page-title-bar::before {
  content: '✚';
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  color: rgba(194, 24, 91, 0.04);
  pointer-events: none;
  line-height: 1;
}

.page-title-bar::after {
  content: '✚';
  position: absolute;
  right: 280px;
  top: 8%;
  font-size: 90px;
  color: rgba(194, 24, 91, 0.04);
  pointer-events: none;
}

.page-title-bar .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.page-title-bar .breadcrumb a {
  text-decoration: none;
  font-size: 13px;
  color: var(--text-light);
  transition: color 0.2s;
}

.page-title-bar .breadcrumb a:hover {
  color: var(--pink-deep);
}

.page-title-bar .breadcrumb-sep {
  font-size: 11px;
  color: rgba(138, 138, 170, 0.50);
}

.page-title-bar .breadcrumb-current {
  font-size: 13px;
  color: var(--pink-deep);
  font-weight: 500;
}

.page-title-bar .breadcrumb svg {
  width: 11px;
  height: 11px;
  stroke: rgba(138, 138, 170, 0.55);
  fill: none;
  stroke-width: 2;
}

.page-title-bar h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 18px;
}

.page-title-bar h1 em {
  font-style: italic;
  color: var(--pink-deep);
}

.page-title-accent {
  display: flex;
  align-items: center;
  gap: 16px;
}

.accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-soft));
  border-radius: 3px;
}

.accent-text {
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 0.3px;
}

.message-section {
  padding: 88px 0 100px;
  background: var(--white);
}

.message-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.message-top {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 68px;
  align-items: start;
  margin-bottom: 68px;
}

.chairman-img-col {
  position: relative;
}

.chairman-img-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.chairman-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(26, 0, 16, 0.62) 100%);
  pointer-events: none;
}

.chairman-photo {
  width: 100%;
  /* height: 470px; */
  object-fit: cover;
  object-position: top;
  display: block;
}

.chairman-photo-fallback {
  width: 100%;
  height: 470px;
  background: linear-gradient(155deg, #FCE4EC 0%, #F48FB1 55%, #C2185B 100%);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 96px;
}

.chairman-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 22px 26px;
}

.chairman-name-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-bottom: 3px;
}

.chairman-name-overlay span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.3px;
}

.chairman-details {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pink-blush);
  border: 1px solid rgba(194, 24, 91, 0.10);
  border-radius: 12px;
  padding: 11px 14px;
  transition: border-color 0.2s;
}

.detail-pill:hover {
  border-color: var(--pink-soft);
}

.detail-pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.detail-pill-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.45;
}

.detail-pill-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 13px;
}

.chairman-intro-col h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.chairman-intro-col h2 em {
  font-style: italic;
  color: var(--pink-deep);
}

.message-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--pink-deep);
  line-height: 1.65;
  padding: 0 0 0 22px;
  border-left: 3px solid var(--pink-soft);
  margin-bottom: 28px;
}

.message-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.92;
  margin-bottom: 18px;
}

.message-body p:last-child {
  margin-bottom: 0;
}

.chairman-signature {
  margin-top: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--pink-pale);
  padding-top: 26px;
}

.sig-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}

.sig-title {
  font-size: 13px;
  color: var(--text-light);
}

.sig-stamp {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px dashed rgba(194, 24, 91, 0.255);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
}

.sig-stamp span {
  font-size: 9px;
  color: rgba(194, 24, 91, 0.40);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

.message-full {
  background: var(--off-white);
  border-radius: 26px;
  padding: 54px 58px;
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
}

.message-full::before {
  content: '❝';
  position: absolute;
  top: 14px;
  right: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  color: rgba(194, 24, 91, 0.045);
  line-height: 1;
  pointer-events: none;
}

.message-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

.message-full p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.92;
  margin-bottom: 18px;
}

.message-full p:last-child {
  margin-bottom: 0;
}

.value-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.value-card {
  background: white;
  border-radius: 20px;
  padding: 30px 24px;
  border: 1.5px solid var(--pink-pale);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--pink-mid);
  box-shadow: var(--shadow);
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.70;
}

.closing-note {
  background: linear-gradient(135deg, var(--pink-deep), #880E4F);
  border-radius: 22px;
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  overflow: visible;
}

.closing-note-icon {
  font-size: 60px;
  flex-shrink: 0;
}

.closing-note-text {
  flex: 1 1 58%;
}

.closing-note-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: white;
  margin-bottom: 10px;
}

.closing-note-text h3 em {
  font-style: italic;
}

.closing-note-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
  max-width: 600px;
}

.closing-note-btn {
  background: white;
  color: var(--pink-deep);
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 22px;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}

.closing-note-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
}

.closing-note-visual {
  flex: 0 0 320px;
  display: flex;
  justify-content: center;
  position: relative;
}

.closing-note-students {
  /* width: 100%; */
  max-width: 320px;
  /* height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(-40px); */
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-title-inner>* {
  animation: fadeInUp 0.65s ease both;
}

.page-title-inner>*:nth-child(1) {
  animation-delay: 0.10s;
}

.page-title-inner>*:nth-child(2) {
  animation-delay: 0.20s;
}

.page-title-inner>*:nth-child(3) {
  animation-delay: 0.30s;
}

/* Responsive overrides for Chairman Page */
@media (max-width: 992px) {
  .page-title-bar {
    padding: 40px 30px;
  }

  .message-section {
    padding: 60px 0;
  }

  .message-inner {
    padding: 0 30px;
  }

  .message-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .chairman-photo,
  .chairman-photo-fallback {
    height: 400px;
  }

  .message-full {
    padding: 40px 30px;
  }

  .message-full-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .closing-note {
    flex-direction: column;
    padding: 40px 30px;
    align-items: flex-start;
    gap: 20px;
  }

  .closing-note-icon {
    font-size: 48px;
  }

  .closing-note-visual {
    width: 100%;
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .closing-note-students {
    max-width: 280px;
    height: 240px;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .value-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-title-bar {
    padding: 30px 20px;
  }

  .message-inner {
    padding: 0 20px;
  }

  .page-title-bar h1 {
    font-size: 38px;
  }
}

/* ─── 14. COURSE DETAIL PAGE STYLES ─── */

.page-hero {
  min-height: 440px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?w=1400&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 6s ease;
  z-index: 1;
}

.page-hero:hover .hero-bg {
  transform: scale(1.00);
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(26, 0, 16, 0.88) 0%,
      rgba(74, 0, 37, 0.72) 45%,
      rgba(136, 14, 79, 0.40) 100%);
  z-index: 2;
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 30%,
      rgba(10, 0, 8, 0.65) 100%);
  z-index: 3;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 4;
}

.hero-pattern span {
  position: absolute;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  line-height: 1;
}

.hero-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--pink-mid), var(--pink-deep), transparent);
  z-index: 4;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 52px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.page-hero .breadcrumb a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-hero .breadcrumb a:hover {
  color: var(--pink-soft);
}

.page-hero .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.28);
  font-size: 14px;
}

.page-hero .breadcrumb-current {
  font-size: 13px;
  color: var(--pink-soft);
  font-weight: 500;
}

.page-hero .breadcrumb svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255, 255, 255, 0.40);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(194, 24, 91, 0.30);
  border: 1px solid rgba(244, 143, 177, 0.35);
  color: var(--pink-soft);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-soft);
  animation: pulse 2s infinite;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 300;
  color: white;
  line-height: 1.10;
  margin-bottom: 18px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--pink-soft);
}

.hero-meta-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-meta-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 9px 16px;
}

.hero-meta-chip .chip-icon {
  font-size: 16px;
}

.hero-meta-chip .chip-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-meta-chip .chip-value {
  font-size: 13px;
  color: white;
  font-weight: 500;
  margin-top: 1px;
}

.page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 60px 100px;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 56px;
  align-items: start;
}

.content-block {
  margin-bottom: 56px;
}

.block-tag {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink-deep);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.block-title em {
  font-style: italic;
  color: var(--pink-deep);
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-soft));
  border-radius: 3px;
  margin: 14px 0 22px;
}

.body-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.88;
  margin-bottom: 16px;
}

.body-text p:last-child {
  margin-bottom: 0;
}

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

.ov-card {
  background: var(--pink-blush);
  border: 1.5px solid var(--pink-pale);
  border-radius: 16px;
  padding: 22px 18px;
  transition: all 0.3s;
}

.ov-card:hover {
  border-color: var(--pink-soft);
  box-shadow: var(--shadow-sm);
}

.ov-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.ov-label {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ov-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--pink-deep);
  margin-top: 4px;
}

.elig-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.elig-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--off-white);
  border-radius: 12px;
  border-left: 3px solid var(--pink-soft);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.60;
}

.elig-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.year-block {
  margin-bottom: 20px;
}

.year-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--pink-deep), #880E4F);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.year-header:hover {
  opacity: 0.92;
}

.year-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.year-badge {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.year-header h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: white;
  font-weight: 400;
}

.year-toggle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.70);
  transition: transform 0.3s;
}

.year-body {
  background: var(--off-white);
  border-radius: 0 0 14px 14px;
  padding: 24px;
  border: 1px solid var(--pink-pale);
  border-top: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.subject-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--pink-pale);
  font-size: 13px;
  color: var(--text-mid);
  transition: all 0.2s;
}

.subject-chip:hover {
  border-color: var(--pink-soft);
  color: var(--text-dark);
}

.subject-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-mid);
  flex-shrink: 0;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.career-card {
  /* padding: 22px 20px; */
  border-radius: 16px;
  border: 1.5px solid var(--pink-pale);
  background: white;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.career-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink-mid);
  box-shadow: var(--shadow);
}

.career-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.career-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.career-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

.fee-table-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--pink-pale);
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table thead tr {
  background: linear-gradient(135deg, var(--pink-deep), #880E4F);
}

.fee-table thead th {
  padding: 14px 22px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.fee-table tbody tr {
  border-bottom: 1px solid rgba(194, 24, 91, 0.06);
  transition: background 0.15s;
}

.fee-table tbody tr:last-child {
  border-bottom: none;
}

.fee-table tbody tr:hover {
  background: var(--pink-blush);
}

.fee-table td {
  padding: 14px 22px;
  font-size: 14px;
  color: var(--text-mid);
}

.fee-table td:last-child {
  font-weight: 600;
  color: var(--pink-deep);
}

.fee-table tfoot tr {
  background: var(--pink-blush);
  border-top: 2px solid var(--pink-pale);
}

.fee-table tfoot td {
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.fee-table tfoot td:last-child {
  color: var(--pink-deep);
  font-size: 16px;
}

.facility-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.fac-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-blush);
  border: 1.5px solid var(--pink-pale);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-mid);
  transition: all 0.25s;
}

.fac-pill:hover {
  border-color: var(--pink-mid);
  color: var(--pink-deep);
  background: var(--pink-pale);
}

.mini-testimonial {
  background: var(--pink-blush);
  border-radius: 18px;
  padding: 28px 28px;
  border: 1px solid var(--pink-pale);
  margin-top: 24px;
  position: relative;
}

.mini-testimonial::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: rgba(194, 24, 91, 0.12);
  position: absolute;
  top: 8px;
  left: 18px;
  line-height: 1;
}

.mt-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.mt-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.60;
  margin-bottom: 18px;
}

.mt-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mt-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: white;
  font-family: 'Cormorant Garamond', serif;
}

.mt-author-info strong {
  font-size: 14px;
  color: var(--text-dark);
  display: block;
}

.mt-author-info span {
  font-size: 12px;
  color: var(--text-light);
}

.sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.apply-card {
  background: white;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(194, 24, 91, 0.08);
  overflow: hidden;
}

.apply-card-head {
  background: linear-gradient(135deg, var(--pink-deep), #880E4F);
  padding: 24px 24px 22px;
  position: relative;
  overflow: hidden;
}

.apply-card-head::after {
  content: '✚';
  position: absolute;
  right: -10px;
  bottom: -15px;
  font-size: 90px;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.apply-card-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: white;
  margin-bottom: 4px;
}

.apply-card-head p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

.apply-card-body {
  padding: 24px;
}

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #EDD5E4;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--pink-blush);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--pink-mid);
  background: white;
}

.btn-apply {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-mid));
  color: white;
  border: none;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
  font-family: 'DM Sans', sans-serif;
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(194, 24, 91, 0.35);
}

.apply-note {
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.quick-info-card {
  background: white;
  border-radius: 18px;
  border: 1px solid var(--pink-pale);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.quick-info-head {
  background: var(--pink-blush);
  border-bottom: 1px solid var(--pink-pale);
  padding: 16px 20px;
}

.quick-info-head h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text-dark);
}

.quick-info-list {
  list-style: none;
}

.qi-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(194, 24, 91, 0.05);
  font-size: 13px;
}

.qi-item:last-child {
  border-bottom: none;
}

.qi-item .qi-key {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.qi-item .qi-val {
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}

.download-card {
  background: linear-gradient(135deg, var(--pink-blush), var(--pink-pale));
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(194, 24, 91, 0.12);
}

.download-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.dl-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: white;
  border: 1.5px solid var(--pink-pale);
  font-size: 13px;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.25s;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}

.dl-btn:last-child {
  margin-bottom: 0;
}

.dl-btn:hover {
  border-color: var(--pink-mid);
  color: var(--pink-deep);
  background: white;
}

.dl-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.dl-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.dl-text span {
  font-size: 11px;
  color: var(--text-light);
}

.helpline-card {
  background: linear-gradient(135deg, var(--pink-deep), #880E4F);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}

.helpline-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
}

.helpline-card .phone {
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.helpline-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.helpline-chat-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
}

.helpline-chat-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Animations */
.hero-content>* {
  animation: fadeInUp 0.65s ease both;
}

.hero-content>*:nth-child(1) {
  animation-delay: 0.10s;
}

.hero-content>*:nth-child(2) {
  animation-delay: 0.20s;
}

.hero-content>*:nth-child(3) {
  animation-delay: 0.28s;
}

.hero-content>*:nth-child(4) {
  animation-delay: 0.36s;
}

/* Responsive queries for Course Detail Page */
@media (max-width: 992px) {
  .page-body {
    grid-template-columns: 1fr;
    padding: 40px 30px 60px;
    gap: 40px;
  }

  .sidebar {
    position: static;
  }

  .hero-content {
    padding: 0 30px 40px;
  }
}

@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .year-body {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 0 20px 30px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .hero-meta-row {
    gap: 12px;
  }

  .hero-meta-chip {
    padding: 6px 12px;
  }

  .fee-table th,
  .fee-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* ─── 14. ADMISSIONS PAGE STYLES ─── */

/* Admissions Hero Section */
.admission-hero {
  margin-top: 0px;
  min-height: calc(100vh - 72px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.admission-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1576765608622-067973a79f53?w=1600&q=88&auto=format&fit=crop&crop=center');
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.admission-hero:hover .admission-hero-bg {
  transform: scale(1.00);
}

.admission-hero-ov1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(15, 0, 8, 0.93) 0%,
      rgba(50, 0, 25, 0.82) 40%,
      rgba(136, 14, 79, 0.50) 100%);
}

.admission-hero-ov2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 0, 6, 0.40) 100%);
}

.admission-hero-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--pink-mid), var(--pink-deep), transparent);
}

.admission-hero-crosses {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.admission-hero-crosses span {
  position: absolute;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.admission-hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0px 60px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.admission-hero-left {}

.admission-hero-inner .breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.admission-hero-inner .breadcrumb a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.2s;
}

.admission-hero-inner .breadcrumb a:hover {
  color: var(--pink-soft);
}

.admission-hero-inner .bc-sep {
  color: rgba(255, 255, 255, 0.24);
  font-size: 13px;
}

.admission-hero-inner .bc-cur {
  font-size: 13px;
  color: var(--pink-soft);
  font-weight: 500;
}

.admission-hero-inner .breadcrumb svg {
  width: 11px;
  height: 11px;
  stroke: rgba(255, 255, 255, 0.35);
  fill: none;
  stroke-width: 2;
}

.admission-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(194, 24, 91, 0.28);
  border: 1px solid rgba(244, 143, 177, 0.32);
  color: var(--pink-soft);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.admission-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-soft);
  animation: admission-blink 2s infinite;
}

@keyframes admission-blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(1.5);
  }
}

.admission-hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  font-weight: 300;
  color: white;
  line-height: 1.10;
  margin-bottom: 20px;
}

.admission-hero-left h1 em {
  font-style: italic;
  color: var(--pink-soft);
}

.admission-hero-left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.admission-hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.admission-hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 16px;
  backdrop-filter: blur(8px);
}

.admission-hero-trust .trust-item .ti-icon {
  font-size: 18px;
}

.admission-hero-trust .trust-item .ti-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
}

.admission-hero-trust .trust-item .ti-text strong {
  display: block;
  color: white;
  font-size: 13px;
}

/* Admissions Enquiry Form Card */
.admission-hero-form-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(194, 24, 91, 0.08);
  overflow: hidden;
}

.admission-hero-form-card .form-card-head {
  background: linear-gradient(135deg, var(--pink-deep), #880E4F);
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
}

.admission-hero-form-card .form-card-head::after {
  content: '✚';
  position: absolute;
  right: -8px;
  bottom: -16px;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.admission-hero-form-card .fch-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.admission-hero-form-card .form-card-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: white;
  margin-bottom: 4px;
}

.admission-hero-form-card .form-card-head p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.admission-hero-form-card .form-card-body {
  padding: 26px 28px;
}

.admission-hero-form-card .form-group {
  margin-bottom: 14px;
}

.admission-hero-form-card .form-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.admission-hero-form-card .lreq {
  color: var(--pink-deep);
  font-size: 13px;
}

.admission-hero-form-card .form-group input,
.admission-hero-form-card .form-group select,
.admission-hero-form-card .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #EDD5E4;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--pink-blush);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  font-family: 'DM Sans', sans-serif;
  resize: none;
}

.admission-hero-form-card .form-group input:focus,
.admission-hero-form-card .form-group select:focus,
.admission-hero-form-card .form-group textarea:focus {
  border-color: var(--pink-mid);
  background: white;
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.08);
}

.admission-hero-form-card .form-group input::placeholder,
.admission-hero-form-card .form-group textarea::placeholder {
  color: #C0A0B0;
  font-size: 13px;
}

.admission-hero-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.admission-hero-form-card .gender-pills {
  display: flex;
  gap: 8px;
}

.admission-hero-form-card .g-opt {
  flex: 1;
}

.admission-hero-form-card .g-opt input[type="radio"] {
  display: none;
}

.admission-hero-form-card .g-opt label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 10px;
  border: 1.5px solid #EDD5E4;
  background: var(--pink-blush);
  font-size: 13px;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.admission-hero-form-card .g-opt input[type="radio"]:checked+label {
  border-color: var(--pink-mid);
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-weight: 600;
}

.admission-hero-form-card .btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-mid));
  color: white;
  border: none;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 6px;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.admission-hero-form-card .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(194, 24, 91, 0.40);
}

.admission-hero-form-card .form-privacy {
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}

.admission-hero-form-card .success-msg {
  display: none;
  text-align: center;
  padding: 40px 24px;
}

.admission-hero-form-card .success-msg .s-icon {
  font-size: 56px;
  margin-bottom: 16px;
  display: block;
}

.admission-hero-form-card .success-msg h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--green);
  margin-bottom: 8px;
}

.admission-hero-form-card .success-msg p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Admissions Content Layout below Hero */
.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px 100px;
}

/* Section Header (reused custom styled head) */
.content-wrap .section-head {
  margin-bottom: 56px;
}

.content-wrap .section-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-soft));
  border-radius: 3px;
  margin: 18px 0 20px;
}

.content-wrap .section-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 680px;
}

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

/* Qualifications Section */
.qual-section {
  margin-bottom: 72px;
}

.qual-card {
  background: white;
  border-radius: 18px;
  border: 1.5px solid var(--pink-pale);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.qual-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.qual-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow);
}

.qual-card:hover::after {
  transform: scaleX(1);
}

.qc-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.qual-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.qual-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.78;
}

.qual-card p strong {
  color: var(--text-dark);
}

/* Reservation Section & Tables */
.reservation-section {
  margin-bottom: 72px;
}

.res-table-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--pink-pale);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.res-table {
  width: 100%;
  border-collapse: collapse;
}

.res-table thead tr {
  background: linear-gradient(135deg, var(--pink-deep), #880E4F);
}

.res-table thead th {
  padding: 14px 22px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.res-table tbody tr {
  border-bottom: 1px solid rgba(194, 24, 91, 0.06);
  transition: background 0.15s;
}

.res-table tbody tr:last-child {
  border-bottom: none;
}

.res-table tbody tr:hover {
  background: var(--pink-blush);
}

.res-table td {
  padding: 14px 22px;
  font-size: 14px;
  color: var(--text-mid);
  vertical-align: middle;
}

.cat-badge {
  display: inline-block;
  padding: 4px 13px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cat-sc {
  background: #E3F2FD;
  color: #1565C0;
}

.cat-st {
  background: #F3E5F5;
  color: #6A1B9A;
}

.cat-obc {
  background: #FFF8E1;
  color: #F57F17;
}

.cat-ews {
  background: var(--green-pale);
  color: var(--green);
}

.cat-ph {
  background: #FBE9E7;
  color: #BF360C;
}

.cat-gen {
  background: var(--pink-pale);
  color: var(--pink-deep);
}

/* Disability Reservation Strip */
.disability-strip {
  background: linear-gradient(135deg, #FBE9E7, #FFCCBC);
  border: 1px solid rgba(191, 54, 12, 0.15);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ds-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.ds-body h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #BF360C;
  margin-bottom: 10px;
}

.ds-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ds-list li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #5D1A0A;
  line-height: 1.65;
}

.ds-list li::before {
  content: '✦';
  color: #BF360C;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Important Notes & Dates */
.notes-section {
  margin-bottom: 72px;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.note-card {
  background: var(--pink-blush);
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid rgba(194, 24, 91, 0.10);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.25s;
}

.note-card:hover {
  border-color: var(--pink-soft);
  background: var(--pink-pale);
}

.note-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}

.note-card-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.70;
}

.note-card-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 14px;
  margin-bottom: 4px;
}

.dates-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.date-card {
  background: white;
  border-radius: 16px;
  padding: 22px 18px;
  border: 1.5px solid var(--pink-pale);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.date-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--pink-soft);
}

.date-card.alert {
  border-color: rgba(191, 54, 12, 0.25);
  background: #FFF8F5;
}

.date-card .dc-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.date-card .dc-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.date-card .dc-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pink-deep);
}

.date-card.alert .dc-value {
  color: #BF360C;
}

/* Foreign Nationals Card */
.foreign-section {
  margin-bottom: 72px;
}

.foreign-card {
  background: linear-gradient(135deg, #1A0010, #4A0025);
  border-radius: 22px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}

.fc-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.foreign-card .fc-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: white;
  font-weight: 400;
  margin-bottom: 12px;
}

.foreign-card .fc-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.80;
}

.foreign-card .fc-body p strong {
  color: rgba(255, 255, 255, 0.90);
}

/* Document Checklist */
.docs-section {
  margin-bottom: 72px;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.doc-card {
  background: white;
  border-radius: 14px;
  padding: 18px 16px;
  border: 1.5px solid var(--pink-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
  cursor: default;
}

.doc-card:hover {
  border-color: var(--pink-mid);
  background: var(--pink-blush);
  transform: translateY(-3px);
}

.doc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.doc-card-label {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.45;
  font-weight: 500;
}

/* Bottom CTA Strip */
.admission-cta-strip {
  background: linear-gradient(135deg, var(--pink-deep), #880E4F);
  border-radius: 22px;
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.admission-cta-strip h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: white;
  font-weight: 400;
  margin-bottom: 8px;
}

.admission-cta-strip h3 em {
  font-style: italic;
}

.admission-cta-strip p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.admission-cta-strip .cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.admission-cta-strip .cta-btn-white {
  background: white;
  color: var(--pink-deep);
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
}

.admission-cta-strip .cta-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.admission-cta-strip .cta-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
}

.admission-cta-strip .cta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: white;
}

/* Animations for Admissions Hero */
.admission-hero-left>* {
  animation: admission-fadeInUp 0.7s ease both;
}

.admission-hero-left>*:nth-child(1) {
  animation-delay: .10s;
}

.admission-hero-left>*:nth-child(2) {
  animation-delay: .20s;
}

.admission-hero-left>*:nth-child(3) {
  animation-delay: .28s;
}

.admission-hero-left>*:nth-child(4) {
  animation-delay: .36s;
}

.admission-hero-left>*:nth-child(5) {
  animation-delay: .44s;
}

.admission-hero-form-card {
  animation: admission-fadeInUp 0.8s .3s ease both;
}

@keyframes admission-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Queries for Admissions Page */
@media (max-width: 1200px) {
  .admission-hero-inner {
    padding: 60px 40px;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .admission-hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 30px;
    gap: 48px;
    /* text-align: center; */
  }

  .admission-hero-left p {
    margin: 0 auto 36px;
  }

  /* .admission-hero-trust {
    justify-content: center;
  } */

  .content-wrap {
    padding: 60px 30px 80px;
  }

  .docs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .admission-hero-left h1 {
    font-size: 48px;
  }

  .content-wrap .three-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .dates-strip {
    grid-template-columns: 1fr;
  }

  .foreign-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px;
  }

  .fc-icon-wrap {
    margin: 0 auto;
  }

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

  .admission-cta-strip {
    padding: 30px;
    text-align: center;
    justify-content: center;
  }

  .admission-cta-strip .cta-btns {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .admission-hero-left h1 {
    font-size: 38px;
  }

  .admission-hero-form-card .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

/* ==========================================================================
   15. CAREER OPPORTUNITIES STYLES
   ========================================================================== */
.careers-page {
  --sub-bg: #fce4ec;
  --gradient: linear-gradient(135deg, #c2185b, #880E4F);
  --dark: #1a0a10;
  --text: #1a1a1a;
  --mid: #4a4a4a;
  --light: #888;
  --white: #fff;
  --border: #f0d0dc;
}

/* ── HERO ── */
.careers-page .hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient);
  padding: 96px 24px 110px;
  text-align: center;
}
.careers-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 15% 50%, rgba(255,255,255,0.07) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 85% 20%, rgba(255,255,255,0.05) 0%, transparent 55%);
}
.careers-page .hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.06);
}
.careers-page .hero-orb.a {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -80px;
}
.careers-page .hero-orb.b {
  width: 280px;
  height: 280px;
  bottom: -80px;
  left: -50px;
}
.careers-page .hero-orb.c {
  width: 160px;
  height: 160px;
  top: 30px;
  left: 12%;
  border-width: 28px;
  opacity: 0.5;
}
.careers-page .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
  position: relative;
}
.careers-page .breadcrumb a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.careers-page .breadcrumb a:hover {
  color: #fff;
}
.careers-page .breadcrumb svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
  stroke-width: 2;
}
.careers-page .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.28);
  margin-bottom: 24px;
  position: relative;
}
.careers-page .hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.65); }
}
.careers-page .hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  position: relative;
}
.careers-page .hero h1 em {
  font-style: italic;
  font-weight: 400;
}
.careers-page .hero h1 span {
  display: block;
  font-size: 0.55em;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}
.careers-page .hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.78;
  position: relative;
}
.careers-page .hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}
.careers-page .hero-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 10px 20px;
  color: #fff;
}
.careers-page .hero-pill svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.careers-page .hero-pill-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.careers-page .hero-pill-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

.careers-page .stag {
  display: inline-block;
  background: var(--sub-bg);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.careers-page .stitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 600;
  line-height: 1.18;
  /* margin-bottom: 14px; */
}
.careers-page .stitle em {
  font-style: italic;
  color: var(--pink);
}
.careers-page .sdesc {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.78;
  font-weight: 300;
}

/* ── INTRO BAND ── */
.careers-page .intro-band {
  padding: 80px 0 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.careers-page .intro-visual {
  position: relative;
}
.careers-page .intro-img-main {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 72px rgba(194,24,91,0.14);
}
.careers-page .intro-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.careers-page .intro-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--gradient);
  border-radius: 18px;
  padding: 18px 22px;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 32px rgba(194,24,91,0.3);
}
.careers-page .intro-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.careers-page .intro-badge-label {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.82;
}
.careers-page .intro-float {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(194,24,91,0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}
.careers-page .intro-float-icon {
  width: 42px;
  height: 42px;
  background: var(--sub-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.careers-page .intro-float-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 2;
}
.careers-page .intro-float-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}
.careers-page .intro-float-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.careers-page .intro-text .sdesc {
  margin-bottom: 22px;
}
.careers-page .highlight-box {
  background: var(--light-pink);
  border: 1px solid var(--border);
  border-left: 4px solid var(--pink);
  border-radius: 12px;
  padding: 20px 22px;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}
.careers-page .salary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.careers-page .sal-card {
  background: var(--light-pink);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
}
.careers-page .sal-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 4px;
}
.careers-page .sal-label {
  font-size: 0.72rem;
  color: var(--mid);
  font-weight: 400;
}

/* ── CORE CAREERS ── */
.careers-page .core-section {
  padding: 0 0 88px;
}
.careers-page .core-header {
  text-align: center;
  margin-bottom: 52px;
}
.careers-page .core-header .sdesc {
  max-width: 540px;
  margin: 0 auto;
}

/* Featured career cards */
.careers-page .core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}
.careers-page .core-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.careers-page .career-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s, box-shadow 0.28s;
}
.careers-page .career-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 60px rgba(194,24,91,0.13);
}
.careers-page .career-card.wide {
  flex-direction: row;
}
.careers-page .career-card-img {
  overflow: hidden;
  aspect-ratio: 16/10;
  flex-shrink: 0;
  position: relative;
}
.careers-page .career-card.wide .career-card-img {
  aspect-ratio: auto;
  width: 42%;
}
.careers-page .career-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.careers-page .career-card:hover .career-card-img img {
  transform: scale(1.06);
}
.careers-page .career-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(136,14,79,0.45), transparent 55%);
}
.careers-page .career-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.careers-page .career-card-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.careers-page .career-card.wide .career-card-body {
  justify-content: center;
}
.careers-page .career-icon {
  width: 44px;
  height: 44px;
  background: var(--sub-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.careers-page .career-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.8;
}
.careers-page .career-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.careers-page .career-desc {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.72;
  margin-bottom: 16px;
  flex: 1;
}
.careers-page .career-settings {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.careers-page .setting-tag {
  background: var(--light-pink);
  color: var(--pink-dark);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ── ADVANCED ROLES ── */
.careers-page .adv-section {
  background: var(--light-pink);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.careers-page .adv-section::before {
  content: '';
  position: absolute;
  top: -250px;
  right: -220px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 50px solid rgba(194,24,91,0.06);
}
.careers-page .adv-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.careers-page .adv-header {
  text-align: center;
  margin-bottom: 52px;
}
.careers-page .adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.careers-page .adv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s;
}
.careers-page .adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(194,24,91,0.1);
}
.careers-page .adv-icon {
  width: 54px;
  height: 54px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.careers-page .adv-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}
.careers-page .adv-title {
  /* font-family: 'Cormorant Garamond', serif; */
  /* font-size: 1.05rem; */
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.careers-page .adv-desc {
  font-size: 0.78rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── LEADERSHIP ROLES ── */
.careers-page .lead-section {
  padding: 88px 0;
}
.careers-page .lead-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 52px;
}
.careers-page .lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.careers-page .lead-card {
  background: var(--light-pink);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s;
}
.careers-page .lead-card:hover {
  transform: translateX(5px);
  background: var(--sub-bg);
}
.careers-page .lead-num {
  /* font-family: 'Cormoran t Garamond', serif; */
  font-size: 2rem;
  font-weight: 700;
  color: rgba(194,24,91,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.careers-page .lead-title {
  /* font-family: 'Cormorant Garamond', serif; */
  /* font-size: 1.05rem; */
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.careers-page .lead-desc {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ── COMMUNITY & SPECIAL ── */
.careers-page .special-section {
  background: var(--dark);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.careers-page .special-section::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(194,24,91,0.08);
}
.careers-page .special-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.careers-page .special-header {
  text-align: center;
  margin-bottom: 52px;
}
.careers-page .special-header .stitle {
  color: #fff;
}
.careers-page .special-header .sdesc {
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
}
.careers-page .special-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.careers-page .special-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.3s, border-color 0.3s;
}
.careers-page .special-card:hover {
  background: rgba(194,24,91,0.1);
  border-color: rgba(194,24,91,0.3);
}
.careers-page .special-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.careers-page .special-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255,255,255,0.8);
  fill: none;
  stroke-width: 1.8;
}
.careers-page .special-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.careers-page .special-card-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ── ALL ROLES TABLE ── */
.careers-page .roles-section {
  padding: 88px 0;
}
.careers-page .roles-header {
  text-align: center;
  margin-bottom: 48px;
}
.careers-page .roles-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 48px rgba(194,24,91,0.08);
}
.careers-page table {
  width: 100%;
  border-collapse: collapse;
}
.careers-page thead {
  background: var(--gradient);
}
.careers-page thead th {
  padding: 16px 22px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-align: left;
}
.careers-page thead th:first-child {
  text-align: center;
  width: 56px;
}
.careers-page tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.careers-page tbody tr:last-child {
  border-bottom: none;
}
.careers-page tbody tr:hover {
  background: var(--light-pink);
}
.careers-page tbody tr:nth-child(even) {
  background: #fdfafa;
}
.careers-page tbody tr:nth-child(even):hover {
  background: var(--light-pink);
}
.careers-page td {
  padding: 15px 22px;
  font-size: 0.88rem;
  color: var(--text);
  vertical-align: middle;
}
.careers-page td:first-child {
  text-align: center;
  font-weight: 700;
  color: var(--pink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}
.careers-page .role-name {
  font-weight: 600;
  display: block;
}
.careers-page .role-dept {
  font-size: 0.76rem;
  color: var(--light);
  margin-top: 2px;
}
.careers-page .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.careers-page .b-clinical {
  background: var(--sub-bg);
  color: var(--pink-dark);
}
.careers-page .b-admin {
  background: #e3f2fd;
  color: #1565c0;
}
.careers-page .b-community {
  background: #e8f5e9;
  color: #2e7d32;
}
.careers-page .b-edu {
  background: #fff3e0;
  color: #e65100;
}
.careers-page .b-special {
  background: #f3e5f5;
  color: #6a1b9a;
}

/* ── PATHWAY VISUAL ── */
.careers-page .pathway-section {
  background: var(--light-pink);
  padding: 88px 0;
}
.careers-page .pathway-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.careers-page .pathway-header {
  text-align: center;
  margin-bottom: 52px;
}
.careers-page .pathway-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.careers-page .pathway-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 80px;
  right: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--pink), var(--pink-dark));
  border-radius: 2px;
  z-index: 0;
}
.careers-page .path-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.careers-page .path-circle {
  width: 72px;
  height: 72px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(194,24,91,0.3);
  border: 4px solid var(--light-pink);
}
.careers-page .path-circle svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}
.careers-page .path-year {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.careers-page .path-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.careers-page .path-desc {
  font-size: 0.76rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ── CTA BANNER ── */
.careers-page .cta-section {
  padding: 0 0 96px;
}
.careers-page .cta-box {
  background: var(--gradient);
  border-radius: 28px;
  padding: 60px 64px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.careers-page .cta-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: 200px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.07);
}
.careers-page .cta-box-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  overflow: hidden;
}
.careers-page .cta-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.careers-page .cta-text {
  position: relative;
  z-index: 1;
}
.careers-page .cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}
.careers-page .cta-text h2 em {
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}
.careers-page .cta-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.72;
  max-width: 500px;
}
.careers-page .cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.careers-page .btn-w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--pink-dark);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  transition: transform 0.2s;
}
.careers-page .btn-w:hover {
  transform: translateY(-2px);
}
.careers-page .btn-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: background 0.2s;
  white-space: nowrap;
}
.careers-page .btn-g:hover {
  background: rgba(255,255,255,0.12);
}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .careers-page .adv-grid{grid-template-columns:repeat(2,1fr);}
  .careers-page .lead-grid{grid-template-columns:repeat(2,1fr);}
  .careers-page .cta-box{grid-template-columns:1fr;gap:28px;padding:44px 36px;}
  .careers-page .pathway-steps::before{display:none;}
  .careers-page .pathway-steps{flex-direction:column;align-items:stretch;}
  .careers-page .path-step{display:flex;align-items:center;gap:20px;text-align:left;padding:0;}
  .careers-page .path-circle{flex-shrink:0;margin:0;}
  .careers-page .core-grid.two{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .careers-page .intro-band{grid-template-columns:1fr;}
  .careers-page .intro-float{position:static;margin-top:20px;}
  .careers-page .intro-badge{top:14px;right:14px;}
  .careers-page .core-grid{grid-template-columns:1fr;}
  .careers-page .career-card.wide{flex-direction:column;}
  .careers-page .career-card.wide .career-card-img{width:100%;aspect-ratio:16/9;}
  .careers-page .special-grid{grid-template-columns:1fr;}
  .careers-page .lead-header{grid-template-columns:1fr;}
  .careers-page .salary-strip{grid-template-columns:1fr 1fr 1fr;}
  .careers-page .hero-pills{gap:8px;}
}
@media(max-width:480px){
  .careers-page .adv-grid{grid-template-columns:1fr 1fr;}
  .careers-page .lead-grid{grid-template-columns:1fr;}
  .careers-page .salary-strip{grid-template-columns:1fr;}
}

/* Anti-Ragging Page */
.anti-ragging-page .hero {
  background: var(--gradient);
  position: relative;
  min-height: auto;
  padding: 80px 40px 100px;
  overflow: hidden;
  text-align: center;
  display: block;
}

.anti-ragging-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 90% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 55%);
}

.anti-ragging-page .hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 55px solid rgba(255, 255, 255, 0.06);
}

.anti-ragging-page .hero-orb.o1 {
  width: 340px;
  height: 340px;
  top: -80px;
  right: -70px;
}

.anti-ragging-page .hero-orb.o2 {
  width: 280px;
  height: 280px;
  bottom: -90px;
  left: -50px;
}

.anti-ragging-page .hero-orb.o3 {
  width: 180px;
  height: 180px;
  top: 20px;
  left: 10%;
  border-width: 30px;
  opacity: 0.5;
}

.anti-ragging-page .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  position: relative;
}

.anti-ragging-page .breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.anti-ragging-page .breadcrumb a:hover {
  color: var(--white);
}

.anti-ragging-page .breadcrumb svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255, 255, 255, 0.5);
  fill: none;
  stroke-width: 2;
}

.anti-ragging-page .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  margin-bottom: 22px;
  position: relative;
}

.anti-ragging-page .hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  animation: anti-ragging-pulse 2s infinite;
}

@keyframes anti-ragging-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.anti-ragging-page .hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  position: relative;
}

.anti-ragging-page .hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--white);
}

.anti-ragging-page .hero p {
  color: rgba(255, 255, 255, 0.83);
  font-size: 1rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.75;
  position: relative;
}

.anti-ragging-page .hero-helpline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 14px 28px;
  position: relative;
}

.anti-ragging-page .hero-helpline svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.anti-ragging-page .hero-helpline-text {
  text-align: left;
}

.anti-ragging-page .hero-helpline-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.anti-ragging-page .hero-helpline-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.anti-ragging-page .section-tag {
  border-radius: 6px;
  margin-bottom: 14px;
}

/* .anti-ragging-page .section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
} */

.anti-ragging-page .section-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.78;
  font-weight: 300;
}

.anti-ragging-page .mandate-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 980px;
  margin: -40px auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(194, 24, 91, 0.15);
  position: relative;
  z-index: 10;
}

.anti-ragging-page .mandate-card {
  background: var(--white);
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}

.anti-ragging-page .mandate-card:last-child {
  border-right: none;
}

.anti-ragging-page .mandate-card:hover {
  background: var(--light-pink);
}

.anti-ragging-page .mandate-icon {
  width: 48px;
  height: 48px;
  background: var(--sub-title-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.anti-ragging-page .mandate-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.8;
}

.anti-ragging-page .mandate-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 4px;
}

.anti-ragging-page .mandate-label {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.4;
}

.anti-ragging-page .about-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 90px 0 80px;
}

.anti-ragging-page .about-visual {
  position: relative;
}

.anti-ragging-page .about-card-main {
  background: var(--gradient);
  border-radius: 24px;
  padding: 40px 36px;
  color: var(--white);
}

.anti-ragging-page .about-card-main h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.anti-ragging-page .pledge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.anti-ragging-page .pledge-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.anti-ragging-page .pledge-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.anti-ragging-page .about-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(194, 24, 91, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}

.anti-ragging-page .about-float-icon {
  width: 44px;
  height: 44px;
  background: var(--sub-title-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anti-ragging-page .about-float-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 2;
}

.anti-ragging-page .about-float-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

.anti-ragging-page .about-float-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.anti-ragging-page .about-text .section-desc {
  margin-bottom: 28px;
}

.anti-ragging-page .policy-box {
  background: var(--light-pink);
  border: 1px solid var(--border);
  border-left: 4px solid var(--pink);
  border-radius: 12px;
  padding: 20px 22px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
}

.anti-ragging-page .committee-section,
.anti-ragging-page .rules-section,
.anti-ragging-page .complaint-section {
  padding: 0 0 40px;
}

.anti-ragging-page .complaint-section {
  padding-bottom: 100px;
}
/* 
.anti-ragging-page .table-header,
.anti-ragging-page .complaint-header {
  text-align: center;
} */

.anti-ragging-page .table-header {
  margin-bottom: 44px;
}

.anti-ragging-page .complaint-header {
  margin-bottom: 0;
}

.anti-ragging-page .committee-table-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 48px rgba(194, 24, 91, 0.08);
}

.anti-ragging-page table {
  width: 100%;
  border-collapse: collapse;
}

.anti-ragging-page thead {
  background: var(--gradient);
}

.anti-ragging-page thead th {
  padding: 16px 22px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.anti-ragging-page thead th:first-child {
  text-align: center;
  width: 60px;
}

.anti-ragging-page tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.anti-ragging-page tbody tr:last-child {
  border-bottom: none;
}

.anti-ragging-page tbody tr:hover,
.anti-ragging-page tbody tr:nth-child(even):hover {
  background: var(--light-pink);
}

.anti-ragging-page tbody tr:nth-child(even) {
  background: #fdfafa;
}

.anti-ragging-page td {
  padding: 16px 22px;
  font-size: 0.9rem;
  color: var(--text-dark);
  vertical-align: middle;
}

.anti-ragging-page td:first-child {
  text-align: center;
  font-weight: 700;
  color: var(--pink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
}

.anti-ragging-page .member-name {
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}

.anti-ragging-page .member-dept {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

.anti-ragging-page .role-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.anti-ragging-page .role-chair {
  background: var(--gradient);
  color: var(--white);
}

.anti-ragging-page .role-convener {
  background: var(--sub-title-bg);
  color: var(--pink-dark);
}

.anti-ragging-page .role-member {
  background: #f5f5f5;
  color: var(--text-mid);
}

.anti-ragging-page .role-student {
  background: #e8f5e9;
  color: #2e7d32;
}

.anti-ragging-page .rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
}

.anti-ragging-page .rule-card {
  background: var(--light-pink);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform 0.22s, box-shadow 0.22s;
}

.anti-ragging-page .rule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(194, 24, 91, 0.1);
}

.anti-ragging-page .rule-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.anti-ragging-page .rule-num {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.anti-ragging-page .rule-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.anti-ragging-page .rule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.anti-ragging-page .rule-list li {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.anti-ragging-page .rule-list li::before {
  content: '▸';
  color: var(--pink);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.anti-ragging-page .alert-box {
  background: var(--gradient);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  box-shadow: 0 14px 50px rgba(194, 24, 91, 0.25);
}

.anti-ragging-page .alert-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.anti-ragging-page .alert-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
}

.anti-ragging-page .alert-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.anti-ragging-page .alert-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin: 0;
}

.anti-ragging-page .complaint-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.anti-ragging-page .helpline-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.anti-ragging-page .helpline-card {
  background: var(--light-pink);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s;
}

.anti-ragging-page .helpline-card:hover {
  transform: translateX(4px);
}

.anti-ragging-page .helpline-card-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.anti-ragging-page .helpline-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.anti-ragging-page .helpline-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 3px;
}

.anti-ragging-page .helpline-card-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.anti-ragging-page .helpline-card-sub {
  font-size: 0.78rem;
  color: var(--text-light);
}

.anti-ragging-page .anon-note {
  background: var(--sub-title-bg);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.83rem;
  color: var(--pink-dark);
  line-height: 1.65;
}

.anti-ragging-page .anon-note strong {
  font-weight: 600;
}

.anti-ragging-page .anon-note-spaced {
  margin-top: 16px;
}

.anti-ragging-page .form-wrapper {
  background: var(--light-pink);
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid var(--border);
}

.anti-ragging-page .form-wrapper h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.anti-ragging-page .form-wrapper .form-sub {
  font-size: 0.86rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  font-weight: 300;
}

.anti-ragging-page .form-row {
  gap: 16px;
}

.anti-ragging-page .field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.anti-ragging-page .field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-dark);
}

.anti-ragging-page .field input,
.anti-ragging-page .field select,
.anti-ragging-page .field textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.anti-ragging-page .field input::placeholder,
.anti-ragging-page .field textarea::placeholder {
  color: #c0a0ad;
}

.anti-ragging-page .field input:focus,
.anti-ragging-page .field select:focus,
.anti-ragging-page .field textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.1);
}

.anti-ragging-page .field select {
  appearance: none;
  cursor: pointer;
}

.anti-ragging-page .field textarea {
  resize: vertical;
  min-height: 100px;
}

.anti-ragging-page .anon-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}

.anti-ragging-page .anon-toggle input {
  display: none;
}

.anti-ragging-page .toggle-track {
  width: 40px;
  height: 22px;
  background: #e0c0cc;
  border-radius: 20px;
  position: relative;
  transition: background 0.25s;
  flex-shrink: 0;
}

.anti-ragging-page .toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.anti-ragging-page .anon-toggle input:checked + .toggle-track {
  background: var(--pink);
}

.anti-ragging-page .anon-toggle input:checked + .toggle-track::after {
  transform: translateX(18px);
}

.anti-ragging-page .toggle-label {
  font-size: 0.86rem;
  color: var(--text-mid);
}

.anti-ragging-page .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 28px rgba(194, 24, 91, 0.28);
}

.anti-ragging-page .btn-submit svg {
  width: 17px;
  height: 17px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.anti-ragging-page .success-msg {
  display: none;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
  color: var(--pink-dark);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 14px;
}

.anti-ragging-page .fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anti-ragging-page .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .anti-ragging-page .mandate-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .anti-ragging-page .mandate-card:nth-child(2) {
    border-right: none;
  }

  .anti-ragging-page .mandate-card:nth-child(1),
  .anti-ragging-page .mandate-card:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .anti-ragging-page .about-section,
  .anti-ragging-page .complaint-grid {
    grid-template-columns: 1fr;
  }

  .anti-ragging-page .about-float {
    position: static;
    margin-top: 20px;
  }

  .anti-ragging-page .rules-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .anti-ragging-page .hero {
    padding: 60px 24px 80px;
  }

  .anti-ragging-page .mandate-strip {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .anti-ragging-page .mandate-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .anti-ragging-page .mandate-card:last-child {
    border-bottom: none;
  }

  .anti-ragging-page .form-row {
    grid-template-columns: 1fr;
  }

  .anti-ragging-page .alert-box {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}

.why-icon .bi,
.t-stars .bi,
.btn-submit .bi,
.cta-buttons .bi,
.breadcrumb-sep .bi,
.vm-card-head-icon .bi,
.cv-icon .bi,
.ach-icon .bi,
.award-icon .bi,
.obj-icon .bi,
.stat-icon .bi {
  color: var(--pink-deep) !important;
}
