.clients-hero {
  background: url("/assets/images/all-banner.jpg") no-repeat center center/cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.clients-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(9, 81, 88, 0.9); /* Dark overlay */
  z-index: 1;
}

.clients-hero .overlay {
  position: relative;
  z-index: 2;
}

.clients-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
}

.clients-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.clients-hero a {
  color: #fff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .clients-hero {
    height: 40vh;
    padding: 20px;
  }

  .clients-hero h1 {
    font-size: 2.5rem;
  }

  .clients-hero p {
    font-size: 1rem;
  }
}

/* client hero section end */
.container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  gap: 40px;
}

.sidebar {
  width: 25%;
}

.product-list {
  list-style: none;
  padding: 0;
}

.product-list li {
  margin: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  border: 1px solid #000000;
  padding: 7px;
}

.product-list li.active a {
  color: #00d4ff;
  font-weight: bold;
}

.product-list li span {
  transition: transform 0.3s ease;
  font-size: 30px;
}

.product-list li:hover span {
  transform: rotateY(180deg);
  color: #00d4ff;
}
.product-list li:hover {
  color: #00d4ff;
}

.main-content {
  width: 75%;
}

.main-content img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.main-content h2 {
  color: #004e59;
  margin-bottom: 15px;
}

.main-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info {
  background: #004e59;
  color: white;
  padding: 20px;
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 14.5px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 10px;
  }

  .sidebar,
  .main-content {
    width: 100%;
  }

  .main-content {
    order: -1;
  }
}

ul li {
  list-style-type: none;
}

ul li a {
  text-decoration: none;
  color: black;
}
ul li a:hover {
  color: #00d4ff;
}

h3 {
  color: #00d4ff;
}

p a {
  color: inherit;
  text-decoration: none;
}

p a:hover {
  color: #007bff; /* ya jo color aapke theme se match kare */
}
