.elementor-3226 .elementor-element.elementor-element-83dfd4c{width:100%;max-width:100%;}/* Start custom CSS *//* 🔮 GLASS CARD LOGO */
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  animation: logoFadeIn 1s ease forwards;
}

.hero-logo img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
  transition: all 0.4s ease;
}

.hero-logo img:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.25);
  border-color: rgba(99, 102, 241, 0.3);
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .hero-logo img {
    width: 110px;
    height: 110px;
    padding: 15px;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .hero-logo img {
    width: 90px;
    height: 90px;
    padding: 12px;
    border-radius: 20px;
  }
}
/* 🌍 GLOBAL RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* 🌟 HERO SECTION */
.hero-light {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #f8fbff, #eef2ff, #f5f3ff);
  overflow-x: hidden;
  width: 100%;
}

/* 🎨 BACKGROUND BLOBS */
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.hero-bg::before {
  background: #4f46e5;
  top: 10%;
  left: 10%;
}

.hero-bg::after {
  background: #9333ea;
  bottom: 10%;
  right: 10%;
}

/* 📦 CONTAINER */
.hero-container {
  position: relative;
  max-width: 850px;
  width: 100%;
  padding: 20px 15px;
  margin: 0 auto;
}

/* 🔥 TITLE */
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 6vw, 52px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  padding: 0 10px;
  min-height: 1.3em; /* 🔑 Prevents layout jump */
}

/* ✨ LETTER ANIMATION KEYFRAME */
@keyframes letterFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🔑 Animated letter spans inside title */
.animate-text span {
  display: inline-block;
  will-change: transform, opacity;
}

/* ✨ SUBTITLE */
.hero-subtitle {
  font-size: clamp(16px, 4vw, 22px);
  color: #6366f1;
  margin-bottom: 15px;
}

/* 📝 DESCRIPTION */
.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 3.5vw, 16px);
  color: #475569;
  margin-bottom: 25px;
  white-space: normal;
  word-break: break-word;
}

/* 📍 META */
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.meta-item {
  text-align: center;
  min-width: 100px;
}

.meta-label {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.meta-value {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

/* 🔘 BUTTON */
.hero-cta {
  margin-top: 15px;
}

.btn-main {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79,70,229,0.3);
}

/* ⏳ COUNTDOWN */
.countdown {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
  padding: 0 10px;
}

.time-box {
  width: 65px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* 🔢 FLIP */
.flip {
  font-size: 18px;
  font-weight: 700;
  color: #4f46e5;
  background: white;
  border-radius: 8px;
  padding: 8px;
  display: inline-block;
  min-width: 40px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.flip.animate {
  transform: rotateX(90deg);
  opacity: 0;
}

/* 🔒 NO-BREAK */
.no-break {
  white-space: nowrap;
  display: inline; /* 🔑 Keep it inline so it flows with text */
}

/* 📱 MOBILE TWEAKS */
@media (max-width: 480px) {
  .hero-container {
    padding: 15px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-desc {
    font-size: 12.5px;
  }

  .time-box {
    width: 55px;
    padding: 10px;
  }

  .flip {
    font-size: 16px;
  }
}
/* ========================================
   📅 TIMELINE SECTION - GLASSMORPHISM
======================================== */

/* 🌟 SECTION BASE */
.timeline-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #f5f3ff 0%, #eef2ff 50%, #f8fbff 100%);
  overflow: hidden;
}

/* 🎨 BACKGROUND DECORATIONS */
.timeline-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.timeline-bg::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  top: 10%;
  right: -10%;
  filter: blur(60px);
}

.timeline-bg::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.12) 0%, transparent 70%);
  bottom: 20%;
  left: -5%;
  filter: blur(60px);
}

/* 📦 CONTAINER */
.timeline-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* 🏷️ SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(147, 51, 234, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px;
  font-weight: 600;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Sora', sans-serif !important;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.section-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(14px, 3vw, 16px);
  color: #64748b;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 🔘 TIMELINE TABS */
.timeline-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 0 10px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.tab-btn.active {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.tab-icon {
  font-size: 18px;
}

.tab-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  transition: color 0.3s ease;
}

.tab-btn.active .tab-text {
  color: white;
}

/* 📋 TAB PANELS */
.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

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

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

/* 🎯 PHASE HEADER */
.timeline-phase {
  margin-bottom: 40px;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.phase-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(147, 51, 234, 0.15));
  border-radius: 14px;
  font-size: 22px;
}

.phase-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.phase-badge {
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  color: #6366f1;
}

/* 📍 TIMELINE TRACK */
.timeline-track {
  position: relative;
  padding-left: 30px;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #6366f1 0%, #a855f7 50%, #6366f1 100%);
  border-radius: 3px;
}

/* 📌 TIMELINE ITEM */
.timeline-item {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-left: 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: white;
  border: 3px solid #6366f1;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item:hover::before {
  background: #6366f1;
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.2);
}

.timeline-item.featured::before {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-color: #f59e0b;
}

/* 📅 ITEM DATE */
.item-date {
  min-width: 55px;
  text-align: center;
  padding-top: 5px;
}

.date-day {
  display: block;
  font-family: 'Sora', sans-serif !important;
  font-size: 22px;
  font-weight: 700;
  color: #4f46e5;
  line-height: 1;
}

.date-month {
  display: block;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* 🎴 ITEM CARD */
.item-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.item-card:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
}

.timeline-item.featured .item-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 243, 199, 0.4));
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.timeline-item.featured .item-card:hover {
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.15);
}

.item-time {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 8px;
}

.item-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.item-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px;
  color: #64748b;
  margin: 0 0 12px 0;
  line-height: 1.6;
}

/* 🏷️ ITEM TAGS */
.item-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.item-tag span {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 20px;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px;
  font-weight: 500;
  color: #6366f1;
}

.timeline-item.featured .item-tag span {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

/* 🎯 BOTTOM CTA */
.timeline-cta {
  margin-top: 50px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 40px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(147, 51, 234, 0.1));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 24px;
  flex-wrap: wrap;
}

.cta-content h3 {
  font-family: 'Sora', sans-serif !important;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.cta-content p {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.timeline-cta .btn-main {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white !important;
  border-radius: 30px;
  text-decoration: none !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  white-space: nowrap;
}

.timeline-cta .btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .timeline-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .timeline-tabs {
    gap: 8px;
  }

  .tab-btn {
    padding: 12px 18px;
  }

  .tab-text {
    font-size: 13px;
  }

  .phase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .timeline-track {
    padding-left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 12px;
    padding-left: 15px;
  }

  .timeline-item::before {
    left: -25px;
    top: 8px;
    width: 12px;
    height: 12px;
  }

  .item-date {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: auto;
  }

  .date-day {
    font-size: 18px;
  }

  .date-month {
    margin-top: 0;
  }

  .item-card {
    padding: 18px;
  }

  .item-title {
    font-size: 16px;
  }

  .item-desc {
    font-size: 13px;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    gap: 20px;
  }

  .cta-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .timeline-container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-desc {
    font-size: 13px;
  }

  .tab-btn {
    padding: 10px 14px;
  }

  .tab-icon {
    font-size: 16px;
  }

  .tab-text {
    font-size: 12px;
  }

  .phase-title {
    font-size: 18px;
  }

  .phase-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .timeline-track::before {
    width: 2px;
  }

  .item-card {
    padding: 15px;
  }

  .item-tag span {
    font-size: 11px;
    padding: 4px 10px;
  }
}
/* ========================================
   📅 TIMELINE SECTION - PROFESSIONAL ICONS
======================================== */

/* 🌟 SECTION BASE */
.timeline-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #f5f3ff 0%, #eef2ff 50%, #f8fbff 100%);
  overflow: hidden;
}

/* 🎨 BACKGROUND DECORATIONS */
.timeline-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.timeline-bg::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  top: 10%;
  right: -10%;
  filter: blur(60px);
}

.timeline-bg::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.12) 0%, transparent 70%);
  bottom: 20%;
  left: -5%;
  filter: blur(60px);
}

/* 📦 CONTAINER */
.timeline-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* 🏷️ SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(147, 51, 234, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px;
  font-weight: 600;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-tag i {
  font-size: 14px;
}

.section-title {
  font-family: 'Sora', sans-serif !important;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.section-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(14px, 3vw, 16px);
  color: #64748b;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 🔘 TIMELINE TABS */
.timeline-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 0 10px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.tab-btn.active {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tab-icon i {
  font-size: 14px;
  color: #6366f1;
  transition: color 0.3s ease;
}

.tab-btn.active .tab-icon {
  background: rgba(255, 255, 255, 0.2);
}

.tab-btn.active .tab-icon i {
  color: white;
}

.tab-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  transition: color 0.3s ease;
}

.tab-btn.active .tab-text {
  color: white;
}

/* 📋 TAB PANELS */
.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

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

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

/* 🎯 PHASE HEADER */
.timeline-phase {
  margin-bottom: 40px;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.phase-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(147, 51, 234, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 14px;
}

.phase-icon i {
  font-size: 20px;
  color: #6366f1;
}

.phase-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.phase-badge {
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  color: #6366f1;
}

/* 📍 TIMELINE TRACK */
.timeline-track {
  position: relative;
  padding-left: 30px;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #6366f1 0%, #a855f7 50%, #6366f1 100%);
  border-radius: 3px;
}

/* 📌 TIMELINE ITEM */
.timeline-item {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-left: 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: white;
  border: 3px solid #6366f1;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item:hover::before {
  background: #6366f1;
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.2);
}

.timeline-item.featured::before {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-color: #f59e0b;
}

/* 📅 ITEM DATE */
.item-date {
  min-width: 55px;
  text-align: center;
  padding-top: 5px;
}

.date-day {
  display: block;
  font-family: 'Sora', sans-serif !important;
  font-size: 22px;
  font-weight: 700;
  color: #4f46e5;
  line-height: 1;
}

.date-month {
  display: block;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* 🎴 ITEM CARD */
.item-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.item-card:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
}

.timeline-item.featured .item-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 243, 199, 0.4));
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.timeline-item.featured .item-card:hover {
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.15);
}

.item-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 8px;
}

.item-time i {
  font-size: 11px;
  opacity: 0.8;
}

.item-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.item-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px;
  color: #64748b;
  margin: 0 0 12px 0;
  line-height: 1.6;
}

/* 🏷️ ITEM TAGS */
.item-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.item-tag span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 20px;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px;
  font-weight: 500;
  color: #6366f1;
  transition: all 0.2s ease;
}

.item-tag span:hover {
  background: rgba(99, 102, 241, 0.15);
  transform: translateY(-1px);
}

.item-tag span i {
  font-size: 11px;
}

.timeline-item.featured .item-tag span {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.timeline-item.featured .item-tag span:hover {
  background: rgba(245, 158, 11, 0.2);
}

/* 🎯 BOTTOM CTA */
.timeline-cta {
  margin-top: 50px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 30px 40px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(147, 51, 234, 0.1));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 24px;
  flex-wrap: wrap;
}

.cta-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.cta-icon i {
  font-size: 24px;
  color: white;
}

.cta-content {
  flex: 1;
  min-width: 200px;
}

.cta-content h3 {
  font-family: 'Sora', sans-serif !important;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.cta-content p {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.timeline-cta .btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white !important;
  border-radius: 30px;
  text-decoration: none !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  white-space: nowrap;
}

.timeline-cta .btn-main i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.timeline-cta .btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.timeline-cta .btn-main:hover i {
  transform: translateX(4px);
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .timeline-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .timeline-tabs {
    gap: 8px;
  }

  .tab-btn {
    padding: 12px 18px;
  }

  .tab-icon {
    width: 24px;
    height: 24px;
  }

  .tab-icon i {
    font-size: 12px;
  }

  .tab-text {
    font-size: 13px;
  }

  .phase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .timeline-track {
    padding-left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 12px;
    padding-left: 15px;
  }

  .timeline-item::before {
    left: -25px;
    top: 8px;
    width: 12px;
    height: 12px;
  }

  .item-date {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: auto;
  }

  .date-day {
    font-size: 18px;
  }

  .date-month {
    margin-top: 0;
  }

  .item-card {
    padding: 18px;
  }

  .item-title {
    font-size: 16px;
  }

  .item-desc {
    font-size: 13px;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    gap: 20px;
  }

  .cta-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .timeline-container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-desc {
    font-size: 13px;
  }

  .tab-btn {
    padding: 10px 14px;
    gap: 8px;
  }

  .tab-icon {
    width: 22px;
    height: 22px;
  }

  .tab-icon i {
    font-size: 11px;
  }

  .tab-text {
    font-size: 12px;
  }

  .phase-title {
    font-size: 18px;
  }

  .phase-icon {
    width: 44px;
    height: 44px;
  }

  .phase-icon i {
    font-size: 18px;
  }

  .timeline-track::before {
    width: 2px;
  }

  .item-card {
    padding: 15px;
  }

  .item-tag span {
    font-size: 11px;
    padding: 5px 10px;
  }

  .cta-icon {
    width: 50px;
    height: 50px;
  }

  .cta-icon i {
    font-size: 20px;
  }
}
/* ========================================
   📊 REGISTRATION STATS SECTION
======================================== */

.registration-stats-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef2ff 50%, #f5f3ff 100%);
  overflow: hidden;
}

/* 🎨 BACKGROUND */
.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.stats-bg::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  top: 15%;
  left: -5%;
  filter: blur(60px);
}

.stats-bg::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
  bottom: 10%;
  right: -10%;
  filter: blur(60px);
}

/* 📦 CONTAINER */
.stats-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* 🏷️ SECTION HEADER */
.stats-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif !important;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px 0;
}

.stats-subtitle i {
  color: #6366f1;
  font-size: 18px;
}

/* 🔢 MAIN COUNTER */
.main-counter {
  margin-bottom: 50px;
}

.counter-card {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.counter-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
  flex-shrink: 0;
}

.counter-icon i {
  font-size: 36px;
  color: white;
}

.counter-content {
  flex: 1;
  min-width: 180px;
}

.counter-number {
  font-family: 'Sora', sans-serif !important;
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.counter-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.counter-sublabel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px;
  color: #10b981;
  font-weight: 500;
}

.counter-sublabel i {
  font-size: 12px;
}

/* 📊 EXTRA STATS */
.counter-extra {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.extra-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.extra-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.extra-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
}

.extra-icon.male {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.extra-icon.female {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

.extra-icon.family {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

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

.extra-count {
  font-family: 'Sora', sans-serif !important;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.extra-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

/* 🏢 BRANCH STATS */
.branch-stats {
  margin-bottom: 50px;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.branch-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.branch-card:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.branch-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.branch-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(147, 51, 234, 0.1));
  border-radius: 14px;
  flex-shrink: 0;
}

.branch-icon i {
  font-size: 20px;
  color: #6366f1;
}

.branch-info {
  flex: 1;
}

.branch-name {
  font-family: 'Sora', sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.branch-count {
  font-family: 'Sora', sans-serif !important;
  font-size: 24px;
  font-weight: 800;
  color: #6366f1;
}

.branch-progress {
  width: 100%;
  height: 8px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #a855f7);
  border-radius: 10px;
  transition: width 1s ease;
}

.branch-percentage {
  text-align: right;
  margin-top: 8px;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px;
  color: #94a3b8;
}

/* 📡 LIVE FEED */
.live-feed {
  margin-bottom: 50px;
}

.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 20px;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 10px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.refresh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px;
  font-weight: 600;
  color: #6366f1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.refresh-btn:hover {
  background: rgba(99, 102, 241, 0.15);
  transform: translateY(-2px);
}

.refresh-btn i {
  font-size: 12px;
  transition: transform 0.5s ease;
}

.refresh-btn.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 500px;
  overflow-y: auto;
  padding: 4px;
}

.feed-list::-webkit-scrollbar {
  width: 6px;
}

.feed-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.feed-list::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.3);
  border-radius: 10px;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  transition: all 0.3s ease;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feed-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.feed-item.new {
  border-left: 3px solid #10b981;
}

.feed-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 18px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}

.feed-avatar.male {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.feed-avatar.female {
  background: linear-gradient(135deg, #ec4899, #a855f7);
}

.feed-avatar.other {
  background: linear-gradient(135deg, #6366f1, #a855f7);
}

.feed-content {
  flex: 1;
  min-width: 0;
}

.feed-name {
  font-family: 'Sora', sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.feed-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px;
  color: #64748b;
}

.feed-meta i {
  font-size: 11px;
  color: #94a3b8;
}

.feed-time {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px;
  color: #94a3b8;
  white-space: nowrap;
  text-align: right;
}

/* 💀 SKELETON LOADING */
.skeleton {
  pointer-events: none;
}

.skeleton .branch-icon,
.skeleton .feed-avatar {
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* 🎯 STATS CTA */
.stats-cta .cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 30px 40px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(147, 51, 234, 0.1));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 24px;
  flex-wrap: wrap;
}

.stats-cta .cta-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.stats-cta .cta-icon i {
  font-size: 24px;
  color: white;
}

.stats-cta .cta-content {
  flex: 1;
  min-width: 200px;
}

.stats-cta .cta-content h3 {
  font-family: 'Sora', sans-serif !important;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.stats-cta .cta-content p {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.stats-cta .cta-content strong {
  color: #6366f1;
  font-weight: 700;
}

.stats-cta .btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white !important;
  border-radius: 30px;
  text-decoration: none !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  white-space: nowrap;
}

.stats-cta .btn-main i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.stats-cta .btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.stats-cta .btn-main:hover i {
  transform: translateX(4px);
}

/* 🚨 ERROR STATE */
.error-message {
  text-align: center;
  padding: 40px 20px;
  color: #ef4444;
  font-family: 'Inter', sans-serif !important;
}

.error-message i {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .registration-stats-section {
    padding: 60px 0;
  }

  .counter-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .counter-number {
    font-size: 48px;
  }

  .counter-label {
    font-size: 16px;
  }

  .counter-sublabel {
    justify-content: center;
  }

  .counter-extra {
    justify-content: center;
    width: 100%;
  }

  .extra-stat {
    flex: 1;
    min-width: 100px;
    justify-content: center;
  }

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

  .feed-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-subtitle {
    flex-wrap: wrap;
  }

  .live-badge {
    margin-left: 0;
  }

  .feed-item {
    flex-wrap: wrap;
  }

  .feed-time {
    width: 100%;
    text-align: right;
    margin-top: 8px;
  }

  .stats-cta .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    padding: 0 15px;
  }

  .counter-number {
    font-size: 40px;
  }

  .counter-icon {
    width: 60px;
    height: 60px;
  }

  .counter-icon i {
    font-size: 28px;
  }

  .counter-extra {
    flex-direction: column;
    gap: 12px;
  }

  .extra-stat {
    width: 100%;
  }

  .branch-card {
    padding: 18px;
  }

  .feed-avatar {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .feed-name {
    font-size: 14px;
  }

  .feed-meta {
    gap: 10px;
  }

  .feed-meta span {
    font-size: 11px;
  }

  .stats-cta .cta-icon {
    width: 50px;
    height: 50px;
  }

  .stats-cta .cta-icon i {
    font-size: 20px;
  }
}


/* ========================================
   🖼️ GALLERY SECTION
======================================== */

.gallery-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #f5f3ff 0%, #eef2ff 50%, #f8fbff 100%);
  overflow: hidden;
}

/* 🎨 BACKGROUND */
.gallery-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.gallery-bg::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
  top: 20%;
  left: -10%;
  filter: blur(80px);
}

.gallery-bg::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  bottom: 15%;
  right: -5%;
  filter: blur(80px);
}

/* 📦 CONTAINER */
.gallery-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* 🎯 GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* 🖼️ GALLERY ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(99, 102, 241, 0.3);
}

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

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

/* 📝 GALLERY OVERLAY */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-family: 'Sora', sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin: 0 0 5px 0;
}

.gallery-overlay p {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* 💀 SKELETON LOADER */
.gallery-skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.skeleton-item {
  height: 320px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4) 25%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.4) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* 🔘 LOAD MORE BUTTON */
.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 30px;
  font-family: 'Sora', sans-serif !important;
  font-weight: 600;
  font-size: 15px;
  color: #4f46e5;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.btn-secondary i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-secondary:hover i {
  transform: translateY(3px);
}

.btn-secondary.hidden {
  display: none;
}

/* 🔍 LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 20px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px;
  color: white;
  text-align: center;
}

/* 🔘 LIGHTBOX CONTROLS */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  z-index: 100000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.lightbox-close {
  top: 30px;
  right: 30px;
}

.lightbox-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-grid,
  .gallery-skeleton {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .skeleton-item {
    height: 200px;
  }

  .gallery-item {
    border-radius: 16px;
  }

  .gallery-overlay h4 {
    font-size: 14px;
  }

  .gallery-overlay p {
    font-size: 12px;
  }

  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .lightbox-content {
    max-width: 95%;
  }

  .lightbox-caption {
    font-size: 13px;
    padding: 12px 18px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    padding: 0 15px;
  }

  .gallery-grid,
  .gallery-skeleton {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .skeleton-item {
    height: 180px;
  }

  .btn-secondary {
    width: 100%;
  }
}

/* 🎯 SMOOTH HEIGHT TRANSITIONS */
.gallery-grid {
  transition: height 0.3s ease;
}
/* ========================================
   🎠 SPOTLIGHT CAROUSEL
======================================== */

.spotlight-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  margin-bottom: 50px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.spotlight-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spotlight-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.spotlight-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.spotlight-slide:hover img {
  transform: scale(1.03);
}

/* Gradient Overlay */
.spotlight-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  pointer-events: none;
}

/* Slide Caption */
.spotlight-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 10;
  color: white;
}

.spotlight-caption h3 {
  font-family: 'Sora', sans-serif !important;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.spotlight-caption p {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Navigation Arrows */
.spotlight-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}

.spotlight-prev {
  left: 20px;
}

.spotlight-next {
  right: 20px;
}

/* Dot Indicators */
.spotlight-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.spotlight-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.spotlight-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.spotlight-dot.active {
  background: white;
  width: 30px;
  border-radius: 10px;
}

/* Progress Bar */
.spotlight-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 25;
}

.spotlight-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #a855f7);
  width: 0%;
  transition: width 0.1s linear;
}

/* Gallery Grid Header */
.gallery-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding: 0 5px;
}

.gallery-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif !important;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.gallery-subtitle i {
  color: #6366f1;
  font-size: 18px;
}

.gallery-count {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 20px;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .spotlight-carousel {
    height: 350px;
    border-radius: 20px;
    margin-bottom: 40px;
  }

  .spotlight-caption {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .spotlight-caption h3 {
    font-size: 20px;
  }

  .spotlight-caption p {
    font-size: 14px;
  }

  .spotlight-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .spotlight-prev {
    left: 10px;
  }

  .spotlight-next {
    right: 10px;
  }

  .spotlight-dots {
    bottom: 15px;
  }

  .spotlight-dot {
    width: 8px;
    height: 8px;
  }

  .spotlight-dot.active {
    width: 24px;
  }

  .gallery-grid-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .spotlight-carousel {
    height: 280px;
    border-radius: 16px;
  }

  .spotlight-caption h3 {
    font-size: 18px;
  }

  .spotlight-caption p {
    font-size: 13px;
  }

  .spotlight-arrow {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
}

/* ========================================
   🖼️ GALLERY SECTION (Keep your existing CSS)
======================================== */

.gallery-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #f5f3ff 0%, #eef2ff 50%, #f8fbff 100%);
  overflow: hidden;
}

.gallery-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.gallery-bg::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
  top: 20%;
  left: -10%;
  filter: blur(80px);
}

.gallery-bg::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  bottom: 15%;
  right: -5%;
  filter: blur(80px);
}

.gallery-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease;
  aspect-ratio: 4/3;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(99, 102, 241, 0.3);
}

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

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

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

.skeleton-item {
  height: 220px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4) 25%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.4) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 30px;
  font-family: 'Sora', sans-serif !important;
  font-weight: 600;
  font-size: 15px;
  color: #4f46e5;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.btn-secondary i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-secondary:hover i {
  transform: translateY(3px);
}

.btn-secondary.hidden {
  display: none;
}

/* 🔍 LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 20px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px;
  color: white;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  z-index: 100000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.lightbox-close {
  top: 30px;
  right: 30px;
}

.lightbox-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .gallery-grid,
  .gallery-skeleton {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .skeleton-item {
    height: 150px;
  }

  .gallery-item {
    border-radius: 16px;
  }

  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .lightbox-content {
    max-width: 95%;
  }

  .lightbox-caption {
    font-size: 13px;
    padding: 12px 18px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    padding: 0 15px;
  }

  .gallery-grid,
  .gallery-skeleton {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .skeleton-item {
    height: 130px;
  }

  .btn-secondary {
    width: 100%;
  }
}
/* ========================================
   📅 DAY HEADER STYLES
======================================== */

.day-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(147, 51, 234, 0.08));
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.day-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 50px;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.day-badge i {
  font-size: 14px;
}

.day-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* Optional Tag Styling */
.optional-tag {
  background: rgba(245, 158, 11, 0.15) !important;
  color: #d97706 !important;
}

.optional-tag i {
  color: #d97706;
}

/* Tab Number Icons */
.tab-icon .fa-1,
.tab-icon .fa-2 {
  font-size: 12px;
  font-weight: 700;
}

/* Two Tabs Centered */
.timeline-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .day-header {
    padding: 20px 15px;
    margin-bottom: 30px;
  }

  .day-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .day-title {
    font-size: 18px;
  }

  .timeline-tabs {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .day-header {
    padding: 15px 12px;
  }

  .day-title {
    font-size: 16px;
  }
  
  .tab-text {
    font-size: 12px;
  }

  .tab-btn {
    padding: 12px 20px;
  }
}/* End custom CSS */