/* ============================================
   S.L.D College of Law - Complete Professional Theme
   Version: 2.0
   Description: Main stylesheet with all styles
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap");

/* =============================================
   1. CSS VARIABLES
   ============================================= */
:root {
  --primary: #0a2a5e;
  --primary-dark: #061a3a;
  --primary-light: #0d3b7a;
  --accent: #e31837;
  --accent-dark: #c41230;
  --accent-light: #ff4757;
  --gold: #d4a843;
  --gold-light: #f0d078;
  --gold-dark: #b8912e;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #adb5bd;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --text-dark: #212529;
  --text-body: #495057;
  --text-muted: #6c757d;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
  --font-ui: "Inter", sans-serif;
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  --transition-fast: all 0.2s ease;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* =============================================
   2. RESET & BASE
   ============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.section-padding {
  padding: 80px 0;
}
.section-padding-sm {
  padding: 50px 0;
}
.bg-light {
  background: var(--off-white);
}
.text-center {
  text-align: center;
}

/* =============================================
   3. SECTION HEADER
   ============================================= */
.section-header {
  margin-bottom: 50px;
}
.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: var(--font-ui);
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.section-header h2 span {
  color: var(--accent);
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  margin: 12px auto 0;
  border-radius: 2px;
}
.text-accent {
  color: var(--accent);
}

/* =============================================
   4. BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-ui);
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227, 24, 55, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--accent);
}
.btn-outline-primary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline-primary:hover {
  background: var(--accent);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--accent);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 38px;
  font-size: 1rem;
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}
.btn-block {
  display: flex;
  width: 100%;
}

/* =============================================
   5. TOP BAR
   ============================================= */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  font-size: 0.8rem;
  font-family: var(--font-ui);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar a,
.top-bar span {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.top-bar a:hover {
  color: var(--gold-light);
}
.top-bar i {
  color: var(--gold);
  font-size: 0.85rem;
}
.top-bar-social {
  display: flex;
  gap: 5px;
}
.top-bar-social a {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}
.top-bar-social a:hover {
  background: var(--accent);
  color: var(--white);
}

/* =============================================
   6. HEADER / NAVIGATION
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img-wrap {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary);
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}
.logo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-fallback i {
  font-size: 1.5rem;
  color: var(--primary);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}
.nav ul {
  display: flex;
  list-style: none;
  gap: 0;
}
.nav ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-dark);
  padding: 12px 16px;
  font-weight: 500;
  font-size: 0.88rem;
  font-family: var(--font-ui);
  transition: var(--transition-fast);
  position: relative;
}
.nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav ul li a:hover,
.nav ul li a.active {
  color: var(--accent);
}
.nav ul li a:hover::after,
.nav ul li a.active::after {
  transform: scaleX(1);
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  list-style: none;
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  border: 1px solid var(--light-gray);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  padding: 10px 20px !important;
  display: block;
  font-size: 0.85rem !important;
}
.dropdown-menu li a::after {
  display: none;
}
.dropdown-menu li a:hover {
  background: var(--off-white);
  color: var(--accent) !important;
}
.btn-apply {
  background: var(--accent);
  color: var(--white) !important;
  padding: 12px 24px !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-apply:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(227, 24, 55, 0.3);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--primary);
  transition: var(--transition);
}

/* =============================================
   7. HERO STATIC (No Slider)
   ============================================= */
.hero-static {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #061a3a 0%, #0a2a5e 40%, #061a3a 100%);
  overflow: hidden;
}
.hero-static::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(227, 24, 55, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero-static::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero-static-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-static-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 20px;
}
.hero-static-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 24, 55, 0.15);
  color: var(--accent-light);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border: 1px solid rgba(227, 24, 55, 0.3);
  animation: pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(227, 24, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(227, 24, 55, 0);
  }
}
.hero-static-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.15;
  font-weight: 800;
}
.text-accent-hero {
  color: var(--accent-light);
  display: block;
}
.hero-static-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero-static-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-down a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}
.scroll-down a:hover {
  color: var(--accent-light);
}
.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
.scroll-down i {
  font-size: 1rem;
  animation: bounce-down 2s ease-in-out infinite;
}
@keyframes bounce-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@media (max-width: 768px) {
  .hero-static {
    min-height: 75vh;
  }
  .hero-static-content h1 {
    font-size: 1.8rem;
  }
  .hero-static-tagline {
    font-size: 0.95rem;
  }
  .hero-static-badge {
    font-size: 0.78rem;
    padding: 8px 18px;
  }
}
@media (max-width: 480px) {
  .hero-static {
    min-height: 65vh;
  }
  .hero-static-content h1 {
    font-size: 1.5rem;
  }
  .hero-static-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-static-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* =============================================
   8. INFO STRIP
   ============================================= */
.info-strip {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0;
  position: relative;
  z-index: 2;
  margin-top: -50px;
}
.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.info-strip-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.info-strip-item h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.info-strip-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin: 0;
}

/* =============================================
   9. WELCOME SECTION
   ============================================= */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.welcome-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
}
.welcome-content h2 span {
  color: var(--accent);
}
.welcome-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 15px;
}
.welcome-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.welcome-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 25px;
}
.welcome-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.welcome-feature i {
  color: var(--success);
  font-size: 1rem;
}
.img-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.img-placeholder i {
  font-size: 5rem;
  margin-bottom: 15px;
  color: var(--gold);
}
.img-placeholder span {
  font-size: 1.2rem;
  font-weight: 500;
}

/* =============================================
   10. PROGRAM CARDS
   ============================================= */
.program-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.program-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.program-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.program-card-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--accent);
  padding: 5px 14px;
  border-radius: var(--radius-sm);
}
.program-card-body {
  padding: 25px;
}
.program-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}
.program-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* =============================================
   11. LEADERSHIP CARDS
   ============================================= */
.leadership-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 1000px;
  margin: 0 auto;
}
.leader-card-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.leader-card-full:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.leader-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.leader-photo-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 30px;
  text-align: center;
}
.leader-photo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #2a2a2a;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent);
  overflow: hidden;
}
.leader-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leader-photo-circle i {
  font-size: 2.5rem;
  color: #888;
}
.leader-designation {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 5px 16px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.leader-info-box {
  padding: 25px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.leader-info-box h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.leader-quote-text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

/* =============================================
   12. NOTICE BOARD & NEWS
   ============================================= */
.notice-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.notice-board-header,
.news-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-gray);
}
.notice-board-header i,
.news-header i {
  font-size: 1.5rem;
  color: var(--accent);
}
.notice-board-header h2,
.news-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin: 0;
}
.notice-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.notice-item {
  background: var(--white);
  border-left: 3px solid var(--accent);
  padding: 15px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.notice-item.new {
  border-left-color: var(--success);
  background: #f0faf4;
}
.notice-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(3px);
}
.notice-date {
  display: block;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 5px;
}
.notice-item h4 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
}
.notice-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 8px;
  line-height: 1.5;
}
.notice-link {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.notice-link:hover {
  color: var(--accent-dark);
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.news-card-mini {
  display: flex;
  gap: 15px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.news-card-mini:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.news-img-mini {
  width: 120px;
  min-height: 100px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.news-img-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-img-mini i {
  font-size: 2rem;
  color: var(--medium-gray);
}
.news-content-mini {
  padding: 12px 15px;
  flex: 1;
}
.news-content-mini .news-date {
  display: block;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 3px;
}
.news-content-mini h4 {
  font-size: 0.92rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.news-content-mini p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* =============================================
   13. FACILITIES MINI GRID
   ============================================= */
.facilities-mini-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 10px;
}
.facility-mini-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 15px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.facility-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.facility-mini-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fde8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
  color: var(--accent);
  transition: var(--transition);
}
.facility-mini-card:hover .facility-mini-icon {
  background: var(--accent);
  color: var(--white);
}
.facility-mini-card h3 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
}
.facility-mini-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* =============================================
   14. WHY CHOOSE US
   ============================================= */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.4rem;
  color: var(--white);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: rotateY(180deg);
}
.why-card h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.mt-4 {
  margin-top: 25px;
}

/* =============================================
   15. CTA BANNER & CTA SECTION
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 15px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 0;
  border-top: 3px solid #e31837;
}
.cta-section h2 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 15px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

/* =============================================
   16. FOOTER
   ============================================= */
.footer {
  position: relative;
  background: #0a1628;
  color: rgba(255, 255, 255, 0.75);
}
.footer-wave {
  position: relative;
  margin-top: -2px;
  line-height: 0;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: auto;
}
.footer-main {
  padding: 55px 0 35px;
  background: #0a1628;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 35px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-logo-box {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.footer-logo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
}
.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 2px;
  line-height: 1.2;
}
.footer-brand-tagline {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: italic;
  margin: 0;
}
.footer-about-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-about-text strong {
  color: rgba(255, 255, 255, 0.85);
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-badge i {
  color: var(--success);
  font-size: 0.7rem;
}
.footer-col-title {
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
}
.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: all 0.2s ease;
  padding: 3px 0;
}
.footer-links li a i {
  color: var(--accent);
  font-size: 0.65rem;
}
.footer-links li a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-icon-box {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  transition: all 0.25s ease;
}
.footer-contact-list li:hover .contact-icon-box {
  background: var(--accent);
  color: #fff;
}
.contact-info strong {
  display: block;
  color: #fff;
  font-size: 0.78rem;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-info span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.5;
}
.contact-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: all 0.2s ease;
  font-weight: 500;
}
.contact-link:hover {
  color: var(--gold);
}
.working-hours {
  color: var(--gold) !important;
  font-weight: 600 !important;
}
.closed-text {
  color: #e74c3c !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  margin-top: 2px;
  display: block;
}
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 11px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-contact-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 24, 55, 0.3);
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-bottom {
  background: #051025;
  padding: 16px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  margin: 0;
}
.footer-bottom strong {
  color: rgba(255, 255, 255, 0.6);
}
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(227, 24, 55, 0.3);
  border: none;
  cursor: pointer;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

/* =============================================
   17. FOOTER RESPONSIVE
   ============================================= */
@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 28px;
  }
}
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-about {
    grid-column: span 2;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-about {
    grid-column: span 1;
  }
  .footer-main {
    padding: 40px 0 25px;
  }
  .footer-brand {
    flex-direction: column;
    text-align: center;
  }
  .footer-logo-box {
    margin: 0 auto;
  }
  .footer-badges {
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-col-title {
    display: block;
    text-align: center;
  }
  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-links li a {
    justify-content: center;
  }
  .footer-contact-list li {
    justify-content: center;
  }
  .footer-contact-btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .back-to-top {
    bottom: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* =============================================
   18. GLOBAL RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    padding: 20px;
    transition: var(--transition);
    overflow-y: auto;
  }
  .nav.active {
    left: 0;
  }
  .nav ul {
    flex-direction: column;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
  }
  .dropdown.active .dropdown-menu {
    display: block;
  }
  .info-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .welcome-grid {
    grid-template-columns: 1fr;
  }
  .program-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .leadership-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .notice-news-grid {
    grid-template-columns: 1fr;
  }
  .facilities-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .top-bar {
    display: none;
  }
  .header .container {
    height: 66px;
  }
  .info-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .program-cards-grid {
    grid-template-columns: 1fr;
  }
  .welcome-features {
    grid-template-columns: 1fr;
  }
  .facilities-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  .news-card-mini {
    flex-direction: column;
  }
  .news-img-mini {
    width: 100%;
    height: 120px;
  }
  .leader-card-full {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* =============================================
   19. PAGE BANNER (Shared)
   ============================================= */
.page-banner {
  background: linear-gradient(135deg, #061a3a, #0a2a5e);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 350px;
  height: 350px;
  background: rgba(227, 24, 55, 0.04);
  border-radius: 50%;
}
.page-banner::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
}
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 24, 55, 0.2);
  color: #e31837;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 20px;
  border: 1px solid rgba(227, 24, 55, 0.3);
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.banner-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.breadcrumb-nav a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition-fast);
}
.breadcrumb-nav a:hover {
  color: #fff;
}
.breadcrumb-nav i {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumb-nav .current {
  color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   20. ADMISSION PAGE
   ============================================= */

/* Main Grid */
.admission-main-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* Admission Cards */
.admission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.admission-card:hover {
  box-shadow: var(--shadow-md);
}

.admission-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10, 42, 94, 0.2);
}

.admission-card-header h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin: 0;
}

.admission-card-body {
  padding: 28px;
}

/* Timeline */
.process-timeline {
  position: relative;
  padding-left: 10px;
}

.timeline-item {
  display: flex;
  gap: 22px;
  padding-bottom: 28px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.marker-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(10, 42, 94, 0.2);
}

.marker-line {
  width: 2px;
  flex: 1;
  background: var(--light-gray);
  margin-top: 6px;
  min-height: 25px;
}

.timeline-item:last-child .marker-line {
  display: none;
}

.timeline-content h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.timeline-content p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* Documents Grid */
.documents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.document-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-body);
  border: 1px solid var(--light-gray);
  transition: var(--transition-fast);
}

.document-item:hover {
  border-color: var(--success);
  background: #f0faf4;
}

.document-item i {
  color: var(--success);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Dates List */
.dates-list {
  display: flex;
  flex-direction: column;
}

.date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--light-gray);
  flex-wrap: wrap;
  gap: 10px;
}

.date-row:last-child {
  border-bottom: none;
}

.date-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--primary-dark);
  font-size: 0.9rem;
}

.date-label i {
  color: var(--primary);
  width: 20px;
  text-align: center;
  font-size: 0.95rem;
}

.date-value {
  font-weight: 700;
  color: var(--text-body);
  font-size: 0.92rem;
  background: var(--off-white);
  padding: 5px 14px;
  border-radius: 20px;
}

.date-value.highlight {
  color: var(--danger);
  background: #fde8e8;
}

/* =============================================
   21. ENQUIRY FORM
   ============================================= */
.enquiry-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent);
  margin-bottom: 25px;
}

.form-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 30px;
  text-align: center;
}

.form-header-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(227, 24, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.6rem;
  color: var(--accent-light);
  border: 2px solid rgba(227, 24, 55, 0.3);
}

.form-card-header h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 5px;
}

.form-card-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  margin: 0;
}

.form-card-body {
  padding: 28px;
}

/* Form Groups */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.88rem;
}

.required {
  color: var(--danger);
}

.optional {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.78rem;
  font-style: italic;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  z-index: 1;
}

.input-icon-wrap input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
  background: var(--off-white);
}

.input-icon-wrap input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(227, 24, 55, 0.08);
  background: var(--white);
}

.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  resize: vertical;
  min-height: 100px;
  background: var(--off-white);
  transition: var(--transition-fast);
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(227, 24, 55, 0.08);
  background: var(--white);
}

/* Enhanced Form Row */
.form-row-enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 5px;
}

.form-group-enhanced {
  margin-bottom: 18px;
}

.form-group-enhanced label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.88rem;
}

.form-group-enhanced label i {
  color: var(--accent);
  font-size: 0.82rem;
  width: 18px;
  text-align: center;
}

/* Select Wrapper */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  padding: 12px 38px 12px 14px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  background: var(--off-white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: var(--transition-fast);
  color: #333;
}

.select-wrapper select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(227, 24, 55, 0.08);
  background: var(--white);
}

.select-wrapper select:invalid {
  color: #999;
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 0.75rem;
  pointer-events: none;
  transition: var(--transition-fast);
}

.select-wrapper select:focus + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Percentage Input */
.percentage-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.percentage-input-wrapper input {
  width: 100%;
  padding: 12px 48px 12px 14px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  background: var(--off-white);
  transition: var(--transition-fast);
  -moz-appearance: textfield;
  appearance: textfield;
}

.percentage-input-wrapper input::-webkit-outer-spin-button,
.percentage-input-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.percentage-input-wrapper input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(227, 24, 55, 0.08);
  background: var(--white);
}

.percentage-symbol {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  pointer-events: none;
}

.form-hint {
  display: block;
  margin-top: 5px;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Form Disclaimer */
.form-disclaimer {
  text-align: center;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-disclaimer i {
  color: var(--success);
  font-size: 0.7rem;
}

.form-response {
  margin-top: 15px;
  text-align: center;
  font-weight: 500;
  padding: 10px;
  border-radius: var(--radius-sm);
}

/* =============================================
   22. HELP CARD
   ============================================= */
.help-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.help-card-header {
  background: var(--accent);
  color: var(--white);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.help-card-header i {
  font-size: 1.2rem;
}

.help-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin: 0;
}

.help-card-body {
  padding: 5px 0;
}

.help-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 22px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
  border-bottom: 1px solid var(--light-gray);
}

.help-contact:last-child {
  border-bottom: none;
}

.help-contact:hover {
  background: var(--off-white);
}

.help-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fde8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.help-contact span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.help-contact strong {
  display: block;
  color: var(--primary-dark);
  font-size: 0.9rem;
}

/* =============================================
   23. RESPONSIVE - ADMISSION
   ============================================= */
@media (max-width: 991px) {
  .admission-main-grid {
    grid-template-columns: 1fr;
  }

  .documents-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-banner {
    padding: 60px 0;
  }

  .admission-card-header {
    padding: 18px 20px;
  }

  .admission-card-body {
    padding: 20px;
  }

  .form-card-body {
    padding: 20px;
  }

  .form-card-header {
    padding: 22px 18px;
  }

  .form-row-enhanced {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline-item {
    gap: 14px;
  }

  .date-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-subtitle {
    font-size: 0.9rem;
  }

  .marker-number {
    width: 36px;
    height: 36px;
    font-size: 0.78rem;
  }

  .form-header-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}
/* =============================================
   24. ABOUT PAGE - MAIN GRID
   ============================================= */
.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 45px;
  align-items: start;
}

.about-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #111;
  margin-bottom: 18px;
}

.about-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.divider-left {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 20px;
}

/* =============================================
   25. ABOUT PAGE - HIGHLIGHTS BOX
   ============================================= */
.highlights-box {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 25px 28px;
  margin-top: 25px;
  box-shadow: var(--shadow-xs);
}

.highlights-box h3 {
  font-family: var(--font-heading);
  color: #111;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
}

.highlights-box h3 i {
  color: var(--accent);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #444;
}

.highlight-item i {
  color: var(--success);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* =============================================
   26. ABOUT PAGE - SIDEBAR
   ============================================= */
.about-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 22px;
  border: 1px solid var(--light-gray);
}

.sidebar-card-header {
  background: #1a1a1a;
  color: var(--white);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-card-header i {
  font-size: 1.1rem;
  color: var(--accent);
}

.sidebar-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin: 0;
}

.contact-sidebar .sidebar-card-header {
  background: var(--accent);
}

.contact-sidebar .sidebar-card-header i {
  color: var(--white);
}

.sidebar-card-body {
  padding: 5px 0;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 22px;
  border-bottom: 1px solid #f0f0f0;
  gap: 12px;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: #111;
  font-size: 0.82rem;
  white-space: nowrap;
}

.info-value {
  color: #666;
  font-size: 0.88rem;
  text-align: right;
}

.highlight-code {
  color: var(--accent) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

/* Contact Mini */
.contact-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
  border-bottom: 1px solid #f0f0f0;
}

.contact-mini:last-child {
  border-bottom: none;
}

.contact-mini:hover {
  background: #f9f9f9;
}

.contact-mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fde8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-mini span {
  display: block;
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-mini strong {
  display: block;
  color: #111;
  font-size: 0.9rem;
}

.text-danger {
  color: #e74c3c !important;
  font-size: 0.78rem;
}

/* =============================================
   27. ABOUT PAGE - MISSION VISION VALUES
   ============================================= */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mvv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.mvv-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #fde8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition);
}

.mvv-card:hover .mvv-icon-wrap {
  background: var(--accent);
  color: var(--white);
}

.mvv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #111;
  margin-bottom: 10px;
}

.mvv-card p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* =============================================
   28. ABOUT PAGE - LEADERSHIP
   ============================================= */
.about-leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 850px;
  margin: 0 auto;
}

.about-leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.about-leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-leader-top {
  background: #1a1a1a;
  padding: 35px 30px;
  text-align: center;
}

.about-leader-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #333;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent);
  overflow: hidden;
}

.about-leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-leader-img i {
  font-size: 2.5rem;
  color: #888;
}

.about-leader-role {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 5px 16px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-leader-bottom {
  padding: 25px 28px;
  text-align: center;
}

.about-leader-bottom h3 {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 10px;
}

.about-leader-bottom p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* =============================================
   29. ABOUT PAGE - RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .about-main-grid {
    grid-template-columns: 1fr;
  }

  .about-sidebar {
    position: static;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .about-leadership-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .info-row {
    flex-direction: column;
    gap: 3px;
  }

  .info-value {
    text-align: left;
  }

  .mvv-card {
    padding: 25px 20px;
  }

  .about-leader-top {
    padding: 25px 20px;
  }

  .about-leader-bottom {
    padding: 20px;
  }
}
/* =============================================
   30. CONTACT PAGE - CARDS ROW
   ============================================= */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.contact-card-mini {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.contact-link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fde8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--accent);
  transition: var(--transition);
}

.contact-link-card:hover .contact-card-icon {
  background: var(--accent);
  color: var(--white);
}

.contact-card-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.contact-card-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.closed-text {
  color: var(--danger);
  font-weight: 600;
  font-size: 0.85rem;
}

/* =============================================
   31. CONTACT PAGE - MAIN GRID
   ============================================= */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  margin-bottom: 50px;
}

/* ===== FORM CARD ===== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent);
}

.form-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 35px 30px;
  text-align: center;
}

.form-header-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(227, 24, 55, 0.2);
  border: 2px solid rgba(227, 24, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.8rem;
  color: var(--accent-light);
}

.form-card-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 5px;
}

.form-card-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.form-card-body {
  padding: 35px 30px;
}

/* ===== FORM ROW 2 ===== */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-disclaimer {
  text-align: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-disclaimer i {
  color: var(--success);
}

.form-status {
  margin-top: 15px;
  text-align: center;
  font-weight: 500;
}

/* =============================================
   32. CONTACT PAGE - SIDEBAR
   ============================================= */
.info-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 25px;
  border: 1px solid var(--light-gray);
}

.info-sidebar-header {
  background: #1a1a1a;
  color: var(--white);
  padding: 18px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gold-header {
  background: var(--accent);
}

.info-sidebar-header i {
  font-size: 1.1rem;
  color: var(--accent);
}

.gold-header i {
  color: var(--white);
}

.info-sidebar-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin: 0;
}

.info-sidebar-body {
  padding: 5px 0;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 25px;
  border-bottom: 1px solid var(--light-gray);
  gap: 15px;
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.85rem;
  white-space: nowrap;
}

.info-val {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: right;
}

.info-val.highlight {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
}

/* Quick Link Items */
.quick-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 25px;
  text-decoration: none;
  color: var(--primary-dark);
  transition: var(--transition-fast);
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9rem;
}

.quick-link-item:last-child {
  border-bottom: none;
}

.quick-link-item:hover {
  background: var(--off-white);
  color: var(--accent);
}

.quick-link-item i:first-child {
  color: var(--accent);
  width: 18px;
  text-align: center;
}

.quick-link-item span {
  flex: 1;
}

.quick-link-item i:last-child {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.quick-link-item:hover i:last-child {
  transform: translateX(3px);
  color: var(--accent);
}

/* =============================================
   33. CONTACT PAGE - MAP
   ============================================= */
.map-section {
  margin-top: 30px;
}

.map-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.map-header i {
  font-size: 1.8rem;
  color: var(--accent);
}

.map-header h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin: 0;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}

/* =============================================
   34. CONTACT PAGE - RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .contact-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .contact-cards-row {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto 40px;
  }

  .form-card-body {
    padding: 25px 20px;
  }

  .form-card-header {
    padding: 25px 20px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .map-header {
    flex-direction: column;
    text-align: center;
  }

  .map-container iframe {
    height: 300px;
  }
}

/* =============================================
   35. COURSES PAGE - HERO CARD
   ============================================= */
.course-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}

.course-hero-left {
  padding: 50px 45px;
}

.course-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(227, 24, 55, 0.1);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.course-featured-tag i {
  font-size: 0.7rem;
}

.course-hero-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--primary-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.course-hero-desc {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.course-hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 30px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-meta-item i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fde8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-meta-item strong {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-meta-item span {
  font-size: 0.9rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.course-hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.course-hero-right {
  height: 100%;
  min-height: 400px;
}

.course-hero-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  text-align: center;
  color: var(--white);
}

.hero-image-placeholder i {
  font-size: 6rem;
  color: var(--accent);
  margin-bottom: 15px;
  display: block;
  opacity: 0.8;
}

.hero-image-placeholder span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =============================================
   36. COURSES PAGE - CURRICULUM TIMELINE
   ============================================= */
.curriculum-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.curriculum-year {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.curriculum-year:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.year-header {
  text-align: center;
  margin-bottom: 28px;
}

.year-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.year-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.year-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.year-subjects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.subject-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--light-gray);
  transition: var(--transition-fast);
}

.subject-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.subject-card.highlight-card {
  background: #fde8e8;
  border-color: var(--accent);
}

.subject-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.1rem;
  color: var(--accent);
  box-shadow: var(--shadow-xs);
}

.subject-card h4 {
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.subject-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   37. COURSES PAGE - ELIGIBILITY & CAREER
   ============================================= */
.eligibility-career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.ec-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.ec-card:hover {
  box-shadow: var(--shadow-md);
}

.ec-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 28px;
  background: #1a1a1a;
  color: var(--white);
}

.ec-card-header i {
  font-size: 1.3rem;
  color: var(--accent);
}

.ec-card-header h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin: 0;
}

.ec-card-body {
  padding: 28px;
}

.ec-list {
  list-style: none;
  padding: 0;
}

.ec-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.92rem;
  color: var(--text-body);
}

.ec-list li:last-child {
  border-bottom: none;
}

.ec-list li i {
  color: var(--success);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Career Grid */
.career-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.career-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.career-item:hover {
  background: var(--accent);
  color: var(--white);
}

.career-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
}

.career-item:hover .career-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.career-item span {
  font-size: 0.85rem;
  font-weight: 500;
}

/* =============================================
   38. COURSES PAGE - SECTION DESC
   ============================================= */
.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* =============================================
   39. COURSES PAGE - RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .course-hero-card {
    grid-template-columns: 1fr;
  }

  .course-hero-right {
    min-height: 250px;
    order: -1;
  }

  .course-hero-left {
    padding: 35px 30px;
  }

  .year-subjects {
    grid-template-columns: repeat(2, 1fr);
  }

  .eligibility-career-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .course-hero-meta {
    grid-template-columns: 1fr;
  }

  .course-hero-left {
    padding: 25px 20px;
  }

  .course-hero-actions {
    flex-direction: column;
  }

  .course-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .year-subjects {
    grid-template-columns: 1fr;
  }

  .curriculum-year {
    padding: 22px 18px;
  }

  .career-grid {
    grid-template-columns: 1fr;
  }

  .ec-card-body {
    padding: 20px;
  }
}

/* =============================================
   40. FACILITIES PAGE - GRID
   ============================================= */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.facility-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.facility-card-inner {
  padding: 35px 30px;
}

.facility-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.facility-icon {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  background: #fde8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  transition: var(--transition);
}

.facility-card:hover .facility-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 8px 25px rgba(10, 42, 94, 0.25);
}

.facility-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-gray);
  line-height: 1;
}

.facility-card:hover .facility-number {
  color: var(--accent);
}

.facility-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.facility-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.facility-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.facility-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #555;
  padding: 6px 0;
}

.facility-features li i {
  color: var(--success);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* =============================================
   41. FACILITIES PAGE - RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .facilities-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .facility-card-inner {
    padding: 25px 20px;
  }

  .facility-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .facility-content h3 {
    font-size: 1.15rem;
  }
}

/* =============================================
   42. GALLERY PAGE - FILTER BUTTONS
   ============================================= */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid var(--light-gray);
  background: var(--white);
  color: var(--text-muted);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(10, 42, 94, 0.03);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 5px 20px rgba(10, 42, 94, 0.25);
}

.filter-btn i {
  font-size: 0.9rem;
}

/* =============================================
   43. GALLERY PAGE - GRID & CARDS
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.gallery-item {
  transition: var(--transition);
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.gallery-image-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.gallery-card:hover .gallery-placeholder {
  transform: scale(1.05);
}

.gallery-placeholder i {
  font-size: 3.5rem;
  margin-bottom: 12px;
  color: var(--accent-light);
  transition: var(--transition);
}

.gallery-card:hover .gallery-placeholder i {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 42, 94, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-image-wrap:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 3rem;
  color: var(--white);
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-image-wrap:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.gallery-info {
  padding: 18px 20px;
  text-align: center;
}

.gallery-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin: 0;
}

/* =============================================
   44. GALLERY PAGE - RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
  }

  .gallery-image-wrap {
    height: 200px;
  }

  .gallery-placeholder i {
    font-size: 2.8rem;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* =============================================
   45. MESSAGES PAGE - MESSAGE CARDS
   ============================================= */
.message-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}

.message-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid var(--light-gray);
  flex-wrap: wrap;
}

.message-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 4px solid var(--accent);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.message-avatar.avatar-principal {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.message-avatar.avatar-manager {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.message-avatar i {
  font-size: 2.8rem;
  color: var(--white);
}

.message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-meta .message-role {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.message-meta .role-principal {
  background: rgba(10, 42, 94, 0.1);
  color: var(--primary);
}

.message-meta .role-manager {
  background: rgba(227, 24, 55, 0.1);
  color: var(--accent);
}

.message-meta h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 3px;
}

.message-meta p {
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}

.message-body {
  position: relative;
  padding-left: 30px;
}

.message-body .quote-icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.2;
}

.message-body p {
  line-height: 1.9;
  color: #444;
  margin-bottom: 12px;
}

.message-body .greeting {
  font-size: 1.05rem;
}

.message-signature {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.message-signature p {
  margin: 0;
  color: var(--text-muted);
}

.message-signature strong {
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.message-signature span {
  color: var(--text-muted);
}

/* =============================================
   46. MESSAGES PAGE - RESPONSIVE
   ============================================= */
@media (max-width: 576px) {
  .message-card {
    padding: 25px 20px;
  }

  .message-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .message-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

  .message-avatar i {
    font-size: 2.2rem;
  }

  .message-body {
    padding-left: 0;
  }

  .message-body .quote-icon {
    display: none;
  }

  .message-meta h2 {
    font-size: 1.3rem;
  }
}

/* =============================================
   47. VISION & MISSION - FULL CARDS
   ============================================= */
.vm-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 50px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.vm-full-card:hover {
  box-shadow: var(--shadow-xl);
}

.vision-full {
  border-top: 5px solid var(--accent);
}

.mission-full {
  border-top: 5px solid var(--primary);
}

.vm-full-header {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 35px 40px;
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
}

.vm-full-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.vision-full .vm-full-icon {
  background: linear-gradient(
    135deg,
    rgba(227, 24, 55, 0.12),
    rgba(227, 24, 55, 0.04)
  );
  color: var(--accent);
}

.mission-full .vm-full-icon {
  background: linear-gradient(
    135deg,
    rgba(10, 42, 94, 0.12),
    rgba(10, 42, 94, 0.04)
  );
  color: var(--primary);
}

.vm-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.vision-full .vm-tag {
  color: var(--accent);
}

.mission-full .vm-tag {
  color: var(--primary);
}

.vm-full-title h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin: 0;
}

.vm-full-body {
  padding: 40px;
}

/* =============================================
   48. VISION & MISSION - QUOTE
   ============================================= */
.vm-quote {
  position: relative;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 30px 35px;
  margin-bottom: 35px;
  border-left: 4px solid var(--accent);
}

.vm-quote i {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.15;
}

.vm-quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.9;
  margin: 0;
  padding-left: 20px;
}

/* =============================================
   49. VISION & MISSION - POINTS GRID
   ============================================= */
.vm-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.vm-point-card {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: var(--transition-fast);
}

.vm-point-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

.vm-point-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.vision-full .vm-point-icon {
  background: rgba(227, 24, 55, 0.08);
  color: var(--accent);
}

.mission-full .vm-point-icon {
  background: rgba(10, 42, 94, 0.08);
  color: var(--primary);
}

.vm-point-content h4 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.vm-point-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   50. VISION & MISSION - CORE VALUES
   ============================================= */
.values-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.value-card-full {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.value-card-full::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.value-card-full:hover::before {
  transform: scaleX(1);
}

.value-card-full:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #fde8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition);
}

.value-card-full:hover .value-circle {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}

.value-card-full h3 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.value-card-full p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.value-divider {
  width: 30px;
  height: 3px;
  background: var(--accent);
  margin: 20px auto 0;
  border-radius: 2px;
  opacity: 0;
  transition: var(--transition);
}

.value-card-full:hover .value-divider {
  opacity: 1;
  width: 50px;
}

/* =============================================
   51. VISION & MISSION - OBJECTIVES
   ============================================= */
.objectives-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.objective-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.objective-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateX(5px);
}

.objective-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.4;
}

.objective-content h3 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.objective-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   52. VISION & MISSION - RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .vm-points-grid {
    grid-template-columns: 1fr;
  }

  .values-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .objectives-grid-full {
    grid-template-columns: 1fr;
  }

  .vm-full-header {
    padding: 25px;
  }

  .vm-full-body {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .vm-full-header {
    flex-direction: column;
    text-align: center;
  }

  .vm-full-icon {
    margin: 0 auto;
  }

  .values-grid-full {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .vm-quote {
    padding: 20px;
  }

  .vm-quote p {
    font-size: 1rem;
    padding-left: 10px;
  }

  .objective-card {
    flex-direction: column;
    gap: 10px;
  }

  .vm-full-body {
    padding: 20px;
  }
}
/* =============================================
   RULES PAGE
   ============================================= */
.rule-section {
  margin-bottom: 55px;
}
.rule-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.rule-section-icon {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  background: #fde8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  flex-shrink: 0;
}
.rule-section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.rule-section-header p {
  color: var(--text-muted);
  margin: 0;
}
.warning-icon {
  background: #fde8e8;
  color: var(--danger);
}

.rule-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rule-cards-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}
.rule-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.rule-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.rule-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
}
.rule-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.rule-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin: 0;
}
.rule-list {
  list-style: none;
  padding: 18px 22px;
}
.rule-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}
.rule-list li:last-child {
  border-bottom: none;
}
.rule-list li i {
  color: var(--accent);
  font-size: 0.65rem;
  margin-top: 5px;
  flex-shrink: 0;
}
.rule-list li strong {
  color: var(--primary-dark);
}

.warning-section {
  margin-bottom: 55px;
}
.warning-card-full {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 2px solid #fde8e8;
}
.warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fde8e8;
  color: var(--danger);
  padding: 7px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 18px;
}
.warning-badge i {
  animation: blink-warning 1s infinite;
}
@keyframes blink-warning {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.warning-card-full p {
  color: #555;
  margin-bottom: 18px;
}
.warning-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.warning-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
}
.warning-list li i.fa-times-circle {
  color: var(--danger);
  margin-top: 3px;
}
.warning-list li i.fa-check-circle {
  color: var(--success);
  margin-top: 3px;
}
.helpline-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fde8e8;
  padding: 18px 22px;
  border-radius: var(--radius);
  border-left: 4px solid var(--danger);
}
.helpline-box > i {
  font-size: 1.8rem;
  color: var(--danger);
}
.helpline-box div {
  flex: 1;
}
.helpline-box strong {
  display: block;
  color: var(--primary-dark);
}
.helpline-box span {
  color: var(--danger);
  font-weight: 700;
  font-size: 1.05rem;
}

@media (max-width: 991px) {
  .rule-cards-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }
  .rule-cards-grid.two-col {
    grid-template-columns: 1fr;
  }
  .rule-section-header {
    flex-direction: column;
    text-align: center;
  }
  .rule-section-icon {
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .rule-card-header {
    padding: 14px 18px;
  }
  .rule-list {
    padding: 14px 18px;
  }
  .warning-card-full {
    padding: 22px 18px;
  }
  .helpline-box {
    flex-direction: column;
    text-align: center;
  }
}
