/*
 * gc-modern.css — Gossner College
 * -------------------------------------------------------
 * Drop-in modernisation layer.
 * Add this AFTER style-main.css in your bundle/layout.
 * It overrides the ThemeMascot template with clean, 2025-standard styles
 * while keeping every existing HTML class working.
 *
 * Table of contents:
 *  1. CSS custom properties (tokens)
 *  2. Base resets & typography upgrade
 *  3. Skip link (accessibility)
 *  4. Preloader
 *  5. Announcement bar
 *  6. Logo row
 *  7. Notice ticker
 *  8. Utility bar
 *  9. Navbar
 * 10. Hero slider
 * 11. Admission card
 * 12. Welcome + notice board section
 * 13. Notice board widget
 * 14. Notice popup
 * 15. Activity cards
 * 16. Stats band
 * 17. Testimonials
 * 18. Video section
 * 19. Recruiter strip
 * 20. Map section
 * 21. Footer
 * 22. Scroll-to-top
 * 23. Inner page: about / general content
 * 24. Utility classes
 * 25. Responsive overrides
 * 26. Reduced-motion & print
 * -------------------------------------------------------
 */

/* ═══════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES
═══════════════════════════════════════════════════════ */
:root {
  /* Brand */
  --gc-green:        #004d00;
  --gc-green-hover:  #006400;
  --gc-green-dark:   #003300;
  --gc-green-light:  #e8f5e8;
  --gc-gold:         #c8a951;
  --gc-gold-dark:    #a88930;
  --gc-gold-light:   #e0c060;

  /* Neutrals */
  --gc-white:        #ffffff;
  --gc-off-white:    #fafaf8;
  --gc-text:         #1a1a1a;
  --gc-text-muted:   #555555;
  --gc-border:       #e2e2e2;
  --gc-bg-alt:       #f4f4f0;

  /* Elevation */
  --gc-shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --gc-shadow:       0 2px 12px rgba(0,0,0,0.10);
  --gc-shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --gc-shadow-lg:    0 8px 40px rgba(0,0,0,0.18);

  /* Radii */
  --gc-r-sm:  4px;
  --gc-r:     8px;
  --gc-r-lg:  14px;
  --gc-r-xl:  20px;

  /* Type scale */
  --gc-font-xs:   11px;
  --gc-font-sm:   13px;
  --gc-font-base: 15px;
  --gc-font-md:   17px;
  --gc-font-lg:   22px;
  --gc-font-xl:   30px;

  /* Motion */
  --gc-ease:  0.22s ease;
  --gc-ease2: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ═══════════════════════════════════════════════════════
   2. BASE RESETS & TYPOGRAPHY UPGRADE
═══════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  font-size: var(--gc-font-base);
  line-height: 1.75;
  color: var(--gc-text);
  background: var(--gc-white);
  overflow-x: hidden;
  /* Remove template's aggressive font-size scaling */
  font-size: 15px !important;
}

/* Override template's overly-large link font-size */
a {
  font-size: inherit !important;
  color: var(--gc-green);
  transition: color var(--gc-ease), opacity var(--gc-ease);
}
a:hover,
a:focus {
  color: var(--gc-green-hover);
  text-decoration: none;
}

/* Headings — better visual hierarchy */
h1, .h1 { font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: var(--gc-green-dark); line-height: 1.2; }
h2, .h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--gc-green-dark); line-height: 1.25; }
h3, .h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; color: var(--gc-green-dark); line-height: 1.3; }
h4, .h4 { font-size: 18px; font-weight: 600; color: var(--gc-green-dark); }
h5, .h5 { font-size: 15px; font-weight: 600; color: var(--gc-text); }
h6, .h6 { font-size: 13px; font-weight: 600; color: var(--gc-text); }

/* Override template red h3-h6 color */
h3, h4, h5, h6,
.h3, .h4, .h5, .h6 {
  color: var(--gc-green-dark) !important;
}

p { margin-bottom: 1rem; }
img { max-width: 100%; height: auto; display: block; }

/* Focus styles — visible everywhere */
:focus-visible {
  outline: 3px solid var(--gc-gold);
  outline-offset: 3px;
  border-radius: 3px;
}
/* Remove the template's blanket outline:none */
:active, :focus {
  outline: none;
}
:focus-visible {
  outline: 3px solid var(--gc-gold) !important;
}

/* ═══════════════════════════════════════════════════════
   3. SKIP LINK
═══════════════════════════════════════════════════════ */
.gc-skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gc-green);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--gc-r) var(--gc-r);
  font-size: var(--gc-font-sm);
  font-weight: 600;
  text-decoration: none;
  z-index: 99999;
  transition: top 0.2s;
}
.gc-skip-link:focus {
  top: 0;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════
   4. PRELOADER
═══════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--gc-white);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
#preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--gc-border);
  border-top-color: var(--gc-green);
  border-radius: 50%;
  animation: gc-spin 0.7s linear infinite;
}
#preloader-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gc-text-muted);
  font-family: sans-serif;
}
#disable-preloader {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: none;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-r-sm);
  padding: 4px 12px;
  font-size: 11px;
  color: var(--gc-text-muted);
  cursor: pointer;
  transition: all var(--gc-ease);
}
#disable-preloader:hover {
  border-color: var(--gc-green);
  color: var(--gc-green);
}
@keyframes gc-spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════
   5. ANNOUNCEMENT BAR
═══════════════════════════════════════════════════════ */
.gc-announcement {
  background: var(--gc-green-dark);
  padding: 8px 16px;
  text-align: center;
}
.gc-announcement a {
  text-decoration: none !important;
}
/* Remove neon-pulse — replace with clean shimmer */
.neon-text {
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gc-gold-light) !important;
  text-shadow: none !important;
  animation: gc-shimmer 3s ease-in-out infinite alternate !important;
  display: inline-block;
}
@keyframes gc-shimmer {
  from { opacity: 0.85; }
  to   { opacity: 1; color: #fff; }
}

/* ═══════════════════════════════════════════════════════
   6. LOGO ROW
═══════════════════════════════════════════════════════ */
.gc-logo-row {
  background: var(--gc-white);
  border-bottom: 2px solid var(--gc-green);
  padding: 12px 0;
  box-shadow: var(--gc-shadow-sm);
}
.gc-logo-row .logo-left {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
}
.gc-logo-row .logo-left img { height: 66px; width: auto; }

/* ═══════════════════════════════════════════════════════
   7. NOTICE TICKER
═══════════════════════════════════════════════════════ */
.gc-ticker-bar {
  display: flex;
  align-items: stretch;
  height: 44px;
  background: #fffef5;
  border-top: 1.5px solid #dfc97a;
  border-bottom: 1.5px solid #dfc97a;
  overflow: hidden;
  position: relative;
  z-index: 900;
}
.gc-ticker-label {
  background: var(--gc-green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  border-radius: 0 18px 18px 0;
  margin: 6px 0;
  z-index: 2;
  position: relative;
}
.gc-ticker-bell-icon {
  color: var(--gc-gold);
  animation: gc-bell 3s ease-in-out infinite;
  display: inline-block;
  transform-origin: top center;
}
@keyframes gc-bell {
  0%,100% { transform: rotate(0); }
  10%      { transform: rotate(15deg); }
  20%      { transform: rotate(-12deg); }
  30%      { transform: rotate(8deg); }
  40%      { transform: rotate(-5deg); }
  50%      { transform: rotate(0); }
}
.gc-ticker-fade-left {
  position: absolute;
  left: 128px;
  top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(to right, #fffef5, transparent);
  z-index: 1;
  pointer-events: none;
}
.gc-ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
#gcTickerOuter {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  height: 44px;
  animation: gc-ticker 32s linear infinite;
  will-change: transform;
}
#gcTickerTrack,
#gcTickerTrack2 {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  height: 44px;
}
@keyframes gc-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gc-ticker-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-left: 1px solid #dfc97a;
  background: #fffef5;
  height: 44px;
  z-index: 2;
}
.gc-ticker-pause-btn {
  background: none;
  border: none;
  color: var(--gc-gold-dark);
  cursor: pointer;
  padding: 0 13px;
  height: 44px;
  display: flex;
  align-items: center;
  font-size: 13px;
  transition: color var(--gc-ease), background var(--gc-ease);
}
.gc-ticker-pause-btn:hover { color: var(--gc-green); background: rgba(0,77,0,0.06); }
.gc-ticker-viewall {
  background: var(--gc-green);
  border: none;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0 16px;
  height: 38px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--gc-ease);
  text-transform: uppercase;
  border-radius: 18px 0 0 18px;
  margin: 3px 6px 3px 0;
}
.gc-ticker-viewall:hover { background: var(--gc-green-hover); }

/* ═══════════════════════════════════════════════════════
   8. UTILITY BAR
═══════════════════════════════════════════════════════ */
.gc-util-bar {
  background: #f5f5f2;
  border-bottom: 1px solid var(--gc-border);
  padding: 5px 0;
  z-index: 1100;
  position: relative;
}
.gc-util-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0 6px;
}
.gc-util-bar .util-link,
.gc-util-bar .util-has-children {
  font-size: 12px;
  font-weight: 600;
  color: var(--gc-text);
  text-decoration: none;
  padding: 3px 6px;
  border-radius: var(--gc-r-sm);
  transition: background var(--gc-ease), color var(--gc-ease);
}
.gc-util-bar .util-link:hover,
.gc-util-bar .util-has-children:hover {
  background: var(--gc-green-light);
  color: var(--gc-green);
}
.gc-util-bar .sep { color: var(--gc-border); font-size: 13px; }

/* Util dropdown */
.gc-util-dropdown { position: relative; display: inline-flex; align-items: center; }
.gc-util-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--gc-white);
  min-width: 130px;
  border: 1px solid var(--gc-border);
  border-top: 2px solid var(--gc-green);
  border-radius: 0 0 var(--gc-r) var(--gc-r);
  box-shadow: var(--gc-shadow-md);
  list-style: none;
  margin: 0; padding: 4px 0;
  z-index: 9999;
}
.gc-util-dropdown:hover .gc-util-drop-menu { display: block; }
.gc-util-drop-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--gc-text);
  white-space: nowrap;
  border-left: 2px solid transparent;
  transition: all var(--gc-ease);
}
.gc-util-drop-menu li a:hover {
  background: var(--gc-green-light);
  color: var(--gc-green);
  border-left-color: var(--gc-green);
}

/* Social icons in util bar */
.gc-social { display: flex; gap: 6px; align-items: center; margin-left: 8px; }
.gc-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  transition: opacity var(--gc-ease), transform var(--gc-ease);
}
.gc-social a:hover { opacity: 0.82; transform: scale(1.1); }
.gc-social .s-fb { background: #1877f2; }
.gc-social .s-tw { background: #111; }
.gc-social .s-yt { background: #ff0000; }

/* ═══════════════════════════════════════════════════════
   9. NAVBAR
═══════════════════════════════════════════════════════ */
.gc-navbar {
  background: var(--gc-green);
  position: relative;
  z-index: 1050;
  box-shadow: 0 3px 14px rgba(0,50,0,0.30);
}
.gc-nav-toggle {
  display: none;
  background: var(--gc-green);
  border: none;
  color: #fff;
  padding: 13px 16px;
  cursor: pointer;
  width: 100%;
  text-align: right;
}
.gc-nav-menu {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 0; padding: 0;
  list-style: none;
}
.gc-nav-menu > li { position: relative; }
.gc-nav-menu > li > a {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  letter-spacing: 0.1px;
  transition: background var(--gc-ease), color var(--gc-ease);
  border-bottom: 3px solid transparent;
}
.gc-nav-menu > li > a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-bottom-color: rgba(200,169,81,0.5);
}
.gc-nav-menu > li.active > a {
  color: var(--gc-gold-light);
  border-bottom-color: var(--gc-gold);
  background: rgba(255,255,255,0.06);
}

/* Apply Now button */
.gc-nav-admission > a {
  background: #fff !important;
  color: var(--gc-green) !important;
  font-weight: 800 !important;
  border-radius: var(--gc-r-sm) !important;
  margin: 8px 4px !important;
  padding: 6px 14px !important;
  border-bottom: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: all var(--gc-ease) !important;
}
.gc-nav-admission > a:hover {
  background: var(--gc-gold) !important;
  color: var(--gc-green-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.22) !important;
}

/* Login button */
.gc-nav-login > a {
  background: var(--gc-gold) !important;
  color: var(--gc-green-dark) !important;
  border-radius: var(--gc-r-sm) !important;
  margin: 8px 8px !important;
  padding: 6px 16px !important;
  font-weight: 700 !important;
  border-bottom: none !important;
}
.gc-nav-login > a:hover {
  background: var(--gc-gold-dark) !important;
  color: #fff !important;
}

/* Dropdown menus */
.gc-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--gc-white);
  min-width: 210px;
  border: 1px solid var(--gc-border);
  border-top: 2px solid var(--gc-gold);
  border-radius: 0 0 var(--gc-r) var(--gc-r);
  box-shadow: var(--gc-shadow-md);
  list-style: none;
  margin: 0; padding: 6px 0;
  z-index: 9999;
}
.gc-nav-menu li:hover > .gc-dropdown { display: block; }
.gc-dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--gc-text) !important;
  white-space: nowrap;
  border-left: 2px solid transparent;
  transition: all var(--gc-ease);
  font-weight: 500;
}
.gc-dropdown li a:hover {
  background: var(--gc-green-light);
  color: var(--gc-green) !important;
  padding-left: 22px;
  border-left-color: var(--gc-gold);
}
.gc-dropdown .gc-dropdown { top: 0; left: 100%; border-top: 1px solid var(--gc-border); }
.gc-dropdown li:last-child .gc-dropdown,
.gc-dropdown li.sub-left .gc-dropdown { left: auto; right: 100%; }
.gc-nav-menu > li > a.has-children::after { content: " ▾"; font-size: 10px; }
.gc-dropdown li > a.has-children::after   { content: " ▸"; font-size: 10px; float: right; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════
   10. HERO SLIDER
═══════════════════════════════════════════════════════ */
.gc-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #001800;
  height: 520px;
}
.gc-hero-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.gc-hero-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.gc-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: gc-kenburns 8s ease-in-out infinite alternate;
}
@keyframes gc-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.gc-hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.40) 100%);
  pointer-events: none;
}
.gc-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.30);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 22px;
  transition: background var(--gc-ease), border-color var(--gc-ease), transform var(--gc-ease);
  user-select: none;
  line-height: 1;
}
.gc-hero-arrow:hover {
  background: rgba(0,77,0,0.65);
  border-color: var(--gc-gold);
  transform: translateY(-50%) scale(1.06);
}
.gc-hero-prev { left: 16px; }
.gc-hero-next { right: 16px; }
.gc-hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.gc-hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none; padding: 0;
  transition: background var(--gc-ease), transform var(--gc-ease);
}
.gc-hero-dot.active {
  background: var(--gc-gold);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════
   11. FLOATING ADMISSION CARD
       Replaced with a sticky bottom-strip (no float, no overlap)
═══════════════════════════════════════════════════════ */
.gc-adm-slider-card {
  /* On desktop: compact left-side card */
  position: fixed;
  top: 62%;
  left: 14px;
  transform: translateY(-50%);
  z-index: 7000;
  width: 180px;
  background: var(--gc-white);
  border-radius: var(--gc-r-lg);
  box-shadow: var(--gc-shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  /* gentle float — reduced from original */
  animation: gc-float 4s ease-in-out infinite;
}
@keyframes gc-float {
  0%,100% { transform: translateY(-50%) translateY(0); }
  50%      { transform: translateY(-50%) translateY(-6px); }
}
.gc-adm-poster-img {
  width: 100%;
  display: block;
  border-radius: var(--gc-r-lg) var(--gc-r-lg) 0 0;
}
.gc-adm-card-footer {
  background: var(--gc-green);
  padding: 10px 12px;
  text-align: center;
}
.gc-adm-session {
  font-size: 10px;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.gc-adm-apply-btn {
  display: block;
  background: var(--gc-gold);
  color: var(--gc-green-dark) !important;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 10px;
  text-decoration: none !important;
  border-radius: var(--gc-r-sm);
  transition: background var(--gc-ease);
  letter-spacing: 0.2px;
}
.gc-adm-apply-btn:hover { background: var(--gc-gold-dark); color: #fff !important; }
.gc-adm-close-card {
  position: absolute;
  top: -10px; left: -10px;
  background: var(--gc-white);
  border: 2px solid var(--gc-green);
  border-radius: 50%;
  width: 24px; height: 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0; z-index: 1;
  box-shadow: var(--gc-shadow-sm);
  transition: background var(--gc-ease);
}
.gc-adm-close-card:hover { background: var(--gc-green-light); }
.gc-adm-mobile-text { display: none; }

/* ═══════════════════════════════════════════════════════
   12. WELCOME + NOTICE BOARD SECTION
═══════════════════════════════════════════════════════ */
.gc-welcome-section {
  padding: 48px 0 36px;
  background: var(--gc-white);
}
.gc-welcome-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gc-gold-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.gc-welcome-eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px; height: 2px;
  background: var(--gc-gold);
}
.gc-welcome-section h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--gc-green-dark);
  margin: 0 0 14px;
  line-height: 1.25;
}
.gc-welcome-section h2 span { color: var(--gc-gold-dark); }
.gc-lead {
  font-size: 14.5px;
  color: var(--gc-text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 480px;
}
.gc-btn-primary,
.btn-gc-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gc-green);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: var(--gc-r-sm);
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: background var(--gc-ease), transform var(--gc-ease), box-shadow var(--gc-ease);
  box-shadow: var(--gc-shadow-sm);
  letter-spacing: 0.2px;
}
.gc-btn-primary:hover,
.btn-gc-primary:hover {
  background: var(--gc-green-hover);
  transform: translateY(-1px);
  box-shadow: var(--gc-shadow-md);
}
.gc-welcome-img {
  width: 100%;
  border-radius: var(--gc-r);
  object-fit: cover;
  max-height: 280px;
  box-shadow: var(--gc-shadow);
}

/* ═══════════════════════════════════════════════════════
   13. NOTICE BOARD WIDGET
═══════════════════════════════════════════════════════ */
.gc-notice-board {
  background: var(--gc-white);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-r);
  box-shadow: var(--gc-shadow);
  height: 290px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--gc-ease2);
}
.gc-notice-board:hover { box-shadow: var(--gc-shadow-lg); }
.gc-notice-board-header {
  background: var(--gc-green);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  position: relative;
}
.gc-notice-board-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gc-gold), transparent);
}
.gc-notice-board-header-left {
  display: flex; align-items: center; gap: 10px;
}
.gc-notice-board-icon {
  width: 30px; height: 30px;
  background: rgba(200,169,81,0.2);
  border-radius: var(--gc-r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gc-gold);
  font-size: 13px;
  flex-shrink: 0;
}
.gc-notice-board-title { font-size: 13px; font-weight: 700; color: #fff; }
.gc-notice-board-subtitle { font-size: 10px; color: rgba(255,255,255,0.65); }
.gc-notice-view-all {
  background: rgba(200,169,81,0.18);
  border: 1px solid rgba(200,169,81,0.40);
  color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--gc-ease);
}
.gc-notice-view-all:hover { background: rgba(200,169,81,0.32); }
.gc-notice-board-body {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 12px 14px 8px 36px;
}
.gc-notice-timeline-line {
  position: absolute;
  left: 22px; top: 14px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gc-green), rgba(0,77,0,0.06));
}
.gc-notice-scroll-content {
  position: relative;
  animation: gc-notice-up 20s linear infinite;
}
.gc-notice-scroll-content:hover { animation-play-state: paused; }
@keyframes gc-notice-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Override the <marquee>-based NoticeBoard partial */
.gc-notice-board-body marquee,
.gc-notice-popup-body marquee {
  display: block;
  height: 100% !important;
  overflow: hidden;
}
.gc-notice-board-body marquee ul,
.gc-notice-popup-body marquee ul,
.gc-notice-scroll-content ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.gc-notice-board-body marquee ul li a,
.gc-notice-scroll-content ul li a,
.gc-notice-popup-body ul li a {
  display: block;
  font-size: 12.5px;
  color: var(--gc-text);
  line-height: 1.45;
  padding: 0 0 12px 0;
  text-decoration: none !important;
  transition: color var(--gc-ease);
  position: relative;
}
.gc-notice-board-body marquee ul li a:hover,
.gc-notice-scroll-content ul li a:hover,
.gc-notice-popup-body ul li a:hover {
  color: var(--gc-green);
}
/* Dot on timeline */
.gc-notice-scroll-content ul li::before,
.gc-notice-scroll-content ul li a::before {
  content: '';
  position: absolute;
  left: -21px; top: 4px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gc-green);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px var(--gc-green);
  z-index: 1;
}
.gc-notice-board-footer {
  background: var(--gc-green-light);
  border-top: 1px solid #c8e0c8;
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gc-green);
  text-align: center;
  flex-shrink: 0;
  transition: background var(--gc-ease);
}
.gc-notice-board-footer:hover { background: #c0dcc0; }

/* ═══════════════════════════════════════════════════════
   14. NOTICE POPUP
═══════════════════════════════════════════════════════ */
.gc-notice-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.gc-notice-popup-overlay.open { display: flex; }
.gc-notice-popup-box {
  background: var(--gc-white);
  border-radius: var(--gc-r-lg);
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  box-shadow: var(--gc-shadow-lg);
  animation: gc-pop-in 0.25s ease;
}
@keyframes gc-pop-in {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.gc-notice-popup-header {
  background: var(--gc-green);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.gc-notice-popup-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gc-gold), transparent);
}
.gc-notice-popup-header h4 {
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}
.gc-notice-popup-header h4 span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  margin-top: 2px;
}
.gc-notice-popup-close {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 30px; height: 30px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0; flex-shrink: 0;
  transition: background var(--gc-ease), transform var(--gc-ease);
}
.gc-notice-popup-close:hover { background: rgba(255,255,255,0.24); transform: rotate(90deg); }
.gc-notice-popup-body {
  max-height: 58vh;
  overflow-y: auto;
  padding: 16px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--gc-green) #f0f0f0;
}
.gc-notice-popup-body::-webkit-scrollbar { width: 5px; }
.gc-notice-popup-body::-webkit-scrollbar-thumb { background: var(--gc-green); border-radius: 3px; }
.gc-notice-popup-body ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.gc-notice-popup-body ul li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--gc-border);
  font-size: 13px;
}
.gc-notice-popup-body ul li:last-child { border-bottom: none; }
.gc-notice-popup-footer {
  padding: 12px 20px;
  background: #f8f8f5;
  border-top: 1px solid var(--gc-border);
  text-align: right;
}
.gc-notice-popup-footer button {
  background: var(--gc-green);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: var(--gc-r-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--gc-ease);
}
.gc-notice-popup-footer button:hover { background: var(--gc-green-hover); }

/* Bootstrap modal (admsnnotice) — same styles */
.gc-notice-modal .modal-header {
  background: var(--gc-green);
  border: none;
  padding: 16px 22px;
  position: relative;
}
.gc-notice-modal .modal-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gc-gold), transparent);
}
.gc-notice-modal .modal-title {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}
.gc-notice-modal .modal-body {
  padding: 0;
  max-height: 56vh;
  overflow-y: auto;
}
.gc-notice-modal .modal-footer {
  background: #f8f8f5;
  border-top: 1px solid var(--gc-border);
  padding: 12px 22px;
}

/* ═══════════════════════════════════════════════════════
   15. ACTIVITY CARDS
═══════════════════════════════════════════════════════ */
.gc-activities-section {
  background: var(--gc-bg-alt);
  padding: 40px 0 32px;
  border-top: 1px solid var(--gc-border);
}
.gc-section-heading {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--gc-green-dark);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gc-section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gc-border);
}
.gc-section-heading-accent {
  display: inline-block;
  width: 28px; height: 3px;
  background: var(--gc-gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.gc-activity-card {
  background: var(--gc-white);
  border-radius: var(--gc-r);
  overflow: hidden;
  border: 1px solid var(--gc-border);
  box-shadow: var(--gc-shadow-sm);
  transition: box-shadow var(--gc-ease2), transform var(--gc-ease2);
  margin-bottom: 12px;
}
.gc-activity-card:hover {
  box-shadow: var(--gc-shadow-md);
  transform: translateY(-4px);
}
.gc-activity-card a { display: block; text-decoration: none; overflow: hidden; }
.gc-activity-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gc-activity-card:hover img { transform: scale(1.05); }
.gc-activity-card-body {
  padding: 10px 13px 12px;
  border-top: 2px solid var(--gc-gold);
}
.gc-activity-card-body h6 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gc-text);
  margin: 0;
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════
   16. STATS BAND
═══════════════════════════════════════════════════════ */
.gc-stats-section {
  background: var(--gc-green);
  padding: 40px 0;
  position: relative;
}
.gc-stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gc-gold), var(--gc-gold-dark), var(--gc-gold));
}
.gc-stat-item {
  text-align: center;
  padding: 10px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.gc-stat-item:last-child { border-right: none; }
.gc-stat-number {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 7px;
}
.gc-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
}

/* ═══════════════════════════════════════════════════════
   17. TESTIMONIALS
═══════════════════════════════════════════════════════ */
.gc-testi-section {
  background: var(--gc-white);
  padding: 42px 0 34px;
  border-top: 1px solid var(--gc-border);
}
.gc-testi-track-wrap {
  overflow: hidden;
  position: relative;
  height: 190px;
}
.gc-testi-track-wrap::before,
.gc-testi-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px; z-index: 1;
  pointer-events: none;
}
.gc-testi-track-wrap::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.gc-testi-track-wrap::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }
.gc-testi-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: gc-testi-scroll 32s linear infinite;
  height: 190px;
  align-items: stretch;
}
.gc-testi-track:hover { animation-play-state: paused; }
@keyframes gc-testi-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gc-testi-card {
  width: 290px;
  flex-shrink: 0;
  background: var(--gc-green);
  border-radius: var(--gc-r);
  padding: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 2px solid var(--gc-gold);
}
.gc-testi-quote {
  font-size: 28px;
  color: var(--gc-gold);
  line-height: 1;
  margin-bottom: 4px;
  font-family: Georgia, serif;
}
.gc-testi-card p {
  font-style: italic;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin: 0 0 10px;
  flex: 1;
}
.gc-testi-author { font-weight: 700; font-size: 12px; color: var(--gc-gold-light); }
.gc-testi-stars  { color: var(--gc-gold); font-size: 11px; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════
   18. VIDEO SECTION
═══════════════════════════════════════════════════════ */
.gc-video-section {
  position: relative;
  text-align: center;
  padding: 64px 0;
  background-image: url('/Content/campus pics/DJI_0658.webp');
  background-size: cover;
  background-position: center;
  /* Remove fixed attachment — causes jank on mobile */
  background-attachment: scroll;
}
.gc-video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,25,0,0.62);
}
.gc-video-inner {
  position: relative;
  z-index: 1;
}
.gc-video-inner h3 {
  color: #fff !important;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  margin-bottom: 22px;
}
.gc-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.55);
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: background var(--gc-ease), border-color var(--gc-ease), transform var(--gc-ease);
}
.gc-play-btn:hover {
  background: var(--gc-gold);
  border-color: var(--gc-gold);
  color: var(--gc-green-dark);
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════
   19. RECRUITER STRIP
═══════════════════════════════════════════════════════ */
.gc-recruiters-section {
  padding: 34px 0 26px;
  background: var(--gc-bg-alt);
  border-top: 1px solid var(--gc-border);
}
.gc-recruiter-track-wrap {
  overflow: hidden;
  padding: 8px 0;
  position: relative;
}
.gc-recruiter-track-wrap::before,
.gc-recruiter-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 50px; z-index: 1;
  pointer-events: none;
}
.gc-recruiter-track-wrap::before { left: 0;  background: linear-gradient(to right, var(--gc-bg-alt), transparent); }
.gc-recruiter-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--gc-bg-alt), transparent); }
.gc-recruiter-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: gc-recruiter 24s linear infinite;
}
.gc-recruiter-track:hover { animation-play-state: paused; }
@keyframes gc-recruiter {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gc-recruiter-track img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(30%) opacity(0.75);
  transition: filter var(--gc-ease), transform var(--gc-ease);
}
.gc-recruiter-track img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════════════════
   20. MAP SECTION
═══════════════════════════════════════════════════════ */
.gc-map-section {
  width: 100%;
  overflow: hidden;
  border-top: 3px solid var(--gc-green);
}
.gc-map-placeholder {
  width: 100%;
  height: 340px;
  background: var(--gc-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
.gc-map-placeholder-icon { font-size: 38px; }
.gc-map-placeholder h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gc-green);
  margin: 0;
}
.gc-map-placeholder p {
  font-size: 13px;
  color: var(--gc-text-muted);
  margin: 0;
}
.gc-map-load-btn {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: var(--gc-green);
  color: #fff !important;
  border-radius: var(--gc-r-sm);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--gc-ease);
}
.gc-map-load-btn:hover { background: var(--gc-green-hover); }

/* ═══════════════════════════════════════════════════════
   21. FOOTER
═══════════════════════════════════════════════════════ */
#footer {
  background: var(--gc-green);
  color: rgba(255,255,255,0.88);
}
.gc-footer-body { padding: 50px 0 38px; }
.gc-footer-col h4 {
  color: var(--gc-gold) !important;
  font-size: 14px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.gc-footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.gc-footer-col ul li { margin-bottom: 10px; }
.gc-footer-col ul li a {
  color: rgba(255,255,255,0.78) !important;
  font-size: 13px !important;
  text-decoration: none !important;
  transition: color var(--gc-ease), padding-left var(--gc-ease);
}
.gc-footer-col ul li a:hover {
  color: #fff !important;
  padding-left: 4px;
}
.gc-footer-col .fa {
  color: var(--gc-gold);
  margin-right: 8px;
  width: 14px;
  text-align: center;
}
.gc-footer-login-btn {
  display: inline-block;
  padding: 9px 22px;
  background: var(--gc-gold);
  color: var(--gc-green-dark) !important;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--gc-r-sm);
  text-decoration: none !important;
  transition: all var(--gc-ease);
  margin-top: 4px;
  box-shadow: var(--gc-shadow-sm);
}
.gc-footer-login-btn:hover {
  background: var(--gc-gold-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--gc-shadow-md);
}
.gc-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.gc-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: #fff !important;
  font-size: 13px;
  text-decoration: none !important;
  transition: opacity var(--gc-ease), transform var(--gc-ease);
}
.gc-footer-social a:hover { opacity: 0.8; transform: scale(1.1); }
.gc-footer-social .s-fb { background: #1877f2; }
.gc-footer-social .s-tw { background: #111; }
.gc-footer-social .s-yt { background: #ff0000; }
.gc-footer-divider {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 14px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.50);
}
.gc-footer-divider a {
  color: rgba(255,255,255,0.70) !important;
  text-decoration: none !important;
}
.gc-footer-divider a:hover { color: #fff !important; text-decoration: underline !important; }

/* ═══════════════════════════════════════════════════════
   22. SCROLL TO TOP
═══════════════════════════════════════════════════════ */
.scrollToTop {
  position: fixed !important;
  bottom: 26px !important;
  right: 22px !important;
  width: 42px !important;
  height: 42px !important;
  background: var(--gc-green) !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.25) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  text-decoration: none !important;
  opacity: 0 !important;
  transition: opacity 0.3s, background var(--gc-ease), transform var(--gc-ease) !important;
  z-index: 500 !important;
  box-shadow: var(--gc-shadow-md) !important;
  padding: 0 !important;
}
.scrollToTop.visible { opacity: 1 !important; }
.scrollToTop:hover {
  background: var(--gc-green-hover) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}
.scrollToTop i { color: #fff !important; font-size: 20px !important; line-height: 1 !important; }

/* ═══════════════════════════════════════════════════════
   23. INNER PAGE: ABOUT / GENERAL CONTENT
═══════════════════════════════════════════════════════ */
.main-content {
  min-height: 60vh;
}
.main-content.bg-lighter { background: #fafaf8; }

/* Inner page title */
.main-content > h2.title {
  background: var(--gc-green);
  color: #fff !important;
  padding: 28px 24px;
  margin: 0 !important;
  font-size: clamp(20px, 3vw, 26px) !important;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2px;
  position: relative;
}
.main-content > h2.title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--gc-gold);
  border-radius: 2px 2px 0 0;
}

/* Section headers in inner pages */
#about h3.text-uppercase,
section h3 {
  color: var(--gc-green-dark) !important;
  font-weight: 700;
}
section h3 span.text-theme-color-2 {
  color: var(--gc-gold-dark) !important;
}

/* Content paragraphs */
.section-content p {
  font-size: 14.5px;
  line-height: 1.82;
  color: var(--gc-text);
}
.section-content p.lead {
  font-size: 15px;
  font-weight: 600;
  color: var(--gc-green-dark);
  margin-top: 20px;
  margin-bottom: 6px;
}
/* Justify alignment class */
.txtjustify { text-align: justify; }

/* Nav pills in inner pages */
.nav-pills li a:hover,
.nav-pills li.active > a,
.nav-pills li.active > a:hover,
.nav-pills li.active > a:focus {
  background: var(--gc-green) !important;
  color: #fff !important;
}

/* Tab content */
.tab-content { border: 1px solid var(--gc-border) !important; border-radius: var(--gc-r-sm); }

/* ═══════════════════════════════════════════════════════
   24. UTILITY CLASSES
═══════════════════════════════════════════════════════ */
.text-theme-color-2 { color: var(--gc-gold-dark) !important; }
.text-gc-green      { color: var(--gc-green) !important; }
.bg-gc-green        { background-color: var(--gc-green) !important; }
.bg-gc-gold         { background-color: var(--gc-gold) !important; }
.bcolor             { background-color: var(--gc-green) !important; }

/* Remove old template's giant link font-size in footer */
.footer a { font-size: 13px !important; }

/* Panel group (accordion) */
.panel-group .panel-title a.active {
  background: var(--gc-green) !important;
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,0.2) !important;
}

/* ═══════════════════════════════════════════════════════
   25. RESPONSIVE OVERRIDES
═══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .gc-hero            { height: 380px; }
  .gc-nav-toggle      { display: block; }
  .gc-nav-menu        {
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--gc-green);
    width: 100%;
    max-height: 72vh;
    overflow-y: auto;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .gc-nav-menu.open   { display: flex; }
  .gc-nav-menu > li > a {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    justify-content: space-between;
    border-bottom-width: 1px !important;
  }
  .gc-dropdown {
    position: static;
    display: none;
    background: var(--gc-green-dark);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    min-width: 100%;
  }
  .gc-dropdown.open { display: block; }
  .gc-dropdown li a {
    color: rgba(255,255,255,0.82) !important;
    padding: 10px 16px 10px 28px !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-left: none !important;
    font-size: 13px;
  }
  .gc-dropdown li a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    padding-left: 32px !important;
  }
  .gc-nav-admission > a,
  .gc-nav-login > a {
    margin: 10px 16px !important;
    display: block !important;
    text-align: center !important;
    width: calc(100% - 32px) !important;
  }
  .gc-util-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 6px;
    padding: 6px 8px;
  }
  .gc-social {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 4px;
    padding-bottom: 2px;
  }

  /* Admission card → bottom bar on mobile */
  .gc-adm-slider-card {
    position: fixed;
    bottom: 0; left: 0; right: 0; top: auto;
    transform: none;
    width: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: none;
    z-index: 7000;
    box-shadow: 0 -3px 22px rgba(0,0,0,0.30);
    background: var(--gc-green);
    border: none;
  }
  .gc-adm-poster-img {
    width: 76px; height: 76px;
    object-fit: cover;
    border-radius: 0;
    flex-shrink: 0;
    border-right: 2px solid rgba(200,169,81,0.30);
  }
  .gc-adm-card-footer { display: none; }
  .gc-adm-mobile-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 10px 12px;
  }
  .gc-adm-mobile-text p {
    margin: 0 0 2px;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
  }
  .gc-adm-mobile-text span {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    margin-bottom: 7px;
    display: block;
  }
  .gc-adm-mobile-text .gc-adm-apply-btn {
    display: inline-block;
    width: auto;
    padding: 6px 16px;
    font-size: 12px;
  }
  .gc-adm-close-card {
    position: relative;
    top: auto; left: auto;
    margin: 0 12px 0 0;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.25);
    align-self: center;
  }
  .gc-adm-close-card svg { stroke: #fff !important; }
}

@media (max-width: 767px) {
  .gc-hero { height: 260px; }
  body { padding-bottom: 78px; } /* room for mobile admission bar */
  .gc-footer-body { padding: 32px 0 22px; }
  .gc-footer-col  { margin-bottom: 26px; }
  .gc-testi-track-wrap,
  .gc-testi-track { height: 210px; }
}

@media (max-width: 575px) {
  .gc-logo-row .logo-right { display: none; }
  .gc-ticker-label span { display: none; }
  .gc-ticker-fade-left  { left: 54px; }
  .gc-notice-popup-overlay { padding: 10px; }
  .gc-notice-popup-box { max-height: 94vh; overflow-y: auto; }
}

/* ═══════════════════════════════════════════════════════
   26. REDUCED-MOTION & PRINT
═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .neon-text,
  #gcTickerOuter,
  .gc-testi-track,
  .gc-recruiter-track,
  .gc-adm-slider-card,
  .gc-ticker-bell-icon,
  .gc-hero-slide img {         /* was missing in original */
    animation: none !important;
  }
  .gc-hero-slides {
    transition: none !important;
  }
}

@media print {
  .gc-announcement,
  .gc-ticker-bar,
  .gc-util-bar,
  .gc-navbar,
  #footer,
  .scrollToTop,
  .gc-adm-slider-card,
  .gc-skip-link { display: none !important; }
}
