/* Reset general */
html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  color: var(--text-main);
  background: var(--light-bg);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 50vh;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-section .lead {
  font-size: 1.3rem; 
  color: rgba(255,255,255,0.9);
  font-style: italic;
}

/* STATS CARDS */
.stat-card {
  padding: 30px;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: 0 4px 16px rgba(10, 36, 99, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(10, 36, 99, 0.05);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(10, 36, 99, 0.1);
  border-color: rgba(212, 175, 55, 0.2);
}

.stat-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.stat-card h2 {
  color: var(--primary-blue);
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}

/* PREMIUM CLIENT CARDS */
.client-premium-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(10, 36, 99, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(10, 36, 99, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.client-premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 36, 99, 0.1);
  border-color: var(--accent-gold);
}

.client-logo-wrapper {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.client-logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.client-premium-card:hover .client-logo-wrapper img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.client-info {
  position: relative;
  z-index: 2;
}

.client-name {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
  transition: color 0.3s ease;
}

.client-premium-card:hover .client-name {
  color: var(--primary-blue);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.client-premium-card:hover .card-glow {
  opacity: 1;
}

/* SUCCESS CARDS */
.success-card {
  background: var(--white);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(10, 36, 99, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(10, 36, 99, 0.05);
}

.success-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.12);
  border-color: rgba(212, 175, 55, 0.2);
}

.success-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.success-card h4 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.success-card p {
  margin-bottom: 25px;
  color: var(--text-muted);
}

.success-stats {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light-bg);
}

.success-stats .stat-item {
  flex: 1;
  text-align: center;
}

.success-stats strong {
  display: block;
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.success-stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* INDUSTRY CARDS */
.industry-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(10, 36, 99, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(10, 36, 99, 0.05);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(10, 36, 99, 0.15);
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-color: transparent;
}

.industry-card i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.industry-card:hover i {
  transform: scale(1.1);
  color: var(--white);
}

.industry-card h5 {
  color: var(--primary-blue);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.industry-card:hover h5 {
  color: var(--white);
}

.industry-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.industry-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.coming-soon-badge {
  position: absolute;
  top: 10px;
  right: -30px;
  background: var(--accent-gold);
  color: var(--primary-blue);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 5px 35px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 10;
}

.industry-card:hover .coming-soon-badge {
  background: var(--white);
  color: var(--primary-blue);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* FOOTER */
.footer {
  background: var(--dark-blue);
  padding: 2rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .carousel-control-prev { left: 0; }
  .carousel-control-next { right: 0; }
}
