/* ==========================================================================
   Modish Institute of Pharmacy - Modern Design System & Stylesheet
   ========================================================================== */

:root {
  --primary-color: #0c4a60;
  --primary-dark: #072f3e;
  --primary-light: #166986;
  --secondary-color: #e67e22;
  --secondary-hover: #d35400;
  --accent-color: #10b981;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --body-bg: #f8fafc;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(12, 74, 96, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 35px -5px rgba(12, 74, 96, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px rgba(230, 126, 34, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--body-bg);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-transform: capitalize;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(12, 74, 96, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 74, 96, 0.35);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(230, 126, 34, 0.25);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-hover), var(--secondary-color));
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-color);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* ==========================================================================
   Header & Top Bar
   ========================================================================== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-contacts a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-contacts a:hover {
  color: var(--secondary-color);
}

.top-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-badge {
  background: rgba(230, 126, 34, 0.2);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.75rem;
}

/* Breaking News Ticker */
.ticker-wrap {
  background: #06232e;
  color: #ffffff;
  padding: 6px 0;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--secondary-color);
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.ticker-badge {
  background: var(--secondary-color);
  color: #ffffff;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  margin-right: 15px;
  white-space: nowrap;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

.ticker-content {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-block;
  padding: 0 30px;
  color: #e2e8f0;
}

.ticker-item a {
  color: #f1f5f9;
}
.ticker-item a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Main Header */
.main-header {
  background: #ffffff;
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  width: 75px;
  height: 75px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.brand-text h1 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.brand-text .society-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.brand-text .approval-tag {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--primary-color);
  background: rgba(12, 74, 96, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.header-action-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-action-ctas .btn {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

/* Navigation */
.navbar-wrap {
  background: var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav {
  display: flex;
  list-style: none;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  display: block;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.main-nav > li.active > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary-color);
}

.nav-cta-btn {
  margin-left: 15px;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 10px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 10001;
  box-shadow: -5px 0 25px rgba(0,0,0,0.25);
  transition: right 0.35s ease-in-out;
  padding: 24px;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
}

.drawer-overlay.open {
  display: block;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.drawer-nav {
  list-style: none;
}

.drawer-nav li {
  margin-bottom: 12px;
}

.drawer-nav a {
  display: block;
  padding: 10px 14px;
  font-weight: 600;
  color: var(--primary-dark);
  border-radius: var(--radius-sm);
}

.drawer-nav a:hover,
.drawer-nav li.active a {
  background: rgba(12, 74, 96, 0.08);
  color: var(--primary-color);
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  background: #072f3e;
}

.hero-slider-section {
  position: relative;
  background: #072f3e;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1500 / 500;
  max-height: 520px;
  min-height: 220px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
}

.slide.active {
  display: block;
  opacity: 1;
  animation: slideFadeIn 0.5s ease-in-out forwards;
}

@keyframes slideFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
  pointer-events: none;
  z-index: 10;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(7, 47, 62, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: scale(1.08);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 32px;
  border-radius: 12px;
  background: var(--secondary-color);
}

/* ==========================================================================
   Quick Highlights Bar
   ========================================================================== */
.quick-features-section {
  position: relative;
  margin-top: -50px;
  z-index: 20;
  padding-bottom: 40px;
}

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

.quick-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary-color);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.quick-card:nth-child(2) { border-top-color: var(--secondary-color); }
.quick-card:nth-child(3) { border-top-color: var(--accent-color); }
.quick-card:nth-child(4) { border-top-color: #8b5cf6; }

.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.quick-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: rgba(12, 74, 96, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.quick-card:nth-child(2) .quick-icon {
  background: rgba(230, 126, 34, 0.12);
  color: var(--secondary-color);
}
.quick-card:nth-child(3) .quick-icon {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-color);
}
.quick-card:nth-child(4) .quick-icon {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.quick-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.quick-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   Section Headers & Common
   ========================================================================== */
.section-padding {
  padding: 80px 0;
}

.section-padding-sm {
  padding: 50px 0;
}

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

.section-subtitle {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.25rem;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Welcome / About Section
   ========================================================================== */
.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

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

.welcome-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.welcome-badge-float {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: #ffffff;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 14px;
}

.welcome-badge-float .badge-icon {
  font-size: 2rem;
  color: var(--secondary-color);
}

.welcome-badge-float .badge-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.welcome-badge-float .badge-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.welcome-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.welcome-content p {
  color: #475569;
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.society-highlight-box {
  background: rgba(12, 74, 96, 0.05);
  border-left: 4px solid var(--primary-color);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.society-highlight-box h5 {
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.society-highlight-box p {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0;
}

.welcome-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.welcome-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.92rem;
}

.welcome-feat-item svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

/* ==========================================================================
   Notice Board & Announcements
   ========================================================================== */
.notice-section {
  background: #f1f5f9;
}

.notice-board-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
}

.notice-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 30px;
}

.card-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.card-title-bar h3 {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.notice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-dark);
  cursor: default;
}

.notice-item:hover {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  border-left-color: var(--secondary-color);
}

.notice-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.notice-date {
  background: rgba(12, 74, 96, 0.08);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 6px;
  text-align: center;
  min-width: 80px;
}

.notice-date .d-day {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.notice-date .d-month {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
}

.notice-title-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.badge-pill {
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
}

.badge-pill.new {
  background: #fee2e2;
  color: #dc2626;
}

.badge-pill.download {
  background: #e0f2fe;
  color: #0284c7;
}

.badge-pill.syllabus {
  background: #fef3c7;
  color: #d97706;
}

.badge-pill.notice {
  background: #dcfce7;
  color: #15803d;
}

/* Quick Links Sidebar Card */
.admission-banner-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.admission-banner-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.admission-banner-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.admission-banner-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.admission-steps {
  list-style: none;
  margin-bottom: 24px;
}

.admission-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Vision & Mission Cards
   ========================================================================== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vm-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-top: 5px solid var(--primary-color);
}

.vm-card:last-child {
  border-top-color: var(--secondary-color);
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.vm-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  background: rgba(12, 74, 96, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.vm-card:last-child .vm-icon-wrap {
  background: rgba(230, 126, 34, 0.12);
  color: var(--secondary-color);
}

.vm-card h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.vm-card p {
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ==========================================================================
   Courses Showcase
   ========================================================================== */
.course-highlight-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.course-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.course-main-info {
  padding: 40px;
}

.course-badge-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.course-tag {
  background: rgba(12, 74, 96, 0.1);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.course-tag.pci {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}

.course-title {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.course-intro {
  color: #475569;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.course-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.meta-item {
  border-right: 1px solid var(--border-color);
  padding-right: 12px;
}

.meta-item:last-child {
  border-right: none;
}

.meta-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.meta-item strong {
  display: block;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.course-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.course-side-panel {
  background: linear-gradient(135deg, #072f3e, #0c4a60);
  color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-side-panel h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.curriculum-list {
  list-style: none;
  margin-bottom: 20px;
}

.curriculum-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}

.curriculum-list li svg {
  color: var(--secondary-color);
  flex-shrink: 0;
}

/* ==========================================================================
   Leadership Messages (Chairman & Principal)
   ========================================================================== */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.leader-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.leader-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
}

.leader-photo-wrap {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.leader-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-info h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.leader-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.leader-body {
  padding: 25px;
  flex-grow: 1;
}

.leader-quote-box {
  background: rgba(230, 126, 34, 0.08);
  border-left: 4px solid var(--secondary-color);
  padding: 12px 16px;
  font-style: italic;
  font-size: 0.92rem;
  color: #7c2d12;
  margin-bottom: 16px;
  border-radius: 0 6px 6px 0;
}

.leader-body p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   Facilities Grid
   ========================================================================== */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.facility-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.facility-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.facility-content {
  padding: 20px;
}

.facility-content h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.facility-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Gallery Grid & Lightbox
   ========================================================================== */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-tab.active,
.gallery-tab:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

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

.gallery-item {
  position: relative;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 47, 62, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

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

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

.gallery-info {
  color: #ffffff;
}

.gallery-info h5 {
  color: #ffffff;
  font-size: 1rem;
}

.gallery-info span {
  font-size: 0.78rem;
  color: var(--secondary-color);
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.lightbox-caption {
  color: #ffffff;
  text-align: center;
  margin-top: 10px;
  font-size: 1.05rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   Admission Quick Form / CTA Bar
   ========================================================================== */
.cta-banner-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #ffffff;
  padding: 60px 0;
  position: relative;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-banner-text h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.cta-banner-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

/* ==========================================================================
   Contact Page Elements
   ========================================================================== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.contact-card-box {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  border-bottom: 4px solid var(--primary-color);
  transition: var(--transition);
}

.contact-card-box:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--secondary-color);
}

.contact-icon-large {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(12, 74, 96, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-card-box h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-card-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(12, 74, 96, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Map frame */
.map-frame-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 380px;
}

.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

/* ==========================================================================
   Page Hero Banner (Inner Pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: #ffffff;
  padding: 60px 0 50px;
  position: relative;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.page-hero .breadcrumb a {
  color: var(--secondary-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #081d26;
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
  font-size: 0.92rem;
  border-top: 4px solid var(--secondary-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.footer-title {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-list li svg {
  color: var(--secondary-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  background: #041219;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--secondary-color);
}

/* ==========================================================================
   Floating Widgets & Modal Popup
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* Announcement Popup Modal */
.announcement-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.announcement-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.announcement-modal.open .modal-dialog {
  transform: scale(1);
}

.modal-top-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: #ffffff;
  padding: 24px;
  text-align: center;
  position: relative;
}

.modal-badge {
  background: var(--secondary-color);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.modal-top-banner h3 {
  color: #ffffff;
  font-size: 1.4rem;
}

.modal-body {
  padding: 24px;
  text-align: center;
}

.modal-body p {
  color: #475569;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.6;
}

.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: #ffffff;
  color: var(--primary-dark);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .welcome-grid,
  .notice-board-grid,
  .course-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .leadership-grid,
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
  }
  .header-inner {
    flex-direction: column;
    text-align: center;
  }
  .brand-wrap {
    flex-direction: column;
    text-align: center;
  }
  .header-affiliations,
  .header-action-ctas {
    display: none;
  }
  .main-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .nav-inner {
    padding: 8px 0;
  }
  .slider-container {
    height: 420px;
  }
  .slide-title {
    font-size: 1.8rem;
  }
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .facilities-grid,
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .course-meta-grid {
    grid-template-columns: 1fr;
  }
}
