.author-social a:hover,
.calendar-loader i,
.contact-icon i,
.detail-item i,
.footer-logo span,
.navbar-brand span,
.reply-btn:hover {
  color: var(--accent-teal);
}
*,
.timeline-card {
  box-sizing: border-box;
}
.footer-links h5:after,
.section-title h2:after,
.timeline-card::after,
.timeline::after {
  content: "";
  position: absolute;
}
.footer-links a,
.quick-link-item,
.social-links a,
.speaker-social a,
.toc-list a {
  text-decoration: none;
}
.form-control,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Nunito, sans-serif;
}
.coc-important,
.contact-card,
.copyright,
.discount-tier,
.early-bird-banner,
.image-caption,
.impact-stat,
.preloader-content,
.pricing-card,
.privacy-header,
.section-title,
.stat-item,
.step,
.transport-card h4,
.venue-info-card h4 {
  text-align: center;
}
:root {
  --primary-dark: #0a1f44;
  --primary-blue: #1a3b7a;
  --accent-purple: #6a11cb;
  --accent-teal: #00c9ff;
  --light-bg: #f8f9fa;
  --text-dark: #333;
  --text-light: #777;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}
.nav-link,
.navbar {
  transition: var(--transition);
}
* {
  margin: 0;
  padding: 0;
}
body {
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
.preloader-content {
  color: var(--white);
}
.nav-link,
.navbar-brand {
  color: var(--white) !important;
}
.calendar-loader {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  position: relative;
  animation: 2s infinite pulse;
}
.calendar-loader i {
  font-size: 80px;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.navbar {
  background-color: rgba(10, 31, 68, 0.95) !important;
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
}
.nav-link {
  font-weight: 500;
  margin: 0 8px;
}
.nav-link.active,
.nav-link:hover {
  color: var(--accent-teal) !important;
}
.hero-section {
  background: linear-gradient(rgba(10, 31, 68, 0.85), rgba(26, 59, 122, 0.9))
      center/cover,
    url("https://images.unsplash.com/photo-1540575467063-178a50c2df87?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
      center/cover;
  color: var(--white);
  padding: 180px 0 120px;
  position: relative;
}
.hero-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 700px;
}
.event-details {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  margin: 40px 0;
  display: inline-block;
}
.btn-primary,
.section-title h2:after {
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
}
.btn-outline-light,
.btn-primary {
  padding: 12px 30px;
  transition: var(--transition);
  font-weight: 600;
}
.detail-item {
  display: inline-block;
  margin-right: 30px;
}
.detail-item i {
  margin-right: 10px;
}
.btn-primary {
  border: none;
  border-radius: 50px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}
.btn-outline-light {
  border-radius: 50px;
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.section-title {
  position: relative;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  display: inline-block;
  position: relative;
}
.section-title h2:after {
  width: 70px;
  height: 4px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
.footer-links h5:after,
.social-links a:hover {
  background: var(--accent-teal);
}
.section-padding {
  padding: 100px 0;
}
.about-section,
.blog-section,
.coc-section,
.faq-section,
.past-events-section,
.privacy-section,
.schedule-section,
.speakers-section,
.sponsors-section,
.testimonial-section,
.tickets-section {
  background-color: var(--light-bg);
}
.highlight-item {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.highlight-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.highlight-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.blog-card,
.pricing-card,
.schedule-item,
.speaker-card {
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.highlight-icon i,
.venue-info-card .icon i {
  font-size: 30px;
  color: var(--white);
}
.schedule-tabs {
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px;
}
.schedule-tabs .nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 20px;
  margin: 0 5px;
}
.schedule-tabs .nav-link.active {
  color: var(--primary-blue) !important;
  border-bottom: 3px solid var(--accent-teal);
  background: 0 0;
}
.schedule-item {
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}
.venue-info,
.venue-map {
  border-radius: 15px;
}
.schedule-item:hover {
  transform: translateX(10px);
}
.schedule-time {
  font-weight: 600;
  color: var(--accent-purple);
  margin-bottom: 5px;
}
.contact-info,
.footer,
.footer-logo,
.social-links a {
  color: var(--white);
}
.sponsor-logo,
.venue-info {
  padding: 30px;
  margin-bottom: 30px;
}
.contact-card,
.newsletter-widget,
.pricing-header {
  background: linear-gradient(
    to right,
    var(--primary-dark),
    var(--primary-blue)
  );
  color: var(--white);
}
.contact-form,
.sponsor-logo,
.venue-info {
  background: var(--white);
  box-shadow: var(--shadow);
}
.venue-map {
  overflow: hidden;
  box-shadow: var(--shadow);
  height: auto;
}
.sponsor-logo {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  transition: var(--transition);
}
.contact-form,
.contact-info {
  padding: 40px;
  border-radius: 15px;
}
.sponsor-logo:hover {
  transform: translateY(-10px);
}
.scroll-to-top:hover,
.social-links a:hover {
  transform: translateY(-5px);
}
.sponsor-logo img {
  max-width: 100%;
  max-height: 80px;
  filter: grayscale(100%);
  transition: var(--transition);
}
.sponsor-logo:hover img {
  filter: grayscale(0);
}
.data-table tbody tr,
.form-control {
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--accent-teal);
}
.contact-info {
  background: linear-gradient(
    to right,
    var(--primary-dark),
    var(--primary-blue)
  );
  height: auto;
}
.contact-icon,
.social-links a {
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  display: flex;
}
.scroll-to-top,
.social-links a,
.speaker-social a {
  border-radius: 50%;
  transition: var(--transition);
}
.contact-item {
  display: flex;
  margin-bottom: 10px;
}
.contact-icon {
  justify-content: center;
  flex-shrink: 0;
}
.footer {
  background: var(--primary-dark);
  padding: 70px 0 30px;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  margin-top: 20px;
}
.social-links a {
  width: 45px;
  height: 45px;
  justify-content: center;
  margin-right: 10px;
}
.footer-links h5 {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-links h5:after {
  width: 50px;
  height: 3px;
  bottom: 0;
  left: 0;
}
.category-list,
.footer-links ul {
  list-style: none;
  padding: 0;
}
.category-list li,
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--accent-teal);
  padding-left: 5px;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
  color: rgba(255, 255, 255, 0.6);
}
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.blog-card,
.contact-card,
.hotel-card,
.map-container,
.quick-links,
.speaker-card,
.timeline-content,
.transport-card,
.venue-info-card {
  box-shadow: var(--shadow);
}
.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .section-padding {
    padding: 80px 0;
  }
  .pricing-card.popular {
    transform: scale(1);
    margin: 20px 0;
  }
  .pricing-card.popular:before {
    top: 15px;
    right: -30px;
    font-size: 0.7rem;
    padding: 5px 30px;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-section {
    padding: 150px 0 100px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .detail-item {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .contact-info {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .navbar-brand {
    font-size: 1.5rem;
  }
}
.blog-card,
.speaker-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
}
.speaker-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.speaker-img {
  height: 420px;
  overflow: hidden;
}
.blog-image img,
.event-image img,
.gallery-item img,
.hotel-image img,
.speaker-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.blog-card:hover .blog-image img,
.hotel-card:hover .hotel-image img,
.speaker-card:hover .speaker-img img,
.timeline-content:hover .event-image img {
  transform: scale(1.05);
}
.blog-content,
.hotel-info,
.speaker-info {
  padding: 25px;
}
.speaker-role {
  color: var(--accent-purple);
  font-weight: 600;
  margin-bottom: 5px;
}
.speaker-company {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.speaker-bio {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.speaker-topic {
  display: inline-block;
  background: rgba(106, 17, 203, 0.1);
  color: var(--accent-purple);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}
.speaker-social {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.speaker-social a {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  color: var(--primary-blue);
}
.blog-category,
.speaker-social a:hover,
.step.active .step-number {
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
  color: var(--white);
}
.pricing-card.popular:before,
.step.completed .step-number {
  background: var(--accent-teal);
}
.article-header,
.faq-search,
.speaker-filters {
  margin-bottom: 40px;
}
.filter-btn {
  background: var(--white);
  border: 1px solid #ddd;
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 50px;
  margin: 0 5px 10px;
  transition: var(--transition);
  font-weight: 500;
}
.coc-important h4,
.coc-list li,
.faq-answer p,
.faq-answer ul,
.speaker-item {
  margin-bottom: 15px;
}
.filter-btn.active,
.filter-btn:hover,
.page-link.active,
.page-link:hover {
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
  color: var(--white);
  border-color: transparent;
}
.coc-section-title,
.faq-category-title {
  border-bottom: 3px solid var(--accent-teal);
}
.coc-container,
.faq-container,
.privacy-container {
  background: var(--white);
  border-radius: 15px;
  padding: 50px;
  box-shadow: var(--shadow);
}
.coc-important {
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
  color: var(--white);
  padding: 25px;
  border-radius: 10px;
  margin: 40px 0;
}
.coc-important h4 {
  font-size: 1.5rem;
}
.coc-section-title {
  color: var(--primary-blue);
  margin: 40px 0 20px;
  padding-bottom: 15px;
}
.coc-section-title:first-child,
.faq-category-title:first-child,
.privacy-section-title:first-child {
  margin-top: 0;
}
.coc-list {
  list-style-type: none;
  padding-left: 0;
}
.coc-list li {
  padding-left: 35px;
  position: relative;
}
.coc-list li:before,
.highlight-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: 700;
  font-size: 1.2rem;
}
.coc-list.warning li:before {
  content: "⚠";
  color: #ff9800;
}
.contact-card {
  background: var(--white);
  margin: 30px 0;
  border-left: 5px solid var(--accent-teal);
}
.contact-card h5,
.notice-box h5 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.badge {
  background: rgba(106, 17, 203, 0.1);
  color: var(--accent-purple);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}
.highlight-box,
.quick-link-item:hover {
  background: linear-gradient(
    to right,
    rgba(106, 17, 203, 0.1),
    rgba(0, 201, 255, 0.1)
  );
}
.faq-category-title {
  color: var(--primary-blue);
  margin: 40px 0 25px;
  padding-bottom: 15px;
  font-size: 1.5rem;
}
.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.faq-answer ul {
  padding-left: 20px;
}
.faq-answer li {
  margin-bottom: 8px;
}
.highlight-box {
  border-left: 4px solid var(--accent-teal);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}
.highlight-box h5 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.faq-search input {
  padding: 15px 20px;
  border-radius: 50px;
  border: 2px solid #ddd;
  font-size: 1.1rem;
  transition: var(--transition);
}
.faq-search input:focus,
.form-control:focus,
.form-select:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 0.2rem rgba(0, 201, 255, 0.25);
}
.quick-links {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}
.quick-link-item {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  background: var(--light-bg);
  transition: var(--transition);
  color: var(--text-dark);
}
.quick-link-item:hover {
  transform: translateX(10px);
  color: var(--primary-blue);
}
.quick-link-icon,
.venue-info-card .icon {
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
}
.quick-link-icon {
  width: 50px;
  height: 50px;
  justify-content: center;
  margin-right: 15px;
  color: var(--white);
  font-size: 1.2rem;
}
.venue-hero {
  background: linear-gradient(rgba(10, 31, 68, 0.85), rgba(26, 59, 122, 0.9))
      center/cover,
    url("https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2076&q=80")
      center/cover;
  color: var(--white);
  padding: 150px 0 80px;
  border-radius: 0 0 30px 30px;
  margin-bottom: 50px;
}
.venue-hero-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  margin-top: 20px;
}
.venue-info-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  height: auto !important;
  transition: var(--transition);
}
.blog-card:hover,
.hotel-card:hover,
.timeline-content:hover,
.venue-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.venue-info-card .icon {
  width: 70px;
  height: 70px;
  margin: auto auto 20px;
  justify-content: center;
}
.facility-icon,
.facility-item {
  align-items: center;
  display: flex;
}
.facility-item {
  margin-bottom: 15px;
  padding: 15px;
  background: var(--light-bg);
  border-radius: 10px;
  transition: var(--transition);
}
.facility-item:hover {
  background: rgba(106, 17, 203, 0.1);
  transform: translateX(5px);
}
.facility-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  border-radius: 50%;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.contact-icon i,
.facility-icon i {
  color: var(--white);
  font-size: 20px;
}
.transport-card {
  background: var(--white);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  height: 100%;
  border-top: 5px solid var(--accent-teal);
}
.transport-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  margin: auto auto 20px;
  justify-content: center;
}
.transport-icon i {
  color: var(--white);
  font-size: 24px;
}
.highlight-list,
.toc-list,
.transport-details {
  list-style: none;
  padding-left: 0;
}
.highlight-list li,
.transport-details li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.transport-details li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: 700;
}
.hotel-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: var(--transition);
}
.hotel-image {
  height: 200px;
  overflow: hidden;
}
.event-image,
.gallery-item {
  height: 250px;
  overflow: hidden;
}
.hotel-rating {
  color: #ffc107;
  margin-bottom: 10px;
}
.hotel-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
}
.hotel-price span {
  font-size: 1rem;
  color: var(--text-light);
}
.hotel-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.hotel-feature {
  background: rgba(106, 17, 203, 0.1);
  color: var(--accent-purple);
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}
.map-container {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}
.map-placeholder i {
  font-size: 80px;
  margin-bottom: 20px;
}
.accessibility-section {
  background: linear-gradient(
    to right,
    rgba(106, 17, 203, 0.1),
    rgba(0, 201, 255, 0.1)
  );
  padding: 50px;
  border-radius: 15px;
  margin: 50px 0;
}
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.timeline::after {
  width: 6px;
  background: linear-gradient(
    to bottom,
    var(--accent-purple),
    var(--accent-teal)
  );
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}
.timeline-card {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}
.timeline-card::after {
  width: 25px;
  height: 25px;
  right: -13px;
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
  border: 4px solid var(--white);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
.left {
  left: 0;
}
.right {
  left: 50%;
}
.right::after {
  left: -13px;
}
.timeline-content {
  padding: 30px;
  background: var(--white);
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
}
.event-year {
  position: absolute;
  top: -25px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  background: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.event-image,
.gallery-item,
.stat-item {
  border-radius: 10px;
}
.event-theme {
  color: var(--accent-purple);
  font-weight: 600;
  margin-bottom: 10px;
}
.privacy-header h2,
.stat-number {
  color: var(--primary-blue);
}
.event-image {
  margin: 20px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}
.impact-number,
.stat-number {
  font-weight: 700;
  display: block;
}
.stat-item {
  padding: 15px;
  background: rgba(106, 17, 203, 0.05);
}
.data-table thead tr,
.impact-section {
  background: linear-gradient(
    to right,
    var(--primary-dark),
    var(--primary-blue)
  );
}
.stat-number {
  font-size: 1.8rem;
}
.stat-label,
.step-label {
  font-size: 0.9rem;
  color: var(--text-light);
}
.impact-section {
  color: var(--white);
  padding: 80px 0;
}
.impact-stat {
  margin-bottom: 30px;
}
.impact-number {
  font-size: 3.5rem;
  color: var(--accent-teal);
  margin-bottom: 10px;
}
.impact-label {
  font-size: 1.2rem;
}
.blog-detail-section,
.gallery-section,
.ticket-faq {
  background-color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  cursor: pointer;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 31, 68, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-year {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  height: 100%;
}
.comment-form .form-control,
.privacy-content p,
.privacy-header h2,
.testimonial-text {
  margin-bottom: 20px;
}
.testimonial-text {
  font-style: italic;
  position: relative;
  padding-left: 20px;
}
.testimonial-text:before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--accent-teal);
  font-family: Georgia, serif;
}
.blog-meta span,
.testimonial-author {
  display: flex;
  align-items: center;
}
.btn-outline-primary {
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  color: #fff;
}
.privacy-header {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.last-updated {
  color: var(--text-light);
  font-style: italic;
}
.privacy-section-title {
  color: var(--primary-blue);
  margin: 40px 0 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-teal);
}
.data-table thead tr,
.early-bird-banner,
.pricing-card.popular:before,
.pricing-header,
.privacy-badge,
.step.completed .step-number {
  color: var(--white);
  color: var(--white);
}
.privacy-content {
  line-height: 1.8;
}
.privacy-content ol,
.privacy-content ul {
  margin-bottom: 20px;
  padding-left: 25px;
}
.privacy-content li {
  margin-bottom: 10px;
}
.privacy-content strong {
  color: var(--primary-dark);
}
.notice-box {
  background: linear-gradient(
    to right,
    rgba(106, 17, 203, 0.1),
    rgba(0, 201, 255, 0.1)
  );
  border-left: 4px solid var(--accent-teal);
  padding: 25px;
  border-radius: 0 10px 10px 0;
  margin: 30px 0;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.95em;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.contact-info-box,
.pricing-card,
.toc-container {
  box-shadow: var(--shadow);
}
.data-table thead tr {
  text-align: left;
}
.data-table td,
.data-table th {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.data-table tbody tr:hover {
  background-color: rgba(106, 17, 203, 0.05);
}
.data-table tbody tr:last-of-type {
  border-bottom: 2px solid var(--primary-blue);
}
.privacy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}
.privacy-badge {
  background: var(--primary-blue);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.privacy-badge i {
  margin-right: 8px;
}
.privacy-badge.gdpr {
  background: linear-gradient(to right, #03c, #06c);
}
.privacy-badge.ccpa {
  background: linear-gradient(to right, #f60, #f90);
}
.contact-info-box {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  border: 1px solid #eee;
}
.contact-info-box h4 {
  color: var(--primary-blue);
  margin-bottom: 25px;
  text-align: center;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}
.countdown,
.discount-tiers {
  justify-content: center;
  gap: 20px;
}
.toc-container {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  position: sticky;
  top: 120px;
}
.blog-image,
.pricing-card,
.pricing-header,
.related-title,
.step,
.step-indicator,
.toc-list li {
  position: relative;
}
.toc-container h4 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-teal);
}
.toc-list li {
  margin-bottom: 12px;
  padding-left: 20px;
}
.toc-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: 700;
  font-size: 1.2rem;
}
.toc-list a {
  color: var(--text-dark);
  transition: var(--transition);
}
.toc-list a:hover {
  color: var(--accent-purple);
  padding-left: 5px;
}
.early-bird-banner {
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.early-bird-banner:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.early-bird-banner h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}
.countdown {
  display: flex;
  margin: 20px 0;
}
.countdown-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 10px;
  min-width: 80px;
}
.countdown-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}
.countdown-label {
  font-size: 0.9rem;
  opacity: 0.9;
}
.pricing-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
}
.pricing-card.popular {
  transform: scale(1.05);
  border: 2px solid var(--accent-teal);
}
.share-btn:hover,
.tag:hover {
  transform: translateY(-3px);
}
.pricing-card.popular:before {
  content: "Most Popular";
  content: "Most Popular";
  position: absolute;
  top: 20px;
  right: -35px;
  padding: 5px 40px;
  font-weight: 600;
  transform: rotate(45deg);
  font-size: 0.8rem;
  z-index: 1;
}
.pricing-header {
  background: linear-gradient(
    to right,
    var(--primary-dark),
    var(--primary-blue)
  );
  padding: 30px 20px;
}
.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.price {
  font-size: 3rem;
  font-weight: 700;
  margin: 20px 0;
}
.price span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}
.original-price {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  margin-right: 10px;
}
.pricing-body {
  padding: 30px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  text-align: left;
  display: flex;
  align-items: center;
}
.pricing-features li:last-child {
  border-bottom: none;
}
.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.feature-icon.include {
  background: rgba(0, 201, 255, 0.1);
  color: var(--accent-teal);
}
.feature-icon.exclude {
  background: rgba(119, 119, 119, 0.1);
  color: var(--text-light);
}
.group-discounts {
  background: linear-gradient(
    to right,
    rgba(106, 17, 203, 0.1),
    rgba(0, 201, 255, 0.1)
  );
  padding: 60px;
  border-radius: 15px;
  margin: 50px 0;
}
.discount-tier,
.payment-method,
.registration-form {
  background: var(--white);
  box-shadow: var(--shadow);
}
.discount-tiers {
  display: flex;
  margin-top: 30px;
}
.discount-tier {
  padding: 25px;
  border-radius: 10px;
  min-width: 150px;
}
.discount-percentage {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-purple);
  display: block;
  margin-bottom: 10px;
}
.payment-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}
.payment-method {
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 60px;
}
.payment-method img {
  max-width: 100%;
  max-height: 30px;
}
.registration-form {
  border-radius: 15px;
  padding: 40px;
  margin-top: 30px;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.blog-meta,
.step-number {
  align-items: center;
  display: flex;
}
.step-indicator:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 3px;
  background: #eee;
  z-index: 0;
}
.step {
  z-index: 1;
}
.step-number {
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 50%;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: 600;
  color: var(--text-light);
}
.faq-question,
.step.active .step-label {
  color: var(--primary-dark);
  font-weight: 600;
}
.form-control,
.form-select {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: var(--transition);
}
.faq-item {
  transition: var(--transition);
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.faq-question {
  background: var(--white);
  padding: 20px 25px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover {
  background: rgba(106, 17, 203, 0.05);
}
.faq-question.active {
  background: linear-gradient(
    to right,
    rgba(106, 17, 203, 0.1),
    rgba(0, 201, 255, 0.1)
  );
  color: var(--primary-blue);
}
.faq-icon {
  color: var(--accent-teal);
  font-size: 1.2rem;
  transition: var(--transition);
}
.author-info p,
.blog-excerpt,
.blog-meta {
  color: var(--text-light);
}
.faq-question.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  background: var(--white);
}
.author-social a,
.blog-title a,
.category-list a,
.nav-next,
.nav-prev,
.page-link,
.reply-btn,
.share-btn,
.tag {
  transition: var(--transition);
}
.faq-answer.show {
  padding: 20px 25px;
  max-height: 1000px;
}
.blog-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.author-info h4,
.author-info h6,
.comment-content h5 {
  margin-bottom: 5px;
}
.author-info p {
  font-size: 0.85rem;
}
.featured-post {
  background: linear-gradient(
    to right,
    var(--primary-dark),
    var(--primary-blue)
  );
  color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: var(--shadow);
}
.featured-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-badge {
  background: var(--accent-teal);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}
.featured-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}
.featured-title a {
  color: var(--white);
  text-decoration: none;
}
.featured-title a:hover {
  text-decoration: underline;
}
.featured-excerpt {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}
.featured-image {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}
.author-avatar img,
.comment-avatar img,
.featured-image img,
.recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.page-link {
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  border: 1px solid #ddd;
  color: var(--text-dark);
}
.article-category,
.tag:hover {
  color: var(--white);
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
}
.article-category {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}
.article-title {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary-dark);
}
.article-meta {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  color: var(--text-light);
  font-size: 1rem;
}
.article-meta span {
  margin-right: 25px;
  display: flex;
  align-items: center;
  color: #fff;
}
.article-meta i {
  margin-right: 8px;
  color: var(--accent-teal);
}
.article-author {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 25px;
  background-color: rgba(106, 17, 203, 0.05);
  border-radius: 15px;
}
.category-list a:hover,
.tag {
  background: rgba(106, 17, 203, 0.1);
}
.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}
.author-info p {
  color: var(--text-light);
  margin-bottom: 10px;
}
.author-social a {
  color: var(--accent-purple);
  margin-right: 15px;
  font-size: 1.1rem;
}
.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}
.article-content p {
  margin-bottom: 25px;
}
.article-content h2 {
  font-size: 2rem;
  margin: 50px 0 25px;
  color: var(--primary-blue);
}
.article-content h3 {
  font-size: 1.6rem;
  margin: 40px 0 20px;
  color: var(--primary-dark);
}
.article-content blockquote {
  border-left: 5px solid var(--accent-teal);
  padding: 25px 30px;
  margin: 40px 0;
  background-color: rgba(106, 17, 203, 0.05);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--primary-blue);
}
.article-content blockquote footer {
  margin-top: 15px;
  font-size: 1rem;
  color: var(--text-light);
}
.article-image {
  margin: 40px 0;
  border-radius: 15px;
  overflow: hidden;
}
.article-image img {
  width: 100%;
  height: auto;
  display: block;
}
.image-caption {
  font-style: italic;
  color: var(--text-light);
  margin-top: 10px;
  font-size: 0.95rem;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.article-tags h5 {
  margin-right: 15px;
  margin-bottom: 10px;
}
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  color: var(--accent-purple);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  text-decoration: none;
}
.article-navigation {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
  padding: 30px;
  background-color: rgba(106, 17, 203, 0.05);
  border-radius: 15px;
}
.nav-next,
.nav-prev {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  max-width: 45%;
}
.blog-title a:hover,
.nav-next:hover,
.nav-prev:hover,
.recent-post-content h6 a:hover {
  color: var(--accent-purple);
}
.nav-prev i {
  margin-right: 15px;
  font-size: 1.5rem;
}
.nav-next i {
  margin-left: 15px;
  font-size: 1.5rem;
}
.nav-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 5px;
}
.nav-title {
  font-weight: 600;
  line-height: 1.3;
}
.comments-section {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid #eee;
}
.comment-form-title,
.comments-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--primary-dark);
}
.comment {
  display: flex;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.comment:last-child,
.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}
.blog-meta,
.blog-meta span {
  align-items: center;
  display: flex;
}
.comment-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.comment-reply {
  margin-top: 15px;
}
.reply-btn {
  background: 0 0;
  border: none;
  color: var(--accent-purple);
  font-weight: 600;
}
.comment-form {
  margin-top: 50px;
  padding: 40px;
  background-color: rgba(106, 17, 203, 0.05);
  border-radius: 15px;
}
.form-control {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.form-control:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 0.25rem rgba(0, 201, 255, 0.25);
}
.related-articles {
  margin-top: 80px;
}
.related-title {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: var(--primary-dark);
  padding-bottom: 15px;
}
.related-title:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
.blog-image {
  height: 200px;
  overflow: hidden;
}
.blog-category,
.search-form button {
  position: absolute;
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
}
.blog-category {
  top: 15px;
  left: 15px;
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.blog-meta {
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 0.85rem;
}
.blog-meta span {
  margin-right: 15px;
}
.text-primary {
  color: rgb(22 43 78) !important;
}
.featured-content .blog-meta span {
  color: #fff;
}
.blog-meta i {
  margin-right: 5px;
  color: var(--accent-teal);
}
.blog-title a,
.recent-post-content h6 a {
  color: var(--primary-dark);
  text-decoration: none;
}
.blog-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.sidebar {
  position: sticky;
  top: 120px;
}
.sidebar-widget {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}
.widget-title {
  color: var(--primary-blue);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-teal);
  font-size: 1.3rem;
}
.category-count,
.recent-post-date {
  font-size: 0.8rem;
  color: var(--text-light);
}
.search-form {
  position: relative;
}
.search-form input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 50px;
  border: 1px solid #ddd;
  font-size: 1rem;
}
.search-form button {
  right: 5px;
  top: 5px;
  border: none;
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-list a {
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-radius: 10px;
}
.category-list a:hover {
  color: var(--accent-purple);
  padding-left: 20px;
}
.category-count {
  background: var(--light-bg);
  padding: 3px 10px;
  border-radius: 50px;
}
.recent-post {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.recent-post-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}
.recent-post-content h6 {
  margin-bottom: 5px;
  line-height: 1.4;
}
.recent-post-content h6 a {
  font-size: 0.95rem;
}
.newsletter-widget .widget-title {
  color: var(--white);
  border-bottom-color: var(--accent-teal);
}
.newsletter-form input {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: none;
  margin-bottom: 15px;
}
.share-buttons {
  display: flex;
  gap: 10px;
}
.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
}
.share-btn.facebook {
  background-color: #3b5998;
}
.share-btn.twitter {
  background-color: #1da1f2;
}
.share-btn.linkedin {
  background-color: #0077b5;
}
.share-btn:hover {
  opacity: 0.9;
}
.contact-card {
  background: linear-gradient(
    to right,
    var(--accent-purple),
    var(--accent-teal)
  );
  color: var(--white);
  border-radius: 15px;
  padding: 40px;
  margin-top: 40px;
}
.contact-card h3 {
  margin-bottom: 20px;
  color: var(--white);
}
html, body {
    width: 100%;
    overflow-x: hidden;
}
.hero-section .btn-primary{margin-bottom: 10px;}