/* Variables */
:root {
  --primary-color: #3a86ff;
  --primary-dark: #2a65cc;
  --primary-light: #60a1ff;
  --secondary-color: #ff6b6b;
  --secondary-dark: #e04f4f;
  --secondary-light: #ff8c8c;
  --accent-color: #4ecdc4;
  --accent-dark: #36b1a8;
  --accent-light: #6aede5;
  --bg-color: #f7f7f7;
  --bg-dark: #e0e0e0;
  --bg-light: #ffffff;
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --text-white: #ffffff;
  --shadow-soft: 10px 10px 20px rgba(0, 0, 0, 0.05), -10px -10px 20px rgba(255, 255, 255, 0.8);
  --shadow-pressed: inset 5px 5px 10px rgba(0, 0, 0, 0.05), inset -5px -5px 10px rgba(255, 255, 255, 0.8);
  --border-radius: 12px;
  --transition-smooth: all 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: var(--text-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--primary-color);
  color: var(--text-white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-pressed);
  transform: translateY(2px);
  color: var(--text-white);
}

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

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

.secondary-btn {
  background-color: var(--secondary-color);
}

.secondary-btn:hover {
  background-color: var(--secondary-dark);
}

.small-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

button, input[type='submit'] {
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--bg-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
}

.logo a {
  display: flex;
  align-items: center;
}

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

.desktop-menu ul {
  display: flex;
  list-style: none;
}

.desktop-menu li {
  margin-left: 1.5rem;
}

.desktop-menu a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

.desktop-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
}

.desktop-menu a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-light);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.mobile-menu ul {
  list-style: none;
  padding: 0 2rem;
}

.mobile-menu li {
  margin: 1rem 0;
}

.mobile-menu a {
  color: var(--text-color);
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

/* Hero Section */
.hero-section {
  padding: 8rem 0 5rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
}

.hero-content h1, .hero-content h2, .hero-content p {
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

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

/* Innovation Section */
.innovation-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.innovation-image, .innovation-text {
  flex: 1 1 45%;
  min-width: 300px;
}

.innovation-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.innovation-image img:hover {
  transform: scale(1.02);
}

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

.card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-content {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.card-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Research Section */
.research-section {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

.research-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
}

.research-text, .research-image {
  flex: 1 1 45%;
  min-width: 300px;
}

.research-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  transition: transform 0.5s ease;
}

.research-image img:hover {
  transform: scale(1.02);
}

.research-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.stat-card {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.stat-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-description {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Projects Section */
.projects-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.projects-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

/* Resources Section */
.resources-section {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

.resources-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.resource-card {
  flex: 1 1 200px;
  max-width: 280px;
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.resource-card ul {
  list-style: none;
}

.resource-card li {
  margin-bottom: 0.8rem;
}

.resource-card a {
  color: var(--text-color);
  transition: var(--transition-smooth);
  display: block;
  padding: 0.5rem;
  border-radius: 5px;
}

.resource-card a:hover {
  background-color: rgba(58, 134, 255, 0.1);
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Behind the Scenes Section */
.behind-scenes-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.behind-scenes-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
}

.behind-scenes-image, .behind-scenes-text {
  flex: 1 1 45%;
  min-width: 300px;
}

.behind-scenes-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  transition: transform 0.5s ease;
}

.behind-scenes-image img:hover {
  transform: scale(1.02);
}

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

.process-step {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 2rem;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.step-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.step-number::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
  margin: 0.5rem auto;
}

.process-step h3 {
  margin-bottom: 1rem;
}

/* Events Calendar Section */
.events-section {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

.events-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.events-calendar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: var(--primary-color);
  color: var(--text-white);
  font-family: 'Archivo Black', sans-serif;
  min-width: 100px;
}

.event-month {
  font-size: 1rem;
  text-transform: uppercase;
}

.event-day {
  font-size: 2rem;
  font-weight: bold;
}

.event-details {
  padding: 1.5rem;
  flex-grow: 1;
}

.event-details h3 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.event-time {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.event-description {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.faq-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.accordion-header:hover {
  background-color: rgba(58, 134, 255, 0.05);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-color);
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info, .contact-form-container {
  flex: 1 1 45%;
  min-width: 300px;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--bg-dark);
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(58, 134, 255, 0.3);
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: #2b2b2b;
  color: var(--text-white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo, .footer-links, .footer-legal, .footer-social {
  flex: 1 1 200px;
}

.footer-logo img {
  margin-bottom: 1rem;
  max-width: 180px;
}

.footer-logo p {
  color: var(--text-lighter);
}

.footer h3 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.8rem;
}

.footer a {
  color: var(--text-lighter);
  transition: var(--transition-smooth);
}

.footer a:hover {
  color: var(--text-white);
}

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

.footer-bottom p {
  color: var(--text-lighter);
  font-size: 0.9rem;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.success-content {
  max-width: 600px;
  padding: 3rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.success-content h1 {
  margin-bottom: 1.5rem;
}

.success-content p {
  margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: 5rem;
}

.page-content {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.page-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content ul, .page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  display: none;
}

.cookie-popup p {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

/* Media Queries */
@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .section-content, .behind-scenes-content, .contact-content {
    flex-direction: column;
  }

  .innovation-image, .research-image, .behind-scenes-image {
    margin-bottom: 2rem;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date {
    flex-direction: row;
    padding: 1rem;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-card, .process-step {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-logo, .footer-links, .footer-legal, .footer-social {
    flex: 1 1 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }

  .container {
    width: 95%;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s ease-in forwards;
}

.slide-up {
  animation: slideUp 0.5s ease-in forwards;
}

.slide-in-left {
  animation: slideInLeft 0.5s ease-in forwards;
}

.slide-in-right {
  animation: slideInRight 0.5s ease-in forwards;
}

/* Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

/* Additional Utilities */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition-smooth);
  position: relative;
  padding-bottom: 2px;
}

.read-more::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover::after {
  width: 100%;
}

/* Social Media Links in Footer */
.footer-social a {
  display: inline-block;
  margin-right: 0.5rem;
  color: var(--text-lighter);
  transition: var(--transition-smooth);
  padding: 0.5rem;
  border-radius: 5px;
}

.footer-social a:hover {
  color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.1);
}
.mobile-menu-toggle{
  display: none;
}