/* Basic Reset */
* {
  box-sizing: border-box;
}

/* Font setup */
body {
  font-family: "Inter", sans-serif;
  color: #333;
  background-color: #fff;
}

/* Hero Section */
.hero-clientele {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-clientele-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-text {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  color: white;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  max-width: 700px;
  color: #ffffff;
}

/* Responsive Hero Text */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .clientele-tabs {
    padding: 40px;
    background-color: #f8f8f8;
    overflow-x: hidden;
  }

  .tabs-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
  }
}

.clientele-tabs {
  padding: 40px;
  background-color: #f8f8f8;
}

.tabs-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}

.tabs {
  display: flex;
  flex-direction: column;
  min-width: auto;
}

.tabs button {
  font-family: "Inter", sans-serif;
}

.tab {
  background-color: transparent;
  border: none;
  text-align: left;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  color: #000000;
  /* Default black */
  border-left: 5px solid transparent;
  transition: all 0.3s ease;
}

.tab:hover {
  color: #b71c1c;
  /* Red on hover */
}

.tab.active {
  background-color: #b71c1c;
  /* Maroon background */
  color: #ffffff;
  font-weight: 700;
  /* White text */
  border-left: 5px solid #b71c1c;
}

.image-display {
  flex-grow: 1;
  padding: 20px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-display img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}
