:root {
  /* Dark theme colors (default) */
  --color-yellow: hsl(197, 56%, 43%);
  --color-yellow-dark: hsl(184, 39%, 33%);
  --color-yellow-light: hsl(198, 51%, 20%);
  --text-color: #fff;
  --text-color-secondary: rgba(255, 255, 255, 0.9);
  --bg-primary: #252426;
  --bg-secondary: #232324;
  --border-color: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(0, 0, 0, 0.2);
  --card-hover: rgba(0, 0, 0, 0.3);
  --overlay-bg: rgba(37, 36, 38, 0.98);
  --shadow-color: rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

/* Light theme */
[data-theme="light"] {
  --color-yellow: hsl(197, 56%, 43%);
  --color-yellow-dark: hsl(184, 39%, 33%);
  --color-yellow-light: hsl(198, 51%, 20%);
  --text-color: #252426;
  --text-color-secondary: rgba(0, 0, 0, 0.8);
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --border-color: rgba(0, 0, 0, 0.1);
  --card-bg: rgba(0, 0, 0, 0.03);
  --card-hover: rgba(0, 0, 0, 0.05);
  --overlay-bg: rgba(255, 255, 255, 0.98);
  --shadow-color: rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-primary);
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
.header {
  position: fixed;
  width: 100%;
  background: var(--bg-primary);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px var(--shadow-color);
  z-index: 1000;
  transition: var(--transition);
}

.header-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-color);
}

.yellow {
  color: var(--color-yellow);
}

.header-navigation ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.header-navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.header-navigation a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-yellow);
  transition: var(--transition);
}

.header-navigation a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .header-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
  }

  .logo {
    display: flex;
    align-items: center;
    font-size: 1.1rem; /* Slightly smaller font size for mobile */
    white-space: nowrap; /* Prevent text wrapping */
    gap: 4px; /* Add space between elements */
  }

  .header-logo {
    width: 24px;
    height: 24px;
    margin-right: 4px;
  }

  .language-selector {
    margin-left: auto; /* Push to the right */
    padding-left: 8px;
  }

  .flag-icon {
    width: 24px;
    height: 24px;
  }

  /* Hide navigation menu on mobile */
  .header-navigation ul {
    display: none;
  }

  /* Ensure proper spacing between NFO and Security */
  .logo .yellow {
    margin-right: 4px; /* Add space after NFO */
  }
}

/* Hero Section */
.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../img/header-bg-img.jpg') center/cover;
  padding: 10rem 0 8rem 0;
  position: relative;
  background-position: center 40px;
}

.section-hero,
.section-hero .heading--1,
.section-hero .description {
  color: #fff !important;
}

.hero-content {
  max-width: 800px;
}

.heading--1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.description {
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero-content .yellow {
  color: var(--color-yellow) !important;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn__primary {
  background: var(--color-yellow);
  color: var(--color-black);
}

.btn__primary:hover {
  background: var(--color-yellow-dark);
}

.btn__secondary {
  background: transparent;
  border: 2px solid var(--color-yellow);
  color: #fff !important;
}

.btn__secondary:hover {
  background: var(--color-yellow-light);
  border-color: var(--color-yellow-light);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* About Section */
.section-about {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.about-box {
  max-width: 1000px;
  margin: 0 auto;
}

.about-box__content {
  text-align: left;
}

.about-box__content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--text-color-secondary);
}

/* Solutions Section */
.section-courses {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.section-opdrachtgevers {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.section-use-cases {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.section-use-cases .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.use-cases-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.use-cases-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border-radius: 8px;
  box-shadow: 0 1px 3px var(--shadow-color);
  overflow: hidden;
  padding: 20px;
}

.use-case-item {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  background: transparent;
}

.use-case-item:last-child {
  border-bottom: none;
}

.use-case-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--color-yellow);
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}

.heading--2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: var(--text-color);
}

.section-features {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.courses-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.class-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: var(--bg-secondary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.class-card__overlay {
  background: var(--overlay-bg);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.class-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-yellow);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.class-card__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-yellow);
  transition: var(--transition);
}

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-list li {
  margin-bottom: 0.8rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  line-height: 1.4;
  gap: 0.8rem;
}

.service-list li::before {
  content: '✓';
  color: var(--color-yellow);
  font-weight: bold;
  flex-shrink: 0;
  line-height: 1;
  display: inline-block;
}

.price {
  font-size: 1.2rem;
  color: var(--color-yellow);
  margin: 1.5rem 0;
  font-weight: 600;
}

.class-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Desktop Hover Effects */
@media (hover: hover) {
  .class-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .class-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-yellow);
  }

  .class-card:hover .class-card__title::after {
    width: 100px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .courses-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .class-card {
    border: 1px solid var(--color-yellow);
  }

  .class-card__title {
    font-size: 1.3rem;
  }

  .service-list li {
    font-size: 0.95rem;
  }

  .price {
    font-size: 1.1rem;
  }
}

/* Team Section */
.section-coaches {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.coache-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Force 5 equal columns */
  gap: 1rem;
  padding: 2rem 0;
  max-width: 1400px; /* Increased max-width to accommodate all cards */
  margin: 0 auto;
}

.c-card {
  background: var(--bg-primary);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  width: 100%; /* Make cards fill their grid space */
  max-width: 250px; /* Limit maximum width */
  margin: 0 auto;
  text-decoration: none;
  display: block;
}

.c-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-yellow);
}

.c-card__img {
  width: 100%;
  height: 200px; /* Reduced height */
  object-fit: cover;
  transition: var(--transition);
}

.c-card:hover .c-card__img {
  transform: scale(1.05);
}

.c-card__content {
  padding: 1.5rem;
  text-align: center;
  background: var(--bg-primary);
  position: relative;
}

.c-card__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--color-yellow);
  transition: var(--transition);
}

.c-card:hover .c-card__content::before {
  width: 100px;
}

.c-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.c-title {
  color: var(--color-yellow);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-top: 0.5rem;
}

/* Contact Section */
.section-contact {
  background: var(--color-yellow);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.contact-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-heading h2 {
  color: white;
}

.contact-tagline {
  font-size: 2.2rem;
  color: white;
  margin: 1.5rem 0;
  font-weight: 700;
  line-height: 1.3;
}

.contact-subtext {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.email-selector select {
  background: white;
  color: var(--color-yellow);
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  min-width: 250px;
  cursor: pointer;
}

.contact-button {
  background: white;
  color: var(--color-yellow);
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

.contact-button:hover,
.email-selector select:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.message-bubble {
  background: #25D366;
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.message-bubble:hover {
  transform: translateY(-2px);
  background: #22c35e;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Light mode specific adjustments */
[data-theme="light"] .section-contact {
  background: var(--color-yellow);
}

[data-theme="light"] .contact-tagline,
[data-theme="light"] .contact-subtext {
  color: white;
}

[data-theme="light"] .contact-button {
  background: white;
  color: var(--color-yellow);
}

/* Add some decorative elements */
.section-contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

/* Make responsive */
@media (max-width: 768px) {
  .contact-tagline {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
  
  .contact-info {
    flex-direction: column;
    align-items: center;
  }
  
  .email-selector {
    width: 100%;
    max-width: 300px;
  }
}

/* Footer */
.footer {
  background: var(--bg-primary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  color: var(--color-yellow);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 0;
  display: inline-block;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--color-yellow);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align everything to the left */
}

.footer-logo {
  width: 200px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin-top: 2rem; /* Add more space above the logo */
  margin-bottom: 0; /* Remove bottom margin */
  align-self: flex-start; /* Align logo to the left */
}

/* Remove specific NFO Caribbean styles to make them identical */
.footer-logo[src*="nfocaribbean"] {
  width: 200px; /* Same as default */
  height: 60px; /* Same as default */
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  .footer-logo {
    width: 180px;
    height: 54px;
    margin-top: 1.5rem; /* Slightly less space on mobile */
  }
  
  .footer-logo[src*="nfocaribbean"] {
    width: 180px;
    height: 54px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-navigation ul {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: auto;
    background: var(--bg-primary);
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }

  .header-navigation ul.show {
    display: flex;
  }

  /* Add hamburger menu icon */
  .nav-icon {
    display: none !important; /* Hide the burger icon completely */
  }

  .nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .nav-icon span:nth-child(1) { top: 0; }
  .nav-icon span:nth-child(2) { top: 10px; }
  .nav-icon span:nth-child(3) { top: 20px; }

  /* Responsive text sizes */
  .heading--1 {
    font-size: 2.5rem;
  }

  .description {
    font-size: 1.5rem;
  }

  /* Responsive grid layouts */
  .coache-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Responsive spacing */
  .container {
    padding: 0 1.5rem;
  }

  .section-about,
  .section-courses,
  .section-coaches,
  .section-features,
  .section-clients,
  .section-contact {
    padding: 4rem 0;
  }

  /* Responsive buttons */
  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Mission Vision Section */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.mission, .vision {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.mission:hover, .vision:hover {
  border-color: var(--color-yellow);
  transform: translateY(-5px);
}

.mission h3, .vision h3 {
  color: var(--color-yellow);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 1rem;
}

.mission h3::after, .vision h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-yellow);
}

.mission p, .vision p {
  color: var(--text-color-secondary);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-box__content h2 {
    font-size: 2rem;
  }
  
  .about-text {
    font-size: 1rem;
  }
  
  .mission h3, .vision h3 {
    font-size: 1.2rem;
  }
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Light mode specific adjustments */
[data-theme="light"] .feature-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  border-color: var(--color-yellow);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  color: var(--color-yellow);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Clients Section */
.section-clients {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.section-clients .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.clients-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: var(--text-color);
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 0 1rem;
}

.opdrachtgevers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  align-items: center;
  padding: 0 1rem;
}

.opdrachtgevers-item {
  text-align: center;
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.opdrachtgevers-logo {
  width: 100px; /* Fixed width */
  height: 60px; /* Fixed height */
  object-fit: contain; /* Maintains aspect ratio */
  /* Remove the filter that makes logos white */
  /* filter: brightness(0) invert(1); */
}

/* Remove the light theme override since we want original colors */
[data-theme="light"] .opdrachtgevers-logo {
  /* filter: none; */
}

.opdrachtgevers-item span {
  display: block;
}

.opdrachtgevers-item:hover {
  color: var(--color-yellow);
  border-color: var(--color-yellow);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .opdrachtgevers-logo {
    width: 80px;
    height: 48px;
  }
  
  .opdrachtgevers-item {
    font-size: 1rem;
    padding: 1rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .coache-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .coache-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 500px) {
  .coache-content {
    grid-template-columns: 1fr;
  }
}

/* Opdrachtgevers Types and Use Cases */
.opdrachtgevers-types {
  margin: 4rem 0;
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.opdrachtgevers-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem; /* Increased gap */
  margin-top: 3rem; /* Increased top margin */
  padding: 0 2rem; /* Increased padding */
}

.opdrachtgevers-list li {
  color: var(--text-color);
  font-size: 1.4rem; /* Increased font size from 1.1rem */
  display: flex;
  align-items: center;
  line-height: 1.6; /* Increased line height */
  gap: 1.2rem; /* Increased gap between bullet and text */
}

.opdrachtgevers-list li::before {
  content: '•';
  color: var(--color-yellow);
  font-weight: bold;
  font-size: 1.8rem; /* Increased bullet size from 1.4rem */
  line-height: 1;
  display: inline-block;
  flex-shrink: 0;
}

.use-cases {
  margin: 0 auto;
  max-width: 1000px;
}

.use-cases h2 {
  color: var(--color-yellow);
  font-size: 2.2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.use-cases-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 900px;
  margin-bottom: 4rem;
}

.header-logo {
  height: 30px; /* Adjust height as needed */
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-2px); /* Move logo 4px up */
}

.use-cases-list li {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 1rem 1.5rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.use-cases-list li::before {
  content: '•';
  color: var(--color-yellow);
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-block;
  flex-shrink: 0;
}

.opdrachtgevers-intro {
  text-align: center;
  max-width: 800px;
  margin: 4rem auto;
  color: var(--text-color);
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 0 1rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .use-cases h2 {
    font-size: 1.8rem;
    padding: 0 1rem;
  }
  
  .use-cases-list {
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .use-cases-list li {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 768px) {
  .nav-icon {
    display: none !important; /* Hide the burger icon completely */
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.show {
    display: flex;
  }
}

/* Make cards responsive on smaller screens */
@media (max-width: 1200px) {
  .coache-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .c-card {
    max-width: 250px;
  }
  
  .c-card__img {
    height: 200px;
  }
}

@media (max-width: 900px) {
  .coache-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .c-card {
    max-width: 280px;
  }
  
  .c-card__img {
    height: 250px;
  }
}

@media (max-width: 500px) {
  .coache-content {
    grid-template-columns: 1fr;
  }
}

/* Loader styles */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.loader-logo {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.loader-logo .yellow {
  color: var(--color-yellow);
}

.loader-logo .white {
  color: var(--text-color);
  margin-left: 0.5rem;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border: 4px solid rgba(72, 166, 207, 0.1);
  border-left-color: var(--color-yellow);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .heading--1 {
    font-size: 2.5rem;
  }
  
  .description {
    font-size: 1.5rem;
  }
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn__whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
}

.btn__whatsapp:hover {
  background: #22c35e;
}

.btn__whatsapp img {
  margin-left: 8px;
}

@media (max-width: 768px) {
  .btn-group {
    flex-direction: column;
  }
  
  .btn__whatsapp {
    text-align: center;
    justify-content: center;
  }
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  text-align: center;
  flex-wrap: wrap;
}

.email-selector {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.email-selector select {
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-color);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1em;
  min-width: 200px;
}

.email-selector select option {
  background-color: var(--bg-primary);
  color: var(--text-color);
  padding: 0.75rem;
}

.email-selector button {
  padding: 0.75rem 1.5rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-color);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.email-selector select:hover,
.email-selector button:hover {
  background-color: var(--card-hover);
  border-color: var(--color-yellow);
}

.message-container {
  display: inline-flex;
  text-decoration: none;
}

.message-bubble {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #25D366;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.message-bubble:hover {
  background: #22c35e;
  transform: translateY(-1px);
}

.message-bubble i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .email-selector {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }
  
  .email-selector select,
  .email-selector button,
  .message-bubble {
    width: 100%;
    justify-content: center;
  }
}

/* Theme toggle button styles */
.theme-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-yellow);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.theme-toggle:hover {
  transform: translateY(-2px);
  background: var(--color-yellow-dark);
}

.theme-toggle i {
  font-size: 1.2rem;
  color: white;
}

.section-spacing {
  margin: 8rem 0;
}

.use-cases-heading {
  margin-bottom: 4rem;
}

.use-cases {
  margin: 8rem auto;
  max-width: 1000px;
}

.use-cases h2 {
  color: var(--color-yellow);
  font-size: 2.2rem;
  text-align: center;
}

/* Rest of your use-cases styles remain the same */

/* Add responsive layout for mobile */
@media (max-width: 768px) {
  .opdrachtgevers-list {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }

  .opdrachtgevers-list li {
    font-size: 1rem;
    padding: 0.8rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin: 0 1rem;
  }

  .use-cases-list {
    margin: 0 1rem;
  }

  /* Ensure container doesn't cause overflow */
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    overflow-x: hidden;
  }

  .opdrachtgevers-heading,
  .use-cases-heading {
    padding: 0 1.5rem;
  }

  .opdrachtgevers-intro {
    font-size: 1.2rem;
    margin: 3rem auto;
  }
}

/* Contact Section - Theme Independent Styles */
.section-contact h2.heading {
  color: white !important;
}

.section-contact p {
  color: white !important;
}

/* Make select and button text white */
.section-contact .email-selector select {
  background: transparent !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.section-contact .email-selector select option {
  background: var(--color-yellow) !important;
  color: white !important;
}

.section-contact .contact-button {
  background: transparent !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Hover states */
.section-contact .email-selector select:hover,
.section-contact .contact-button:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: white !important;
}

/* Make all buttons in contact section white */
.section-contact button,
.section-contact .email-selector button {
  background: transparent !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Hover states for all buttons */
.section-contact button:hover,
.section-contact .email-selector button:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: white !important;
}

.language-selector {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.language-select {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.flag-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .language-selector {
        margin: 10px 0;
    }
}

/* Add these mobile-specific margin adjustments */

@media (max-width: 768px) {
    /* Add container padding on mobile */
    .container {
        padding: 0 20px;  /* Add consistent side padding */
    }

    /* Hero section mobile margins */
    .section-hero {
        padding: 8rem 0 6rem 0;
    }

    /* About section mobile margins */
    .section-about {
        padding: 4rem 0;
    }
    .about-text {
        margin: 0 20px;
    }

    /* Services section mobile margins */
    .section-courses {
        padding: 4rem 0;
    }
    .courses-content {
        margin: 2rem 20px;
    }
    .class-card {
        margin: 0 0 20px 0;
    }

    /* Team section mobile margins */
    .section-coaches {
        padding: 4rem 0;
    }
    .coache-content {
        padding: 0 20px;
    }

    /* Features section mobile margins */
    .features-grid {
        padding: 0 20px;
        gap: 20px;
    }

    /* Contact section mobile margins */
    .section-contact {
        padding: 4rem 0;
    }
    .contact-heading {
        padding: 0 20px;
    }
    .contact-info {
        padding: 0 20px;
    }

    /* Footer mobile margins */
    .footer {
        padding: 4rem 20px 2rem;
    }
    .footer-content {
        padding: 0 20px;
    }

    /* Adjust headings and text for better mobile spacing */
    .heading--1 {
        padding: 0 20px;
    }
    .description {
        padding: 0 20px;
    }
    
    /* Add spacing between buttons on mobile */
    .btn-group {
        padding: 0 20px;
        gap: 15px;
    }
}

/* Remove or hide the burger menu */
.nav-icon {
    display: none !important; /* Hide the burger icon completely */
}

@media (max-width: 768px) {
    /* Show the navigation menu directly instead of hiding it */
    .header-navigation ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        padding: 1rem 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* Adjust header height to accommodate the menu */
    .header {
        height: auto;
    }

    /* Ensure the navigation items are properly spaced */
    .header-navigation {
        flex-wrap: wrap;
    }
}

/* Update mobile navigation styles */
@media (max-width: 768px) {
    .header-navigation ul {
        display: none;  /* Hide the navigation menu on mobile */
    }

    /* Remove all the mobile menu related styles */
    .nav-icon,
    .nav-menu,
    .nav-menu.show {
        display: none !important;
    }

    /* Adjust header for logo and language selector only */
    .header-navigation {
        justify-content: space-between;
        padding: 1rem 20px;
    }

    /* Adjust language selector position */
    .language-selector {
        margin: 0;
    }
}

/* Remove any other mobile menu related styles */
.nav-icon {
    display: none !important;
}

.nav-icon span {
    display: none;
}

/* Section spacing for main sections */
.section-courses,
.section-opdrachtgevers,
.section-use-cases {
  padding: 4rem 0;  /* Reduced from 8rem to 4rem */
}

/* Add specific margins for the headings */
.opdrachtgevers-heading {
  margin-top: 4rem;  /* Reduced from 8rem to 4rem */
  margin-bottom: 4rem;
}

.use-cases-heading {
  margin-top: 8rem;  /* Add space above the third section */
  margin-bottom: 4rem;
}

/* Update the existing section spacing class */
.section-spacing {
  margin: 8rem 0;  /* Increase spacing between sections */
}

/* Update use-cases container margins */
.section-use-cases {
  margin: 8rem auto;  /* Adjust top/bottom margin */
  max-width: 1000px;
}

/* Add dividers between sections */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border-color);
  margin: 4rem 0;
}

/* Remove the dividers since we're using background color changes */
.section-divider {
  display: none;
}

/* Adjust container backgrounds */
.class-card {
  background: var(--bg-secondary);
}

.use-cases-list li {
  background: var(--bg-secondary);
}

/* Ensure proper contrast */
.section-use-cases {
  margin: 0 auto; /* Remove top/bottom margin since we're using padding */
  max-width: 1000px;
}

.opdrachtgevers-item {
  background: var(--bg-primary); /* Switch to primary for contrast against secondary background */
}

/* Update mobile styles */
@media (max-width: 768px) {
  .section-use-cases .container {
    padding: 0 1rem;
  }
  
  .use-cases-list {
    padding: 0 1rem;
  }
}

/* Update container widths */
.section-opdrachtgevers .container,
.section-use-cases .container,
.section-clients .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Adjust spacing between sections */
.section-opdrachtgevers,
.section-use-cases,
.section-clients {
  margin-top: 0;
  margin-bottom: 0;
}

.courses-heading p {
  text-align: center;
}

.contact-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.contact-logo {
  width: 200px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Makes the logos white */
}

@media (max-width: 768px) {
  .contact-logos {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .contact-logo {
    width: 180px;
    height: 54px;
  }
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .footer-logos {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

