/* Dark Services Section Container */
.dark-services-section {
    background-color: #161616; /* near-black background */
    padding: 60px 20px;        /* comfortable padding */
    color: #f5f5f5;            /* light text */
    text-align: center;        /* center headings */
  }
  
  .dark-services-section .dark-services-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .dark-services-section .dark-services-subtitle {
    font-size: 1rem;
    color: #cfcfcf; /* subtle contrast */
    margin-bottom: 40px;
  }
  
  /* Services Grid Layout */
  .dark-services-grid {
    display: grid;
    gap: 20px;
    /* For columns, you can pick a layout that scales nicely. */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
  }
  
 /* Dark Service Card */
.dark-service-card {
    background-color: #1f1f1f;           /* Dark background */
    border-radius: 12px;                 /* Smoother rounded corners */
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    cursor: pointer;
    border: 2px solid transparent;       /* Transparent border by default */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  
  .dark-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    border-color: #ffffff;              /* White border on hover */
  }
  
  
  /* Icon styling */
  .dark-service-card .card-icon {
    font-size: 2rem;
    color: #ffffff; /* or some accent color */
    margin-bottom: 10px;
  }
  
  .dark-service-card .card-icon .material-icons {
    font-size: inherit; /* makes icon scale to parent's size */
  }
  
  /* Card Title */
  .dark-service-card h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #f5f5f5;
  }
  @font-face {
    font-family: 'Neuropolitical';
    src: url('neuropolitical rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  #navbar {
    background-color: transparent; /* Initial transparent background */
}



#navbar.scrolled {

    background-color: #031056; /* Solid background color when scrolled */

}

  /* Option A: Use a custom class for navbar links */

  .neuropolitical-link {
    font-family: Neuropolitical, sans-serif;
  }
/* Reduce bottom margin for tech section */
#tech-talent-recruitment {
  margin-bottom: 2rem; /* adjust as needed */
}

/* Reduce top margin for automotive section */
#automotive {
  margin-top: 1rem; /* adjust as needed */
}
/* Arrow between steps */
.arrow-container {
  position: relative;
  width: 60px;
  height: 2px;
  margin: 0 20px;
}

.arrow {
  width: 100%;
  height: 100%;
  background-color: #0070f3; /* Blue color (adjust as needed) */
  position: relative;
  animation: fadeInArrow 1s ease-in-out forwards;
}

.arrow::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #0070f3;
}

/* Optional: Arrow fade-in keyframes */
@keyframes fadeInArrow {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #002e6200;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  transition: color 0.3s ease-in-out;
}

/* Dropdown Icon */
.dropdown-icon {
  display: inline-block;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #6c98e1;  /* Blue Color */
  transition: transform 0.3s ease-in-out;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 15px 0;
  min-width: 220px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.nav-links li:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 10px 20px;
  transition: background-color 0.3s ease-in-out;
}

.dropdown-menu li a {
  color: #002D62;
  font-weight: 500;
  display: block;
}

.dropdown-menu li:hover {
  background-color: #f0f0f0;
}

/* Mobile Menu Icon */
.menu-icon {
  display: none;
  cursor: pointer;
}
.menu-icon span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: white;
  margin: 5px;
  transition: 0.3s;
}

/* Mobile Styles */
@media screen and (max-width: 800px) {
  .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #002D62;
      position: fixed;
      top: 60px;
      left: 0;
      text-align: center;
      padding: 10px 0;
  }
  .nav-links.active {
      display: flex;
  }
  .menu-icon {
      display: block;
  }
  .dropdown-menu {
      position: static;
      display: none;
      opacity: 1;
      transform: none;
      background-color: #dbe5f0;
  }
  .dropdown a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      color: white;
  }
  .dropdown-menu a {
      padding-left: 30px;
  }
}
html {
  scroll-behavior: smooth;
}
