/* ========== COMPREHENSIVE RESPONSIVE STYLES ========== */

/* ===== GLOBAL RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  .section-title {
  }
  .hero-content h1 {
  }
  .hero-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: auto;
    padding: 50px 0;
  }
  .hero-content h1 {
    line-height: 1.2;
  }
  .hero-content .lead {
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin-right: 0 !important;
  }
  
  /* Brochure Sliding Track */
  .brochure-strip-section {
    padding: 1.5rem 0;
  }
  .brochure-track img {
    width: 150px;
    height: 210px;
    border-radius: 8px;
  }
  .brochure-track {
    gap: 12px;
  }
  /* Swiper Navigation - Hide on mobile */
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  /* Section Spacing */
  section {
    padding: 3rem 0 !important;
  }
  .welcome-section,
  .mission-section,
  .focus-areas-section,
  .facilities-showcase,
  .events-section {
    padding: 3rem 0 !important;
  }

  /* Cards Grid */
  .welcome-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  /* Tables */
  .table-responsive {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  /* QR Card Centering */
  .qr-card {
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  
  /* Hero Section */
  .hero-content h1 {
  }
  .badge-glow {
    padding: 0.25rem 0.6rem;
  }
  .hero-content .lead {
  }
  
  /* Brochure Sliding Track */
  .brochure-track img {
    width: 120px;
    height: 170px;
    border-radius: 6px;
    border-width: 2px;
  }
  .brochure-track {
    gap: 10px;
  }

  /* Stats Grid */
  .welcome-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .stat-card {
    padding: 1rem 0.8rem;
  }
  .stat-icon {
    margin-bottom: 0.25rem;
  }
  .stat-card .stat-number {
  }
  .stat-card .stat-label {
  }

  /* Font Adjustments */
  .section-title {
  }
  .section-badge {
    padding: 0.2rem 0.8rem;
  }
}

/* ===== FIXES FOR MOBILE TOUCH FLOW AND SCROLLBARS ===== */
body, html {
  max-width: 100%;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}