:root {
  --primary-color: #2a5bd7;
  --primary-dark: #1e4bbb;
  --secondary-color: #6c757d;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --accent-color: #ff6b35;
  --success-color: #28a745;
  --info-color: #17a2b8;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
}

/* Hero Section */
.hr-solutions-hero {
  background: url('../images/solutions.png') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 10rem 0;
  position: relative;
  text-align: center;
}

.hr-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hr-hero-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hr-hero-graphic {
  position: relative;
  height: 300px;
}

.hr-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hr-icon[data-icon="1"] {
  top: 20px;
  left: 30px;
  animation: float 6s ease-in-out infinite;
}

.hr-icon[data-icon="2"] {
  top: 100px;
  left: 180px;
  animation: float 8s ease-in-out infinite 1s;
}

.hr-icon[data-icon="3"] {
  top: 40px;
  left: 250px;
  animation: float 7s ease-in-out infinite 0.5s;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.solution-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(42, 91, 215, 0.1);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
}

.card-body {
  padding: 1.5rem;
}

.card-body p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  background: rgba(42, 91, 215, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: var(--primary-dark);
}

/* Stats Card */
.stats-card {
  padding: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

/* Testimonial Card */
.testimonial-card {
  padding: 2rem;
}

.testimonial-content {
  background: rgba(42, 91, 215, 0.03);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  left: -1rem;
  color: rgba(42, 91, 215, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.8rem;
  color: var(--secondary-color);
}

/* CTA Section */
.hr-cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 0;
  margin: 4rem 0;
  border-radius: 12px;
  text-align: center;
}

.hr-cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hr-cta-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: white;
  color: var(--primary-color);
}

.cta-btn.primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.section-description {
  font-size: 1.2rem;
  color: var(--secondary-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Leadership Journey Card */
.leadership-journey-card {
  border: none;
  overflow: hidden;
  margin: 3rem 0;
}

.leadership-visual {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leadership-illustration {
  width: 80%;
  height: 80%;
  position: relative;
}

.mountain-peak {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to top right, transparent 49%, #8e44ad 50%);
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}

.summit-marker {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 0 5px rgba(255,107,53,0.3);
  animation: pulse 2s infinite;
}

.pathway-dots {
  position: absolute;
  left: 20%;
  bottom: 0;
  width: 60%;
  height: 80%;
}

.pathway-dots::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(142,68,173,0.3);
  transform: translateX(-50%);
}

.pathway-dots::after {
  content: "• • • • •";
  position: absolute;
  left: 50%;
  top: 10%;
  color: #8e44ad;
  font-size: 1.5rem;
  letter-spacing: 1rem;
  transform: translateX(-50%);
  line-height: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}

.leadership-header {
  border-bottom: none;
  position: relative;
}

.leadership-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

.program-title {
  font-size: 1.8rem;
  color: #343a40;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.program-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #8e44ad, #9b59b6);
}

.program-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.journey-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.journey-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.journey-list i {
  margin-right: 1rem;
  color: #8e44ad;
  width: 20px;
  text-align: center;
}

.testimonial-bubble {
  background: rgba(142,68,173,0.05);
  border-left: 3px solid #8e44ad;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 3rem;
  color: rgba(142,68,173,0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-bubble p {
  padding-left: 2rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.client-title {
  padding-left: 2rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.leadership-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(142,68,173,0.03);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.btn-explore {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
}

.program-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.program-meta i {
  margin-right: 0.5rem;
  color: #8e44ad;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
  .hr-hero-title {
      font-size: 2.8rem;
  }
  .hr-hero-subtitle {
      font-size: 1.2rem;
  }

  .leadership-journey-card .col-lg-5 {
      min-height: 200px;
  }

  .mountain-peak {
      height: 70%;
  }

}

@media (max-width: 768px) {
  .solutions-grid {
      grid-template-columns: 1fr;
  }
  .hr-hero-title {
      font-size: 2.2rem;
  }
  .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
  .cta-btn {
      width: 100%;
      justify-content: center;
  }
  .leadership-journey-card .row {
      flex-direction: column;
  }

  .leadership-visual {
      min-height: 150px;
  }

  .leadership-illustration {
      width: 60%;
      height: 100%;
  }

}

@media (max-width: 576px) {
  .section-title {
      font-size: 2rem;
  }
  .stats-grid {
      grid-template-columns: 1fr;
  }
}