/* Section wrapper with subtle pattern background */
.directors-section {
  padding: 60px 0 120px;
  position: relative;
  background: url("../images/BasicDesign/soft_lines.png")center/cover repeat;
  z-index: 1;
}

/* Wave at the bottom */
.directors-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: url("../images/BasicDesign/white_wave.svg")bottom center/cover no-repeat;
  pointer-events: none;
  z-index: 2;
}

.directors-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Slider container */
.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 5;
}

/* Infinite scroll track */
.slide-track {
  display: flex;
  gap: 26px;
  width: calc(240px * 12);
  animation: scroll 35s linear infinite;
}

/* Pause on hover */
.slider:hover .slide-track {
  animation-play-state: paused;
}

/* Cards */
.director-card {
  min-width: 220px;
  background:rgba(229,229,214,1.00);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  text-align: center;
	box-shadow:8px, 8px;
	
}

.director-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* Text */
.director-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 600;
	color: rgba(179,34,8,1.00);
}

.director-card h6 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 600;
  color:rgba(53,137,237,1.00);
}


.director-card p {
  font-size: 14px;
	color: rgba(70,107,120,1.00);
  margin: 0;
  opacity: 0.8;
}

/* Infinite scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.director-card a {
  text-decoration: none;
  color: inherit;
}

.director-card a h3,
.director-card a h6,
.director-card a p {
  text-decoration: none;

}

.director-card a:hover {
  text-decoration: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .director-card {
    min-width: 170px;
  }

  .director-card img {
    height: 150px;
  }

.director-card a h3,
.director-card a h6,
.director-card a p {
  text-decoration: none;
  color: inherit;
}
}
