/* ==========================================================================
   Sujas Global School - Modern CBSE Theme & Stylesheet (2026-27 Edition)
   ========================================================================== */

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

:root {
  --primary: #0b2545;
  --primary-dark: #06162a;
  --primary-light: #134074;
  --secondary: #15803d;
  --secondary-dark: #166534;
  --secondary-light: #22c55e;
  --accent: #dc2626;
  --accent-hover: #b91c1c;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --dark: #0f172a;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-radius-sm: 6px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 18px rgba(11,37,69,0.08);
  --shadow-lg: 0 12px 30px rgba(11,37,69,0.12);
  --shadow-hover: 0 20px 35px rgba(11,37,69,0.16);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Base & Typography */
body {
  font-family: var(--font-body) !important;
  color: var(--text-main) !important;
  background-color: var(--bg-light) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover, a:focus {
  color: var(--accent);
  text-decoration: none;
}

/* Top Notification Marquee */
/* ==========================================================================
   Top Header Styles (3-Tier CBSE Architecture)
   ========================================================================== */

/* Tier 1: Top Utility Bar */
.header-top-bar {
  background: #071527;
  color: #cbd5e1;
  padding: 8px 0;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-affil-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-weight: 500;
}

.top-affil-text strong {
  color: var(--gold);
}

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

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
  text-decoration: none !important;
  font-weight: 500;
  transition: var(--transition);
}

.top-contact-link i {
  color: var(--secondary-light);
}

.top-contact-link:hover {
  color: #ffffff;
}

.top-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-social-icons li a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  transition: var(--transition);
}

.top-social-icons li a:hover {
  background: var(--gold);
  color: #071527;
  transform: translateY(-2px);
}

/* Tier 2: Main Brand Header */
.header-brand-section {
  background: #ffffff;
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
}

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

.site-logo-link {
  display: inline-block;
  text-decoration: none !important;
}

.site-logo-img {
  height: 82px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.brand-info-boxes {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-info-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.icon-phone { background: #f0fdf4; color: #16a34a; }
.icon-map { background: #eff6ff; color: #2563eb; }

.info-text {
  display: flex;
  flex-direction: column;
}

.info-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-desc {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none !important;
}

.info-desc:hover {
  color: var(--secondary);
}

.btn-top-admission {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 22px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
  transition: var(--transition);
  position: relative;
  text-decoration: none !important;
}

.btn-top-admission:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
  color: #ffffff !important;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Mobile Header Elements */
.mobile-menu-trigger-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-mobile-quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.btn-mobile-quick:active {
  transform: scale(0.92);
}

.btn-mobile-call {
  background: linear-gradient(135deg, #15803d, #16a34a);
}

.btn-mobile-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.btn-mobile-apply {
  background: var(--accent);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none !important;
  white-space: nowrap;
}

.mobile-toggle-btn {
  background: var(--primary);
  border: none;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle-btn span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
}

/* Tier 3: Sticky Navigation Bar */
.header-nav-section {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 3px solid var(--gold);
}

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

.navbar-sujas {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-sujas-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nav-sujas-menu > li {
  position: relative;
}

.nav-sujas-menu > li > a {
  display: block;
  padding: 15px 14px;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}

.nav-sujas-menu > li > a:hover,
.nav-sujas-menu > li.active > a,
.nav-sujas-menu > li:hover > a {
  color: var(--gold-light) !important;
  background: rgba(255, 255, 255, 0.08);
}

.nav-sujas-menu > li.has-dropdown > a::after {
  content: "\f107";
  font-family: "FontAwesome";
  margin-left: 5px;
  font-size: 11px;
}

/* Dropdowns */
.nav-sujas-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--secondary);
  z-index: 1050;
}

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

.nav-sujas-dropdown li a {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  color: var(--text-main) !important;
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.nav-sujas-dropdown li a:hover {
  background: var(--bg-light);
  color: var(--secondary) !important;
  border-left-color: var(--secondary);
  padding-left: 22px;
}

.nav-extra-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  text-decoration: none !important;
}

.nav-extra-btn:hover {
  background: var(--gold);
  color: #071527 !important;
  border-color: var(--gold);
}

/* Tier 4: Announcement Strip */
.header-ticker-section {
  background: #fffbeb;
  border-bottom: 1px solid #fde68a;
  padding: 6px 0;
  font-size: 13px;
}

.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ticker-badge {
  background: #dc2626;
  color: #ffffff;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.ticker-marquee {
  flex-grow: 1;
  overflow: hidden;
  color: #1e293b;
  font-weight: 600;
}

.ticker-marquee a {
  color: #b91c1c !important;
  margin: 0 15px;
  font-weight: 700;
}

/* Quick Action Tiles (CBSE Standard) */
.quick-actions-bar {
  margin-top: -35px;
  position: relative;
  z-index: 50;
  margin-bottom: 40px;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

@media (max-width: 1199px) {
  .quick-actions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .quick-actions-bar {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .quick-actions-grid {
    grid-template-columns: 1fr;
  }
}

.action-tile-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 18px 15px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  min-height: 85px;
}

.action-tile-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.action-tile-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.tile-icon-cbse { background: #eff6ff; color: #2563eb; }
.tile-icon-adm { background: #fef2f2; color: #dc2626; }
.tile-icon-fee { background: #f0fdf4; color: #16a34a; }
.tile-icon-tc { background: #fefce8; color: #ca8a04; }
.tile-icon-cal { background: #f5f3ff; color: #7c3aed; }
.tile-icon-doc { background: #fff7ed; color: #ea580c; }

.action-tile-card:hover .action-tile-icon {
  transform: scale(1.1) rotate(5deg);
}

.action-tile-text h4 {
  font-size: 14px !important;
  font-weight: 700 !important;
  margin: 0 0 3px 0 !important;
  color: var(--primary) !important;
  line-height: 1.25 !important;
}

.action-tile-text p {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

/* Section Header Styles */
.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  background: rgba(21,128,61,0.1);
  color: var(--secondary);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.section-main-title {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  margin-bottom: 12px !important;
}

.section-title-wrap p {
  max-width: 650px;
  margin: 0 auto !important;
  color: var(--text-muted);
  font-size: 15px !important;
}

/* ==========================================================================
   Executive Leadership Cards (Honorary Director & CEO/Principal Desk)
   ========================================================================== */
.leadership-strip-header {
  margin-bottom: 22px;
}

.leadership-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  color: #0b2545;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  margin-bottom: 8px;
}

.leadership-heading {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  margin: 0 !important;
  line-height: 1.3;
}

.leadership-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(11, 37, 69, 0.06);
  border: 1px solid #e2e8f0;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.leadership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 37, 69, 0.12);
}

.leadership-card.card-director {
  border-left: 4px solid #b45309;
}

.leadership-card.card-principal {
  border-left: 4px solid #15803d;
}

.leadership-watermark {
  position: absolute;
  right: 15px;
  bottom: 0px;
  font-size: 140px;
  color: rgba(11, 37, 69, 0.03);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.leadership-card-inner {
  display: flex;
  gap: 22px;
  padding: 24px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.leadership-profile-col {
  width: 165px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.leadership-photo-wrap {
  width: 145px;
  height: 175px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(11, 37, 69, 0.14);
  border: 3px solid #ffffff;
  background: #f8fafc;
}

.photo-gold-border {
  outline: 2.5px solid #f59e0b;
}

.photo-emerald-border {
  outline: 2.5px solid #16a34a;
}

.leadership-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.leadership-card:hover .leadership-photo-wrap img {
  transform: scale(1.05);
}

.leadership-seal-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  border: 2px solid #ffffff;
}

.seal-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.seal-emerald {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.leadership-identity {
  margin-top: 10px;
}

.leadership-name {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #0b2545 !important;
  margin: 0 0 2px 0 !important;
  line-height: 1.25;
}

.leadership-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}

.role-director {
  color: #b45309;
}

.role-principal {
  color: #15803d;
}

.leadership-org {
  font-size: 10.5px;
  color: #64748b;
  font-weight: 600;
}

.leadership-content-col {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.leadership-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.leadership-badge {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 9px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-director {
  background: #fef3c7;
  color: #92400e;
}

.badge-principal {
  background: #dcfce7;
  color: #166534;
}

.leadership-session-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: #94a3b8;
  background: #f8fafc;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

.leadership-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #0b2545 !important;
  margin: 2px 0 8px 0 !important;
  line-height: 1.3;
}

.leadership-quote-callout {
  padding: 9px 13px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.quote-gold {
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
}

.quote-emerald {
  background: #f0fdf4;
  border-left: 3px solid #16a34a;
}

.callout-quote-icon {
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.quote-gold .callout-quote-icon {
  color: #d97706;
}

.quote-emerald .callout-quote-icon {
  color: #16a34a;
}

.callout-quote-text {
  font-size: 13px !important;
  font-weight: 600;
  font-style: italic;
  margin: 0 !important;
  line-height: 1.5;
}

.quote-gold .callout-quote-text {
  color: #78350f;
}

.quote-emerald .callout-quote-text {
  color: #14532d;
}

.leadership-desc p {
  color: #475569;
  font-size: 13.5px !important;
  line-height: 1.6;
  margin-bottom: 12px;
}

.leadership-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
  margin-top: auto;
}

.leadership-trust-note {
  font-size: 11.5px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-leadership-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-director-action {
  background: linear-gradient(135deg, #0b2545, #134074);
  color: #ffffff !important;
}

.btn-director-action:hover {
  background: linear-gradient(135deg, #b45309, #d97706);
  color: #ffffff !important;
  transform: translateX(3px);
}

.btn-principal-action {
  background: linear-gradient(135deg, #15803d, #166534);
  color: #ffffff !important;
}

.btn-principal-action:hover {
  background: linear-gradient(135deg, #0b2545, #134074);
  color: #ffffff !important;
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .leadership-card-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .leadership-profile-col {
    width: 100%;
  }
  .leadership-tag-row {
    justify-content: center;
  }
  .leadership-quote-callout {
    text-align: left;
  }
  .leadership-card-footer {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .btn-leadership-action {
    width: 100%;
    justify-content: center;
  }
}

/* Notice & Events Dual Hub */
.hub-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 30px;
}

.hub-card-header {
  background: var(--primary);
  color: #ffffff;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hub-card-header h3 {
  color: #ffffff !important;
  font-size: 18px !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hub-card-header h3 i {
  color: var(--gold-light);
}

.hub-list-wrap {
  padding: 15px;
  max-height: 380px;
  overflow-y: auto;
}

.hub-list-item {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition);
  text-decoration: none !important;
}

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

.hub-list-item:hover {
  background: var(--bg-light);
  border-radius: var(--border-radius-sm);
  padding-left: 18px;
}

.hub-date-badge {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  min-width: 52px;
  flex-shrink: 0;
}

.hub-date-day {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hub-date-month {
  font-size: 11px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
}

.hub-item-content h4 {
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: var(--text-main) !important;
  margin: 0 0 4px 0 !important;
}

.hub-item-content span.item-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

/* Sidebar Quick Portals & Helpline */
.hub-portal-list {
  padding: 8px 12px;
}

.hub-portal-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  margin-bottom: 8px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  color: var(--primary) !important;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none !important;
  transition: var(--transition);
}

.hub-portal-item:last-child {
  margin-bottom: 0;
}

.hub-portal-item:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  transform: translateX(4px);
  color: #1d4ed8 !important;
}

.hub-portal-item .portal-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hub-portal-item .portal-left i {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

.hub-helpline-card {
  padding: 20px;
  background: linear-gradient(135deg, #0b2545 0%, #071527 100%);
  color: #ffffff;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  border: 1px solid rgba(212,160,23,0.3);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.hub-helpline-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(212,160,23,0.12);
  pointer-events: none;
}

.hub-helpline-card h4 {
  color: #ffffff !important;
  font-size: 17px !important;
  margin: 0 0 6px 0 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hub-helpline-card h4 i {
  color: var(--gold);
}

.hub-helpline-card p {
  color: #cbd5e1;
  font-size: 13px !important;
  margin: 0 0 14px 0 !important;
}

.hub-helpline-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.hub-helpline-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  background: rgba(255,255,255,0.08);
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}

.hub-helpline-links a:hover {
  background: rgba(255,255,255,0.18);
  color: var(--gold-light) !important;
}

.hub-helpline-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(21,128,61,0.3);
}

.hub-helpline-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(21,128,61,0.45);
}

/* Facilities Cards */
.facility-modern-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  margin-bottom: 25px;
  height: calc(100% - 25px);
}

.facility-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

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

.facility-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.facility-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.facility-card-body h3 {
  font-size: 18px !important;
  margin: 0 0 8px 0 !important;
  color: var(--primary) !important;
  min-height: 44px;
}

.facility-card-body p {
  font-size: 14px !important;
  color: var(--text-muted);
  margin-bottom: 0 !important;
  flex-grow: 1;
}

/* Activity Carousel - Equal Height Boxes */
#our-products.owl-carousel .owl-stage {
  display: flex !important;
  align-items: stretch !important;
}

#our-products.owl-carousel .owl-item {
  display: flex !important;
  flex: 1 0 auto;
  height: auto !important;
}

#our-products.owl-carousel .owl-item .item {
  width: 100%;
  height: 100%;
  display: flex;
}

.activity-card-modern {
  background: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin: 10px 5px 25px 5px;
  transition: var(--transition);
  display: flex !important;
  flex-direction: column !important;
  height: calc(100% - 35px) !important;
  width: 100%;
}

.activity-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.activity-img-box {
  height: 190px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.activity-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.activity-card-modern:hover .activity-img-box img {
  transform: scale(1.06);
}

.activity-info-box {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.activity-info-box h4 {
  font-size: 16px !important;
  color: var(--primary) !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.35 !important;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.activity-info-box p {
  font-size: 13.5px !important;
  color: var(--text-muted);
  margin-bottom: 0 !important;
  line-height: 1.55 !important;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Statistics Counter Section */
.stats-counter-section {
  background: linear-gradient(135deg, var(--primary) 0%, #06162a 100%);
  color: #ffffff;
  padding: 60px 0;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}

.stats-counter-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/header_bg.png') repeat;
  opacity: 0.05;
}

.counter-box-modern {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.counter-icon-wrap {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 12px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.counter-title {
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Domain Stage Cards */
.domain-stage-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 25px 20px;
  text-align: center;
  transition: var(--transition);
  margin-bottom: 25px;
  box-shadow: var(--shadow-sm);
  height: calc(100% - 25px);
}

.domain-stage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.domain-stage-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  overflow: hidden;
  border: 3px solid var(--bg-light);
}

.domain-stage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.domain-stage-card h3 {
  font-size: 17px !important;
  color: var(--primary) !important;
  margin: 0 0 8px 0 !important;
}

.domain-stage-card p {
  font-size: 13.5px !important;
  color: var(--text-muted);
  margin: 0 !important;
}

/* Modern Inner Page Banner */
.modern-banner-bar {
  background: linear-gradient(135deg, var(--primary) 0%, #06162a 100%);
  color: #ffffff;
  padding: 60px 0 50px 0;
  margin-bottom: 45px;
  position: relative;
}

.modern-banner-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 10px !important;
}

.modern-breadcrumb {
  list-style: none !important;
  padding: 7px 16px !important;
  margin: 0 !important;
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  background: rgba(0, 0, 0, 0.35) !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  font-size: 13.5px !important;
  backdrop-filter: blur(4px) !important;
  line-height: 1 !important;
}

.modern-breadcrumb li {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #cbd5e1 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.modern-breadcrumb li a {
  color: #cbd5e1 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  transition: all 0.2s ease !important;
}

.modern-breadcrumb li a:hover {
  color: #ffffff !important;
}

.modern-breadcrumb li.active {
  color: #fbbf24 !important;
  font-weight: 700 !important;
}

.modern-breadcrumb li + li::before {
  content: "/" !important;
  color: #94a3b8 !important;
  padding: 0 8px !important;
  display: inline-block !important;
  font-weight: 400 !important;
}

/* TC Portal Modern Filter Form */
.tc-filter-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  padding: 30px;
  margin-bottom: 35px;
}

.tc-radio-pills {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tc-radio-pills label {
  cursor: pointer;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13.5px;
  transition: var(--transition);
}

.tc-radio-pills label.active,
.tc-radio-pills label:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.tc-radio-pills input[type="radio"] {
  display: none;
}

/* CBSE Mandatory Disclosure Document Table */
.cbse-doc-table {
  width: 100%;
  background: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.cbse-doc-table th {
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  padding: 14px 18px;
  font-size: 14px;
  text-transform: uppercase;
}

.cbse-doc-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  vertical-align: middle;
}

.cbse-doc-table tr:hover td {
  background: #f8fafc;
}

.btn-doc-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #1d4ed8 !important;
  font-weight: 600;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #bfdbfe;
  transition: var(--transition);
}

.btn-doc-download:hover {
  background: #1d4ed8;
  color: #ffffff !important;
}

/* ==========================================================================
   Pre-Footer Admission CTA Strip & Modern Footer
   ========================================================================== */

.footer-cta-strip {
  background: linear-gradient(135deg, #0b2545 0%, #15803d 100%);
  color: #ffffff;
  padding: 45px 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.2);
}

.footer-cta-strip::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at right center, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-strip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #071527;
  font-weight: 800;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.cta-strip-text h2 {
  color: #ffffff !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.25 !important;
}

.cta-strip-text p {
  color: #e2e8f0;
  font-size: 14.5px !important;
  margin: 0 !important;
}

.cta-strip-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cta-apply {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  transition: var(--transition);
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-cta-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.55);
  color: #ffffff !important;
}

.btn-cta-brochure {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-cta-brochure:hover {
  background: #ffffff;
  color: var(--primary) !important;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Modern 4-Column Footer */
.modern-footer {
  background: #06162a;
  color: #cbd5e1;
  padding-top: 55px;
  border-top: 3px solid var(--gold);
}

.footer-logo-card {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-logo-img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-tagline-text {
  color: #94a3b8;
  font-size: 13.5px !important;
  line-height: 1.65;
  margin-bottom: 15px !important;
}

.footer-badge-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-badge-box strong {
  color: var(--gold);
}

.footer-col {
  margin-bottom: 30px;
}

.footer-col h3 {
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.3px;
}

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

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 9px;
}

.footer-nav-list li a {
  color: #94a3b8;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none !important;
}

.footer-nav-list li a i {
  font-size: 11px;
  color: var(--secondary-light);
}

.footer-nav-list li a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: #94a3b8;
}

.footer-contact-info li i {
  color: var(--gold);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-info li a {
  color: #cbd5e1;
  text-decoration: none !important;
}

.footer-contact-info li a:hover {
  color: #ffffff;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-icons li a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.footer-social-icons li a.fb-btn:hover { background: #1877f2; border-color: #1877f2; transform: translateY(-2px); }
.footer-social-icons li a.insta-btn:hover { background: #e1306c; border-color: #e1306c; transform: translateY(-2px); }
.footer-social-icons li a.yt-btn:hover { background: #ff0000; border-color: #ff0000; transform: translateY(-2px); }
.footer-social-icons li a.threads-btn:hover { background: #000000; border-color: #000000; transform: translateY(-2px); }

/* Footer Bottom Bar */
.footer-bottom-bar {
  background: #020a14;
  padding: 18px 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #64748b;
}

.footer-bottom-links a {
  color: #94a3b8;
  margin: 0 5px;
  text-decoration: none !important;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  color: #ffffff !important;
  font-size: 20px !important;
  line-height: 1 !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: var(--transition);
  position: static !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.float-btn i {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 20px !important;
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-whatsapp {
  background: #25d366 !important;
}

.float-call {
  background: var(--secondary) !important;
}

.float-top {
  background: var(--primary) !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
}

.float-top.show-btn {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Modern Hero Carousel Section */
.hero-carousel-section {
  position: relative;
  background: var(--primary);
  overflow: hidden;
}

.hero-carousel-section .owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.hero-slide-item {
  min-height: 520px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex !important;
  align-items: center;
  position: relative;
  padding: 60px 0;
}

.hero-slide-content {
  max-width: 680px;
  position: relative;
  z-index: 5;
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.hero-title {
  font-size: 44px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
  margin-bottom: 15px !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.text-gold {
  color: #fef08a !important;
}

.hero-desc {
  font-size: 16.5px !important;
  color: #e2e8f0 !important;
  line-height: 1.6 !important;
  margin-bottom: 25px !important;
  text-shadow: 0 1px 5px rgba(0,0,0,0.4);
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #b91c1c 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(220,38,38,0.4);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(220,38,38,0.5);
  color: #ffffff !important;
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.8);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: #ffffff;
  color: var(--primary) !important;
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Custom Owl Navigation & Dots for Hero Slider */
#home-hero-carousel .owl-nav button.owl-prev,
#home-hero-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(11, 37, 69, 0.7) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2) !important;
}

#home-hero-carousel .owl-nav button.owl-prev:hover,
#home-hero-carousel .owl-nav button.owl-next:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #ffffff !important;
}

#home-hero-carousel .owl-nav button.owl-prev { left: 25px; }
#home-hero-carousel .owl-nav button.owl-next { right: 25px; }

#home-hero-carousel .owl-dots {
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
  text-align: center;
}

#home-hero-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transition: var(--transition);
}

#home-hero-carousel .owl-dots .owl-dot.active span,
#home-hero-carousel .owl-dots .owl-dot:hover span {
  background: var(--gold);
  transform: scale(1.3);
}

/* Custom Desk & Hub Link Buttons */
.btn-desk-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
  border-radius: 20px;
  padding: 6px 18px;
  transition: var(--transition);
  text-decoration: none !important;
}

.btn-desk-link:hover {
  background: var(--secondary);
  color: #ffffff !important;
}

.hub-header-link {
  color: #ffffff !important;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: underline;
  opacity: 0.9;
}

.hub-header-link:hover {
  opacity: 1;
  color: var(--gold-light) !important;
}

/* Inner Page Banner Bar */
.banner-bar {
  background: linear-gradient(135deg, #0b2545 0%, #133b68 100%);
  color: #ffffff;
  padding: 50px 0 45px 0;
  position: relative;
}

.banner-col h1 {
  color: #ffffff !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  margin: 0 0 8px 0 !important;
}

.banner-col p {
  color: #cbd5e1 !important;
  font-size: 15px !important;
  margin: 0 !important;
}

.banner-bar ul.location {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-bar ul.location li a {
  color: #cbd5e1;
  font-size: 13.5px;
  text-decoration: none;
}

.banner-bar ul.location li a.active {
  color: #fef08a;
  font-weight: 700;
}

.banner-bar ul.location li + li::before {
  content: "/";
  color: #94a3b8;
  margin-right: 8px;
}

/* Mobile Side Menu & Trigger */
.mobile-toggle-btn {
  background: var(--primary);
  border: none;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle-btn span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
}

/* Modern App-Style Mobile Drawer */
.mobile-side-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 86vw;
  height: 100%;
  background: #ffffff;
  z-index: 10000;
  box-shadow: -8px 0 30px rgba(11, 37, 69, 0.25);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-side-menu.active {
  right: 0;
}

.res-nav-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 37, 69, 0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9999;
}

/* Drawer Header */
.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0b2545 0%, #134074 100%);
  padding: 16px 18px;
  color: #ffffff;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-drawer-logo {
  height: 42px;
  width: auto;
  background: #ffffff;
  padding: 3px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.mobile-drawer-brand-text {
  display: flex;
  flex-direction: column;
}

.mobile-drawer-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.mobile-drawer-sub {
  font-size: 11px;
  color: #fbbf24;
  font-weight: 600;
  margin-top: 2px;
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  font-size: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease;
}

.mobile-drawer-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Drawer CTA Strip */
.mobile-drawer-cta-strip {
  padding: 10px 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.mobile-drawer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #e63946, #dc2626);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none !important;
  box-shadow: 0 3px 8px rgba(230, 57, 70, 0.25);
  position: relative;
}

.badge-pulsing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  animation: pulse-dot-white 1.4s infinite;
}

@keyframes pulse-dot-white {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* Drawer Navigation List */
.mobile-nav-list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  flex: 1 1 auto;
}

.mobile-nav-list li {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-list li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: #1e293b !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.15s ease;
}

.mobile-nav-list li > a:hover,
.mobile-nav-list li > a:active {
  background: #f8fafc;
}

.mobile-nav-list li.active > a {
  color: #0b2545 !important;
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  font-weight: 700;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  flex-shrink: 0;
}

.bg-blue    { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.bg-indigo  { background: linear-gradient(135deg, #4f46e5, #4338ca); }
.bg-amber   { background: linear-gradient(135deg, #d97706, #b45309); }
.bg-emerald { background: linear-gradient(135deg, #059669, #047857); }
.bg-purple  { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.bg-rose    { background: linear-gradient(135deg, #e11d48, #be123c); }
.bg-cyan    { background: linear-gradient(135deg, #0891b2, #0e7490); }
.bg-gold    { background: linear-gradient(135deg, #b45309, #92400e); }
.bg-teal    { background: linear-gradient(135deg, #0d9488, #0f766e); }

.drawer-pill-hot {
  background: #ef4444;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
  letter-spacing: 0.5px;
}

.submenu-arrow {
  font-size: 12px;
  color: #94a3b8;
  transition: transform 0.25s ease;
}

.mobile-nav-list li.open > a .submenu-arrow {
  transform: rotate(180deg);
  color: #0b2545;
}

/* Mobile Drawer Submenu */
.mobile-side-menu .submenu {
  display: none;
  list-style: none;
  padding: 4px 0 8px 0;
  margin: 0;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
}

.mobile-side-menu li.open > .submenu {
  display: block;
}

.mobile-side-menu .submenu li {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-side-menu .submenu li:last-child {
  border-bottom: none;
}

.mobile-side-menu .submenu li a {
  padding: 9px 16px 9px 58px;
  font-size: 13px;
  font-weight: 500;
  color: #475569 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-side-menu .submenu li a i {
  font-size: 11px;
  color: #94a3b8;
}

.mobile-side-menu .submenu li a:hover {
  color: #0b2545 !important;
  background: #f1f5f9;
}

/* Mobile Drawer Footer */
.mobile-drawer-footer {
  padding: 16px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  margin-top: auto;
}

.drawer-contact-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-drawer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none !important;
}

.btn-drawer-call {
  background: #ffffff;
  color: #15803d !important;
  border: 1.5px solid #16a34a;
}

.btn-drawer-wa {
  background: #25d366;
  color: #ffffff !important;
  border: 1.5px solid #25d366;
}

.drawer-footer-note {
  font-size: 11px;
  color: #64748b;
  text-align: center;
  margin: 0 !important;
}

/* ==========================================================================
   Mobile Sticky Bottom Navigation Bar (Screens < 768px)
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 16px rgba(11, 37, 69, 0.08);
  z-index: 9998;
  padding: 0 6px;
  justify-content: space-around;
  align-items: center;
}

@media (max-width: 767px) {
  .mobile-bottom-bar {
    display: flex;
  }
  body {
    padding-bottom: 65px !important;
  }
  .floating-actions {
    bottom: 72px !important;
    right: 12px !important;
  }
  /* Form elements touch friendly size */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important; /* Prevents auto-zoom in iOS Safari */
  }
}

.bottom-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  color: #64748b !important;
  text-decoration: none !important;
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 0;
  transition: color 0.2s ease, transform 0.15s ease;
  position: relative;
}

.bottom-bar-item i {
  font-size: 17px;
  margin-bottom: 3px;
  transition: transform 0.2s ease;
}

.bottom-bar-item:active {
  transform: scale(0.92);
}

.bottom-bar-item.active {
  color: #2563eb !important;
  font-weight: 700;
}

.bottom-bar-item.active i {
  color: #2563eb;
  transform: scale(1.1);
}

/* Center Highlight Button (WhatsApp) */
.bottom-bar-center {
  margin-top: -16px;
}

.bottom-bar-center .center-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  border: 3px solid #ffffff;
  margin-bottom: 2px;
  transition: transform 0.2s ease;
}

.bottom-bar-center .center-bubble i {
  font-size: 22px;
  margin-bottom: 0;
  color: #ffffff !important;
}

.bottom-bar-center:hover .center-bubble,
.bottom-bar-center:active .center-bubble {
  transform: scale(1.08);
}

/* Responsive Rules */
@media (max-width: 991px) {
  .site-logo-img {
    height: 58px;
  }
  .header-brand-section {
    padding: 12px 0;
  }
  .quick-actions-bar {
    margin-top: 15px;
  }
  .hero-slide-item {
    min-height: 420px;
    padding: 40px 0;
  }
  .hero-title {
    font-size: 28px !important;
  }
  .hero-desc {
    font-size: 14.5px !important;
  }
}

/* ==========================================================================
   Photo Gallery Cards & Lightbox Modal
   ========================================================================== */
.gallery-photo-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gallery-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.gallery-card-img-holder {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #0b2545;
}

.gallery-card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-photo-card:hover .gallery-card-img-holder img {
  transform: scale(1.08);
}

.gallery-card-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 21, 39, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-photo-card:hover .gallery-card-hover-overlay {
  opacity: 1;
}

.gallery-zoom-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #071527;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-photo-card:hover .gallery-zoom-circle {
  transform: scale(1);
}

.gallery-hover-text {
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gallery-card-footer {
  padding: 12px 15px;
  background: #ffffff;
  text-align: center;
  border-top: 1px solid #f1f5f9;
}

.gallery-card-footer h5 {
  margin: 0 !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Lightbox Modal Structure */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 21, 39, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.lightbox-content-wrap {
  position: relative;
  z-index: 10;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lightbox-image-holder {
  position: relative;
  text-align: center;
  max-width: 86vw;
  max-height: 86vh;
  pointer-events: auto;
  animation: lightboxZoomIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxZoomIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-image-holder img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.18);
  display: block;
  margin: 0 auto;
  user-select: none;
}

.lightbox-caption {
  margin-top: 14px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
}

.lightbox-counter {
  font-size: 12.5px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: 700;
}

.lightbox-close {
  position: fixed;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
  line-height: 1;
  pointer-events: auto;
}

.lightbox-close:hover {
  background: #dc2626;
  color: #ffffff;
  transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
  pointer-events: auto;
}

.lightbox-nav:hover {
  background: var(--gold);
  color: #071527;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-image-holder img { max-height: 60vh; }
  .gallery-card-img-holder { height: 180px; }
}

/* ==========================================================================
   Video Gallery Cards & Video Lightbox Modal
   ========================================================================== */
.video-gallery-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-gallery-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 35px rgba(11, 37, 69, 0.15);
  border-color: #dc2626;
}

.video-thumb-holder {
  height: 210px;
  position: relative;
  background: #000000;
  overflow: hidden;
}

.video-thumb-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  opacity: 0.92;
}

.video-gallery-card:hover .video-thumb-holder img {
  transform: scale(1.08);
  opacity: 1;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 21, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-gallery-card:hover .video-play-overlay {
  background: rgba(7, 21, 39, 0.2);
}

.video-play-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #dc2626;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-left: 4px;
}

.video-gallery-card:hover .video-play-btn {
  transform: scale(1.15);
  background: #b91c1c;
  box-shadow: 0 0 0 10px rgba(220, 38, 38, 0.5);
}

.video-card-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  background: #ffffff;
}

.video-card-body h4 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  line-height: 1.4 !important;
  margin: 0 0 10px 0 !important;
}

.video-meta-badge {
  font-size: 12.5px;
  font-weight: 700;
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Video Lightbox Modal */
.video-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 21, 39, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.video-lightbox-box {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  background: #0b2545;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: lightboxZoomIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-lightbox-header {
  padding: 14px 20px;
  background: #071527;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-lightbox-header h4 {
  margin: 0 !important;
  font-size: 15px !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 85%;
}

.video-lightbox-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.video-lightbox-close:hover {
  background: #dc2626;
  transform: rotate(90deg) scale(1.1);
}

.video-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  background: #000000;
}

.video-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Universal SGS Success Modal */
@keyframes sgsFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes sgsZoomIn {
  from { opacity: 0; transform: scale(0.92) translateY(15px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.sgs-success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 37, 69, 0.75);
  backdrop-filter: blur(5px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: sgsFadeIn 0.3s ease;
}

.sgs-success-modal-card {
  background: #ffffff;
  max-width: 520px;
  width: 100%;
  border-radius: 18px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  position: relative;
  border-top: 6px solid #16a34a;
  animation: sgsZoomIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sgs-success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 16px auto;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.25);
}

.sgs-success-modal-card h3 {
  color: #0b2545 !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  margin: 0 0 8px 0 !important;
}

.sgs-success-ref-pill {
  background: #eff6ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 15px;
  border: 1px solid #bfdbfe;
  letter-spacing: 0.5px;
}

.sgs-success-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sgs-success-summary-box {
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 14px 18px;
  margin-bottom: 22px;
  text-align: left;
}

.sgs-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px dashed #e2e8f0;
}
.sgs-summary-row:last-child {
  border-bottom: none;
}
.sgs-summary-row span {
  color: #64748b;
  font-weight: 600;
}
.sgs-summary-row strong {
  color: #0b2545;
}

.sgs-success-btn-wrap .btn-primary {
  background: #0b2545 !important;
  border: none !important;
  height: 46px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: #ffffff !important;
  transition: all 0.3s ease !important;
}
.sgs-success-btn-wrap .btn-primary:hover {
  background: #134074 !important;
  transform: translateY(-2px) !important;
}

/* ==========================================================================
   Overview Page Modern Styling
   ========================================================================== */
.overview-intro-box {
  transition: box-shadow 0.3s ease;
}
.overview-intro-box:hover {
  box-shadow: 0 16px 45px rgba(11, 37, 69, 0.09) !important;
}

.overview-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(11, 37, 69, 0.1) !important;
}

.overview-pillar-card {
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.overview-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(11, 37, 69, 0.12) !important;
}

.overview-strength-box:hover {
  background: #ffffff !important;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(11, 37, 69, 0.08) !important;
  border-color: #cbd5e1 !important;
}

.overview-facility-card {
  transition: all 0.35s ease;
}
.overview-facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(11, 37, 69, 0.12) !important;
}
.overview-facility-card:hover img {
  transform: scale(1.06);
}
.overview-facility-card img {
  transition: transform 0.5s ease;
}

.overview-vision-quote {
  background: linear-gradient(135deg, #0b2545 0%, #133b68 100%) !important;
  color: #ffffff !important;
  background-size: 200% 200%;
}

.overview-vision-quote h3,
.overview-vision-quote .overview-quote-text {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.overview-vision-quote p,
.overview-vision-quote .overview-quote-author {
  color: #f8fafc !important;
}

.overview-vision-quote strong {
  color: #fbbf24 !important;
}

@media (max-width: 991px) {
  .overview-intro-box {
    padding: 30px 20px !important;
  }
  .overview-visual-stack {
    margin-top: 20px !important;
  }
}

@media (max-width: 767px) {
  .modern-banner-title {
    font-size: 26px !important;
  }
  .overview-hero-tags {
    gap: 6px !important;
  }
  .overview-intro-box h2 {
    font-size: 24px !important;
  }
  .overview-cta-strip {
    padding: 25px 15px !important;
  }
}
