/* ==========================================================================
   HOMEPAGE SECTIONS STYLING
   ========================================================================== */

/* 1. TICKER / ANNOUNCEMENT BAR */
.ticker-bar {
  background: #0f172a;
  border-bottom: 2px solid var(--accent-saffron);
  padding: 0.5rem 0;
  color: #ffffff;
  font-size: 0.85rem;
  overflow: hidden;
}

.ticker-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticker-label {
  background: var(--accent-saffron);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ticker-content {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: tickerMarquee 28s linear infinite;
}

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

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 2.5rem;
  color: #f1f5f9;
}

.ticker-item a {
  color: #fbbf24;
}

.ticker-item a:hover {
  text-decoration: underline;
}

.ticker-ctrl-btn {
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

.ticker-ctrl-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* 2. OVERVIEW & LATEST NOTIFICATIONS / TENDERS HUB */
.overview-hub-section {
  padding: 1rem 0;
  background: #ffffff;
}

.overview-hub-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: start;
}

.overview-card {
  padding-right: 1.5rem;
}

.overview-card .section-tag {
  margin-bottom: 0.75rem;
}

.overview-card h2 {
  font-size: 1.7rem;
  color: var(--primary-navy);
  margin-bottom: 1.25rem;
  line-height: 1.25;
  text-align: center;
}

.overview-lead {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.overview-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

.overview-item-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg-subtle);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-saffron);
}

.overview-item-icon {
  color: var(--accent-saffron);
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

.overview-item-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-navy);
}

.overview-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* TABBED NOTIFICATIONS CARD (UPGRADED FROM OLD GREEN BOX) */
.notifications-tab-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.notif-header {
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
  padding: 1.25rem 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notif-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notif-tabs-nav {
  display: flex;
  background: rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid var(--border-medium);
  padding: 0 0.5rem;
}

.notif-tab-btn {
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
}

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

.notif-tab-btn.active {
  color: var(--accent-saffron);
  border-bottom-color: var(--accent-saffron);
  background: rgba(245, 130, 32, 0.04);
}

.notif-tab-panel {
  display: none;
  padding: 1.25rem;
  max-height: 400px;
  overflow-y: auto;
}

.notif-tab-panel.active {
  display: block;
}

.notif-list-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.notif-list-item:hover {
  background: var(--bg-subtle);
  transform: translateX(4px);
}

.notif-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.notif-date-badge {
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--primary-blue);
  background: rgba(19, 64, 116, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.notif-new-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: #ffffff;
  background: #dc2626;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  text-transform: uppercase;
  animation: pulseRed 1.5s infinite;
}

@keyframes pulseRed {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.notif-item-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

.notif-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.775rem;
  color: var(--text-muted);
}

.notif-download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent-saffron);
  font-weight: 700;
  font-size: 0.775rem;
}

.notif-download-link:hover {
  text-decoration: underline;
}

.notif-card-footer {
  padding: 0.85rem 1.25rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  text-align: right;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.view-all-link:hover {
  color: var(--accent-saffron);
}

/* 3. DIGNITARIES & LEADERSHIP SECTION */
.dignitaries-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.dignitaries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.dignitary-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.dignitary-img-box {
  width: 100%;
  height: 250px;
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dignitary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.dignitary-card:hover .dignitary-img {
  transform: scale(1.04);
}

.dignitary-tricolor-line {
  height: 3px;
  background: linear-gradient(90deg, #ff9933 33.3%, #ffffff 33.3%, #ffffff 66.6%, #138808 66.6%);
  width: 100%;
}

.dignitary-info {
  padding: 1.15rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dignitary-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.dignitary-role {
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.dignitary-dept {
  font-size: 0.725rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* 4. KEY FOCUS INFRASTRUCTURE VERTICALS */
.verticals-section {
  padding: 5rem 0;
  background: #ffffff;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.vertical-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.vertical-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-blue);
  transition: height var(--transition-fast);
}

.vertical-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-saffron);
}

.vertical-card:hover::before {
  height: 6px;
  background: linear-gradient(90deg, var(--accent-saffron), var(--accent-gold));
}

.vertical-icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem auto;
  border-radius: var(--radius-full);
  background: rgba(19, 64, 116, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.75rem;
  transition: all var(--transition-base);
}

.vertical-card:hover .vertical-icon-box {
  background: var(--accent-saffron);
  color: #ffffff;
  transform: rotate(5deg) scale(1.05);
}

.vertical-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.vertical-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 5. LIVE ANIMATED STATISTICS COUNTER */
.stats-counter-section {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, #0d2847 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  position: relative;
  border-top: 3px solid var(--accent-saffron);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  transition: all var(--transition-base);
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-saffron);
  transform: translateY(-4px);
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  font-size: 3rem;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  font-size: 2rem;
  color: var(--accent-saffron);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
}

/* 6. FEATURED PROJECTS SHOWCASE */
.projects-showcase-section {
  padding: 5rem 0;
  background: var(--bg-body);
}

.projects-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

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

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

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.project-thumb {
  height: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #cbd5e1;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-thumb img {
  transform: scale(1.06);
}

.project-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.badge-completed { background: #15803d; }
.badge-ongoing { background: #d97706; }
.badge-upcoming { background: #0284c7; }

.project-details {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-mode-tag {
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.project-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.project-snippet {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

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

/* 7. QUICK ACTION CIRCULAR BADGES (PRESERVED FROM OLD SITE) */
.quick-action-circles-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
}

.circles-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.circle-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  group: true;
}

.circle-graphic-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 5px solid #22c55e;
  box-shadow: 0 0 0 4px #f59e0b, var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  transition: all var(--transition-base);
  position: relative;
}

.circle-badge-item:nth-child(1) .circle-graphic-ring { border-color: #10b981; }
.circle-badge-item:nth-child(2) .circle-graphic-ring { border-color: #3b82f6; }
.circle-badge-item:nth-child(3) .circle-graphic-ring { border-color: #f59e0b; }

.circle-badge-item:hover .circle-graphic-ring {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 0 0 6px var(--accent-saffron), var(--shadow-xl);
}

.circle-icon {
  font-size: 1.6rem;
  color: #fbbf24;
  margin-bottom: 0.35rem;
}

.circle-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.circle-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.75rem;
  transition: color var(--transition-fast);
}

.circle-badge-item:hover .circle-subtext {
  color: var(--accent-saffron);
}

/* 8. IMPORTANT GOVERNMENT LINKS GRID / ACCORDION */
.important-links-section {
  padding: 4.5rem 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
}

.dept-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dept-link-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  color: var(--text-heading);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.dept-link-card:hover {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
  transform: translateX(4px);
}

.dept-link-icon {
  color: var(--accent-saffron);
  font-size: 1rem;
}

.dept-link-card:hover .dept-link-icon {
  color: #fbbf24;
}

/* 9. MEDIA & PHOTO GALLERY PREVIEW */
.gallery-section {
  padding: 5rem 0;
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 37, 69, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

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

.gallery-caption {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

/* Modal Lightbox for Gallery */
.modal-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

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

.modal-content-box {
  max-width: 900px;
  width: 100%;
  background: #0f172a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.modal-img-display {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 1;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #dc2626;
  border-color: #ffffff;
  transform: scale(1.1);
}

/* RESPONSIVE BREAKPOINTS FOR SECTIONS */
@media (max-width: 1200px) {
  .dignitaries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==========================================================================
   RESPONSIVE DESIGN FOR HOME SECTIONS (TABLET, MOBILE & SMALL PHONES)
   ========================================================================== */

@media (max-width: 1100px) {
  .dignitaries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .dept-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .overview-hub-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .overview-card {
    padding-right: 0;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .circles-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .ticker-wrapper {
    gap: 0.4rem;
  }
  .ticker-label {
    padding: 0.15rem 0.45rem;
    font-size: 0.65rem;
  }
  .ticker-content {
    font-size: 0.75rem;
  }
  .ticker-ctrl-btn {
    font-size: 0.68rem;
    padding: 0.1rem 0.3rem;
  }

  /* Dignitaries (Corporate Governance) */
  .dignitaries-section {
    padding: 3rem 0;
  }
  .dignitaries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 520px;
    margin: 0 auto;
  }
  .dignitary-img-box {
    height: 220px;
  }
  .dignitary-name {
    font-size: 0.9rem;
  }
  .dignitary-role {
    font-size: 0.75rem;
  }
  .dignitary-dept {
    font-size: 0.7rem;
  }

  /* Statistics Counter Mobile */
  .stats-counter-section {
    padding: 3rem 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .stat-box {
    padding: 1.15rem 0.75rem;
    border-radius: var(--radius-md);
  }
  .stat-number-wrapper {
    font-size: 1.9rem !important;
    margin-bottom: 0.35rem;
  }
  .stat-number-wrapper span[style*="font-size: 2rem"] {
    font-size: 1.35rem !important;
  }
  .stat-suffix {
    font-size: 1.25rem !important;
  }
  .stat-label {
    font-size: 0.8rem !important;
    line-height: 1.3;
  }

  /* Verticals Mobile */
  .verticals-section {
    padding: 3rem 0;
  }
  .verticals-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Projects Showcase Mobile */
  .projects-showcase-section {
    padding: 3rem 0;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .projects-filter-bar {
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }
  .filter-btn {
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
  }

  /* Important Gov Links Mobile */
  .important-links-section {
    padding: 3rem 0;
  }
  .dept-links-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Quick Action Circles Mobile */
  .quick-action-circles-section {
    padding: 3rem 0;
  }
  .circles-grid {
    gap: 1.25rem;
    justify-content: center;
  }
  .circle-graphic-ring {
    width: 120px;
    height: 120px;
    padding: 0.75rem;
  }
  .circle-icon {
    font-size: 1.3rem;
  }
  .circle-text {
    font-size: 0.9rem;
  }
  .circle-subtext {
    font-size: 0.725rem;
  }

  /* Gallery Mobile */
  .gallery-section {
    padding: 3rem 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-item {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.35rem !important;
  }
  .section-subtitle {
    font-size: 0.82rem !important;
  }

  /* Dignitaries Single Column on Phones */
  .dignitaries-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 1rem;
  }
  .dignitary-img-box {
    height: 220px;
  }

  /* Statistics Counter Extra Small Phones */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .stat-box {
    padding: 0.85rem 0.45rem;
  }
  .stat-number-wrapper {
    font-size: 1.55rem !important;
  }
  .stat-number-wrapper span[style*="font-size: 2rem"] {
    font-size: 1.15rem !important;
  }
  .stat-suffix {
    font-size: 1.05rem !important;
  }
  .stat-label {
    font-size: 0.72rem !important;
    line-height: 1.2;
  }

  .circle-graphic-ring {
    width: 105px;
    height: 105px;
    padding: 0.5rem;
  }
  .circle-icon {
    font-size: 1.15rem;
    margin-bottom: 0.15rem;
  }
  .circle-text {
    font-size: 0.8rem;
  }
}
