/* Main Styles for NeuroDiverse Website */
:root {
  --primary-color: #71a894;
  --secondary-color: #c22085;
  --accent-color-1: #e9b171;
  --accent-color-2: #2d9687;
  --text-color: #333333;
  --light-text: #ececee;
  --background-color: #ffffff;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color-1);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 60px 0;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  margin-right: 10px;
  margin-bottom: 10px;
}

.btn:hover {
  background-color: var(--accent-color-2);
  border-color: var(--accent-color-2);
  color: white;
}

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

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

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: auto;
  max-height: 60px;
  min-width: 150px;
  min-height: 40px;
  width: auto;
}

.navigation-container {
  display: flex;
  align-items: center;
}

.nav-pc {
  position: sticky;
  top: 0;
  display: flex;
}

.nav-pc a {
  display: table-cell;
  position: relative;
  padding: 15px 20px;
  transition: all 0.3s ease;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
}

.language-selector {
  margin-left: 20px;
  padding: 5px 10px;
  border-left: 1px solid #ddd;
}

/* Hide language selector on mobile */
@media screen and (max-width: 768px) {
  .navigation-container .language-selector {
    display: none;
  }
}

.language-selector .lang-link {
  color: var(--accent-color-1);
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.language-selector .lang-link:hover {
  background-color: rgba(113, 168, 148, 0.1);
}

.mobile-language-selector {
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-language-selector .lang-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1em;
}

#indicator {
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 30px;
  height: 3px;
  background-color: #f0f0f1;
  border-radius: 5px;
  transition: 0.2s ease left;
}

.nav-pc a:nth-child(1):hover ~ #indicator {
  background: linear-gradient(130deg, #5161ce, #2d9687);
}

.nav-pc a:nth-child(2):hover ~ #indicator {
  left: 21%;
  background: linear-gradient(130deg, #e9b171, #e9b171);
}

.nav-pc a:nth-child(3):hover ~ #indicator {
  left: 44%;
  background: linear-gradient(130deg, #c22085, #f9daeb);
}

.nav-pc a:nth-child(4):hover ~ #indicator {
  left: 61%;
  background: linear-gradient(130deg, #2196F3, #d5ebf5);
}

.nav-pc a:nth-child(5):hover ~ #indicator {
  left: 82%;
  background: linear-gradient(130deg, #e9b171, #e9b171);
}

/* Mobile Menu */
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.menu-icon:checked + label,
.menu-icon:not(:checked) + label {
  position: fixed;
  top: 63px;
  right: 75px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
}

/* Hamburger menu styles moved to hamburger.css */

/* Hamburger menu styles moved to hamburger.css */

/* Hamburger menu styles moved to hamburger.css */

/* Hamburger menu styles moved to hamburger.css */

.nav {
  position: fixed;
  top: 33px;
  right: 50px;
  display: block;
  width: 80px;
  height: 80px;
  padding: 0;
  margin: 0;
  z-index: 9;
  overflow: hidden;
  background-color: var(--primary-color);
  animation: border-transform 7s linear infinite;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 1100ms ease,
              width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
              height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes border-transform {
  0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
  14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
  28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
  42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
  56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
  70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
  84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}

.menu-icon:checked ~ .nav {
  animation-play-state: paused;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 200%;
  height: 200%;
  transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 700ms ease,
              width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
              height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav ul {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  transform: translateY(-50%);
  list-style: none;
}

.mobile-menu label {
  cursor: pointer;
  position: relative;
  display: block;
  height: 22px;
  width: 30px;
  transform: translateY(30px);
  transition: all 250ms linear;
}

.nav ul li:nth-child(1) {
  transition-delay: 200ms;
}

.nav ul li:nth-child(2) {
  transition-delay: 150ms;
}

.nav ul li:nth-child(3) {
  transition-delay: 100ms;
}

.nav ul li:nth-child(4) {
  transition-delay: 50ms;
}

.nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 6vh;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 800;
  display: inline-block;
  position: relative;
  color: var(--light-text);
  transition: all 250ms linear;
}

.nav ul li a:hover {
  text-decoration: none;
  color: var(--text-color);
}

.nav ul li a:after {
  display: block;
  position: absolute;
  top: 50%;
  content: '';
  height: 2vh;
  margin-top: -1vh;
  width: 0;
  left: 0;
  background-color: var(--light-text);
  opacity: 0.8;
  transition: width 250ms linear;
}

.nav ul li a:hover:after {
  width: 100%;
}

.menu-icon:checked ~ .nav ul li {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease,
              transform 250ms ease;
}

.menu-icon:checked ~ .nav ul li:nth-child(1) {
  transition-delay: 1400ms;
}

.menu-icon:checked ~ .nav ul li:nth-child(2) {
  transition-delay: 1480ms;
}

.menu-icon:checked ~ .nav ul li:nth-child(3) {
  transition-delay: 1560ms;
}

.menu-icon:checked ~ .nav ul li:nth-child(4) {
  transition-delay: 1640ms;
}

/* Hero Section */
.hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f9f9f9 0%, #e9f5ff 100%);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  padding-right: 30px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--accent-color-2);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  color: var(--text-color);
}

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

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.features-heading {
  text-align: center;
  margin-bottom: 60px;
}

.features-heading h2 {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.features-heading p {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-bottom: 25px;
}

.feature-icon img {
  width: 70px;
  height: auto;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--accent-color-2);
}

.feature-card p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
}

.features-section .text-center {
  margin-top: 30px;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.services-content {
  flex: 1;
  min-width: 300px;
}

.services-icon {
  margin-bottom: 20px;
}

.services-icon img {
  width: 80px;
  height: 80px;
}

.services-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 800px;
  margin: 30px auto 0;
  justify-content: space-between;
}

/* Styled boxes for services section */
.service-box {
  border: 4px solid #333;
  border-radius: 8px;
  padding: 20px;
  margin: 2%;
  box-shadow: 0px 5px 0px 0px #71A894;
  flex: 1;
  min-width: 250px;
}

.why-choose-box {
  border: 4px solid #333;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 0px 0px #71A894;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-box {
  border: 2px solid #333;
  border-radius: 8px;
  padding: 20px;
  margin-right: 20px;
  flex: 1;
  min-width: 200px;
}

.benefits-box {
  border: 2px solid #71A894;
  border-radius: 8px;
  padding: 20px;
  background-color: rgba(113, 168, 148, 0.05);
  flex: 1;
  min-width: 200px;
}

.why-choose-box h3,
.services-box h3,
.benefits-box h3 {
  color: #333;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.services-about {
  margin-bottom: 30px;
}

.services-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.services-list, .benefits-list {
  flex: 1;
  min-width: 250px;
}

.services-list h3, .benefits-list h3 {
  color: #333;
  margin-bottom: 15px;
}

.services-list ul, .benefits-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-box ul li, .benefits-box ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  color: #333;
  list-style-type: none;
}

.services-box ul li:before, .benefits-box ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #71A894;
  border-radius: 50%;
}

/* Kickstart section styling */
.kickstart-section {
  padding: 60px 0;
  background-color: #fff;
}

.kickstart-container {
  text-align: center;
  max-width: 900px;
}

.kickstart-content h3 {
  margin-top: 20px;
  color: var(--accent-color-2);
  font-size: 1.8rem;
}

.kickstart-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.kickstart-icon img {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e9f5ff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-content {
  flex: 1;
  padding-right: 40px;
}

.cta-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--accent-color-2);
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-color);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
}

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

.cta-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 40px 0 20px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-logo {
  flex: 1;
  margin-bottom: 20px;
  min-width: 150px;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
  display: block;
}

.footer-content {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer-links, .footer-contact {
  margin-bottom: 20px;
  min-width: 200px;
}

.footer-links h4, .footer-contact h4 {
  color: var(--accent-color-1);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

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

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a, .footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover, .footer-contact a:hover {
  color: var(--accent-color-1);
}


.footer-bottom {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9em;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}
 
::-webkit-scrollbar-track {
  width: 8px;
  background: #e7e7e7;
}
 
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom,#c22085 25%,#2d9687 0,#2d9687 50%,#e9b171 0,#e9b171 75%,#e2b8aa 0);
  -webkit-border-radius: 10px;
  opacity: 1;
  width: 8px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .menu-icon:checked + label,
  .menu-icon:not(:checked) + label {
    right: 55px;
  }
  
  .nav {
    right: 30px;
  }
  
  .nav ul li a {
    font-size: 8vh;
  }
  
  .hero-container, .services-container, .cta-container {
    flex-direction: column;
  }
  
  .hero-content, .services-content, .cta-content {
    padding-right: 0;
    padding-bottom: 30px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .features-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  
  .features-heading h2 {
    font-size: 2rem;
  }
  
  .kickstart-content h3 {
    font-size: 1.6rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .services-lists {
    flex-direction: column;
  }
  
  .services-box, .benefits-box {
    margin-bottom: 30px;
  }
  
  .nav-pc {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}
