/* =============================================
   SKIP – Swami Keshvanand Institute of Pharmacy
   Modern Design System
   ============================================= */

:root {
  --green: #1565c0;
  --green-light: #42a5f5;
  --green-pale: #e3f2fd;
  --gold: #c8963e;
  --gold-light: #f0c070;
  --dark: #0d1b2e;
  --dark-2: #102040;
  --mid: #2a4a7a;
  --text: #0d1b2e;
  --text-light: #4a6080;
  --border: rgba(21,101,192,0.15);
  --white: #ffffff;
  --off-white: #f4f8fe;
  --shadow: 0 4px 32px rgba(21,101,192,0.10);
  --shadow-lg: 0 16px 64px rgba(21,101,192,0.16);
  --radius: 16px;
  --radius-sm: 8px;
  font-size: 16px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

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

img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 80px 0;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,107,74,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px solid var(--green-light);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.btn-ghost:hover { gap: 0.8rem; color: var(--dark); }

.btn-white {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--green);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.btn-white:hover { background: var(--gold); color: white; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ---- SECTION HEADER ---- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-pale);
  color: var(--green);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}
.section-title em { color: var(--green); font-style: italic; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-pill {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  letter-spacing: 0.08em;
}
.logo-pill.small { font-size: 1rem; padding: 0.2rem 0.6rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--dark); line-height: 1; }
.logo-sub { font-size: 0.7rem; color: var(--text-light); margin-top: 1px; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--green);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}
.mobile-menu a {
  padding: 0.7rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.mobile-cta {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 0.8rem;
  border-radius: 50px;
  border: none;
  margin-top: 0.5rem;
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef5fe 0%, #e3f2fd 50%, #f0f6ff 100%);
  padding-top: 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.s1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(66,165,245,0.14), transparent 70%);
  top: -200px; right: -200px;
}
.s2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,150,62,0.08), transparent 70%);
  bottom: -100px; left: -100px;
}
.s3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(21,101,192,0.06), transparent 70%);
  top: 40%; left: 30%;
}
.hero-content {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  z-index: 2;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26,107,74,0.08);
  border: 1px solid rgba(26,107,74,0.2);
  color: var(--green);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title em {
  color: var(--green);
  font-style: italic;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 2rem;
  animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--green-pale) 0%, rgba(66,165,245,0.06) 60%, transparent 80%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}
.hero-card:hover { transform: translateX(-6px); }
.hc1 { margin-left: 40px; }
.hc2 { margin-left: 0; }
.hc3 { margin-left: 60px; }
.hc-icon { font-size: 1.8rem; }
.hc-text { font-size: 0.88rem; font-weight: 500; line-height: 1.4; color: var(--dark); }

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--green);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee 28s linear infinite;
  align-items: center;
}
.marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.marquee-track .dot {
  color: var(--gold-light);
  font-size: 0.5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ABOUT TEASER ===== */
.at-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.at-img-block { position: relative; }
.at-img-frame {
  background: var(--green-pale);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.at-img-frame::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(66,165,245,0.2), transparent 70%);
  border-radius: 50%;
}
.at-img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 1;
}
.at-icon-big { font-size: 6rem; }
.at-img-overlay {
  background: var(--green);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}
.at-cert {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}
.at-cert-icon {
  width: 36px; height: 36px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.at-cert strong { display: block; font-size: 0.88rem; color: var(--dark); }
.at-cert small { font-size: 0.75rem; color: var(--text-light); }
.at-text { display: flex; flex-direction: column; gap: 1.5rem; }
.at-text p { color: var(--text-light); line-height: 1.8; }

/* ===== COURSES PREVIEW ===== */
.courses-preview { background: var(--off-white); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.course-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-card:hover::before { transform: scaleX(1); }
.cc-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--green-pale); line-height: 1; margin-bottom: 0.5rem; }
.cc-icon { font-size: 2rem; margin-bottom: 1rem; }
.course-card h3 { font-size: 1.6rem; color: var(--dark); margin-bottom: 0.75rem; }
.course-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.7; }
.cc-meta { font-size: 0.78rem; font-weight: 600; color: var(--green); background: var(--green-pale); padding: 0.3rem 0.8rem; border-radius: 50px; display: inline-block; margin-bottom: 1rem; }
.cc-link { font-size: 0.88rem; font-weight: 600; color: var(--green); }
.cc-link:hover { text-decoration: underline; }
.courses-cta { text-align: center; margin-top: 3rem; }

/* ===== WHY SKIP ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
}
.why-card:hover { box-shadow: var(--shadow); border-color: var(--green); }
.why-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.why-card h4 { font-size: 1.2rem; color: var(--dark); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--green);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 1rem; font-weight: 700; }
.cta-content p { color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 1.25rem 0 1.25rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0; }
.footer-logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: white; line-height: 1; }
.footer-logo-sub { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.footer-contact-item { font-size: 0.83rem; color: rgba(255,255,255,0.55); margin-bottom: 0.4rem; }

.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 0.6rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--green-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}
.ph-bg { position: absolute; inset: 0; pointer-events: none; }
.ph-shape {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(66,165,245,0.14), transparent 70%);
  top: -150px; right: -100px;
  border-radius: 50%;
}
.ph-breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.ph-breadcrumb a { color: var(--green-light); }
.ph-title { font-size: clamp(2.5rem, 5vw, 4rem); color: white; margin-bottom: 0.75rem; font-weight: 700; }
.ph-title em { color: var(--green-light); font-style: italic; }
.ph-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.6); max-width: 500px; font-family: 'DM Sans'; font-weight: 300; }

/* ===== ABOUT PAGE ===== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.as-frame {
  background: var(--green-pale);
  border-radius: 24px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.as-icon-main { font-size: 7rem; }
.as-year-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--green);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
}
.as-text { display: flex; flex-direction: column; gap: 1.25rem; }
.as-text p { color: var(--text-light); line-height: 1.8; }

/* VM SECTION */
.vm-section { background: var(--dark); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.vm-card {
  border-radius: var(--radius);
  padding: 2.5rem;
}
.vm-card.vision { background: rgba(66,165,245,0.08); border: 1px solid rgba(66,165,245,0.2); }
.vm-card.mission { background: rgba(200,150,62,0.06); border: 1px solid rgba(200,150,62,0.2); }
.vm-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.vm-card h3 { font-size: 1.8rem; color: white; margin-bottom: 1rem; }
.vm-card p { color: rgba(255,255,255,0.7); line-height: 1.8; }
.vm-card ul { color: rgba(255,255,255,0.7); padding-left: 1.2rem; }
.vm-card li { margin-bottom: 0.5rem; line-height: 1.7; }

/* MESSAGES */
.messages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.message-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.message-card:hover { box-shadow: var(--shadow-lg); }
.msg-avatar { background: var(--green-pale); padding: 2rem; display: flex; justify-content: center; }
.avatar-circle {
  width: 72px; height: 72px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.msg-content { padding: 1.75rem; }
.msg-role { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; }
.msg-content h4 { font-size: 1.2rem; color: var(--dark); margin-bottom: 0.75rem; }
.msg-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.msg-name { font-size: 0.82rem; font-weight: 600; color: var(--green); }

/* AFFILIATIONS */
.affil-section { background: var(--off-white); }
.affil-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.affil-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.affil-card:hover { box-shadow: var(--shadow); border-color: var(--green); }
.affil-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.affil-card h4 { font-size: 1.4rem; color: var(--green); margin-bottom: 0.5rem; }
.affil-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===== COURSES PAGE ===== */
.courses-detail-section { background: var(--off-white); padding: 40px 0 80px; }
.course-detail-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  transition: box-shadow 0.3s;
}
.course-detail-card:hover { box-shadow: var(--shadow-lg); }
.cdc-header {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-left: 6px solid var(--accent, var(--green));
}
.cdc-badge {
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}
.cdc-title-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.cdc-icon { font-size: 2.5rem; }
.cdc-title-block h2 { font-size: 2rem; color: white; margin: 0; }
.cdc-title-block p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }
.cdc-dur {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}
.cdc-body { display: grid; grid-template-columns: 1fr 340px; gap: 0; }
.cdc-desc { padding: 2.5rem; border-right: 1px solid var(--border); }
.cdc-desc h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); font-family: 'DM Sans'; font-weight: 700; margin-bottom: 0.75rem; }
.cdc-desc p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; font-size: 0.95rem; }
.subject-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.subject-tags span {
  background: var(--green-pale);
  color: var(--green);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}
.cdc-sidebar { padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.cdc-info-box { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.cib-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.cib-item:last-child { border-bottom: none; }
.cib-item strong { color: var(--text-light); }
.cib-item span { font-weight: 500; color: var(--dark); font-size: 0.83rem; }
.cdc-career h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); font-family: 'DM Sans'; font-weight: 700; margin-bottom: 0.75rem; }
.cdc-career ul { list-style: none; padding: 0; }
.cdc-career li { font-size: 0.88rem; color: var(--text); padding: 0.35rem 0; border-bottom: 1px solid var(--border); }
.cdc-career li::before { content: '→ '; color: var(--green); font-size: 0.8rem; }

/* ADMISSION */
.adm-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.adm-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 200px;
  transition: all 0.3s;
}
.adm-step:hover { box-shadow: var(--shadow); border-color: var(--green); }
.adm-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.adm-step h4 { font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; }
.adm-step p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }
.adm-arrow { font-size: 1.5rem; color: var(--text-light); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info .section-title { margin-bottom: 2rem; }
.contact-card-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.cci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-card-item strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--text-light); margin-bottom: 0.3rem; }
.contact-card-item p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }
.map-embed { margin-top: 1.5rem; }

.contact-form-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { font-size: 1.8rem; color: var(--dark); margin-bottom: 0.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-light); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--off-white);
  transition: border-color 0.3s;
  outline: none;
}
.form-input:focus { border-color: var(--green); background: white; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; cursor: pointer; }
.form-success {
  display: none;
  text-align: center;
  padding: 1rem;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-weight: 600;
  margin-top: 1rem;
}

.quick-admission {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.qa-icon { font-size: 2rem; flex-shrink: 0; }
.quick-admission h4 { font-size: 1rem; color: white; margin-bottom: 0.2rem; }
.quick-admission p { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.quick-admission > div { flex: 1; }

/* HOW TO REACH */
.how-reach { background: var(--off-white); }
.reach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.reach-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.reach-card:hover { box-shadow: var(--shadow); border-color: var(--green); transform: translateY(-4px); }
.reach-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.reach-card h4 { font-size: 1.15rem; color: var(--dark); margin-bottom: 0.5rem; }
.reach-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px) translateY(-50%); }
  to { opacity: 1; transform: translateX(0) translateY(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .at-grid, .about-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cdc-body { grid-template-columns: 1fr; }
  .cdc-desc { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .affil-grid { grid-template-columns: repeat(2, 1fr); }
  .messages-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .cta-actions { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .reach-grid { grid-template-columns: repeat(2, 1fr); }
  .adm-steps { flex-direction: column; }
  .adm-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cdc-header { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .courses-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .affil-grid { grid-template-columns: 1fr; }
  .reach-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
}

/* ===== SOCIAL BUTTONS (footer) ===== */
.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.3s;
}
.social-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
  transform: translateY(-2px);
}

/* ===== FOOTER AFFIL TEXT ===== */
.footer-affil {
  opacity: 0.6;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}
