/* ==========================================================================
   Aaradhana Degree College - ULTRA MODERN & PROFESSIONAL DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #0b2246;
  --primary-light: #163a70;
  --primary-dark: #061327;
  --accent: #d9a441;
  --accent-hover: #c48f2e;
  --accent-light: #fff3db;
  --secondary: #1a73e8;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  --text-main: #1e293b;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-subtle: #edf2f7;

  --font-heading: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 6px rgba(11, 34, 70, 0.05);
  --shadow-md: 0 8px 24px rgba(11, 34, 70, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 34, 70, 0.12);
  --shadow-xl: 0 24px 60px rgba(11, 34, 70, 0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

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

/* ==========================================================================
   TOPBAR & HEADER
   ========================================================================== */

.topbar {
  background: var(--primary-dark);
  color: #d1dced;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 50;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-badge {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-social a {
  color: #d1dced;
  opacity: 0.8;
  transition: var(--transition);
  font-size: 13px;
}

.topbar-social a:hover {
  color: var(--accent);
  opacity: 1;
  transform: translateY(-1px);
}

.topbar-portal-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Main Navigation Header */
.main-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  height: 72px;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

/* Nav Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
  background: #f1f5f9;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 8px 0;
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 110;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 9px 18px;
  color: var(--text-main);
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-dropdown-item:hover {
  background: #f8fafc;
  color: var(--secondary);
  padding-left: 22px;
}

.btn-apply-nav {
  background: linear-gradient(135deg, var(--accent), #e5b34a);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(217, 164, 65, 0.35);
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-apply-nav:hover {
  background: linear-gradient(135deg, #c48f2e, var(--accent));
  box-shadow: 0 6px 20px rgba(217, 164, 65, 0.45);
  transform: translateY(-2px);
  color: var(--primary-dark);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 26px;
  color: var(--primary);
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   ANNOUNCEMENT / NOTICE TICKER
   ========================================================================== */

.notice-ticker-bar {
  background: #0e274c;
  color: #ffffff;
  display: flex;
  align-items: center;
  font-size: 13.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.ticker-title {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.ticker-content {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 15px;
}

.ticker-marquee {
  display: inline-block;
  animation: ticker-scroll 35s linear infinite;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  color: #f1f5f9;
  font-weight: 500;
}

.ticker-item:hover {
  color: var(--accent);
  text-decoration: underline;
}

.ticker-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 1px 7px;
  border-radius: 3px;
  font-size: 11px;
  margin-right: 8px;
  font-weight: 600;
}

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

  100% {
    transform: translateX(-100%);
  }
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 1;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  transform: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 19, 39, 0.92) 0%, rgba(11, 34, 70, 0.75) 55%, rgba(6, 19, 39, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 920px;
  color: #ffffff;
  padding: 40px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 164, 65, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.15;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 30px;
  max-width: 620px;
}

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

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #c48f2e 100%);
  color: var(--primary-dark);
  font-weight: 800;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  font-size: 15.5px;
  box-shadow: 0 8px 25px rgba(217, 164, 65, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #e5b34a 0%, var(--accent) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(217, 164, 65, 0.6);
  color: var(--primary-dark);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--radius-md);
  font-size: 15.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Trust Pills Row inside Hero */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 13.5px;
  font-weight: 600;
}

.hero-trust-pill i {
  color: var(--accent);
  font-size: 15px;
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(11, 34, 70, 0.6);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
}

.slider-control:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-50%) scale(1.08);
}

.slider-control.prev {
  left: 25px;
}

.slider-control.next {
  right: 25px;
}

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

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 15px;
}

.slider-dot.active {
  background: var(--accent);
  width: 36px;
  border-radius: 6px;
}

/* ==========================================================================
   KEY HIGHLIGHTS & ACCREDITATION STRIP (6 PILLARS)
   ========================================================================== */

.highlights-strip {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 25;
  margin-top: -30px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.highlight-box-modern {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 22px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-box-modern:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(11, 34, 70, 0.09);
}

.highlight-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217, 164, 65, 0.15) 0%, rgba(26, 115, 232, 0.08) 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  transition: var(--transition);
}

.highlight-box-modern:hover .highlight-icon-circle {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.1) rotate(5deg);
}

.highlight-box-modern h4 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 700;
}

.highlight-box-modern p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Common Section Headers */
.section {
  padding: 85px 0;
}

.section.bg-light {
  background-color: #f8fafc;
}

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

.section-eyebrow {
  color: var(--accent-hover);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  display: inline-block;
  margin-bottom: 10px;
  background: var(--accent-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   PRINCIPAL & ABOUT SECTION
   ========================================================================== */

.about-executive-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.executive-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
}

.executive-photo-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.executive-photo-frame:hover img {
  transform: scale(1.04);
}

.executive-quote-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 34, 70, 0.94);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--accent);
}

.executive-quote-card h4 {
  color: var(--accent);
  font-size: 17px;
  margin-bottom: 2px;
}

.executive-quote-card p {
  font-size: 12.5px;
  color: #cbd5e1;
  margin: 0;
}

.executive-content h2 {
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--primary);
}

.executive-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  color: var(--secondary);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 15px;
  border: 1px solid #bfdbfe;
}

.executive-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.executive-pillar-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.executive-pillar-item:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.executive-pillar-item i {
  color: #16a34a;
  font-size: 16px;
}

/* Director Message Box in About Page */
.director-message-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.director-profile-card {
  text-align: center;
}

.director-img-wrapper {
  width: 100%;
  max-width: 250px;
  height: 280px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid #ffffff;
}

.director-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.director-img-wrapper:hover img {
  transform: scale(1.03);
}

.director-caption {
  margin-top: 14px;
  background: #0b2246;
  padding: 12px 14px;
  border-radius: 10px;
  border-left: 4px solid var(--accent);
}

.director-caption h4 {
  color: #ffffff;
  font-size: 15px;
  margin: 0 0 2px;
}

.director-caption span {
  color: #f0c45d;
  font-size: 11.5px;
  font-weight: 600;
  display: block;
}

/* Stats Counter Banner */
.stats-banner {
  background: linear-gradient(135deg, #061327 0%, var(--primary) 50%, #0e2f5f 100%);
  color: #ffffff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(217, 164, 65, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 164, 65, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.stat-item strong {
  font-size: 48px;
  font-family: var(--font-heading);
  color: var(--accent);
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-item span {
  font-size: 15px;
  color: #e2e8f0;
  font-weight: 600;
}

/* ==========================================================================
   ACADEMIC STREAMS & DISCIPLINES SHOWCASE
   ========================================================================== */

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

.stream-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.stream-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 34, 70, 0.12);
  border-color: var(--accent);
}

.stream-header {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--primary-dark);
}

.stream-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.stream-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(11, 34, 70, 0.9);
  backdrop-filter: blur(6px);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.stream-title {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 10px;
}

.stream-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.stream-subjects-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.stream-subject-tag {
  background: #f1f5f9;
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
}

.stream-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   WHY CHOOSE AD COLLEGE (6-PILLAR MODERN GRID)
   ========================================================================== */

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

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 164, 65, 0.4);
}

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

.why-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon-box {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.08);
}

.why-card h3 {
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 10px;
}

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

/* ==========================================================================
   3-STEP ADMISSION PROCESS ROADMAP
   ========================================================================== */

.admission-roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  margin: 40px 0;
}

.roadmap-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.roadmap-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.roadmap-step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px rgba(217, 164, 65, 0.4);
}

.roadmap-card h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
}

.roadmap-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   COURSES CARDS
   ========================================================================== */

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

.course-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(217, 164, 65, 0.4);
}

.course-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.course-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  padding: 5px;
}

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

.course-level-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.course-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-dept {
  font-size: 12.5px;
  color: var(--accent-hover);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.course-title {
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.35;
}

.course-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.course-meta strong {
  color: var(--primary);
}

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

.btn-course-details {
  flex: 1;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  background: #f8fafc;
}

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

.btn-course-apply {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  background: var(--accent);
  color: var(--primary-dark);
}

.btn-course-apply:hover {
  background: #c48f2e;
}

/* ==========================================================================
   NOTICE BOARD & HOME EVENTS WIDGET
   ========================================================================== */

.notice-events-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 35px;
}

.notice-board-card,
.events-board-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.card-header-styled {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header-styled h3 {
  color: #ffffff;
  font-size: 20px;
  margin: 0;
}

.card-header-styled a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.card-header-styled a:hover {
  text-decoration: underline;
}

.notice-list {
  padding: 10px 0;
  max-height: 480px;
  overflow-y: auto;
}

.notice-item {
  padding: 16px 25px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.notice-item:last-child {
  border-bottom: none;
}

.notice-item:hover {
  background: #f8fafc;
}

.notice-date-badge {
  background: #e2e8f0;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}

.notice-date-badge .day {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.notice-date-badge .month {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
}

.notice-info {
  flex: 1;
}

.notice-category-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cat-Admission {
  background: #dcfce7;
  color: #15803d;
}

.cat-Examination {
  background: #fee2e2;
  color: #b91c1c;
}

.cat-Academic {
  background: #e0e7ff;
  color: #3730a3;
}

.cat-Placement {
  background: #fef3c7;
  color: #b45309;
}

.cat-General {
  background: #f1f5f9;
  color: #475569;
}

.notice-info h4 {
  font-size: 15.5px;
  margin-bottom: 4px;
  line-height: 1.4;
}

.notice-info h4 a {
  color: var(--primary);
}

.notice-info h4 a:hover {
  color: var(--secondary);
}

.notice-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Events List */
.event-item {
  padding: 18px 25px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 16px;
  align-items: center;
  transition: var(--transition);
}

.event-item:hover {
  background: #f8fafc;
}

.event-date-box {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 65px;
  font-weight: 800;
}

.event-date-box .day {
  font-size: 20px;
  line-height: 1;
  display: block;
}

.event-date-box .month {
  font-size: 11px;
  text-transform: uppercase;
}

.event-details h4 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 4px;
}

.event-details p {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   FACILITIES & TESTIMONIALS
   ========================================================================== */

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

.facility-card {
  background: var(--bg-white);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.facility-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f0f4f9;
  color: var(--accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.facility-card:hover .facility-icon-circle {
  background: var(--accent);
  color: var(--primary-dark);
}

.facility-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.facility-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 14.5px;
  color: #334155;
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.6;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h5 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 2px;
}

.testimonial-user span {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   GALLERY & LIGHTBOX
   ========================================================================== */

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.filter-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

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

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

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 19, 39, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
}

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

.gallery-overlay h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
}

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

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

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

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  margin: 0 auto;
}

.lightbox-caption {
  color: #ffffff;
  margin-top: 14px;
  font-size: 16px;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #ffffff;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   ADMISSION CTA BANNER
   ========================================================================== */

.admission-cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.admission-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.admission-cta-banner h2 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 16px;
}

.admission-cta-banner p {
  font-size: 18px;
  color: #e2e8f0;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: var(--primary-dark);
  color: #cbd5e1;
  padding: 70px 0 25px;
  font-size: 14px;
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-about p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-logo {
  height: 68px;
  max-height: 75px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

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

.footer-links a {
  color: #cbd5e1;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-contact-icon {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

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

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

/* ==========================================================================
   FLOATING CTA BUTTONS (WHATSAPP & CALL)
   ========================================================================== */

.floating-cta-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  position: relative;
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.call {
  background: #0b2246;
  border: 2px solid var(--accent);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
  color: #ffffff;
}

.floating-tooltip {
  position: absolute;
  right: 68px;
  background: var(--primary-dark);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  right: 64px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

/* ==========================================================================
   PAGE BANNER & FORMS
   ========================================================================== */

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

.page-banner h1 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #cbd5e1;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb span.sep {
  opacity: 0.6;
}

/* Forms & UI Components */
.form-card {
  background: var(--bg-white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text-main);
  background: #ffffff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

/* Alert Boxes */
.alert-box {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
}

.alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-danger {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.alert-icon {
  font-weight: 800;
  font-size: 18px;
}

.alert-text {
  flex: 1;
}

.alert-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: inherit;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-header {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
  background: #ffffff;
  transition: var(--transition);
}

.faq-header:hover {
  background: #f8fafc;
}

.faq-icon {
  font-size: 20px;
  color: var(--accent-hover);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  display: none;
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-body {
  display: block;
}

/* ==========================================================================
   FACULTY CARDS & DIRECTORY
   ========================================================================== */

.faculty-card {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease !important;
}

.faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 34, 70, 0.14) !important;
}

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

.mission-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.recognition-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

/* ==========================================================================
   CONTACT & INQUIRY PAGE COMPONENTS
   ========================================================================== */

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 45px;
}

.contact-card-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-card-icon.map-icon {
  background: #fef3c7;
  color: #b45309;
}

.contact-card-icon.phone-icon {
  background: #eff6ff;
  color: #1a73e8;
}

.contact-card-icon.wa-icon {
  background: #dcfce7;
  color: #16a34a;
}

.contact-card-icon.mail-icon {
  background: #fee2e2;
  color: #dc2626;
}

.contact-card-box h3 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-card-box p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  width: 100%;
}

.contact-highlight-link {
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 2px;
}

.contact-subtext {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 3px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 35px;
  align-items: flex-start;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-map-wrapper {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-map-header {
  background: var(--primary);
  color: #ffffff;
  padding: 14px 20px;
}

.contact-map-header h3 {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.contact-map-body {
  height: 340px;
  width: 100%;
}

.contact-social-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px 20px;
}

.contact-social-card h3 {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-social-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.5;
}

.contact-social-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-soc-btn {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  transition: var(--transition);
}

.contact-soc-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-soc-btn.fb:hover { color: #1877f2; border-color: #1877f2; }
.contact-soc-btn.insta:hover { color: #e4405f; border-color: #e4405f; }
.contact-soc-btn.yt:hover { color: #ff0000; border-color: #ff0000; }
.contact-soc-btn.in:hover { color: #0a66c2; border-color: #0a66c2; }
.contact-soc-btn.tw:hover { color: #000000; border-color: #000000; }

/* ==========================================================================
   ADMISSIONS & TABLES
   ========================================================================== */

.admission-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 45px;
}

.admission-step-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 18px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-badge-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.admission-step-item h3 {
  font-size: 16.5px;
  color: var(--primary);
  margin-bottom: 6px;
}

.admission-step-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

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

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

.modern-table th {
  background: var(--primary);
  color: #ffffff;
  padding: 14px 18px;
  font-size: 14px;
  text-align: left;
}

.modern-table td {
  padding: 14px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.modern-table tbody tr:hover {
  background: #f8fafc;
}

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

.scholarship-card {
  background: #ffffff;
  padding: 26px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.scholarship-card.merit { border-top: 4px solid #1a73e8; }
.scholarship-card.sports { border-top: 4px solid #10b981; }
.scholarship-card.grant { border-top: 4px solid var(--accent); }

.scholarship-card h3 {
  font-size: 17.5px;
  color: var(--primary);
  margin-bottom: 8px;
}

.scholarship-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   TRACK APPLICATION PORTAL STYLES
   ========================================================================== */

.track-search-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.track-header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

.track-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.track-header-meta h2 {
  font-size: 20px;
  color: var(--primary);
  margin: 0 0 4px;
}

.track-header-meta p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}

.track-form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr auto;
  gap: 16px;
  align-items: flex-end;
}

.track-input {
  height: 48px;
  font-size: 15px;
  border-radius: 8px;
}

.track-submit-btn {
  height: 48px;
  padding: 0 24px;
  border: none;
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  border-radius: 8px;
}

/* Result Card */
.track-result-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 30px;
}

.track-result-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.track-app-label {
  font-size: 11.5px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
}

.track-app-id {
  margin: 2px 0 0;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.track-status-pill {
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 13.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

/* 4-Stage Stepper */
.track-stepper-container {
  background: #f8fafc;
  padding: 28px 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.track-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.track-stepper::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: #cbd5e1;
  z-index: 1;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stepper-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #cbd5e1;
  color: #64748b;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: var(--transition);
}

.stepper-step.completed .stepper-circle {
  background: #10b981;
  border-color: #10b981;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.stepper-step.current .stepper-circle {
  background: var(--primary);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(11, 34, 70, 0.35);
}

.stepper-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.stepper-date {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* Result Body */
.track-result-body {
  padding: 30px;
}

.track-status-summary-box {
  background: #f8fafc;
  border-left: 5px solid #1a73e8;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.track-section-heading {
  font-size: 16px;
  color: var(--primary);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.track-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-bottom: 25px;
}

.track-info-item {
  background: #f8fafc;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
}

.track-info-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.track-info-value {
  font-size: 15px;
  color: var(--primary);
}

.track-remarks-card {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 25px;
}

.track-actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.btn-track-action {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-track-action.print {
  background: #f1f5f9;
  color: var(--primary);
  border: 1px solid var(--border-color);
}

.btn-track-action.print:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn-track-action.wa {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.btn-track-action.wa:hover {
  background: #16a34a;
  color: #ffffff;
}

.btn-track-action.contact {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--border-color);
}

.btn-track-action.contact:hover {
  background: #f8fafc;
}

/* Empty State / Guide Grid */
.track-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.track-guide-box {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.guide-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--primary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.track-guide-box h3 {
  font-size: 15.5px;
  color: var(--primary);
  margin-bottom: 6px;
}

.track-guide-box p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (TABLET & MOBILE ULTRA-MODERN VIEW)
   ========================================================================== */

/* Medium Laptops & Tablets (1024px and below) */
@media (max-width: 1024px) {
  .highlights-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .admission-roadmap {
    grid-template-columns: 1fr;
  }

  .about-executive-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .executive-photo-frame img {
    height: 380px;
  }

  .director-message-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 24px 18px;
    text-align: center;
  }

  .director-img-wrapper {
    max-width: 200px;
    height: 230px;
  }

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

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .notice-events-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Tablets & Mobile Navigation Breakpoint (850px and below) */
@media (max-width: 850px) {
  .topbar-left,
  .topbar-right {
    gap: 12px;
  }

  .topbar-contact-info,
  .topbar-admin-link,
  .topbar-social {
    display: none !important;
  }

  .header-inner {
    padding: 8px 16px;
  }

  .brand-logo {
    height: 48px;
    max-height: 52px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--primary);
    font-size: 22px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
  }

  .mobile-toggle:hover {
    background: var(--primary);
    color: #ffffff;
  }

  /* Mobile Slide-in Drawer */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 60px 18px 30px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    display: flex;
    gap: 4px;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-link:hover,
  .nav-link.active {
    background: #f1f5f9;
    color: var(--secondary);
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    border-radius: 8px;
    padding: 6px 0;
    margin: 4px 0 8px 12px;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-muted);
  }

  .btn-apply-nav {
    width: 100%;
    margin-top: 15px;
    justify-content: center;
    padding: 13px;
    font-size: 15px;
    border-radius: 8px;
  }

  .hero-slider {
    min-height: 520px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

  #facultyGrid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .mission-list-grid {
    grid-template-columns: 1fr !important;
  }

  .recognition-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

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

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }
}

/* Standard Mobile Devices (600px and below) */
@media (max-width: 600px) {
  .topbar .container {
    padding: 6px 12px;
  }

  .topbar-badge {
    font-size: 10px;
    padding: 2px 6px;
  }

  .topbar-portal-link {
    font-size: 11px;
  }

  .brand-logo {
    height: 44px;
    max-height: 46px;
  }

  /* Notice Ticker on Mobile */
  .notice-ticker-bar {
    font-size: 12px;
  }

  .ticker-title {
    padding: 8px 14px;
    font-size: 11px;
  }

  /* Hero Section */
  .hero-slider {
    min-height: 480px;
  }

  .hero-content {
    padding: 35px 0 55px;
  }

  .hero-eyebrow {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
    border-radius: var(--radius-sm);
  }

  .hero-trust-row {
    gap: 8px;
    margin-top: 20px;
    padding-top: 15px;
  }

  .hero-trust-pill {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
  }

  .slider-control {
    display: none; /* Swipe is enabled on touch devices */
  }

  .slider-dots {
    bottom: 15px;
  }

  /* Highlights Strip (6 Pillars) */
  .highlights-strip {
    margin-top: 0;
    border-radius: 0;
    padding: 24px 0;
  }

  .highlights-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .highlight-box-modern {
    padding: 14px 10px;
    border-radius: 8px;
  }

  .highlight-icon-circle {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-bottom: 8px;
  }

  .highlight-box-modern h4 {
    font-size: 13px;
    margin-bottom: 3px;
  }

  .highlight-box-modern p {
    font-size: 11px;
    line-height: 1.35;
  }

  /* Section Spacing & Headers */
  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-eyebrow {
    font-size: 11.5px;
    letter-spacing: 1px;
    padding: 3px 10px;
  }

  .section-title {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .section-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Academic Streams & Cards */
  .streams-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stream-header {
    height: 160px;
  }

  .stream-body {
    padding: 20px 16px;
  }

  .stream-title {
    font-size: 19px;
  }

  .stream-subjects-list {
    gap: 6px;
    margin-bottom: 16px;
  }

  .stream-subject-tag {
    font-size: 11.5px;
    padding: 3px 8px;
  }

  .course-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .course-img-wrap {
    height: 180px;
  }

  .course-body {
    padding: 18px 16px;
  }

  .course-actions {
    flex-direction: column;
  }

  /* Principal / Executive Section */
  .about-executive-grid {
    gap: 25px;
  }

  .executive-photo-frame img {
    height: 280px;
  }

  .executive-quote-card {
    position: static;
    margin-top: 10px;
    padding: 14px 16px;
  }

  .executive-content h2 {
    font-size: 23px;
    margin-bottom: 12px;
  }

  .executive-pillars {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 18px 0;
  }

  .executive-pillar-item {
    font-size: 13px;
    padding: 10px 12px;
  }

  /* Stats Banner */
  .stats-banner {
    padding: 40px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-item {
    padding: 16px 10px;
  }

  .stat-item strong {
    font-size: 30px;
    margin-bottom: 2px;
  }

  .stat-item span {
    font-size: 12px;
  }

  /* Why Choose Us & Roadmap */
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .why-card {
    padding: 20px 16px;
  }

  .why-icon-box {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .why-card h3 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .why-card p {
    font-size: 13.5px;
  }

  .admission-roadmap {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 25px 0;
  }

  .roadmap-card {
    padding: 22px 16px;
  }

  .roadmap-step-badge {
    width: 38px;
    height: 38px;
    font-size: 16px;
    margin-bottom: 12px;
  }

  /* Notices & Events */
  .notice-item {
    padding: 12px 14px;
    gap: 12px;
  }

  .notice-date-badge {
    min-width: 48px;
    padding: 6px 8px;
  }

  .notice-date-badge .day {
    font-size: 15px;
  }

  .notice-info h4 {
    font-size: 14px;
  }

  .event-item {
    padding: 12px 14px;
    gap: 12px;
  }

  .event-date-box {
    min-width: 50px;
    padding: 8px;
  }

  .event-date-box .day {
    font-size: 16px;
  }

  .event-details h4 {
    font-size: 14px;
  }

  /* Facilities */
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .facility-card {
    padding: 22px 16px;
  }

  /* Gallery Grid & Filter Chips */
  .gallery-filter {
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .filter-btn {
    flex-shrink: 0;
    padding: 7px 14px;
    font-size: 12.5px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item {
    height: 160px;
    border-radius: 8px;
  }

  /* Lightbox */
  .lightbox-content {
    max-width: 96vw;
    padding: 0 5px;
  }

  .lightbox-close {
    top: -40px;
    right: 4px;
    font-size: 30px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 22px 18px;
  }

  .testimonial-quote {
    font-size: 13.5px;
  }

  /* Admission CTA Banner */
  .admission-cta-banner {
    padding: 45px 15px;
    text-align: center;
  }

  .admission-cta-banner h2 {
    font-size: 23px;
  }

  .admission-cta-banner p {
    font-size: 14px;
  }

  .cta-btn-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .cta-btn-group a {
    width: 100%;
    justify-content: center;
    font-size: 14.5px !important;
  }

  /* Form Elements & Inputs */
  .form-card {
    padding: 20px 15px;
    border-radius: var(--radius-md);
  }

  .form-control,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important; /* Prevents auto-zoom in Safari iOS */
    padding: 11px 12px;
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Page Banner on Mobile */
  .page-banner {
    padding: 40px 15px;
  }

  .page-banner h1 {
    font-size: 26px;
    line-height: 1.25;
  }

  /* Contact Page on Mobile */
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .contact-card-box {
    padding: 20px 16px;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-form-wrapper {
    padding: 22px 16px;
  }

  .contact-map-body {
    height: 270px;
  }

  .contact-social-card {
    padding: 20px 16px;
  }

  .contact-social-pills {
    gap: 8px;
  }

  .contact-soc-btn {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    padding: 9px 10px;
    font-size: 12px;
  }

  /* Admissions on Mobile */
  .admission-steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .scholarship-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Track Application on Mobile */
  .track-search-card {
    padding: 20px 16px;
  }

  .track-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .track-result-header {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .track-stepper-container {
    padding: 20px 10px;
  }

  .track-stepper {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 8px;
  }

  .track-stepper::before {
    display: none;
  }

  .track-details-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .track-result-body {
    padding: 20px 16px;
  }

  .track-actions-row {
    flex-direction: column;
  }

  .btn-track-action {
    width: 100%;
    justify-content: center;
  }

  .track-guide-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Floating Contact Widgets */
  .floating-cta-container {
    bottom: 20px;
    right: 14px;
    gap: 10px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .floating-btn svg {
    width: 24px;
    height: 24px;
  }

  .floating-tooltip {
    display: none !important;
  }

  .back-to-top {
    bottom: 20px;
    left: 14px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/* Small Smartphone Devices (380px and below) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 23px;
  }

  .highlights-grid-6 {
    grid-template-columns: 1fr;
  }

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

  .gallery-item {
    height: 200px;
  }
}