/* Reset and Base Styles */
/* Harif Edit */
        /* Hybrid text styling */
.floating-shapes {
  position: relative; /* make this the positioning parent */
}

.hybrid-text { 
  position: absolute;
  right: 0;              /* stick to right edge */
  top: 50%;              /* vertically center */
  transform: translateY(-50%) rotate(270deg);
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Arial', sans-serif;
  color: rgba(255, 255, 255, 0.3);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* On small devices, move below hero-badge */
@media (max-width: 768px) {
  .hybrid-text {
    position: static; /* follow normal flow */
    transform: none;  /* remove rotation */
    font-size: 2rem;
    text-align: center;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
  }
}
        /* *************************************** */
        .credentials span {
            background: linear-gradient(135deg, #f82249, #e0072f);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
            border: none;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: translateY(-2px);
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .logo-image {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        .logo:hover .logo-image {
            transform: scale(1.1) rotate(5deg);
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
        }

        .logo-text {
            background: linear-gradient(45deg, #fff, #e0e0e0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 2s ease-in-out infinite alternate;
        }

        @keyframes shimmer {
            0% {
                background: linear-gradient(45deg, #fff, #e0e0e0);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
            100% {
                background: linear-gradient(45deg, #f0f0f0, #fff);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
        }

        /* Loading animation for logo */
        @keyframes logoLoad {
            0% {
                opacity: 0;
                transform: translateX(-20px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .logo {
            animation: logoLoad 0.8s ease-out;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .nav-container {
                padding: 0.8rem 1rem;
            }
            
            .logo {
                font-size: 1.2rem;
            }
            
            .logo-image {
                width: 40px;
                height: 40px;
                margin-right: 10px;
            }
        }

/* Privacy ploicy************************************************************** */

      .policy-nav {
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        padding: 20px;
      }

      .policy-nav ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
      }

      .policy-nav li {
        flex: 1;
        min-width: 200px;
      }

      .policy-nav button {
        width: 100%;
        padding: 12px 20px;
        background: #2d5a27;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
        font-size: 1rem;
      }

      .policy-nav button:hover,
      .policy-nav button.active {
        background: #4a7c59;
      }

      .policy-section {
        display: none;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 40px;
        margin-bottom: 30px;
      }

      .policy-section.active {
        display: block;
      }

      .policy-section h2 {
        color: #2d5a27;
        font-size: 2rem;
        margin-bottom: 20px;
        border-bottom: 3px solid #4a7c59;
        padding-bottom: 10px;
      }

      .policy-section h3 {
        color: #2d5a27;
        font-size: 1.3rem;
        margin: 25px 0 15px 0;
      }

      .policy-section h4 {
        color: #4a7c59;
        font-size: 1.1rem;
        margin: 20px 0 10px 0;
      }

      .policy-section p {
        margin-bottom: 15px;
        text-align: justify;
      }

      .policy-section ul,
      .policy-section ol {
        margin: 15px 0 15px 30px;
      }

      .policy-section li {
        margin-bottom: 8px;
      }

      .highlight {
        background-color: #e8f5e8;
        padding: 15px;
        border-left: 4px solid #2d5a27;
        margin: 20px 0;
        border-radius: 0 5px 5px 0;
      }

      .contact-info {
        background: #f0f8f0;
        padding: 20px;
        border-radius: 8px;
        margin: 25px 0;
      }

      .contact-info h4 {
        color: #2d5a27;
        margin-bottom: 10px;
      }

      .warning {
        background-color: #fff3cd;
        border: 1px solid #ffeaa7;
        border-radius: 5px;
        padding: 15px;
        margin: 20px 0;
      }

      .footer {
        text-align: center;
        padding: 30px;
        background: #2d5a27;
        color: white;
        border-radius: 10px;
        margin-top: 40px;
      }

      @media (max-width: 768px) {
        .policy-nav ul {
          flex-direction: column;
        }

        .policy-nav li {
          min-width: 100%;
        }

        .header h1 {
          font-size: 2rem;
        }

        .policy-section {
          padding: 20px;
        }
      }
/* Privacy ploicy************************************************************** end*/





/* Dropdown menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #444;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
}

.dropdown-content li a {
  padding: 10px 15px;
}

.dropdown.open .dropdown-content {
  display: block;
}

/* Policies******************** end*/

/* Harif Edit  End */

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

:root {
  --primary: #00a652;
  --secondary: #0077be;
  --accent: #ff6b35;
  --dark: #1a1a2e;
  --light: #f5f5f5;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --glass: rgba(255, 255, 255, 0.1);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: #f8f9fa;
}

/* Preloader with Rotating Image */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00a652 0%, #0077be 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.rotating-image {
  width: 80px;
  height: 80px;
  animation: rotate 2s linear infinite;
}

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

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 0.5rem 5%;
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo span {
  font-size: 2rem;
  margin-right: 0.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
#navbar {
  position: sticky;
  top: 0;

  padding: 1rem;
}

section {
  padding-top: 60px; /* Same as navbar height */
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.register-btn {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white !important;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 166, 82, 0.3);
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 166, 82, 0.4);
}

.login-btn {
  padding: 0.75rem 2rem;
  background: #28a745;
  color: white !important;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #00a652 0%, #0077be 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff10" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    bottom no-repeat;
  background-size: cover;
}

.hero-content {
  text-align: center;
  color: white;
  padding: 2rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.logos {
  margin-bottom: 1rem;
}

.logos img {
  max-height: 80px;
  width: auto;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
}

.hero-theme {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffd700;
  margin-bottom: 1rem;
  font-weight: 600;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

.hero-info {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: #28a745;
  color: white;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-secondary:hover {
  background: #218838;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
}

/* Floating Elements */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float-random 20s infinite;
}

.shape:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  animation-duration: 25s;
}

.shape:nth-child(2) {
  top: 60%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-duration: 30s;
}

.shape:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 60px;
  height: 60px;
  background: white;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-duration: 35s;
}

@keyframes float-random {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Countdown Timer */
.countdown-section {
  padding: 4rem 5%;
  background: white;
  position: relative;
}

.countdown-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.countdown-title {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 2rem;
  font-weight: 700;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.countdown-item {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 2rem;
  border-radius: 20px;
  min-width: 150px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
}

.countdown-value {
  font-size: 3rem;
  font-weight: 800;
  display: block;
}

.countdown-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}

/* About Section */
.about-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

/* HariEdit ************************************************************/
.about-container {
  display: flex;
  gap: 2rem;
  align-items: stretch; /* Forces equal height */
}

.about-content, 
.about-image {
  flex: 1;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Youtube Video */

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  min-height: 400px;
  width: 100%;

  /* Gradient background behind video */
  background: linear-gradient(135deg, #00a652, #0077be);
}

.video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  background: linear-gradient(135deg, #00a652, #0077be);
}



.about-placeholder {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
  z-index: 2; /* above video */
}

.about-stats {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  z-index: 2;
}

.stat-item {
  text-align: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
}

.stat-label {
  font-size: 0.9rem;
}
/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/



        /* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        .section-with-bg {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 80px 0;
            position: relative;
        }



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

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        } */
        .section-with-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
            pointer-events: none;
        }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        #faq-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .faq-question {
            display: block;
            padding: 25px 30px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            transition: var(--transition);
            background: white;
            border: none;
            outline: none;
            cursor: pointer;
        }

        .faq-question:hover {
            color: var(--primary-color);
            background: var(--bg-light);
            text-decoration: none;
        }

        .faq-question.active {
            background: var(--primary-color);
            color: white;
        }

        .faq-question .faq-icon {
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .faq-question.active .faq-icon {
            transform: translateY(-50%) rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            background: white;
            border-top: 1px solid var(--border-color);
            overflow: hidden;
            transition: var(--transition);
            max-height: 0;
            opacity: 0;
        }

        .faq-answer.show {
            max-height: 500px;
            opacity: 1;
            padding: 25px 30px;
        }

        .faq-answer p {
            margin: 0;
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1rem;
        }

        .faq-answer a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .faq-answer a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .search-box {
            margin-bottom: 40px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid var(--border-color);
            border-radius: 50px;
            font-size: 1rem;
            transition: var(--transition);
            background: white;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        }

        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .no-results {
            text-align: center;
            padding: 40px;
            color: var(--text-light);
            display: none;
        }

        .no-results i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-with-bg {
                padding: 60px 0;
            }

            .container {
                padding: 0 20px;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .faq-question {
                padding: 20px 25px;
                font-size: 1rem;
                padding-right: 60px;
            }

            .faq-question .faq-icon {
                right: 25px;
            }

            .faq-answer.show {
                padding: 20px 25px;
            }

            .search-input {
                padding: 12px 45px 12px 15px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .section-header h2 {
                font-size: 1.8rem;
            }

            .faq-question {
                padding: 18px 20px;
                padding-right: 55px;
                font-size: 0.95rem;
            }

            .faq-question .faq-icon {
                right: 20px;
                font-size: 1rem;
            }

            .faq-answer.show {
                padding: 18px 20px;
            }
        }

        /* Animation classes */
        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }

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

        .highlight {
            background-color: yellow;
            padding: 2px 4px;
            border-radius: 3px;
        }




/* Theme Category Styling *********************************************************/
.theme-category {
  margin-bottom: var(--space-4xl);
}

.theme-category:last-child {
  margin-bottom: 0;
}

.theme-category-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.theme-category-title {
  font-size: 2rem;
  font-weight: var(--font-bold);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.theme-category-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: var(--font-medium);
  margin: 0;
}

/* Annual Theme Specific Styling */
/* .annual-theme .theme-category-title {
  color: var(--wetland-blue);
  background: linear-gradient(135deg, var(--wetland-blue), var(--forest-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} */

/* .annual-theme .theme-category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--wetland-blue), var(--forest-green));
  border-radius: var(--radius-full);
} */

/* Annual Theme Cards */
.annual-card {
  border-left: 4px solid var(--wetland-blue);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.02), rgba(22, 163, 74, 0.02));
}

.annual-card:hover {
  border-left-color: var(--forest-green);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(14, 165, 233, 0.1);
}

.annual-card .theme-icon {
  background: linear-gradient(135deg, var(--wetland-blue), var(--forest-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.annual-card .theme-topics li::before {
  color: var(--wetland-blue);
}

/* Foundational Theme Specific Styling */
.foundational-theme .theme-category-title {
  color: var(--primary-color);
}

/* .foundational-theme .theme-category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-full);
} */

/* Divider between sections */
.annual-theme::after {
  content: '';
  position: absolute;
  bottom: calc(-1 * var(--space-2xl));
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

.annual-theme {
  position: relative;
  padding-bottom: var(--space-2xl);
}

/* Animation for theme categories */
.theme-category {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease forwards;
}

.annual-theme {
  animation-delay: 0.2s;
}

.foundational-theme {
  animation-delay: 0.4s;
}

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

/* Enhanced card hover effects for distinction */
.annual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wetland-blue), var(--forest-green));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .theme-category-title {
    font-size: 1.75rem;
  }
  
  .theme-category-subtitle {
    font-size: 1rem;
  }
  
  .theme-category {
    margin-bottom: var(--space-3xl);
  }
  
  .annual-theme {
    padding-bottom: var(--space-lg);
  }
  
  .annual-theme::after {
    bottom: calc(-1 * var(--space-lg));
  }
}

@media (max-width: 480px) {
  .theme-category-header {
    margin-bottom: var(--space-2xl);
  }
  
  .theme-category-title {
    font-size: 1.5rem;
  }
  
  .theme-category-subtitle {
    font-size: 0.875rem;
  }
}
/* Theme Category Styling *********************************************************end/
/* Venue Section with Hero Photo ********************************************************************/
.venue-hero {
  margin-bottom: var(--space-4xl);
  position: relative;
}

.venue-image-container {
  position: relative;
  height: 300px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--gray-200);
}

.venue-image-wrapper {
  position: relative;
  height: 120%; /* Make wrapper taller than container to allow for parallax movement */
  width: 100%;
  transform: translateY(-10%); /* Start slightly above */
  transition: transform 0.1s linear;
}

.venue-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Parallax scroll reveal animation */
@media (prefers-reduced-motion: no-preference) {
  .venue-image-wrapper {
    will-change: transform;
  }
}

/* Interactive hover effects */
.venue-image-container:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.venue-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.venue-image-container:hover::before {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .venue-image-container {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .venue-image-container {
    height: 200px;
    border-radius: var(--radius-lg);
  }
}

/* Loading animation for the image */
.venue-hero-image {
  animation: imageLoad 0.8s ease-out;
}

@keyframes imageLoad {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Focus states for accessibility */
.venue-image-container:focus-within {
  outline: 3px solid var(--primary-color);
  outline-offset: 3px;
}
/* Venue Section with Hero Photo ********************************************************************end/
/* Speakers Section Styles *********************************************************/
/* Speakers Section Styles */
.speakers-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

.section-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Container */
.speakers-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.speakers-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.speakers-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Width will be set dynamically by JavaScript */
}

/* Speaker Cards */
.speaker-card {
    height: 400px;
    margin: 0 10px;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    /* Width will be set dynamically by JavaScript */
}

.speaker-card:hover {
    transform: translateY(-10px);
}

.speaker-front,
.speaker-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.speaker-front {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
}

.speaker-back {
    background: linear-gradient(145deg, #2c3e50, #34495e);
    color: white;
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-card.flipped .speaker-front {
    transform: rotateY(-180deg);
}

.speaker-card.flipped .speaker-back {
    transform: rotateY(0deg);
}

/* Speaker Front Content */
.speaker-front img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.speaker-card:hover .speaker-front img {
    transform: scale(1.05);
}

.speaker-front h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.speaker-front p {
    font-size: 1rem;
    color: #667eea;
    font-weight: 500;
}

/* Speaker Back Content */
.speaker-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ecf0f1;
}

.speaker-details .title {
    font-size: 0.9rem;
    color: #3498db;
    margin-bottom: 15px;
    font-weight: 500;
}

.speaker-details .bio {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #bdc3c7;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.credentials span {
    background: linear-gradient(45deg, #3498db, #2980b9);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ecf0f1;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #00a652 0%, #0077be 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgb(160, 153, 153);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow-left {
    left: -80px;
}

.nav-arrow-right {
    right: -80px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

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

.dot.active {
    background: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-arrow-left {
        left: -60px;
    }
    
    .nav-arrow-right {
        right: -60px;
    }
}

@media (max-width: 992px) {
    .nav-arrow {
        width: 50px;
        height: 50px;
    }
    
    .nav-arrow-left {
        left: -40px;
    }
    
    .nav-arrow-right {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .speakers-section {
        padding: 60px 15px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .nav-arrow-left {
        left: -25px;
    }
    
    .nav-arrow-right {
        right: -25px;
    }
    
    .speaker-card {
        height: 350px;
    }
    
    .speaker-front img {
        width: 100px;
        height: 100px;
    }
    
    .speaker-front h3 {
        font-size: 1.2rem;
    }
    
    .speaker-details .bio {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .speaker-card {
        margin: 0 5px;
        height: 320px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-arrow-left {
        left: -15px;
    }
    
    .nav-arrow-right {
        right: -15px;
    }
    
    .speaker-front {
        padding: 20px 15px;
    }
    
    .speaker-back {
        padding: 20px;
    }
    
    .speaker-front img {
        width: 80px;
        height: 80px;
    }
    
    .speaker-front h3 {
        font-size: 1.1rem;
    }
    
    .speaker-front p {
        font-size: 0.9rem;
    }
}

/* Animation for card flip */
@keyframes flipIn {
    from {
        transform: rotateY(-90deg);
        opacity: 0;
    }
    to {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

.speaker-card.flipped .speaker-back {
    animation: flipIn 0.6s ease-out;
}

/* Hover effects for better interactivity */
.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.speaker-card:hover::before {
    opacity: 1;
}

/* Loading animation for images */
.speaker-front img {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Speakers Section Styles *********************************************************end/
/* Glimpses Section Styles ***************************************************************************/
.glimpses-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .glimpses-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        /* .section-header h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #fff, #e3f2fd, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 8px rgba(0,0,0,0.3);
            letter-spacing: -1px;
        } */

        .section-header p {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* Carousel Container */
        .carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 
                0 25px 50px rgba(0,0,0,0.4),
                0 0 0 1px rgba(255,255,255,0.1) inset;
            backdrop-filter: blur(10px);
            background: rgba(255,255,255,0.05);
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            width: 800%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateX(0%);
        }

        .carousel-slide {
            flex: 0 0 12.5%;
            position: relative;
            height: 100%;
            opacity: 0.3;
            transition: opacity 0.8s ease;
        }

        .carousel-slide.active {
            opacity: 1;
            z-index: 2;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 60px 40px 40px;
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .carousel-slide.active .slide-overlay {
            transform: translateY(0);
        }

        .slide-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
        }

        .slide-content p {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.5;
            color: #e3f2fd;
        }

        /* Navigation Controls */
        .carousel-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 30px;
            z-index: 10;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            outline: none;
            user-select: none;
            -webkit-user-select: none;
            position: relative;
            z-index: 15;
        }

        .carousel-btn:hover {
            background: rgba(255,255,255,0.3);
            border-color: rgba(255,255,255,0.5);
            transform: scale(1.1);
        }

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

        .carousel-btn svg {
            pointer-events: none;
            width: 20px;
            height: 20px;
        }

        .carousel-indicators {
            display: flex;
            gap: 12px;
        }

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

        .indicator.active {
            background: rgba(255,255,255,0.8);
            transform: scale(1.3);
        }

        /* Play/Pause Button */
        .play-pause-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(0,0,0,0.5);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        .play-pause-btn:hover {
            background: rgba(0,0,0,0.7);
            border-color: rgba(255,255,255,0.5);
            transform: scale(1.1);
        }

        .hidden {
            display: none !important;
        }

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

        .progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #3498db, #2980b9);
            transition: width 0.1s linear;
            border-radius: 2px;
        }

        /* Thumbnail Strip */
        .thumbnail-strip {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            padding: 20px 0;
            overflow-x: auto;
            justify-content: center;
        }

        .thumbnail-strip::-webkit-scrollbar {
            height: 6px;
        }

        .thumbnail-strip::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.1);
            border-radius: 3px;
        }

        .thumbnail-strip::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,0.3);
            border-radius: 3px;
        }

        .thumbnail {
            flex: 0 0 120px;
            height: 80px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            position: relative;
        }

        .thumbnail.active {
            border-color: #3498db;
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(52, 152, 219, 0.4);
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .glimpses-section {
                padding: 80px 15px;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
            }
            
            .carousel-wrapper {
                height: 450px;
            }
            
            .slide-content h3 {
                font-size: 1.5rem;
            }
            
            .thumbnail {
                flex: 0 0 100px;
                height: 70px;
            }
        }
/* Glimpses Section Styles ***************************************************************************End/






/* HariEdit End*******************************************/

/* .about-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00a652, #0077be);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
} */

/* .about-stats {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
} */

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

/* .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
} */

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
}

/* Themes Section */
.themes-section {
  padding: 5rem 5%;
  background: white;
}

.themes-container {
  max-width: 1400px;
  margin: 0 auto;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.theme-card {
  background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.theme-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.theme-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.theme-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.theme-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.theme-topics {
  list-style: none;
  color: #666;
}

.theme-topics li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.theme-topics li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Speakers Section */
.speakers-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.speakers {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.speaker {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.speaker:hover {
  transform: translateY(-5px);
}

/* Papers Section */
.papers-section {
  padding: 5rem 5%;
  background: white;
  text-align: center;
}

.papers-timeline {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 0;
}

.papers-timeline li {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 1rem 2rem;
  margin: 1rem 0;
  border-radius: 50px;
  font-weight: 600;
}

/* Venue Section */
.venue-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

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

.venue-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.venue-info h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.venue-details {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.venue-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.venue-item:last-child {
  border-bottom: none;
}

.venue-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
  width: 40px;
}

.venue-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  height: 400px;
}

/* Gallery and Glimpses Sections */
.gallery-section,
.glimpses-section {
  padding: 5rem 5%;
  background: white;
  text-align: center;
}

.gallery-section:nth-of-type(even),
.glimpses-section:nth-of-type(even) {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.gallery-placeholder,
.glimpses-placeholder {
  background: rgba(0, 166, 82, 0.1);
  padding: 4rem 2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  color: var(--primary);
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.footer-brand p {
  color: #aaa;
  line-height: 1.8;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-logos img {
  max-height: 50px;
  width: auto;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.mobile-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .about-container,
  .venue-content {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-item {
    min-width: 120px;
    padding: 1.5rem 1rem;
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links li {
    width: 100%;
    margin: 0.5rem 0;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    text-align: center;
  }
}