.clients-section {
  padding: 90px 10%;
  background: #0b0b0b;
  color: white;
}

.clients-container {
  text-align: center;
}

.clients-container h2 {
  font-size: 38px;
  font-weight: 700;
  color: orange;
  margin-bottom: 60px;
}

/* GRID */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 35px;
}

/* LOGO CARD */
.client-logo {
  background: #121212;
  padding: 25px;
  border-radius: 14px;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-logo img {
  max-width: 120px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.4s;
}

/* HOVER EFFECT */
.client-logo:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.25);
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .clients-section {
    padding: 60px 6%;
  }

  .clients-container h2 {
    font-size: 28px;
  }
}




/* ==============================
   Call Now Banner Dark Mode
============================== */

.call-banner-section {
  padding: 80px 10%;
  background: #111;
}

.call-banner {
  background: linear-gradient(135deg, #001a66, #0033cc);
  border-radius: 18px;
  padding: 35px 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

/* Decorative Circles */
.call-banner::before,
.call-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.call-banner::before {
  width: 180px;
  height: 180px;
  top: -60px;
  left: -60px;
}

.call-banner::after {
  width: 220px;
  height: 220px;
  bottom: -80px;
  right: -80px;
}

/* Left Side */
.call-banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 2;
}

.call-banner-left i {
  font-size: 42px;
  color: orange;
}

.call-banner-left h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

/* Button */
.call-btn {
  padding: 14px 34px;
  background: orange;
  color: #111;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  z-index: 2;
}

.call-btn:hover {
  background: #ff9900;
  transform: scale(1.05);
}

/* Responsive */
@media(max-width: 768px) {
  .call-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .call-banner-left {
    flex-direction: column;
  }

  .call-banner-left h2 {
    font-size: 22px;
  }
}