:root {
  --primary: #ffffff;
  --secondary: #0f0f0f;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-dark: #4f46e5;
  --neutral-light: #f8fafc;
  --neutral-gray: #e2e8f0;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--primary);
  color: var(--text-dark);
  font-family: poppins, sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--neutral-light);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

/* Navigation */

/* Hero Slider */

.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-wrapper {
  display: flex;
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* Background with cinematic zoom + dark gradient overlay */

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  transform: scale(1.05);
  animation: zoomSlide 8s ease-in-out infinite alternate;
}

@keyframes zoomSlide {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.1);
  }
}

/* Layered overlay for soft depth */

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  z-index: 1;
}

/* Content styling */

.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 900px;
  color: white;
  animation: fadeSlideIn 1s ease-out forwards;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-content h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -1px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  background: linear-gradient(90deg, #fff 0%, #d1d5db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-content p {
  font-size: 1.20rem;
  margin-bottom: 40px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 600px;
}

/* Button group */

.slide-buttons {
  display: flex;
  gap: 20px;
}

/* Buttons - now minimalist, glassy */

.slide-btn {
  padding: 12px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-primary:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

/* Modern slider dots */

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

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

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.dot.active {
  background: white;
  width: 28px;
  border-radius: 20px;
}

/* Responsive */

@media (max-width: 992px) {
  .slide-content h1 {
    font-size: 2.4rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slide-btn {
    padding: 10px 28px;
  }
}

@media (max-width: 600px) {
  .slide-content {
    padding: 0 6%;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section-title {
  font-size: 3rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 50px;
}

/* Card Layout */

.premium-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  height: 220px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

/* Content */

.premium-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Top Section */

.premium-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.premium-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #94a3b8;
}

/* Icon */

.premium-icon {
  font-size: 26px;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.premium-card:hover .premium-icon {
  transform: scale(1.1);
  opacity: 1;
}

/* Bottom Section */

.premium-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.premium-title {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.premium-meta {
  font-size: 13px;
  color: #64748b;
}

/* Arrow Button */

.premium-cta {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.premium-card:hover .premium-cta {
  background: #e2e8f0;
}

/* Responsive */

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .premium-card {
    height: 180px;
  }
}

/* Featured Events */

.no-events {
  text-align: center;
  padding: 30px;
  font-size: 1rem;
  color: #777;
}

.events-section {
  padding: 120px 50px;
  background: var(--primary);
}

#pastEvents.events-section {
  padding-top: 0px;
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.view-all-btn {
  background: #fff;
  text-decoration: underline;
  color: #222;
  padding: 7px 28px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  transform: translateY(-2px);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 35px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.event-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: 1px solid var(--neutral-gray);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.event-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
  border-color: var(--accent);
}

.event-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.event-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

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

.event-date-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.event-date-day {
  font-size: 1.2rem;
  color: var(--accent);
}

.event-date-month {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

.event-content {
  padding: 28px;
}

.event-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.event-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.event-location {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--neutral-gray);
  margin-top: 18px;
}

.event-price {
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.event-btn {
  background: #fff;
  color: #222;
  border: 1px solid #ccc;
  padding: 7px 30px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.event-btn:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* Trending Section */

.trending-section {
  padding: 120px 50px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.trending-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--neutral-gray);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.trending-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.trending-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
  border-color: var(--accent);
}

.trending-card:hover::before {
  opacity: 0.05;
}

.trending-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.trending-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.trending-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-gray);
}

.trending-attendees {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
}

.trending-attendees strong {
  color: var(--accent);
  font-weight: 800;
}

.trending-price {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats Section */

.stats-section {
  padding: 140px 50px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stats-section h2 {
  color: var(--text-dark);
  margin-bottom: 70px;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: white;
  padding: 50px 35px;
  border-radius: 20px;
  text-align: center;
  color: var(--text-dark);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.2);
  border-color: var(--accent);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
  color: var(--text-dark);
  font-weight: 800;
}

/* Testimonials Section */

.testimonials-section {
  padding: 120px 50px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
}

.testimonial-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--neutral-gray);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
  border-color: var(--accent);
}

.stars {
  color: var(--warning);
  font-size: 1.3rem;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 25px;
  font-style: italic;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--neutral-gray);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3px;
  letter-spacing: -0.3px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Added Trusted By section styling */

.trusted-section {
  padding: 100px 50px;
  background: var(--primary);
  text-align: center;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.trusted-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  padding: 20px;
  background: var(--neutral-light);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--neutral-gray);
}

.trusted-logo:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.1);
  border-color: var(--accent);
}

.trusted-logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Added FAQ section styling */

.faq-section {
  padding: 120px 50px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--neutral-gray);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
  border-color: var(--accent);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--accent);
  font-weight: 800;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px 24px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 400;
}

/* Footer */

footer {
  background: var(--text-dark);
  padding: 80px 50px 40px;
  color: white;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 22px;
  color: white;
  letter-spacing: -0.3px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 0.95rem;
}

.categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.categories-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.categories-header p {
  color: #cbd5e1;
  font-size: 1rem;
}

/* Responsive design */

@media (max-width: 768px) {
  .hero-slider {
    height: 400px;
  }

  .slide-content {
    padding: 50px 20px;
  }

  .slide-content h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .events-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trusted-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* about us */

/* Hero Section */

.about-hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  padding: 100px 50px;
  text-align: center;
  color: white;
}

.about-hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.about-hero p {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.6;
}

/* Main Content */

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 50px;
}

/* Mission Section */

.mission-section {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-text h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.mission-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.mission-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* Values Section */

.values-section {
  margin-bottom: 80px;
}

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

.value-card {
  background: var(--neutral-light);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--neutral-gray);
}

.value-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
  border-color: var(--accent);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 500;
}

/* Stats Section */

.stats-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 80px 50px;
  border-radius: 20px;
  margin-bottom: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Team Section */

.team-section {
  margin-bottom: 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--neutral-gray);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
  border-color: var(--accent);
}

.team-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.team-role {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.team-bio {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
}

/* Timeline Section */

.timeline-section {
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 100%);
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: auto;
  width: calc(50% - 30px);
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
  width: calc(50% - 30px);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: white;
  border: 4px solid var(--accent);
  border-radius: 50%;
  top: 20px;
  z-index: 1;
}

.timeline-content {
  background: var(--neutral-light);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--neutral-gray);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
  border-color: var(--accent);
}

.timeline-year {
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.timeline-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */

.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  padding: 60px 50px;
  border-radius: 16px;
  text-align: center;
  color: white;
  margin-bottom: 80px;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.6;
}

.cta-btn {
  background: white;
  color: var(--accent);
  padding: 14px 40px;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 20px;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-content {
    padding: 50px 20px;
  }

  .mission-section {
    grid-template-columns: 1fr;
  }

  .mission-image {
    height: 250px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
       .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 60px);
    margin-left: 50px !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .timeline-dot {
    left: 20px;
  }
}

/* contact us */

/* Hero Section */

.contact-hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  padding: 100px 50px;
  text-align: center;
  color: white;
}

.contact-hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.contact-hero p {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.6;
}

/* Main Content */

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Contact Info */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.contact-info>p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-details p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

/* Contact Form */

.contact-form {
  background: var(--neutral-light);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--neutral-gray);
}

.contact-form h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

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

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.form-group input,
   .form-group textarea,
   .form-group select {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--neutral-gray);
  border-radius: 8px;
  font-family: poppins, sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: var(--text-dark);
}

.form-group input:focus,
   .form-group textarea:focus,
   .form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

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

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.form-info {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 15px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 20px;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    padding: 50px 20px;
  }

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

  .contact-form {
    padding: 25px;
  }
}

/* event details */

/* Hero Section */

.event-hero {
  height: 500px;
  background-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1200&h=500&fit=crop');
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: -1px;
}

.event-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.breadcrumb {
  padding: 20px 50px;
  display: flex;
  gap: 10px;
  background: var(--neutral-light);
  border-bottom: 1px solid var(--neutral-gray);
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--accent-dark);
}

.breadcrumb span {
  color: var(--text-light);
}

/* Main Content */

.event-details-container {
  max-width: 1200px;
  margin: -80px auto 0;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}

.event-main {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--neutral-gray);
}

.event-header {
  margin-bottom: 40px;
  border-bottom: 2px solid var(--neutral-gray);
  padding-bottom: 30px;
}

.event-category-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 15px;
}

.event-details-container h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.event-meta-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-weight: 600;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.meta-item strong {
  color: var(--text-dark);
}

/* Description Section */

.section-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.section-content p {
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 15px;
  font-weight: 500;
}

.section-content {
  margin-bottom: 50px;
}

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

.feature-item {
  padding: 20px;
  background: var(--neutral-light);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.feature-item h4 {
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.feature-item p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-light);
}

/* Reviews Section */

.reviews-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid var(--neutral-gray);
}

.review-card {
  padding: 25px;
  background: var(--neutral-light);
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--neutral-gray);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-author {
  font-weight: 800;
  color: var(--text-dark);
}

.review-rating {
  color: var(--warning);
  font-weight: 800;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 500;
}

/* Sidebar */

.event-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.event-sb-container {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--neutral-gray);
  top: 100px;
}

.price-display {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.price-label {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  background: var(--neutral-light);
  padding: 10px;
  border-radius: 8px;
}

.quantity-btn {
  width: 35px;
  height: 35px;
  border: none;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  color: var(--accent);
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: var(--accent);
  color: white;
}

.quantity-display {
  flex: 1;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
}

.booking-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 15px;
}

.booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.info-list {
  background: var(--neutral-light);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.info-list li {
  list-style: none;
  padding: 8px 0;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

.info-list strong {
  color: var(--text-dark);
  font-weight: 800;
}

@media (max-width: 768px) {
  .event-details-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .event-main {
    padding: 25px;
  }

  .booking-card {
    position: static;
  }

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

  .event-details-container h1 {
    font-size: 2rem;
  }
}

/* Search section styles with litepicker integration */

.search-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 60px 50px;
  position: relative;
  z-index: 50;
}

.search-container {
  max-width: 1200px;
  margin: 0 auto;
}

.search-box {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--neutral-gray);
}

.search-input-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--neutral-gray);
}

.search-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  font-family: poppins, sans-serif;
  outline: none;
}

.search-input::-moz-placeholder {
  color: var(--text-light);
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-filter-group {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: flex-end;
}

.filter-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-item label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.litepicker {
  font-family: inherit !important;
  /* inherits from body */
}

.date-input,
   .location-select {
  padding: 12px 16px;
  border: 1px solid var(--neutral-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  font-family: poppins, sans-serif;
  color: var(--text-dark);
  background: var(--neutral-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.litepicker .container__days .day-item.is-end-date,
   .litepicker .container__footer .button-apply {
  background: var(--accent) !important;
}

.litepicker .container__footer .button-cancel,
   .litepicker .container__footer .button-apply {
  padding: 8px 20px !important;
}

.litepicker .container__days .day-item.is-in-range {
  background: var(--accent-light) !important;
  color: white !important;
}

.litepicker .container__days .day-item:hover {
  color: var(--accent) !important;
  box-shadow: inset 0 0 0 1px var(--accent) !important;
}

.litepicker .container__days .day-item.is-start-date {
  background: var(--accent) !important;
  color: #fff !important;
}

.litepicker .container__days .day-item.is-end-date:hover,
   .litepicker .container__days .day-item.is-start-date:hover,
   .litepicker .container__days .day-item.is-start-date.is-end-date:hover,
   .litepicker .container__days .day-item.is-start-date:hover,
   .litepicker .container__days .day-item.is-end-date:hover,
   .litepicker .container__days .day-item.is-in-range:hover {
  color: #fff !important;
}

.litepicker .container__days>div,
   .litepicker .container__days>a {
  padding: 10px 15px !important;
  width: var(--litepicker-day-width);
}

.litepicker .container__footer,
   .litepicker .container__months,
   .litepicker .container__footer {
  background: #fff !important;
  box-shadow: none !important;
}

.litepicker .container__footer {
  margin: 0px !important;
}

.litepicker {
  box-shadow: 0 0 5px var(--litepicker-container-months-box-shadow-color) !important;
}

.litepicker .container__months .month-item-header div>.month-item-name {
  font-size: 14px;
}

/* .litepicker .day-item.is-start-date,
.litepicker .day-item.is-end-date {
  background: var(--accent-light) !important;
  color: white !important;
}
.litepicker .day-item:hover {
  border-color: var(--accent-light) !important;
} */

.date-input:hover,
   .location-select:hover {
  border-color: var(--accent);
  background: white;
}

.date-input:focus,
   .location-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.primary-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: poppins, sans-serif;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.primary-btn-icon {
  width: 20px;
  height: 20px;
}

.search-suggestions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.suggestion-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.suggestion-tag {
  background: white;
  border: 1px solid var(--neutral-gray);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: poppins, sans-serif;
}

.suggestion-tag:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(129, 140, 248, 0.05) 100%);
  color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .search-section {
    padding: 40px 20px;
    margin-top: -60px;
  }

  .search-box {
    padding: 16px;
  }

  .search-filter-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
  }

  .search-suggestions {
    gap: 8px;
  }
}

/* Circular navigation buttons on right side of title */

.categories-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
}

.categories-header-wrapper .section-title, .section-title.no-margin {
  margin-bottom: 0px;
}

.carousel-nav-buttons {
  gap: 12px;
  flex-shrink: 0;
}

.carousel-nav-buttons,
.btn-container {
  display: none;
  /* hide until JS confirms there are events */
}

.owl-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #64748b;
}

.owl-nav-btn:hover {
  border-color: #6366f1;
  color: #6366f1;
  background: #f8fafc;
  transform: scale(1.05);
}

.owl-nav-btn:active {
  transform: scale(0.95);
}

/* Owl Carousel styling */

.categories-carousel {
  display: flex;
  gap: 24px;
}

.categories-carousel .owl-stage {
  display: flex;
}

.categories-carousel .owl-stage-outer {
  overflow: hidden;
}

.owl-carousel .owl-stage-outer{
  padding: 40px 0px;
}