/* Navbar */

.logo-image {
  /* width: 40px; */
  height: 50px;
  /* animation: pulse 2s infinite; */
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
nav {
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 5%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    gap: 2rem;
    align-items: center;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    flex-direction: column;
    text-align: center;
    backdrop-filter: blur(5px);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 6rem;
  }
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.nav-links a:hover::after {
  width: 80%;
  left: 10%;
}
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  margin: 0;
  line-height: 1 text-decoration none;
  color: var(--dark-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none !important;
}
.dropdown {
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  padding: 0.5rem 1rem;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  top: 100%;
  left: 0;
  min-width: 150px;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}
.dropdown-menu a {
  display: block;
  padding: 10px;
  color: black;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f4f4f4;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 2px 0;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a,
  .dropdown-toggle {
    width: 100%;
    text-align: center;
  }

  .dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 0.5rem;
    display: none;
    background: transparent;
  }

  .dropdown-menu a {
    text-align: center;
    padding: 0.75rem;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Hamburger animation when active */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* clioent logo */

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.client-logos {
  padding: 4rem 5%;
  background: var(--light-color);
  overflow: hidden;
}

.logo-track {
  display: flex;
  animation: scroll 25s linear infinite;
  gap: 4rem;
}
.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.client-logos h2 {
  margin-bottom: 2rem; /* Ensure space below heading */
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .client-logos h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .logo-track {
    display: flex;
    animation: scroll 15s linear infinite;
    gap: 2rem;
  }
  nav {
    position: absolute !important;
  }
  .about-us {
    position: relative !important;
  }
}

/* footer_style */

footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 4rem 5% 2rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}
.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}
.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
