:root {
  /* Neomorphism Colors - Analogous Color Scheme */
  --primary-color: #3066BE;
  --primary-dark: #204080;
  --primary-light: #5A8EE0;
  --secondary-color: #30BE9D;
  --secondary-dark: #208070;
  --secondary-light: #52E0C0;
  --accent-color: #BE3060;
  --accent-dark: #982348;
  --accent-light: #E05A80;
  --bg-color: #f0f2f5;
  --card-bg: #ffffff;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  --border-radius: 15px;
  --shadow-sm: 5px 5px 10px rgba(0, 0, 0, 0.05), -5px -5px 10px rgba(255, 255, 255, 0.8);
  --shadow-md: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.8);
  --shadow-lg: 15px 15px 30px rgba(0, 0, 0, 0.1), -15px -15px 30px rgba(255, 255, 255, 0.8);
  --shadow-inset: inset 5px 5px 10px rgba(0, 0, 0, 0.05), inset -5px -5px 10px rgba(255, 255, 255, 0.8);
  --transition: all 0.3s ease-in-out;
}

/* Base Styles */
body {
  font-family: 'Work Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

a {
  color: var(--primary-color);
  transition: var(--transition);
}

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

.container {
  padding: 2rem 1.5rem;
}

.section {
  padding: 5rem 1.5rem;
}

/* Neomorphic Elements */
.neomorphic-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  transition: var(--transition);
  margin-bottom: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.neomorphic-button {
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  margin: 0.5rem 0;
}

.neomorphic-button:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.neomorphic-input {
  background-color: var(--bg-color);
  border: none;
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: var(--shadow-inset);
  transition: var(--transition);
  width: 100%;
}

.neomorphic-input:focus {
  outline: none;
  box-shadow: var(--shadow-inset), 0 0 0 3px rgba(48, 102, 190, 0.2);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar {
  background-color: transparent;
}

.navbar-item {
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

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

.navbar-burger {
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  margin-top: 60px;
}

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

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

form {
  width: 100%;
}

.navbar-item h1 {
  margin: 0px;
}

.hero-body {
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.hero .title,
.hero .subtitle,
.hero-text {
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
}

/* Mission Section */
.mission-section {
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-light);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.mission-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mission-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.mission-text {
  text-align: left;
}

/* Services Section */
.services-section {
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background-color: var(--secondary-light);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.services-section .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-section .card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

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

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

.services-section .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

/* Case Studies Section */
.case-studies-section {
  background-color: var(--bg-color);
  position: relative;
}

.custom-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-item {
  flex: 0 0 100%;
  padding: 0 15px;
}

.slider-item .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.slider-item .card-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

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

.slider-item .card-content {
  padding: 2rem;
  text-align: center;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.slider-prev,
.slider-next {
  margin: 0 0.5rem;
}

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

.resource-card {
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.resource-card h3 {
  margin-bottom: 1rem;
}

.resource-card ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.resource-card li {
  margin-bottom: 1rem;
}

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

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

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

.workshop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.workshop-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.workshop-content {
  padding: 2rem;
  text-align: center;
  flex-grow: 1;
}

/* Projects Section */
.projects-section {
  background-color: var(--card-bg);
  position: relative;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--text-light);
  transform: translateY(100%);
  transition: var(--transition);
}

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

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

/* Partners Section */
.partners-section {
  background-color: var(--bg-color);
  position: relative;
}

.partner-card {
  text-align: center;
  height: 100%;
}

.partner-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

/* Media Section */
.media-section {
  background-color: var(--card-bg);
  position: relative;
}

.media-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.media-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.media-content {
  padding: 2rem;
  text-align: center;
  flex-grow: 1;
}

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

.contact-info,
.contact-form {
  height: 100%;
}

.contact-details {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

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

.business-hours {
  margin-top: 2rem;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 4rem 1.5rem 2rem;
}

.footer h3 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--text-light);
  opacity: 0.8;
}

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

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--text-light);
  opacity: 0.8;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--primary-light);
  opacity: 1;
}

.social-links {
  display: flex;
  flex-direction: column;
}

.social-links a {
  margin-bottom: 0.5rem;
}

.copyright {
  margin-top: 3rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.success-card {
  max-width: 600px;
  width: 100%;
}

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

.terms-content,
.privacy-content {
  padding: 3rem;
}

/* Cookie Consent */
#cookie-consent {
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--text-light);
  padding: 20px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

#accept-cookies {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: var(--transition);
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}

/* Animation Effects */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.animated-float {
  animation: float 4s ease-in-out infinite;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .mission-content {
    flex-direction: column;
  }
  
  .mission-content img {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  
  .slider-item {
    flex: 0 0 100%;
  }
  
  .image-gallery {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .slider-item {
    flex: 0 0 50%;
  }
  
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
}