/* ==========================================================
   VIDYAPANT ACADEMY - MODERN STYLESHEET
   Brand Colors: Vidyapant Crimson (#dc2626), Navy (#0f172a), Gold (#f59e0b)
   ========================================================== */

:root {
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --primary-light: #fef2f2;
  --primary-rgb: 220, 38, 38;
  --navy: #0f172a;
  --navy-light: #1e293b;
  --navy-dark: #090d16;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.12);
  --shadow-hover: 0 20px 35px rgba(220, 38, 38, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

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

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

.text-primary-red { color: var(--primary) !important; }
.text-navy { color: var(--navy) !important; }
.bg-light-soft { background-color: var(--bg-light) !important; }
.bg-navy { background-color: var(--navy) !important; color: #ffffff !important; }
.bg-primary-red { background-color: var(--primary) !important; color: #ffffff !important; }

/* ---------------- Top Bar ---------------- */
.top-bar {
  background-color: var(--navy-dark);
  color: #e2e8f0;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar a {
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar a:hover {
  color: #ffffff;
}
.top-bar .social-icons a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--transition);
}
.top-bar .social-icons a:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ---------------- Navigation Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.navbar-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--navy);
  padding: 0.75rem 0.95rem !important;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}
.dropdown-menu {
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 8px 0;
  animation: fadeIn 0.25s ease-in-out;
}
.dropdown-item {
  font-size: 14px;
  padding: 9px 20px;
  font-weight: 500;
  color: var(--navy-light);
  transition: var(--transition);
}
.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  padding-left: 24px;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
  color: #ffffff !important;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
  color: #ffffff !important;
}
.btn-outline-custom {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--navy);
  color: #ffffff;
  transform: translateY(-2px);
}
.btn-gold-custom {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff !important;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  transition: var(--transition);
}
.btn-gold-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

/* ---------------- Hero Section ---------------- */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.05) 0%, rgba(15, 23, 42, 0.02) 80%), #ffffff;
  padding: 70px 0 60px 0;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  margin-bottom: 20px;
}
.hero-heading span {
  color: var(--primary);
  position: relative;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
}
.hero-stat-item h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 2px;
}
.hero-stat-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}
.hero-image-wrapper {
  position: relative;
}
.hero-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-floating-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ---------------- Quick Actions Grid ---------------- */
.quick-action-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: block;
  height: 100%;
}
.quick-action-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.quick-action-card .icon-box {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px auto;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.quick-action-card .icon-box img {
  width: 32px;
  height: 32px;
}
.quick-action-card:hover .icon-box {
  background: var(--primary);
  transform: scale(1.08);
}
.quick-action-card:hover .icon-box img {
  filter: brightness(0) invert(1);
}
.quick-action-card h5 {
  color: var(--navy);
  font-size: 15.5px;
  margin-bottom: 6px;
  font-weight: 600;
}
.quick-action-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------------- Section Titles ---------------- */
.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px auto;
}
.section-subtitle-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.section-title {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 700;
  position: relative;
}
.section-title span {
  color: var(--primary);
}
.section-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 10px;
}

/* ---------------- Course Cards ---------------- */
.course-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(220, 38, 38, 0.3);
}
.course-card-header {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  padding: 30px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
.course-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-card-icon img {
  max-width: 55px;
  max-height: 55px;
}
.course-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}
.course-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.course-meta-item {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.course-card-body h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.course-card-body p {
  color: var(--text-muted);
  font-size: 13.5px;
  flex: 1;
}
.course-card-footer {
  padding: 16px 24px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------------- Feature Cards ---------------- */
.feature-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.feature-box:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.feature-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-icon-wrap img {
  width: 36px;
  height: 36px;
}
.feature-box:hover .feature-icon-wrap {
  background: var(--primary);
  transform: scale(1.05);
}
.feature-box:hover .feature-icon-wrap img {
  filter: brightness(0) invert(1);
}
.feature-box h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.feature-box p {
  color: var(--text-muted);
  font-size: 13.5px;
  margin-bottom: 0;
}

/* ---------------- VTSE Scholarship Section ---------------- */
.vtse-banner-wrapper {
  background: linear-gradient(135deg, #090d16 0%, #162033 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vtse-banner-wrapper::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.25) 0%, transparent 70%);
}
.vtse-pill {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 15px;
}

/* ---------------- Faculty Cards ---------------- */
.faculty-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.faculty-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 18px auto;
  border: 3px solid var(--primary-light);
  overflow: hidden;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.faculty-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faculty-subject-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}
.faculty-card h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.faculty-card .qualification {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.faculty-card .exp-badge {
  display: inline-block;
  font-size: 11.5px;
  color: var(--navy);
  background: var(--bg-light);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
}

/* ---------------- Student Results ---------------- */
.result-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.result-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.result-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
  flex-shrink: 0;
}
.result-details h5 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.result-exam-badge {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 4px;
}
.result-score {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------------- Gallery Lightbox ---------------- */
.gallery-grid-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery-grid-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: #ffffff;
  opacity: 0;
  transition: var(--transition);
}
.gallery-grid-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-grid-item:hover img {
  transform: scale(1.06);
}

/* Lightbox Modal */
.custom-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1090;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.custom-lightbox.active {
  display: flex;
}
.custom-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.custom-lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  z-index: 1100;
}

/* ---------------- FAQ Accordion ---------------- */
.faq-accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  background: #ffffff;
  overflow: hidden;
  transition: var(--transition);
}
.faq-accordion-item:hover {
  border-color: rgba(220, 38, 38, 0.3);
}
.faq-accordion-header {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  user-select: none;
}
.faq-accordion-header .icon {
  font-size: 14px;
  color: var(--primary);
  transition: var(--transition);
}
.faq-accordion-body {
  padding: 0 22px 18px 22px;
  color: var(--text-muted);
  font-size: 14px;
  display: none;
  border-top: 1px dashed var(--border-color);
  margin-top: 5px;
  padding-top: 15px;
}
.faq-accordion-item.open .faq-accordion-body {
  display: block;
}
.faq-accordion-item.open .faq-accordion-header .icon {
  transform: rotate(180deg);
}

/* ---------------- Testimonial Cards ---------------- */
.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 12px;
  font-size: 13px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author-info h5 {
  font-size: 14px;
  margin-bottom: 2px;
}
.testimonial-author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------------- Admission Enquiry Popup ---------------- */
.admission-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.admission-modal-backdrop.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.admission-modal-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.admission-modal-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #ffffff;
  padding: 22px 26px;
  position: relative;
}
.admission-modal-header h4 {
  color: #ffffff;
  margin-bottom: 4px;
}
.admission-modal-header p {
  color: #cbd5e1;
  font-size: 13px;
  margin-bottom: 0;
}
.admission-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}
.admission-modal-close:hover {
  color: #ffffff;
}
.admission-modal-body {
  padding: 24px 26px;
  overflow-y: auto;
}

/* ---------------- Floating WhatsApp & Call Buttons ---------------- */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.floating-btn:hover {
  transform: scale(1.1);
}
.floating-btn.whatsapp {
  background-color: #25d366;
}
.floating-btn.call {
  background-color: var(--primary);
}
.floating-btn.scroll-top {
  background-color: var(--navy);
  font-size: 18px;
  display: none;
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--navy-dark);
  color: #94a3b8;
  padding-top: 70px;
  font-size: 14px;
}
.footer-logo img {
  height: 52px;
  margin-bottom: 18px;
}
.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
}
.footer-links {
  list-style: none;
  padding-left: 0;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links a {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item .icon {
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-bottom {
  background: #06090e;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: #64748b;
}

/* ---------------- Responsive Styles ---------------- */
@media (max-width: 991px) {
  .hero-section {
    padding: 40px 0;
    text-align: center;
  }
  .hero-badge {
    margin: 0 auto 15px auto;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-floating-card {
    position: static;
    margin-top: 20px;
    display: inline-flex;
  }
  .top-bar {
    text-align: center;
  }
  .top-bar .top-contact-left {
    justify-content: center;
    margin-bottom: 6px;
  }
  .top-bar .social-icons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .vtse-banner-wrapper {
    padding: 30px 20px;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
