/* Hero Section */
.page-hero.industries-hero {
  background: linear-gradient(to right, rgba(4, 15, 34, 0.95) 30%, rgba(4, 15, 34, 0.5) 60%, rgba(4, 15, 34, 0.1) 90%), 
              url('../images/industries/industries-hero.png') center/cover no-repeat;
  padding: 8rem 0 5rem;
  color: #ffffff;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-hero.industries-hero .container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.hero-left-col {
  max-width: 680px;
}

.hero-eyebrow {
  color: #3b82f6;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}

.hero-left-col h1 {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-left-col h1 .highlight {
  color: #60a5fa;
  background: linear-gradient(135deg, #93c5fd, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left-col p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #1677f8;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(22, 119, 248, 0.3);
}

.btn-explore:hover {
  background: #0057d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 119, 248, 0.45);
}

/* Icons Banner */
.hero-icons-banner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

.banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.banner-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.banner-item i {
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

.banner-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  transition: all 0.3s ease;
}

.banner-item:hover i {
  color: #3b82f6;
  transform: scale(1.1);
}

.banner-item:hover span {
  color: #ffffff;
}

@media (max-width: 992px) {
  .hero-icons-banner {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .banner-item::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-icons-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Industry Grid Layout */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 0 0 5rem;
}

/* Industry Cards */
.industry-card {
  background: #ffffff;
  border: 1px solid rgba(11, 44, 92, 0.08);
  border-radius: 24px;
  padding: 2.2rem 1.85rem;
  box-shadow: 0 10px 30px rgba(6, 27, 58, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 119, 248, 0.25);
  box-shadow: 0 24px 50px -15px rgba(22, 119, 248, 0.12);
}

.industries-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 1.6rem;
  background: #f8fafc;
}

.industries-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.industry-card:hover .industries-image img {
  transform: scale(1.08);
}

.industry-card h3 {
  font-size: 1.3rem;
  color: #061b3a;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.industry-card p {
  color: #60708a;
  font-size: 0.94rem;
  line-height: 1.62;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.industry-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1677f8;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  align-self: center;
}

.industry-card a:hover, .industry-card:hover a {
  color: #0057d9;
  gap: 12px;
}



/* Value / Core Benefits Section */
.alt-bg {
  background: #f1f5f9;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  background: #ffffff;
  border: 1px solid rgba(11, 44, 92, 0.06);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(6, 27, 58, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 119, 248, 0.2);
  box-shadow: 0 22px 48px -10px rgba(22, 119, 248, 0.12);
}

.value-card i {
  font-size: 2.2rem;
  color: #1677f8;
  margin-bottom: 1.5rem;
  background: rgba(22, 119, 248, 0.06);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.value-card h3 {
  font-size: 1.25rem;
  color: #061b3a;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.value-card p {
  color: #60708a;
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}

/* Stats Counter Banner */
.stats-banner {
  background: linear-gradient(135deg, #0b1c35, #040d1a);
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  background: linear-gradient(135deg, #ffffff, #36b6ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* Section Headings Styling helper */
.center {
  text-align: center;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto;
}

.section-kicker {
  background: linear-gradient(135deg, rgba(22, 119, 248, 0.08), rgba(54, 182, 255, 0.08));
  color: #1677f8;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(22, 119, 248, 0.15);
  margin-bottom: 1.1rem;
}

.section h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #061b3a;
  letter-spacing: -0.04em;
  margin-bottom: 1.1rem;
}

.section p {
  color: #60708a;
  font-size: 1.05rem;
  line-height: 1.6;
}


.detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

main .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.95rem;
}

main .btn--primary {
  background: #1677f8;
  color: #ffffff;
  box-shadow: 0 8px 22px -6px rgba(22, 119, 248, 0.45);
}

main .btn--primary:hover {
  background: #0057d9;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -5px rgba(22, 119, 248, 0.6);
}

main .btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width: 992px) {
  .detail-actions {
    justify-content: center;
  }
}

/* Premium Why Choose Us Section */
.why-choose-premium-section {
  background: radial-gradient(circle at 10% 20%, rgba(4, 15, 34, 1) 0%, rgba(11, 28, 56, 1) 90%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-choose-premium-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 119, 248, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.why-choose-premium-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}

.why-choose-premium-section .section-kicker {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(22, 119, 248, 0.15));
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.why-choose-premium-section h2 {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0.5rem;
}

.why-choose-premium-section .section-intro p {
  color: #94a3b8;
  font-size: 1.1rem;
}

/* Glassmorphic Value Cards */
.why-choose-premium-section .value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.why-choose-premium-section .value-card {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.why-choose-premium-section .value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(15, 23, 42, 0.7);
  box-shadow: 0 20px 40px -10px rgba(22, 119, 248, 0.35);
}

.why-choose-premium-section .value-card i {
  font-size: 1.8rem;
  color: #38bdf8;
  -webkit-text-fill-color: initial;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(22, 119, 248, 0.15));
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(56, 189, 248, 0.25);
  transition: all 0.3s ease;
}

.why-choose-premium-section .value-card:hover i {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(22, 119, 248, 0.25));
  color: #60a5fa;
  -webkit-text-fill-color: initial;
  border-color: rgba(56, 189, 248, 0.4);
}

.why-choose-premium-section .value-card h3 {
  font-size: 1.22rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-choose-premium-section .value-card p {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Industry Work Process Section */
.industry-process-section {
  background: #ffffff;
  padding: 6rem 0;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.step-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.step-badge {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  width: 100%;
}

.step-num {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1677f8, #3b82f6);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(22, 119, 248, 0.25);
  border: 4px solid #ffffff;
  outline: 1px solid rgba(22, 119, 248, 0.15);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-line {
  height: 2px;
  background: rgba(22, 119, 248, 0.15);
  flex-grow: 1;
  margin-left: -5px;
  position: relative;
  z-index: 1;
}

.step-card:hover .step-num {
  transform: scale(1.1);
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.step-content h3 {
  font-size: 1.25rem;
  color: #061b3a;
  font-weight: 800;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.step-content p {
  color: #60708a;
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .step-card {
    flex-direction: row;
    gap: 1.5rem;
  }
  
  .step-badge {
    flex-direction: column;
    margin-bottom: 0;
    width: auto;
  }
  
  .step-line {
    width: 2px;
    height: 100%;
    margin-left: 0;
    margin-top: -5px;
    flex-grow: 1;
  }
}