.about_page_section {
  position: relative;
  background: url('../img/Clientsbanner/client-banner.jpg') no-repeat center center/cover;
  height: 100vh;
  max-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: var(--white);
}

.about_page_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.315);
}

.about_page_section .about_banner {
  position: absolute;
  font-family: var(--poppins-400);
  max-width: 800px;
  font-size: 32px;
  text-align: left;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Privacy Policy Section */
.privacy-policy {
  background-color: var(--lightcolor);
  /* light background */
  padding: 60px 20px;
  border-radius: 10px;
}

.privacy-title {
  font-size: 32px;
  font-family: var(--poppins-600);
  margin-bottom: 20px;
  color: var(--white);
  text-align: center;
}

.privacy-heading {
  font-family: var(--poppins-500);
  font-size: 20px;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 15px;
}

/* Gallery */

.client-gallery {
  background-color: var(--lightcolor);
}

.client-card {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.client-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.client-card:hover .client-img {
  transform: scale(1.05);
}

/* Shining effect */
.shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.288) 10%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}

.client-card:hover .shine {
  animation: shine-move 0.8s ease forwards;
}

@keyframes shine-move {
  100% {
    left: 125%;
  }
}


/* Clinet Number Count */

.stats-section .stat-number {
  color: var(--black);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stats-section .stat-label {
  font-family: var(--poppins-500);
  color: var(--text-dark);
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
}

.stat-number::after {
  margin-left: 2px;
}

.symbol::after {
  content: '+';
}

.symbolPer::after {
  content: '%';
}

/* Trusted By Leading Brands Section */
.client-intro .privacy-title {
  color: var(--black);
}

.client-intro .client-text {
  font-family: var(--poppins-400);
  font-size: 16px;
  color: var(--text-dark);
}

/* Default: all logos grayscale */
.client-testimonials .item img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease-in-out;
}

/* Active (visible) items full color */
.client-testimonials .owl-item.active img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Make logo boxes uniform and centered */
.client-testimonials .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.client-testimonials .owl-dots.disabled {
  display: block !important;
}

/* Logo sizing */
.client-testimonials .item img.client-logo {
  max-width: 195px;
  max-height: 150px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease, filter .35s ease, opacity .35s ease;
  will-change: transform, filter, opacity;
}

/* Default: all non-center items are grayscale */
.client-testimonials .owl-item:not(.center) img.client-logo {
  filter: grayscale(100%);
  opacity: 0.6;
}

/* Center item: full color + small highlight */
.client-testimonials .owl-item.center img.client-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

.client-testimonials .owl-dots .owl-dot.active span,
.client-testimonials .owl-dots .owl-dot:hover span {
  background-color: var(--black) !important;
}

.client-testimonials .owl-dots .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  margin: 0 4px;
}

.client-logo {
  width: 100%;
  height: 50px;
  object-fit: contain;
}

.discuss-section h2 {
  font-family: var(--poppins-600);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 20px;
}

.discuss-section p {
  font-family: var(--poppins-400);
  font-size: 18px;
  color: var(--white);
}

/* Section with fixed background */
.discuss-section {
  background: url("../img/Discussbanner/discuss-banner.jpg") center center/cover no-repeat fixed;
  padding: 100px 20px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.discuss-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.219);
  filter: blur();
  z-index: -1;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--poppins-400);
  font-size: 14px;
  color: var(--white);
  margin-bottom: 6px;
}

.form-group input {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 16px;
  outline: none;
  background: transparent;
  color: var(--white);
}

.form-group input::placeholder {
  font-family: var(--poppins-400);
  color: var(--white);
}

/* Bottom Section */
.form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.checkbox-label a {
  font-family: var(--poppins-500);
  text-decoration: underline !important;
  color: var(--white);
  text-decoration: none;
}

.send-btn {
  font-family: var(--poppins-500);
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  padding: 8px 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.send-btn:hover {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--white);
}