/* Global Variables */
:root {
  /* Color Palette */
  --color-primary: #3e64ff;
  --color-primary-dark: #2d4cd2;
  --color-primary-light: #5a7bff;
  --color-secondary: #36d7b7;
  --color-secondary-dark: #2ab79a;
  --color-secondary-light: #4feacc;
  --color-accent: #ff6b6b;
  --color-accent-dark: #e54b4b;
  --color-accent-light: #ff8a8a;

  /* Neutral Colors */
  --color-neutral-100: #ffffff;
  --color-neutral-200: #f8f9fa;
  --color-neutral-300: #e9ecef;
  --color-neutral-400: #dee2e6;
  --color-neutral-500: #adb5bd;
  --color-neutral-600: #6c757d;
  --color-neutral-700: #495057;
  --color-neutral-800: #343a40;
  --color-neutral-900: #212529;

  /* Glass Effect */
  --glass-background: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --glass-blur: 10px;
  
  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.6;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.6s ease;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  --radius-full: 50%;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-neutral-800);
  background-color: var(--color-neutral-200);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

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

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
  font-size: clamp(1rem, 2vw, 1.5rem);
}

h6 {
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
}

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

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

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

ul, ol {
  margin-top: 0;
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.has-text-centered {
  text-align: center;
}

.has-text-right {
  text-align: right;
}

.has-text-white {
  color: var(--color-neutral-100) !important;
}

.mb-6 {
  margin-bottom: var(--space-xxl);
}

.mt-6 {
  margin-top: var(--space-xxl);
}

.mt-4 {
  margin-top: var(--space-lg);
}

/* Glassmorphism Style */
.glassmorphism {
  background: var(--glass-background);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal);
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  background: var(--glass-background);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition-normal);
}

.header .navbar {
  background: transparent !important;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo span {
  font-weight: 400;
  color: var(--color-neutral-800);
}

.navbar-item {
  color: var(--color-neutral-800);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--color-primary);
  background: transparent !important;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: -1;
}

.hero-body {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 6rem 1.5rem;
  z-index: 1;
}

.hero .title, .hero .subtitle {
  color: var(--color-neutral-100);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero .button {
  margin: 0.5rem;
}

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

/* Button Styles */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

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

.button.is-light {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.button.is-light:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.button.is-large {
  font-size: 1.25rem;
  padding: 0.875rem 1.75rem;
}

.button.is-medium {
  font-size: 1.125rem;
  padding: 0.75rem 1.5rem;
}

.button.is-small {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.button.is-rounded {
  border-radius: 2rem;
}

.button.is-fullwidth {
  width: 100%;
}

/* Services Section */
.section {
  padding: 5rem 1.5rem;
}

.section .title {
  position: relative;
  margin-bottom: 2.5rem;
}

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

.section .subtitle {
  color: var(--color-neutral-700);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.has-background-light {
  background-color: var(--color-neutral-200);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.card-content {
  padding: 1.5rem;
  flex: 1;
}

.card-content .title {
  margin-bottom: 1rem;
}

.card-content p:last-child {
  margin-bottom: 0;
}

/* Features Section */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  margin-bottom: 2rem;
  height: 100%;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-full);
  overflow: hidden;
}

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

.feature-content {
  text-align: center;
}

/* Methodology Section */
.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline {
  position: relative;
}

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

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  border: 4px solid var(--color-neutral-100);
  box-shadow: 0 0 0 4px var(--color-primary-light);
  z-index: 1;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 2rem;
  margin-left: auto;
}

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

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: -15px;
  width: 30px;
  height: 3px;
  background-color: var(--color-primary-light);
}

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

/* Resources Section */
.card a {
  font-weight: 500;
  color: var(--color-primary);
}

.card a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* Success Stories Section */
.testimonial {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background-color: rgba(var(--color-primary-rgb), 0.05);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-sm);
  font-style: italic;
}

.testimonial p:last-child {
  margin-bottom: 0;
}

/* Pricing Section */
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--color-primary);
  box-shadow: 0 10px 30px rgba(var(--color-primary-rgb), 0.1);
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  padding: 2rem 1.5rem;
  text-align: center;
  background-color: rgba(var(--color-primary-rgb), 0.05);
  border-bottom: 1px solid var(--glass-border);
}

.pricing-header .title {
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.period {
  color: var(--color-neutral-600);
  font-size: 0.875rem;
}

.pricing-body {
  padding: 2rem 1.5rem;
  flex: 1;
}

.pricing-body ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.pricing-body li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-neutral-300);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.pricing-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.pricing-notes {
  font-size: 0.875rem;
  color: var(--color-neutral-600);
}

/* Research Section */
.research-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.research-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.research-content {
  padding: 1.5rem;
  flex: 1;
  width: 100%;
}

.research-date {
  color: var(--color-neutral-600);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

/* Events Section */
.event-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.event-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.event-content {
  padding: 1.5rem;
  flex: 1;
  width: 100%;
  position: relative;
}

.event-date {
  position: absolute;
  top: -25px;
  left: 1.5rem;
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

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

/* Careers Section */
.career-card {
  padding: 2rem;
  margin-bottom: 2rem;
  height: 100%;
}

.career-details {
  margin: 1.5rem 0;
}

.career-details ul {
  margin-bottom: 1.5rem;
}

.career-culture {
  padding: 2.5rem;
}

/* Contact Section */
.contact-info {
  padding: 2rem;
  height: 100%;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-item .icon {
  margin-right: 1rem;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
}

.contact-form {
  padding: 2rem;
  height: 100%;
}

.field {
  margin-bottom: 1.5rem;
}

.label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.input, .textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-neutral-400);
  border-radius: var(--radius-sm);
  background-color: var(--color-neutral-100);
  transition: border-color var(--transition-fast);
}

.input:focus, .textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb), 0.2);
}

.checkbox {
  display: flex;
  align-items: center;
}

.checkbox input {
  margin-right: 0.5rem;
}

.map-container {
  padding: 2rem;
  overflow: hidden;
}

.map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

/* Footer */
.footer {
  background-color: black!important;
  color: var(--color-neutral-300);
  padding: 4rem 1.5rem 2rem;
}

.footer .title {
  color: var(--color-neutral-100);
}

.footer a {
  color: var(--color-neutral-400);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--color-primary-light);
  text-decoration: none;
}

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

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: var(--color-neutral-400);
  transition: color var(--transition-fast);
}

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

.newsletter .input {
  background-color: var(--color-neutral-700);
  border-color: var(--color-neutral-600);
  color: var(--color-neutral-200);
}

.newsletter .input::placeholder {
  color: var(--color-neutral-500);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-neutral-700);
  font-size: 0.875rem;
  color: var(--color-neutral-500);
}

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

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

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

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

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

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .timeline-content {
    width: 85%;
    margin-left: 60px;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-marker {
    left: 30px;
  }
  
  .timeline-content::before {
    left: -45px;
    width: 45px;
  }
  
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -45px;
  }
}

@media (max-width: 768px) {
  .hero-body {
    padding: 8rem 1rem 4rem;
  }
  
  .section {
    padding: 4rem 1rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 480px) {
  .button.is-large {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
  
  .event-date {
    width: 50px;
    height: 50px;
    left: 1rem;
  }
  
  .event-date .day {
    font-size: 1.25rem;
  }
  
  .event-date .month {
    font-size: 0.75rem;
  }
}

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn var(--transition-slow) forwards;
}

.slide-up {
  animation: slideUp var(--transition-slow) forwards;
}

/* Additional Utilities */
.is-transparent {
  background: transparent !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.rounded {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-circle {
  border-radius: var(--radius-full);
}

/* Particles Animation */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Additional Components */
.color-neutral-100 {
  --color-primary-rgb: 62, 100, 255; /* Convert hex to rgb for rgba usage */
}

/* Additional Rules */
.privacy-page, .terms-page {
  padding-top: 100px;
}

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}
.logo{
  font-size: 12px;
}