/* Clientele Page Stylesheet */

.pg-clientele-wrapper {
  background-color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
}

/* Hero Section */
.pg-clientele-hero {
  min-height: 40vh;
  position: relative;
  color: #f8f9fa;
}

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

.clientele-hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5, 27, 53, 0.85) 0%, rgba(5, 27, 53, 0.7) 50%, rgba(5, 27, 53, 0.3) 100%);
  z-index: 2;
}

.clientele-hero-tag {
  color: #c59d5f;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.clientele-hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.clientele-hero-para {
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.55;
  opacity: 0.95;
}

/* Content Section */
.pg-clientele-content-section {
  background-color: #ffffff;
}

/* Outer Card Container */
.clientele-outer-card {
  background-color: #faf9f6;
  border: 1.5px solid #e5e0d8;
  border-radius: 20px;
}

/* Clientele individual cards */
.client-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1.5px solid #ece7de;
  min-height: 82px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.client-card.theme-navy {
  color: #051b35;
}

.client-card.theme-gold {
  color: #c59d5f;
}

.client-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 27, 53, 0.08);
}

.client-card.theme-navy:hover {
  border-color: #051b35;
}

.client-card.theme-gold:hover {
  border-color: #c59d5f;
}

/* Right-side slanted thick border accent */
.client-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 25px;
  background-color: currentColor; /* Inherits navy or gold color from card */
  clip-path: polygon(100% 0, 100% 100%, 75% 100%, 30% 0);
  pointer-events: none;
  z-index: 2;
}

/* Left accent bar (half square shape) */
.client-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 44px;
  background-color: currentColor; /* Inherits navy or gold color */
  z-index: 1;
}

/* Icon circle wrapper overlapping the accent bar */
.client-icon-circle-wrapper {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.client-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1.8px solid currentColor; /* Navy or gold border */
  color: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

/* Vertical separator line */
.client-vertical-divider {
  position: absolute;
  left: 92px;
  top: 22%;
  bottom: 22%;
  width: 1.5px;
  background-color: #e2dacd;
  z-index: 2;
}

/* Background dot grid on the right side */
.client-dot-grid {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  width: 70px;
  background-image: radial-gradient(rgba(0, 0, 0, 0.07) 1.2px, transparent 0);
  background-size: 7px 7px;
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}

/* Content Title details */
.client-name-wrapper {
  margin-left: 108px;
  margin-right: 40px; /* Leaves clear space for right-side accent and dot grid */
  padding: 15px 20px;
  text-align: left;
  z-index: 2;
}

.client-name {
  font-family: 'Times New Roman', Times, serif; /* Times New Roman as requested */
  font-size: 1.45rem;
  color: #051b35;
  font-weight: 600;
  line-height: 1.35;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .client-accent-bar {
    width: 32px;
  }
  .client-icon-circle-wrapper {
    left: 12px;
  }
  .client-icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }
  .client-vertical-divider {
    left: 72px;
  }
  .client-name-wrapper {
    margin-left: 85px;
    margin-right: 25px;
    padding: 15px 8px;
  }
  .client-name {
    font-size: 1.25rem;
  }
  .clientele-outer-card {
    padding: 15px !important;
  }
}
