:root {
  /* Color palette - Analogous scheme */
  --primary-color: #1a4d7c; /* Deep blue */
  --primary-light: #2e6ea6; /* Lighter blue */
  --primary-dark: #0d3b64; /* Darker blue */
  --secondary-color: #1a7c4d; /* Deep green */
  --secondary-light: #2ea67e; /* Lighter green */
  --secondary-dark: #0d643b; /* Darker green */
  --accent-color: #7c1a4d; /* Deep magenta for accents */
  --accent-light: #a62e6e; /* Lighter magenta */
  --accent-dark: #640d3b; /* Darker magenta */
  
  /* Text colors */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #ffffff;
  
  /* Background colors */
  --bg-light: #f9f9f9;
  --bg-medium: #f0f0f0;
  --bg-dark: #333333;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  
  /* Overlay */
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --overlay-medium: rgba(0, 0, 0, 0.4);
  --overlay-light: rgba(0, 0, 0, 0.2);
  
  /* Shadows */
  --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-hard: 0 10px 40px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 12px;
  --radius-circle: 50%;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Font sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;
  
  /* Font weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;
  
  /* Z-index layers */
  --z-negative: -1;
  --z-low: 10;
  --z-mid: 50;
  --z-high: 100;
  --z-overlay: 1000;
  --z-modal: 2000;
  
  /* Container widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Typography */
body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: var(--font-size-md);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: var(--space-md);
  color: var(--primary-dark);
}

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

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

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

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

p {
  margin-top: 0;
  margin-bottom: var(--space-md);
}

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

a:hover, a:focus {
  color: var(--primary-light);
}

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

/* Buttons */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-medium);
  font-weight: var(--font-weight-medium);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: var(--font-size-sm);
  border: none;
  box-shadow: var(--shadow-soft);
}

.btn:hover, button:hover, input[type='submit']:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn:active, button:active, input[type='submit']:active {
  transform: translateY(1px);
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--text-light);
}

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

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
  color: var(--text-light);
}

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

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-medium);
  z-index: var(--z-high);
  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 h1 {
  margin: 0;
  font-size: var(--font-size-xl);
  color: var(--primary-color);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: var(--space-md);
}

.nav-links a {
  color: var(--text-dark);
  font-weight: var(--font-weight-medium);
  position: relative;
}

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

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

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

.menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: var(--radius-small);
  transition: all var(--transition-medium);
}

/* Hero Section */
.hero {
  position: relative;
  padding: var(--space-xl) 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-light);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  z-index: var(--z-negative);
}

.hero-content {
  position: relative;
  z-index: var(--z-low);
  max-width: 800px;
  text-align: left;
}

.hero-content h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
  color: var(--text-light);
}

.hero-content p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-negative);
}

/* Section Styles */
section {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--text-medium);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Intro Section */
.intro-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.intro-text {
  flex: 1;
}

.intro-image {
  flex: 1;
  text-align: center;
}

.intro-image img {
  max-width: 100%;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

/* Courses Section */
.courses-slider {
  position: relative;
  margin-bottom: var(--space-lg);
}

.slider-container {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: var(--space-md);
  transition: transform var(--transition-slow);
}

.course-card {
  min-width: 300px;
  flex: 0 0 calc(33.333% - var(--space-md));
  background-color: var(--bg-light);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

.card-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.card-content h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-lg);
  color: var(--primary-color);
}

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

.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.prev-button,
.next-button {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  background-color: var(--primary-light);
  border: none;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.prev-button:hover,
.next-button:hover {
  background-color: var(--primary-color);
}

.prev-button::before,
.next-button::before {
  content: '';
  border: solid var(--text-light);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
  transition: border-color var(--transition-fast);
}

.prev-button::before {
  transform: rotate(135deg);
  margin-right: -5px;
}

.next-button::before {
  transform: rotate(-45deg);
  margin-left: -5px;
}

/* Webinars Section */
.webinars {
  background-color: var(--bg-medium);
}

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

.webinar-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.webinar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.webinar-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: var(--space-sm);
  min-width: 80px;
}

.webinar-date span:first-child {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
}

.webinar-content {
  padding: var(--space-md);
  flex: 1;
}

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

.webinar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
  color: var(--text-medium);
}

.webinar-meta i {
  margin-right: 5px;
}

/* Statistics Section */
.statistics {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.statistics .section-header h2,
.statistics .section-header p {
  color: var(--text-light);
}

.statistics .section-header h2::after {
  background-color: var(--text-light);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.stats-item {
  text-align: center;
  padding: var(--space-md);
  flex: 1;
  min-width: 200px;
}

.stats-number {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
  font-family: 'Playfair Display', Georgia, serif;
}

.stats-label {
  font-size: var(--font-size-md);
}

.stats-graph {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-medium);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.stats-graph h3 {
  color: var(--text-light);
  text-align: center;
  margin-bottom: var(--space-md);
}

.graph-container {
  height: 400px;
  margin-bottom: var(--space-md);
}

.stats-note {
  text-align: right;
  font-size: var(--font-size-sm);
  font-style: italic;
  margin: 0;
}

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

.resource-card {
  display: flex;
  align-items: flex-start;
  background-color: var(--bg-light);
  border-radius: var(--radius-medium);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.resource-icon {
  background-color: var(--primary-light);
  color: var(--text-light);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.resource-content {
  flex: 1;
}

.resource-content h3 {
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-lg);
}

.resource-content p {
  margin-bottom: 0;
  color: var(--text-medium);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--overlay-dark);
  color: var(--text-light);
  padding: var(--space-sm);
  transform: translateY(100%);
  transition: transform var(--transition-medium);
  text-align: center;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h3 {
  margin-bottom: 0.25rem;
  font-size: var(--font-size-md);
  color: var(--text-light);
}

.gallery-caption p {
  margin: 0;
  font-size: var(--font-size-sm);
}

/* Community Section */
.community {
  background-color: var(--bg-medium);
}

.community-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.community-text {
  flex: 1;
}

.community-image {
  flex: 1;
  text-align: center;
}

.community-image img {
  max-width: 100%;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

.community-benefits {
  margin-top: var(--space-md);
}

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

.benefit-icon {
  background-color: var(--primary-light);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.benefit-text {
  flex: 1;
}

.benefit-text h4 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.benefit-text p {
  margin: 0;
  color: var(--text-medium);
}

.community-cta {
  text-align: center;
}

/* Success Stories Section */
.success-stories {
  position: relative;
  background-color: var(--primary-light);
  color: var(--text-light);
  overflow: hidden;
}

.success-stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/testimonials-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: var(--z-negative);
}

.success-stories .section-header h2,
.success-stories .section-header p {
  color: var(--text-light);
}

.success-stories .section-header h2::after {
  background-color: var(--text-light);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: var(--space-md);
  transition: transform var(--transition-slow);
}

.testimonial-card {
  flex: 0 0 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-medium);
  padding: var(--space-lg);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-content {
  text-align: center;
  margin-bottom: var(--space-md);
}

.testimonial-content p {
  font-size: var(--font-size-lg);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  margin-right: var(--space-sm);
  border: 3px solid var(--text-light);
  flex-shrink: 0;
}

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

.author-info h4 {
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.author-info p {
  margin: 0;
  font-size: var(--font-size-sm);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-md);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-circle);
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.dot.active, .dot:hover {
  background-color: var(--text-light);
}

/* Events Section */
.events-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.events-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--primary-light);
}

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

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-date {
  min-width: 120px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: var(--space-sm);
  border-radius: var(--radius-medium);
  position: relative;
  z-index: var(--z-low);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.timeline-date .month {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

.timeline-date .day {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.timeline-date .year {
  font-size: var(--font-size-sm);
}

.timeline-content {
  flex: 1;
  background-color: var(--bg-light);
  border-radius: var(--radius-medium);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: var(--z-low);
  max-width: calc(50% - 60px);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--bg-light);
  transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  left: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: -10px;
}

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

.event-location {
  display: flex;
  align-items: center;
  color: var(--text-medium);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
}

.event-location i {
  margin-right: 5px;
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

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

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

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

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

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

.news-content {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.news-date {
  display: inline-block;
  font-size: var(--font-size-sm);
  color: var(--text-medium);
  margin-bottom: var(--space-xs);
}

.news-content h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-lg);
  color: var(--primary-color);
}

.read-more {
  margin-top: auto;
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  position: relative;
  display: inline-block;
}

.read-more::after {
  content: '→';
  display: inline-block;
  margin-left: 5px;
  transition: transform var(--transition-fast);
}

.read-more:hover::after {
  transform: translateX(5px);
}

.news-cta {
  text-align: center;
}

/* Careers Section */
.careers-content {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.careers-text {
  flex: 1;
}

.careers-opportunities {
  flex: 1;
}

.opportunity-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-medium);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--primary-color);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.opportunity-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
}

.opportunity-card h3 {
  margin-bottom: var(--space-xs);
  color: var(--primary-color);
}

.opportunity-company {
  font-size: var(--font-size-sm);
  color: var(--text-medium);
  margin-bottom: var(--space-sm);
}

/* Contact Section */
.contact {
  background-color: var(--bg-medium);
}

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

.contact-info {
  flex: 1;
}

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

.info-icon {
  background-color: var(--primary-light);
  color: var(--text-light);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.info-content {
  flex: 1;
}

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

.info-content p {
  margin: 0;
  color: var(--text-medium);
}

.contact-form {
  flex: 1;
  background-color: var(--bg-light);
  padding: var(--space-lg);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: var(--font-weight-medium);
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid #ddd;
  border-radius: var(--radius-small);
  font-family: inherit;
  font-size: inherit;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-submit {
  text-align: right;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  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 1 300px;
}

.footer-logo h2 {
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-col {
  flex: 1 1 150px;
}

.footer-col h3 {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-light);
}

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

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--text-light);
}

.social-links li a {
  display: inline-flex;
  align-items: center;
}

.social-links li a::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color var(--transition-fast);
}

.social-links li a:hover::before {
  background-color: var(--text-light);
}

.social-links li:nth-child(1) a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(2) a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(3) a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(4) a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M4.98 3.5c0 1.381-1.11 2.5-2.48 2.5s-2.48-1.119-2.48-2.5c0-1.38 1.11-2.5 2.48-2.5s2.48 1.12 2.48 2.5zm.02 4.5h-5v16h5v-16zm7.982 0h-4.968v16h4.969v-8.399c0-4.67 6.029-5.052 6.029 0v8.399h4.988v-10.131c0-7.88-8.922-7.593-11.018-3.714v-2.155z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(5) a::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z'/%3E%3C/svg%3E");
}

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

/* Modal Styles */
.modals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  pointer-events: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-dark);
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-light);
  border-radius: var(--radius-medium);
  padding: var(--space-lg);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close-modal {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: var(--font-size-2xl);
  cursor: pointer;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: var(--radius-circle);
  background-color: var(--bg-medium);
  transition: background-color var(--transition-fast);
}

.close-modal:hover {
  background-color: var(--text-medium);
  color: var(--text-light);
}

.modal-form {
  margin-top: var(--space-md);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--space-md);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-hard);
  max-width: 400px;
  display: none;
  z-index: var(--z-overlay);
}

.cookie-content {
  display: flex;
  flex-direction: column;
}

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

.cookie-btn {
  align-self: flex-end;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

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

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

.success-content {
  max-width: 600px;
}

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

/* About and Terms Pages */
.about-page, .terms-page, .privacy-page {
  padding-top: 100px;
}

.about-content, .terms-content, .privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  :root {
    --font-size-4xl: 2.5rem;
    --font-size-3xl: 2rem;
    --font-size-2xl: 1.75rem;
  }
  
  .container {
    max-width: var(--container-lg);
  }
}

@media (max-width: 992px) {
  .intro-content, .community-content, .careers-content, .contact-container {
    flex-direction: column;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .timeline-content {
    max-width: calc(100% - 150px);
  }
  
  .events-timeline::before {
    left: 60px;
  }
  
  .timeline-item {
    flex-direction: row !important;
  }
  
  .timeline-date {
    min-width: 120px;
  }
  
  .timeline-content::before {
    left: -10px !important;
    right: auto !important;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --font-size-4xl: 2.25rem;
    --font-size-3xl: 1.75rem;
    --font-size-2xl: 1.5rem;
    --font-size-xl: 1.25rem;
    --font-size-lg: 1.125rem;
  }
  
  .container {
    max-width: var(--container-md);
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-light);
    flex-direction: column;
    align-items: center;
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-medium);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: var(--z-high);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links li {
    margin: var(--space-xs) 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  :root {
    --space-xl: 3rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.5rem;
    --font-size-2xl: 1.25rem;
  }
  
  .container {
    max-width: var(--container-sm);
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .timeline-date {
    min-width: 90px;
    font-size: var(--font-size-sm);
  }
  
  .events-timeline::before {
    left: 45px;
  }
  
  .timeline-content {
    max-width: calc(100% - 110px);
  }
}


.hero{
  background-position: 0% 0px !important; 
}
html,body{
  overflow-x: hidden;
}

.menu-toggle{
  display: none !important;
}