:root {
  /* Triadic color scheme */
  --primary-color: #5e60ce;
  --secondary-color: #ce5e60;
  --tertiary-color: #60ce5e;
  
  /* Shades for depth and neomorphism */
  --primary-light: #7476e8;
  --primary-dark: #4c4dae;
  --secondary-light: #e87476;
  --secondary-dark: #ae4c4d;
  --tertiary-light: #76e874;
  --tertiary-dark: #4dae4c;
  
  /* Neutral colors */
  --white: #ffffff;
  --off-white: #f5f5f8;
  --light-gray: #e2e2e8;
  --medium-gray: #a0a0b0;
  --dark-gray: #4a4a5a;
  --black: #121220;
  
  /* Shadows for neomorphism */
  --shadow-light: rgba(255, 255, 255, 0.8);
  --shadow-dark: rgba(18, 18, 32, 0.15);
  
  /* Typography */
  --heading-font: 'Archivo Black', sans-serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transition */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

ul {
  list-style: none;
}

.section-padding {
  padding: var(--space-xl) 0;
}

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-xl);
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: var(--space-sm) auto 0;
  border-radius: var(--radius-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--dark-gray);
}

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

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

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

h4 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

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

/* Neomorphic Card */
.card {
  background-color: var(--off-white);
  border-radius: var(--radius-lg);
  box-shadow: 10px 10px 20px var(--shadow-dark),
              -10px -10px 20px var(--shadow-light);
  overflow: hidden;
  transition: transform var(--transition-medium);
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8em 2em;
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  box-shadow: 5px 5px 10px var(--shadow-dark),
              -5px -5px 10px var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-medium);
  z-index: 1;
}

.btn:hover::before {
  width: 100%;
}

.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: var(--secondary-dark);
  color: var(--white);
}

button, input[type='submit'] {
  cursor: pointer;
  font-family: var(--body-font);
}

.resource-link {
  display: inline-block;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: var(--space-md);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-medium);
}

.resource-link:hover {
  border-color: var(--primary-color);
  transform: translateX(5px);
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 4px 12px var(--shadow-dark);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-medium);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo a {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: all var(--transition-medium);
}

.logo a:hover {
  color: var(--secondary-color);
  text-shadow: 1px 1px 2px var(--shadow-dark);
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-md);
}

.nav-desktop a {
  color: var(--dark-gray);
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
}

.nav-desktop a:hover {
  color: var(--primary-color);
  background-color: var(--light-gray);
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
              inset -2px -2px 5px var(--shadow-light);
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition-medium);
}

.nav-mobile {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  height: 0;
  overflow: hidden;
  transition: all var(--transition-medium);
  box-shadow: 0 4px 12px var(--shadow-dark);
  opacity: 0;
}

.nav-mobile.active {
  height: auto;
  opacity: 1;
}

.nav-mobile ul {
  padding: var(--space-lg);
}

.nav-mobile li {
  margin-bottom: var(--space-md);
}

.nav-mobile a {
  display: block;
  padding: var(--space-md);
  color: var(--dark-gray);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
}

.nav-mobile a:hover {
  color: var(--primary-color);
  background-color: var(--light-gray);
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
              inset -2px -2px 5px var(--shadow-light);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  margin-top: 80px; /* Account for fixed header */
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.5s;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.8s;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 1.1s;
}

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

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

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

.about-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 10px 10px 20px var(--shadow-dark),
              -10px -10px 20px var(--shadow-light);
}

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

/* Vision Section */
.vision {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--white);
}

.vision .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.vision-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.vision .section-title {
  color: var(--white);
}

.vision .section-title::after {
  background: linear-gradient(90deg, var(--white), var(--tertiary-color));
}

.vision-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-card h3 {
  color: var(--white);
}

.vision-card p {
  color: var(--light-gray);
}

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

/* Webinars Section */
.webinars-slider {
  position: relative;
  overflow: hidden;
}

.webinar-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-lg);
  box-shadow: 10px 10px 20px var(--shadow-dark),
              -10px -10px 20px var(--shadow-light);
}

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

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

.webinar-content {
  padding: var(--space-lg);
  text-align: center;
  flex: 1;
}

.webinar-date {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

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

.prev-btn, .next-btn {
  width: 40px;
  height: 40px;
  background-color: var(--off-white);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 5px 5px 10px var(--shadow-dark),
              -5px -5px 10px var(--shadow-light);
  transition: all var(--transition-medium);
}

.prev-btn:hover, .next-btn:hover {
  transform: scale(1.1);
}

.prev-btn span, .next-btn span {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.prev-btn span {
  transform: rotate(-135deg);
}

.next-btn span {
  transform: rotate(45deg);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--light-gray);
  cursor: pointer;
  transition: all var(--transition-medium);
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Behind the Scenes Section */
.scenes-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
}

.scenes-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 10px 10px 20px var(--shadow-dark),
              -10px -10px 20px var(--shadow-light);
}

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

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

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

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

.careers-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 10px 10px 20px var(--shadow-dark),
              -10px -10px 20px var(--shadow-light);
}

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

.careers-cta {
  margin-top: var(--space-lg);
}

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

.contact-info {
  flex: 1;
  min-width: 300px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 10px 10px 20px var(--shadow-dark),
              -10px -10px 20px var(--shadow-light);
}

.contact-details {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.contact-details li {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.contact-details .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--white);
}

.location-icon::before {
  content: "📍";
}

.email-icon::before {
  content: "✉️";
}

.phone-icon::before {
  content: "📞";
}

.contact-hours h4 {
  margin-bottom: var(--space-sm);
}

.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: 10px 10px 20px var(--shadow-dark),
              -10px -10px 20px var(--shadow-light);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  background-color: var(--off-white);
  color: var(--dark-gray);
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
              inset -2px -2px 5px var(--shadow-light);
  transition: all var(--transition-medium);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: inset 3px 3px 8px var(--shadow-dark),
              inset -3px -3px 8px var(--shadow-light);
}

.submit-btn {
  width: 100%;
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: var(--light-gray);
  padding: var(--space-lg) 0;
}

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

.footer-logo h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer ul {
  margin: 0;
  padding: 0;
}

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

.footer a {
  color: var(--light-gray);
  transition: all var(--transition-medium);
}

.footer a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--medium-gray);
}

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

.success-content {
  max-width: 600px;
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 10px 10px 20px var(--shadow-dark),
              -10px -10px 20px var(--shadow-light);
}

.success-content h1 {
  color: var(--primary-color);
}

.back-home {
  margin-top: var(--space-lg);
}

/* Privacy and Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px; /* Account for fixed header */
  min-height: 100vh;
  background-color: var(--off-white);
}

.privacy-content, .terms-content {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 10px 10px 20px var(--shadow-dark),
              -10px -10px 20px var(--shadow-light);
}

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

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

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

/* Media queries */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-content, .scenes-content, .careers-content {
    flex-direction: column;
  }
  
  .contact-content {
    flex-direction: column;
  }
}

@media (min-width: 769px) {
  .nav-mobile {
    display: none;
  }
}

/* ScrollReveal animations */
[data-sr-id] {
  visibility: hidden;
}
*{
  opacity: 1 !important;
}
.hero-content{
  margin: 0 auto;
}