/* Variables */
:root {
  /* Color Scheme - Analogous colors */
  --primary-color: #0a66c2;
  --primary-dark: #084e95;
  --primary-light: #2882e0;
  --secondary-color: #0a96c2;
  --tertiary-color: #0a46c2;
  --accent-color: #3fb0e5;
  
  /* Neutral Colors */
  --dark: #333333;
  --dark-medium: #555555;
  --medium: #777777;
  --light-medium: #999999;
  --light: #f5f7fa;
  --white: #ffffff;
  
  /* Shadows & Effects */
  --card-shadow: 0 8px 24px rgba(10, 102, 194, 0.08);
  --hover-shadow: 0 12px 32px rgba(10, 102, 194, 0.15);
  --button-shadow: 0 4px 12px rgba(10, 102, 194, 0.2);
  --hover-button-shadow: 0 6px 16px rgba(10, 102, 194, 0.3);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --h1-size: 3.5rem;
  --h2-size: 2.5rem;
  --h3-size: 1.75rem;
  --h4-size: 1.25rem;
  --body-size: 1rem;
  --small-size: 0.875rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container Max Width */
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  font-size: var(--body-size);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

p {
  margin-bottom: var(--space-sm);
}

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--space-sm);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  box-shadow: var(--button-shadow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--hover-button-shadow);
}

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

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

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

.btn-secondary:hover {
  background-color: #0880a8;
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

/* Forms */
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-medium);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--body-size);
  transition: border-color var(--transition-fast);
  margin-bottom: var(--space-sm);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--dark);
}

.form-group {
  margin-bottom: var(--space-md);
}

button, input[type="submit"] {
  cursor: pointer;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.logo img {
  height: 60px;
  width: auto;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
}

.desktop-nav li {
  margin: 0 var(--space-sm);
}

.desktop-nav a {
  color: var(--dark);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
}

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

.desktop-nav 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;
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: var(--space-md) 0;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  margin: var(--space-sm) 0;
  text-align: center;
}

.mobile-nav a {
  color: var(--dark);
  font-weight: 500;
  font-size: 1.1rem;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--white);
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl) 0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero .btn {
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

/* About Section */
.about {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.stat-item {
  flex: 1;
  min-width: 180px;
  max-width: 250px;
  text-align: center;
  padding: var(--space-md);
  background-color: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.stat-icon {
  margin-bottom: var(--space-sm);
}

.stat-icon img {
  margin: 0 auto;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.stat-text {
  font-weight: 500;
  color: var(--dark-medium);
}

/* Mission Section */
.mission {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
}

.mission-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.mission-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  margin: 0 auto;
}

.mission-text {
  flex: 1;
  min-width: 300px;
}

.mission-text h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

/* History Section */
.history {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--primary-light);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.2);
}

.timeline-content {
  width: calc(50% - 50px);
  padding: var(--space-md);
  background: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-normal);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-content:hover {
  transform: scale(1.03);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.timeline-content img {
  border-radius: var(--radius-md);
  margin: var(--space-sm) auto;
}

/* Methodology Section */
.methodology {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

.methodology-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
}

.methodology-text {
  flex: 1;
  min-width: 300px;
}

.methodology-text h3 {
  color: var(--primary-color);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.methodology-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.methodology-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  margin: 0 auto;
}

/* Resources Section */
.resources {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.resource-card {
  background-color: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.card-content {
  padding: var(--space-md);
  text-align: center;
  width: 100%;
}

.card-content h3 {
  margin-bottom: var(--space-sm);
}

.card-content p {
  margin-bottom: var(--space-md);
}

/* Team Section */
.team {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.team-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.team-card .card-image {
  width: 100%;
  height: 300px;
}

.team-card .card-content {
  padding: var(--space-md);
  text-align: center;
}

.position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

/* Behind the Scenes Section */
.behind-scenes {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.scenes-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.scenes-text {
  flex: 1;
  min-width: 300px;
}

.scenes-gallery {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-sm);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

/* Contact Section */
.contact {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.info-icon {
  margin-right: var(--space-sm);
  width: 40px;
  height: 40px;
}

.office-hours {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}

.office-hours h4 {
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding-top: var(--space-lg);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  margin-bottom: var(--space-sm);
}

.footer-links {
  flex: 1;
  min-width: 160px;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-links h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-light);
}

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

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: var(--light-medium);
  transition: color var(--transition-fast);
}

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

.footer-social {
  flex: 1;
  min-width: 160px;
}

.footer-social h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-social h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-light);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.social-links a {
  color: var(--light-medium);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md) 0;
  text-align: center;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--white);
  padding: var(--space-md);
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-content a {
  color: var(--accent-color);
  text-decoration: underline;
}

.btn-cookie {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

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

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.success-content {
  max-width: 600px;
  padding: var(--space-lg);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.success-icon {
  font-size: 4rem;
  color: #00c853;
  margin-bottom: var(--space-md);
}

.success-title {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.success-message {
  margin-bottom: var(--space-lg);
}

/* Pages content (privacy, terms) */
.page-content {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.page-content .container {
  max-width: 800px;
}

.page-title {
  margin-bottom: var(--space-lg);
  color: var(--primary-color);
}

.page-section {
  margin-bottom: var(--space-lg);
}

.page-section h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsiveness */
@media (max-width: 1024px) {
  :root {
    --h1-size: 3rem;
    --h2-size: 2.25rem;
    --h3-size: 1.5rem;
  }
  
  .timeline:before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }
}

@media (max-width: 768px) {
  :root {
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.35rem;
    --space-xl: 4rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .hero-content {
    padding: var(--space-lg) 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.25rem;
  }
  
  .mission-content, 
  .about-content, 
  .methodology-content, 
  .contact-content {
    flex-direction: column;
  }
  
  .footer-content > div {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --h1-size: 2.25rem;
    --h2-size: 1.75rem;
    --h3-size: 1.25rem;
    --body-size: 0.95rem;
    --space-lg: 3rem;
    --space-xl: 3.5rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    padding: var(--space-sm);
  }
}
.mobile-menu-toggle{
  display: none;
}