:root {
  /* Primary colors */
  --primary-color: #3a5b8c;
  --primary-light: #4b6ca0;
  --primary-dark: #2a4a7c;
  
  /* Secondary colors */
  --secondary-color: #e67e22;
  --secondary-light: #f39c12;
  --secondary-dark: #d35400;
  
  /* Neutral colors */
  --neutral-100: #ffffff;
  --neutral-200: #f5f5f5;
  --neutral-300: #e0e0e0;
  --neutral-400: #bdbdbd;
  --neutral-500: #9e9e9e;
  --neutral-600: #757575;
  --neutral-700: #616161;
  --neutral-800: #424242;
  --neutral-900: #212121;
  
  /* Shadows for neuromorphic design */
  --nm-shadow-small: 3px 3px 6px rgba(0, 0, 0, 0.1), -3px -3px 6px rgba(255, 255, 255, 0.8);
  --nm-shadow-medium: 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(255, 255, 255, 0.8);
  --nm-shadow-large: 10px 10px 20px rgba(0, 0, 0, 0.1), -10px -10px 20px rgba(255, 255, 255, 0.8);
  --nm-shadow-inset: inset 3px 3px 6px rgba(0, 0, 0, 0.1), inset -3px -3px 6px rgba(255, 255, 255, 0.8);
  
  /* Typography */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Work Sans', sans-serif;
  
  /* Border Radius */
  --border-radius-small: 8px;
  --border-radius-medium: 12px;
  --border-radius-large: 20px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Section Padding */
  --section-padding: 80px 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

p {
  margin-bottom: 1.5rem;
  color: var(--neutral-700);
}

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

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

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

/* Section Styles */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-900);
  position: relative;
  z-index: 1;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.section-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--neutral-600);
}

/* Neuromorphic Card Style */
.card {
  background: var(--neutral-200);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--nm-shadow-medium);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

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

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

/* Button Styles */
.btn, button, input[type="submit"] {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-small);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--neutral-100);
  box-shadow: 0 4px 6px rgba(58, 91, 140, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(58, 91, 140, 0.3);
}

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

.btn-outline-light:hover {
  background-color: var(--neutral-100);
  color: var(--primary-color);
  transform: translateY(-3px);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--neutral-100);
  transform: translateY(-3px);
}

/* Header & Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all var(--transition-fast);
  z-index: 1000;
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--neutral-800);
  padding: 0.5rem 1rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast), left var(--transition-fast);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  padding: 100px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  z-index: 0;
}

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

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.3s;
}

.hero-section .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.6s;
}

.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.9s;
}

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

/* Vision Section */
.vision-section {
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.vision-content {
  padding: 2rem;
  border-radius: var(--border-radius-large);
  background-color: var(--neutral-200);
  box-shadow: var(--nm-shadow-medium);
  height: 100%;
}

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

.vision-image-container {
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--nm-shadow-large);
}

.progress {
  height: 10px;
  border-radius: 5px;
  background-color: var(--neutral-300);
  box-shadow: var(--nm-shadow-inset);
  margin-bottom: 1.5rem;
}

.progress-bar {
  background-color: var(--primary-color);
  border-radius: 5px;
}

/* Services Section */
.services-section {
  background-color: var(--neutral-200);
  position: relative;
}

.service-card {
  height: 100%;
  border-radius: var(--border-radius-large);
  overflow: hidden;
}

.service-card .card-content {
  text-align: center;
}

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

/* Process Section */
.process-section {
  background-color: var(--neutral-100);
  position: relative;
}

.process-timeline {
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: var(--primary-color);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--nm-shadow-medium);
}

.process-icon span {
  color: var(--neutral-100);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
}

.process-step h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* History Section */
.history-section {
  background-color: var(--neutral-200);
  position: relative;
}

.history-image-container {
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--nm-shadow-large);
}

.history-content {
  padding: 2rem;
}

/* Workshops Section */
.workshops-section {
  background-color: var(--neutral-100);
  position: relative;
}

.workshop-card {
  height: 100%;
  border-radius: var(--border-radius-large);
  overflow: hidden;
}

.workshop-card .card-image {
  position: relative;
}

.workshop-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--neutral-100);
  padding: 0.3rem 0.8rem;
  border-radius: var(--border-radius-small);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 0.8rem;
  z-index: 2;
}

.workshop-details {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.workshop-details li {
  margin-bottom: 0.5rem;
  color: var(--neutral-700);
}

/* Resources Section */
.resources-section {
  background-color: var(--neutral-200);
  position: relative;
}

.resource-card {
  padding: 2rem;
  border-radius: var(--border-radius-large);
  background-color: var(--neutral-100);
  box-shadow: var(--nm-shadow-medium);
  height: 100%;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

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

.resource-list {
  list-style: none;
  padding: 0;
}

.resource-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.resource-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.resource-list a {
  color: var(--primary-color);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.resource-list a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--neutral-100);
  position: relative;
}

.testimonial-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.testimonial-card .card-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  box-shadow: var(--nm-shadow-medium);
}

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

.testimonial-rating {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--neutral-700);
}

.testimonial-author {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.testimonial-position {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

/* News Section */
.news-section {
  background-color: var(--neutral-200);
  position: relative;
}

.news-card {
  height: 100%;
  border-radius: var(--border-radius-large);
  overflow: hidden;
}

.news-card .card-image {
  position: relative;
}

.news-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--neutral-100);
  padding: 0.3rem 0.8rem;
  border-radius: var(--border-radius-small);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 0.8rem;
  z-index: 2;
}

.news-card .card-content {
  text-align: center;
}

.news-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

/* Press Section */
.press-section {
  background-color: var(--neutral-100);
  position: relative;
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.press-logos img {
  max-width: 150px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter var(--transition-medium), opacity var(--transition-medium);
}

.press-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.press-quote {
  padding: 2rem;
  border-radius: var(--border-radius-large);
  background-color: var(--neutral-200);
  box-shadow: var(--nm-shadow-medium);
  height: 100%;
  text-align: center;
}

.press-quote p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--neutral-700);
}

.press-quote cite {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-200);
  position: relative;
}

.contact-info {
  padding: 2rem;
  border-radius: var(--border-radius-large);
  background-color: var(--neutral-100);
  box-shadow: var(--nm-shadow-medium);
  height: 100%;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: var(--nm-shadow-small);
  color: var(--neutral-100);
}

.contact-details h4 {
  margin-bottom: 0.3rem;
  color: var(--primary-color);
}

.contact-form-container {
  padding: 2rem;
  border-radius: var(--border-radius-large);
  background-color: var(--neutral-100);
  box-shadow: var(--nm-shadow-medium);
  height: 100%;
}

.form-control, .form-select {
  border: none;
  border-radius: var(--border-radius-small);
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  background-color: var(--neutral-200);
  box-shadow: var(--nm-shadow-inset);
  transition: box-shadow var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  box-shadow: var(--nm-shadow-inset), 0 0 0 3px rgba(58, 91, 140, 0.1);
  outline: none;
}

/* Footer */
.site-footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 5rem 0 2rem;
  position: relative;
}

.site-footer h3 {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.site-footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.site-footer p {
  color: var(--neutral-400);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--neutral-300);
  margin-right: 1.5rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

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

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

.footer-links a {
  color: var(--neutral-400);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--neutral-100);
  transform: translateX(5px);
}

.newsletter-form .form-control {
  background-color: var(--neutral-700);
  color: var(--neutral-200);
  border: none;
  box-shadow: none;
}

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

.footer-bottom-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

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

.footer-bottom-links a {
  color: var(--neutral-500);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--neutral-300);
}

.copyright-text {
  color: var(--neutral-500);
  font-size: 0.9rem;
}

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

.success-container {
  max-width: 600px;
  padding: 3rem;
  border-radius: var(--border-radius-large);
  background-color: var(--neutral-100);
  box-shadow: var(--nm-shadow-large);
}

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

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

.page-content h1 {
  margin-bottom: 2rem;
}

.page-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .vision-content, .history-content {
    margin-bottom: 3rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .testimonial-card, .process-step, .service-card {
    margin-bottom: 2rem;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .footer-bottom-links li {
    margin: 0 0.75rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .btn, button, input[type="submit"] {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .contact-details li {
    flex-direction: column;
  }
  
  .contact-icon {
    margin-bottom: 1rem;
  }
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.bounce {
  animation: bounce 2s ease infinite;
}

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

.fade-in {
  animation: fadeIn 1s ease forwards;
}

/* AOS Initialization is in script.js */

html,body{
  overflow-x: hidden;
}