/* ==========================================================================
   Starling Education & Computer Institute - Master Stylesheet
   Designed for Ultra-Fast Loading, Eye-Catching Aesthetics & 100% Responsiveness
   ========================================================================== */

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

:root {
  --primary: #c1121f;
  --primary-rgb: 193, 18, 31;
  --primary-dark: #07152b;
  --primary-light: #df1b2d;
  --accent-red: #d90429;
  --accent-red-hover: #ef233c;
  --accent-red-light: #fff1f2;
  --accent-gold: #f59e0b;
  --accent-gold-dark: #d97706;
  --accent-teal: #0d9488;
  --brand-navy: #0f172a;

  --bg-body: #fbfcfe;
  --bg-card: #ffffff;
  --bg-alt: #fff5f5;

  --text-main: #0f172a;
  --text-muted: #526173;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --border-color: #f1d5d8;
  --border-focus: #c1121f;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 10px -1px rgba(193, 18, 31, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 28px -3px rgba(120, 0, 0, 0.12), 0 4px 10px -2px rgba(120, 0, 0, 0.06);
  --shadow-hover: 0 20px 38px -5px rgba(193, 18, 31, 0.22), 0 10px 18px -5px rgba(0, 0, 0, 0.08);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 70px 0;
}

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

.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 4, 41, 0.1);
  color: var(--accent-red);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.badge-tag.gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold-dark);
}

.badge-tag.blue {
  background: rgba(11, 34, 77, 0.1);
  color: var(--primary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 14px;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red) 0%, #b80020 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(217, 4, 41, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef233c 0%, var(--accent-red) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 4, 41, 0.45);
  color: #fff;
}

.btn-navy {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(11, 34, 77, 0.25);
}

.btn-navy:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 34, 77, 0.35);
  color: #fff;
}

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

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

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

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

.btn-sm {
  padding: 7px 10px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.1rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
/* ==========================================================================
   REFERENCE-STYLE ATTRACTIVE HEADER SYSTEM (As requested)
   ========================================================================== */

/* 1. Top Trust Strip */
.topbar-trust {
  background: #061531;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badges-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 600;
}

.trust-badges-left .sep,
.trust-contacts-right .sep {
  color: rgba(255, 255, 255, 0.3);
}

.highlight-trust {
  color: #ffb703;
  font-weight: 700;
}

.trust-contacts-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.trust-contacts-right a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.9);
}

.trust-contacts-right a:hover {
  color: #ffffff;
}

.social-mini {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.social-mini:hover {
  background: var(--accent-red);
  transform: translateY(-2px);
}

/* 2. Main Brand Header Bar (Row 1) */
.header-brand-bar {
  background: linear-gradient(135deg, #07152b 0%, #0d2146 55%, #122b59 100%);
  padding: 12px 0;
  border-top: 3px solid #d90429;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.brand-bar-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.main-brand-logo {
  display: flex;
  align-items: center;
}

.main-brand-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.header-est-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 5px 13px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.est-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 8px #fbbf24;
}

.brand-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-social-btn.fb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 119, 242, 0.18);
  border: 1px solid rgba(24, 119, 242, 0.45);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}

.header-social-btn.fb:hover {
  background: #1877f2;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.4);
  transform: translateY(-2px);
}

.brand-contact-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.16);
}

.header-phone-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(217, 4, 41, 0.18);
  border: 1px solid rgba(217, 4, 41, 0.4);
  color: #ff4d6d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-phone-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.header-phone-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.header-phone-numbers {
  font-size: 0.94rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.header-phone-numbers a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
}

.header-phone-numbers a:hover {
  color: #fbbf24;
}

.phone-slash {
  color: rgba(255, 255, 255, 0.35);
}

/* Header Verify Certificate Pill Button */
.header-verify-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(217, 4, 41, 0.16);
  border: 1.5px solid #d90429;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.header-verify-pill:hover {
  background: #d90429;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(217, 4, 41, 0.45);
  transform: translateY(-2px);
}

/* Header Course Search Bar */
.header-search-wrap {
  flex: 1;
  max-width: 460px;
  position: relative;
  margin: 0 15px;
}

.header-search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-icon-decor {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.header-search-input {
  width: 100%;
  height: 42px;
  padding: 0 95px 0 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  color: #ffffff;
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.25s ease;
}

.header-search-input:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: #ff4d6d;
  box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.25);
}

.header-search-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.header-search-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  background: linear-gradient(135deg, #d90429 0%, #b00321 100%);
  color: #ffffff;
  border: none;
  padding: 0 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header-search-btn:hover {
  background: #ff0033;
  box-shadow: 0 2px 10px rgba(217, 4, 41, 0.5);
}

.search-autocomplete-box {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: none;
  z-index: 100000;
  max-height: 380px;
  overflow-y: auto;
}

.search-autocomplete-box.active {
  display: block;
}

.search-autocomplete-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: #1e293b;
  transition: background 0.15s ease;
}

.search-autocomplete-item:hover,
.search-autocomplete-item.highlighted {
  background: #f8fafc;
}

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

.search-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.search-item-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;
}

.search-item-title mark {
  background: #ffedd5;
  color: #c2410c;
  padding: 0 2px;
  border-radius: 2px;
}

.search-item-meta {
  font-size: 0.78rem;
  color: #64748b;
}

.search-item-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.search-item-badge.badge-deg {
  background: #fee2e2;
  color: #991b1b;
}

.search-item-badge.badge-comp {
  background: #e0f2fe;
  color: #0369a1;
}

.search-item-badge.badge-med {
  background: #dcfce7;
  color: #166534;
}

.search-item-badge.badge-lib {
  background: #fef3c7;
  color: #92400e;
}

.search-autocomplete-empty {
  padding: 16px;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
}

/* Floating WhatsApp Widget on All Pages (Reference Screenshot 3) */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.65), 0 3px 8px rgba(0, 0, 0, 0.2);
}

.wa-pulse-ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2.5px solid rgba(37, 211, 102, 0.6);
  pointer-events: none;
  animation: waPulse 2s infinite ease-out;
}

@keyframes waPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.95;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.45;
  }

  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

.wa-icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Drawer Backdrop Overlay */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 19, 36, 0.65);
  backdrop-filter: blur(3px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop Visibility Rules */
@media (min-width: 769px) {

  .mobile-drawer-header,
  .mobile-drawer-bottom-actions,
  .mobile-nav-icon,
  .mobile-nav-arrow,
  .drawer-backdrop,
  .mobile-search-toggle {
    display: none !important;
  }

  .nav-item-left {
    display: inline-flex;
    align-items: center;
  }
}

/* Row 2: Main Navigation Bar */
.main-header {
  background: #ffffff;
  box-shadow: 0 4px 20px -3px rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #e2e8f0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 14px 14px;
  font-weight: 700;
  font-size: 0.86rem;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: var(--transition);
  border-radius: 6px;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-red);
  background: rgba(217, 4, 41, 0.05);
}

.nav-link.active {
  color: var(--accent-red);
  background: rgba(217, 4, 41, 0.08);
  font-weight: 800;
}

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

/* Mobile Drawer Dedicated CTA Button */
.mobile-menu-cta {
  display: none;
}

.btn-mobile-verify {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #d90429 0%, #b00321 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(217, 4, 41, 0.25);
  margin-top: 10px;
}

/* ==========================================================================
   UPGRADED HERO SECTION (Inspired by Reference Image 3)
/* ==========================================================================
   UPGRADED HIGH-CONVERSION HERO SECTION (2-Column Premium Layout)
   ========================================================================== */
.hero-premium {
  position: relative;
  background: linear-gradient(135deg, #051329 0%, #0b224d 45%, #163674 100%);
  color: #ffffff;
  padding: 25px 0 75px;
  overflow: hidden;
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(225, 29, 72, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(245, 158, 11, 0.15) 0%, transparent 45%),
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 26px 26px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 45px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: #fde047;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-main-title span.highlight-red {
  color: #ff4d6d;
  text-shadow: 0 2px 15px rgba(255, 77, 109, 0.4);
}

.hero-main-title span.highlight-gold {
  color: #f59e0b;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 24px;
}

.hero-subtitle strong {
  color: #ffffff;
}

/* 4 Check Points in Hero */
.hero-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: #f1f5f9;
  line-height: 1.35;
  backdrop-filter: blur(4px);
}

.hero-point-icon {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Hero CTA Row */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d90429 0%, #b80020 100%);
  color: #ffffff !important;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(217, 4, 41, 0.45);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(217, 4, 41, 0.6);
  background: #ef233c;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

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

/* Stat Counters Row inside Hero */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stat-box {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: #f59e0b;
  line-height: 1.1;
}

.hero-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Right Column: Glassmorphism Fast Admission Desk Card */
.hero-inquiry-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(225, 29, 72, 0.3);
  position: relative;
  color: var(--text-main);
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fee2e2;
  color: #b91c1c;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.hero-inquiry-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 6px;
}

.hero-inquiry-sub {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 20px;
}

.hero-form-group {
  margin-bottom: 14px;
}

.hero-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.hero-input,
.hero-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  transition: var(--transition);
}

.hero-input:focus,
.hero-select:focus {
  border-color: #d90429;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.15);
}

.btn-submit-hero {
  width: 100%;
  background: linear-gradient(135deg, #d90429 0%, #b80020 100%);
  color: #ffffff;
  border: none;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(217, 4, 41, 0.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 18px;
}

.btn-submit-hero:hover {
  background: #ef233c;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(217, 4, 41, 0.55);
}

.hero-card-trust-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 600;
}

/* ==========================================================================
   SEO & AI SEARCH ACCORDION FAQ SECTION
   ========================================================================== */
.faq-section {
  background: #ffffff;
  padding: 70px 0;
  border-top: 1px solid var(--border-color);
}

.faq-accordion {
  max-width: 900px;
  margin: 35px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #f8fafc;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-item.active {
  border-color: var(--accent-red);
  box-shadow: 0 6px 18px rgba(217, 4, 41, 0.08);
  background: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent-red);
}

.faq-icon-arrow {
  color: #64748b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--accent-red);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
  border-top: 1px solid #f1f5f9;
}

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

/* Course Card Action Enhancements */
.course-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.btn-course-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25d366;
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}

.btn-course-wa:hover {
  background: #1eb855;
  transform: translateY(-1px);
}

/* Header Partner Pill & Social Links in Row 1 */
.header-partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: #ffffff;
  font-size: 0.84rem;
  backdrop-filter: blur(4px);
}

.partner-pill-icon {
  color: #f59e0b;
  display: flex;
  align-items: center;
}

.partner-pill-text strong {
  color: #fde047;
}

.header-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.header-social-btn:hover {
  transform: translateY(-2px);
}

.header-social-btn.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.header-social-btn.insta:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

.header-social-btn.yt:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.header-social-btn.wa {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.4);
  color: #25d366 !important;
}

.header-social-btn.wa:hover {
  background: #25d366;
  color: #ffffff !important;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-main-title {
    font-size: 2.3rem;
  }

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

  .hero-points-grid {
    grid-template-columns: 1fr;
  }

  .header-partner-pill {
    display: none;
  }
}

/* ==========================================================================
   ACHIEVEMENTS & AWARDS SECTION (Matching User's Reference Image 1)
   ========================================================================== */
.achievements-section {
  background: #ffffff;
  padding: 70px 0;
}

.achievements-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  text-align: center;
  color: #0f172a;
  letter-spacing: 1px;
  margin-bottom: 10px;
  margin-top: 60px;
  text-transform: uppercase;
}

.awards-date-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.awards-date-filter-bar .filter-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.awards-filter-pills {
  display: inline-flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: var(--radius-full);
  gap: 4px;
  border: 1px solid #e2e8f0;
}

.award-filter-btn {
  background: transparent;
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.award-filter-btn:hover {
  color: var(--accent-red);
}

.award-filter-btn.active {
  background: #ffffff;
  color: var(--accent-red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.award-date-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(4px);
  color: #fbbf24;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(251, 191, 36, 0.4);
}

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

.achievement-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
  height: 100%;
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.achievement-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
  position: relative;
  flex-shrink: 0;
}

.achievement-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

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

.achievement-img-wrap::after {
  content: '🔍 Click to view';
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.achievement-card:hover .achievement-img-wrap::after {
  opacity: 1;
  transform: translateY(0);
}

.achievement-body {
  padding: 18px 14px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.achievement-card-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.achievement-card-sub {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-main-h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .brand-bar-grid {
    flex-wrap: wrap;
    gap: 12px;
  }

  .header-search-wrap {
    order: 3;
    max-width: 100%;
    width: 100%;
  }

  .header-contact-phones .header-phone-box {
    display: none;
  }

  .header-contact-phones {
    gap: 10px;
  }

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

  .hero-main-h1 {
    font-size: 2.1rem;
  }

  .hero-glow-subhead {
    font-size: 1.4rem;
  }

  .hero-stat-pills {
    flex-direction: column;
    width: 100%;
  }

  .stat-pill {
    width: 100%;
    justify-content: center;
  }
}

.chief-guest-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #d90429 0%, #ba181b 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  align-self: center;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.achievement-highlight-banner {
  background: linear-gradient(135deg, #fff1f2 0%, #fee2e2 50%, #ffffff 100%);
  border: 1.5px solid #fecdd3;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.08);
}

.achievement-highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #c1121f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(193, 18, 31, 0.3);
}

.achievement-highlight-text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #9b0017;
  margin-bottom: 4px;
}

.achievement-highlight-text p {
  font-size: 0.9rem;
  color: #334155;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   SUBHARTI UNIVERSITY ADMISSION POSTER SHOWCASE
   ========================================================================== */
.admission-poster-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 70px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.admission-poster-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 40px;
  align-items: center;
}

.admission-poster-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border: 4px solid #ffffff;
  transition: var(--transition);
  cursor: pointer;
}

.admission-poster-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 25px 50px rgba(193, 18, 31, 0.22);
}

.admission-poster-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.admission-poster-zoom-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.88);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  transition: var(--transition);
  white-space: nowrap;
}

.admission-poster-card:hover .admission-poster-zoom-hint {
  background: var(--accent-red);
}

.admission-poster-content {
  display: flex;
  flex-direction: column;
}

.programmes-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.programme-category-box {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.programme-category-box:hover {
  border-color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.programme-category-box h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.programme-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.programme-tag {
  background: #f1f5f9;
  color: #0f172a;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid #e2e8f0;
}

.admission-cta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.admission-helpline-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fef2f2;
  border: 1.5px dashed #f87171;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  margin-top: 18px;
}

@media (max-width: 991px) {
  .admission-poster-grid {
    grid-template-columns: 1fr;
  }

  .admission-poster-card {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   NATIONAL AWARD SHOWCASE (THE RISING 2026)
   ========================================================================== */
.national-award-showcase {
  background: #ffffff;
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.national-award-card-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
  border: 2px solid rgba(193, 18, 31, 0.18);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 15px 35px rgba(193, 18, 31, 0.08);
  position: relative;
}

.award-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

.award-photo-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

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

.award-photo-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #1e293b;
}

.award-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.award-photo-card:hover .award-photo-wrapper img {
  transform: scale(1.05);
}

.award-badge-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #d90429 0%, #9b0017 100%);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.award-badge-pill.gold {
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
}

.award-zoom-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.award-photo-card:hover .award-zoom-icon {
  opacity: 1;
}

.award-photo-caption {
  padding: 20px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
}

.award-photo-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

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

@media (max-width: 768px) {
  .award-dual-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .national-award-card-wrap {
    padding: 24px 16px;
  }
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 360px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

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

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-link:hover {
  background: var(--accent-red-light);
  color: var(--accent-red);
  padding-left: 18px;
}

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

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #071733 0%, #0b224d 55%, #153770 100%);
  color: #fff;
  padding: 80px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 4, 41, 0.22) 0%, rgba(217, 4, 41, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffde59;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  color: #ff4d6d;
  position: relative;
  display: inline-block;
}

.hero-title .highlight-gold {
  color: #f59e0b;
}

.hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
}

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

.hero-highlights {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Hero Inquiry Card */
.hero-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.hero-card-header {
  margin-bottom: 20px;
  text-align: center;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.hero-card-subtitle {
  font-size: 0.86rem;
  color: var(--text-muted);
}

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

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

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.94rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.12);
}

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

/* ==========================================================================
   FEATURE STRIP / KEY VALUE PROPS
   ========================================================================== */
.features-strip {
  background: #ffffff;
  padding: 24px 0;
  margin-top: -35px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

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

.feature-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-red-light);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-box:nth-child(2) .feature-icon-wrap {
  background: #eff6ff;
  color: #2563eb;
}

.feature-box:nth-child(3) .feature-icon-wrap {
  background: #fef3c7;
  color: var(--accent-gold-dark);
}

.feature-box:nth-child(4) .feature-icon-wrap {
  background: #ecfdf5;
  color: var(--accent-teal);
}

.feature-info h4 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.feature-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   ABOUT & HONORS SECTION (SVSU MEERUT AWARD)
   ========================================================================== */
.about-section {
  background: #ffffff;
}

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

.award-spotlight-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-color);
  background: #fff;
}

.award-badge-top {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.award-spotlight-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.award-spotlight-card:hover img {
  transform: scale(1.02);
}

.award-card-caption {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid var(--border-color);
}

.award-card-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.award-card-caption p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--accent-red);
}

.about-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

.point-item .icon {
  color: #10b981;
  min-width: 20px;
  margin-top: 2px;
}

/* ==========================================================================
   COURSES SHOWCASE & TABS
   ========================================================================== */
.courses-section {
  background: var(--bg-alt);
}

.tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(11, 34, 77, 0.25);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.course-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(217, 4, 41, 0.3);
}

.course-category-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-red);
  background: var(--accent-red-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  width: fit-content;
}

.course-category-tag.blue {
  color: #2563eb;
  background: #eff6ff;
}

.course-category-tag.green {
  color: #059669;
  background: #ecfdf5;
}

.course-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

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

.course-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.course-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

/* ==========================================================================
   LIBRARY SECTION - 1ST & BIGGEST IN HODAL
   ========================================================================== */
.library-section {
  background: #ffffff;
  position: relative;
}

.library-banner-box {
  background: linear-gradient(135deg, #0b224d 0%, #163a7d 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.library-content h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.library-content h3 span {
  color: #f59e0b;
}

.library-content p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

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

.lib-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

.lib-item .icon {
  color: #f59e0b;
}

.library-media {
  position: relative;
}

.library-media img {
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

/* ==========================================================================
   RESULT CHECKER & VERIFICATION CARD (As per Screenshot 5)
   ========================================================================== */
.result-section {
  background: var(--bg-alt);
}

.result-card-box {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.result-search-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 30px;
  color: #fff;
  text-align: center;
}

.result-search-bar h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.result-search-bar p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.result-search-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.result-input {
  flex: 1;
  padding: 13px 18px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  outline: none;
  color: var(--text-main);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-certificate-wrapper {
  padding: 36px;
  background: #ffffff;
  position: relative;
}

/* Official Certificate Card Preview */
.certificate-preview-card {
  border: 2px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.certificate-preview-card::before {
  content: "STARLING VERIFIED";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(11, 34, 77, 0.035);
  letter-spacing: 6px;
  pointer-events: none;
  white-space: nowrap;
}

.cert-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 24px;
}

.cert-header h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
}

.cert-header p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.cert-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.cert-table tr:nth-child(odd) {
  background: #f8fafc;
}

.cert-table th,
.cert-table td {
  padding: 12px 18px;
  font-size: 0.94rem;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.cert-table th {
  width: 40%;
  color: var(--primary);
  font-weight: 700;
  background: #f1f5f9;
}

.cert-table td {
  font-weight: 600;
  color: var(--text-main);
}

.cert-table .badge-grade {
  display: inline-block;
  background: #10b981;
  color: #fff;
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.cert-footer-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

/* ==========================================================================
   DATA TABLES (Degree Courses & Fees)
   ========================================================================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: #fff;
  border: 1px solid var(--border-color);
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  text-align: left;
}

.modern-table thead {
  background: var(--primary);
  color: #fff;
}

.modern-table th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border-bottom: 2px solid var(--primary-dark);
}

.modern-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
  vertical-align: middle;
}

.modern-table tbody tr:hover {
  background: rgba(217, 4, 41, 0.02);
}

.modern-table .sr-no {
  font-weight: 700;
  color: var(--accent-red);
  width: 70px;
}

/* ==========================================================================
   GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 23, 51, 0.88) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  transition: var(--transition);
}

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

.gallery-overlay h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

/* Modal Lightbox */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--accent-red);
}

/* ==========================================================================
   FOOTER (Deep Luxury Midnight Obsidian & Royal Navy Theme)
   ========================================================================== */
.footer {
  background: radial-gradient(circle at 15% 20%, #0c1d3b 0%, #061021 60%, #020710 100%);
  color: #94a3b8;
  padding: 70px 0 0;
  border-top: 4px solid var(--accent-red);
  position: relative;
  box-shadow: 0 -10px 40px rgba(217, 4, 41, 0.12);
}

.footer-logo-wrap {
  margin-bottom: 18px;
}

.footer-main-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
}

.footer-established-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: 10px;
}

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #cbd5e1;
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.3px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--accent-red);
  border-radius: 2px;
}

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

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #cbd5e1;
  transition: var(--transition);
  text-decoration: none;
}

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

.footer-links a .icon {
  color: var(--accent-red);
  transition: transform 0.2s ease;
}

.footer-links a:hover .icon {
  transform: translateX(2px);
}

.contact-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(217, 4, 41, 0.15);
  border: 1px solid rgba(217, 4, 41, 0.35);
  color: #ff4d6d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.footer-phone-link {
  display: block;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-phone-link.sub {
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 2px;
}

.footer-phone-link:hover,
.footer-email-link:hover {
  color: #fbbf24;
}

.footer-email-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
  text-decoration: none;
}

.social-circle:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(217, 4, 41, 0.4);
}

/* Trust Strip Above Copyright */
.footer-trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.25);
  margin-top: 20px;
}

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

.footer-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #e2e8f0;
}

.footer-trust-item .trust-icon {
  color: #fbbf24;
  display: flex;
  align-items: center;
}

/* Copyright Bar */
.footer-bottom {
  background: #02050b;
  padding: 18px 0;
  text-align: center;
  font-size: 0.86rem;
  color: #64748b;
}

.footer-bottom p {
  color: #94a3b8;
}

.footer-bottom strong {
  color: #fbbf24;
}

/* ==========================================================================
   STICKY MOBILE FLOATING ACTION BAR
   ========================================================================== */
.mobile-floating-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  padding: 8px 12px;
  z-index: 999;
  border-top: 1px solid var(--border-color);
}

.mobile-floating-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
}

.mobile-float-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (100% Mobile & Tablet Perfection)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

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

  .library-banner-box {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .header-brand-bar {
    padding: 10px 0;
    position: relative;
    z-index: 1001;
  }

  .brand-bar-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0;
  }

  .brand-bar-left {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
  }

  .main-brand-logo {
    display: flex;
    align-items: center;
  }

  .main-brand-logo img {
    height: 55px;
    max-width: 235px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  }

  /* Hide verify certificate pill on mobile header */
  .header-verify-pill {
    display: none !important;
  }

  /* Hide helpline phone box on mobile header */
  .header-phone-box {
    display: none !important;
  }

  /* Hide search bar on mobile screen entirely (desktop only) */
  .header-search-wrap {
    display: none !important;
  }

  .brand-bar-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.22);
  }

  .mobile-toggle svg {
    pointer-events: none;
  }

  .main-header {
    border: none;
    box-shadow: none;
    background: transparent;
    height: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    position: static;
  }

  .navbar {
    padding: 0;
    min-height: 0;
    border: none;
  }

  /* Pixel-Perfect Mobile Drawer Navigation (Reference Screenshot 2) */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(330px, 86vw);
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex !important;
    transform: translateX(105%);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.35);
    z-index: 100000;
  }

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

  /* Drawer Top Header (matching Reference Screenshot 2) */
  .mobile-drawer-header {
    background: #07152b;
    border-bottom: 2.5px solid #d90429;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
  }

  .drawer-header-brand {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .drawer-header-icon {
    color: #f59e0b;
    display: flex;
    align-items: center;
  }

  .drawer-header-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .drawer-close-btn {
    width: 32px;
    height: 32px;
    background: #122d62;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .drawer-close-btn:hover {
    background: #d90429;
  }

  /* Drawer Nav Items List */
  .nav-item {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #f1f5f9;
    list-style: none;
  }

  .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    color: #1e293b;
    font-size: 0.94rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0;
    border-bottom: none;
    transition: background 0.15s ease, color 0.15s ease;
  }

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

  .mobile-nav-icon {
    color: #d90429;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .mobile-nav-arrow {
    color: #94a3b8;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    transition: transform 0.2s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    background: #fff5f5;
    color: #d90429;
  }

  .nav-link.active .mobile-nav-icon {
    color: #d90429;
  }

  .nav-link.active .mobile-nav-arrow {
    color: #d90429;
  }

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

  /* Dropdown inside Mobile Drawer */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 4px 0;
    display: none;
  }

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

  .nav-item.dropdown-open .nav-chevron-icon {
    transform: rotate(180deg);
  }

  .dropdown-link {
    padding: 11px 18px 11px 44px;
    font-size: 0.84rem;
    color: #334155;
    border-radius: 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .dropdown-link:hover {
    background: #fee2e2;
    color: #991b1b;
    padding-left: 48px;
  }

  /* Drawer Bottom Actions (Reference Screenshot 2) */
  .mobile-drawer-bottom-actions {
    margin-top: auto;
    padding: 16px 18px 24px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    list-style: none;
  }

  .drawer-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.94rem;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
  }

  .drawer-action-btn.btn-call {
    background: #d90429;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(217, 4, 41, 0.25);
  }

  .drawer-action-btn.btn-whatsapp {
    background: #25d366;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  }

  .drawer-action-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .features-strip {
    margin-top: 20px;
  }

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

  .library-features-list {
    grid-template-columns: 1fr;
  }

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

  .mobile-floating-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }

  .result-certificate-wrapper {
    padding: 18px 12px;
  }

  .certificate-preview-card {
    padding: 18px 14px;
  }

  .cert-table th,
  .cert-table td {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

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

/* ==========================================================================
   GLOBAL PRINT RULES - EXCLUSIVE CLEAN DOCUMENT PRINTING
   ========================================================================== */
@media print {

  header,
  nav,
  footer,
  aside,
  .header-brand-bar,
  .main-navbar,
  .mobile-menu-drawer,
  .drawer-backdrop,
  .site-footer,
  .footer-bottom,
  .floating-whatsapp-btn,
  .no-print,
  #drawerBackdrop {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}