/* ==========================================================================
   HOMEPAGE SPECIFIC STYLES - HERO SECTION & CUSTOM INTERACTIVES
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  overflow: hidden;
  background: #060c18;
}

/* Background glowing decorative blurred circles */
.hero__glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0) 70%);
  top: -10%;
  left: -10%;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: floatGlow 15s infinite alternate ease-in-out;
}

.hero__glow-2 {
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0) 70%);
  bottom: -20%;
  right: -10%;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: floatGlow 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 50px) scale(1.15); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(6, 12, 24, 0.4) 0%, rgba(6, 12, 24, 0.95) 100%);
  z-index: 1;
}

.hero__slides {
  position: relative;
  width: 100%;
  flex-grow: 1;
  z-index: 2;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero__slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

.hero__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 12, 24, 0.98) 25%, rgba(6, 12, 24, 0.8) 50%, rgba(6, 12, 24, 0.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  min-height: 72vh;
  padding-top: 7rem;
  padding-bottom: 2rem;
}

/* Badge Pill */
.hero__text .badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
}

.hero__text .badge i {
  color: #6366f1;
}

/* Text elements */
.hero__text h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 850;
  line-height: 1.06;
  margin: 0 0 1.2rem;
  letter-spacing: -0.025em;
}

.hero__text h1 span {
  background: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(99, 102, 241, 0.15);
}

.hero__text p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 600px;
  margin: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.hero__actions .btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}

.hero__actions .btn--ghost:hover {
  background: #ffffff;
  color: #060c18;
}

/* Visual Image & Floating Badges */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual-container {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero__visual-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__visual-container:hover img {
  transform: translateY(-5px) scale(1.02);
}

/* Glassmorphic floating badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(10, 16, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  padding: 0.7rem 1.1rem;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  z-index: 5;
  animation: floatBadge 6s infinite ease-in-out;
}

.badge--top-left { top: 8%; left: -10%; }
.badge--bottom-right { bottom: 12%; right: -10%; animation-delay: -3s; }
.badge--top-right { top: 8%; right: -10%; }
.badge--bottom-left { bottom: 12%; left: -10%; animation-delay: -3s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.f-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.f-badge-icon.icon-blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.f-badge-icon.icon-indigo { background: rgba(99, 102, 241, 0.15); color: #6366f1; }
.f-badge-icon.icon-green { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.f-badge-icon.icon-teal { background: rgba(20, 184, 166, 0.15); color: #14b8a6; }
.f-badge-icon.icon-rose { background: rgba(244, 63, 94, 0.15); color: #f43f5e; }
.f-badge-icon.icon-amber { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

.floating-badge div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.floating-badge strong {
  font-size: 0.95rem;
  font-weight: 850;
  color: #ffffff;
}

.floating-badge span {
  font-size: 0.7rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* Glassmorphic Stats Grid */
.hero__stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: auto;
  padding-bottom: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.stat-card {
  background: rgba(10, 16, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  border-radius: 22px;
  padding: 1.6rem 1.4rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
  color: #ffffff;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
}

.stat-icon {
  font-size: 1.35rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(59, 130, 246, 0.16));
  color: #818cf8;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.6rem;
}

.stat-card strong {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  background: linear-gradient(to right, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card span {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 992px) {
  .hero {
    min-height: auto;
  }

  .hero__content {
    grid-template-columns: 1fr;
    padding-top: 8rem;
    padding-bottom: 2rem;
    gap: 4rem;
    min-height: auto;
  }
  
  .hero__text {
    text-align: center;
  }
  
  .hero__text p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    min-height: auto;
  }

  .hero__visual-container {
    max-width: 420px;
  }

  .floating-badge {
    padding: 0.55rem 0.9rem;
    border-radius: 14px;
  }

  .badge--top-left { left: -5%; }
  .badge--bottom-right { right: -5%; }
  .badge--top-right { right: -5%; }
  .badge--bottom-left { left: -5%; }

  .hero__stats {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-top: 2rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 576px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
  
  .hero__text h1 {
    font-size: 2.3rem;
  }
  
  .hero__text p {
    font-size: 0.95rem;
  }
  
  .hero__visual-container {
    max-width: 320px;
  }

  .badge--top-left { left: 0; top: 0; }
  .badge--bottom-right { right: 0; bottom: 0; }
  .badge--top-right { right: 0; top: 0; }
  .badge--bottom-left { left: 0; bottom: 0; }

  .floating-badge strong {
    font-size: 0.85rem;
  }

  .floating-badge span {
    font-size: 0.65rem;
  }
}

.industries-banner {
      background: rgba(15, 23, 42, 0.4);
      backdrop-filter: blur(10px);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding: 18px 0;
      text-align: center;
      margin-top: 30px;
    }
    .industries-flex {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
      font-weight: 600;
      color: #94a3b8;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
    }
    .industries-flex span {
      transition: color 0.3s;
    }
    .industries-flex span:hover:not(.dot) {
      color: #2563eb;
    }
    .industries-flex .dot {
      color: #2563eb;
    }
    
    .industries-flex-marquee {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 18px 22px;
      font-weight: 700;
      color: #0f172a;
      font-size: 1.12rem;
      letter-spacing: 0.5px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .industries-flex-marquee .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .industries-flex-marquee .marquee-divider {
      color: #2563eb;
      opacity: 0.6;
    }

    .tech-tag-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      max-width: 900px;
      margin: 40px auto 0;
    }
    .tech-tag {
      background: #1e293b;
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #e2e8f0;
      padding: 10px 20px;
      border-radius: 40px;
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }
    .tech-tag:hover {
      background: #2563eb;
      border-color: #2563eb;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }
    .section-title.center {
      text-align: center;
    }
    .section-kicker {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 700;
      color: #2563eb;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .service-card-icon-large {
      font-size: 40px;
      margin-bottom: 20px;
      display: inline-block;
    }
    /* Premium About Showcase Styling */
    .about-right-showcase {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 100%;
    }
    .showcase-card {
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.06);
      padding: 24px 28px;
      border-radius: 20px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
      transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: relative;
      overflow: hidden;
      text-align: left;
    }
    .showcase-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: transparent;
      transition: background 0.3s;
    }
    .showcase-card.blue-glow::before { background: #2563eb; }
    .showcase-card.purple-glow::before { background: #8b5cf6; }
    .showcase-card.teal-glow::before { background: #14b8a6; }
    
    .showcase-card:hover {
      transform: translateX(6px) translateY(-2px);
      box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
      border-color: rgba(15, 23, 42, 0.12);
    }
    .showcase-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    .blue-glow .showcase-icon { background: rgba(37, 99, 235, 0.08); color: #2563eb; }
    .purple-glow .showcase-icon { background: rgba(139, 92, 246, 0.08); color: #8b5cf6; }
    .teal-glow .showcase-icon { background: rgba(20, 184, 166, 0.08); color: #14b8a6; }
    
    .showcase-details h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #0f172a;
      margin: 0 0 6px 0;
    }
    .showcase-details p {
      font-size: 0.92rem;
      color: #64748b;
      line-height: 1.6;
      margin: 0;
    }
    /* About CTA button color match */
    .cta-btn {
      background: #2563eb !important;
    }
    .cta-btn:hover {
      background: #1d4ed8 !important;
    }
    /* About Stats icons color match */
    .stat-box i {
      color: #2563eb !important;
    }
    /* Premium Service Card Styles */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      width: 100%;
    }
    .service-card {
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.05) !important;
      padding: 40px 32px !important;
      border-radius: 24px !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01) !important;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      position: relative;
      overflow: hidden;
    }
    .service-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      padding: 1.5px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }
    .service-card:hover {
      transform: translateY(-8px) !important;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
      border-color: transparent !important;
    }
    .service-card:hover::after {
      opacity: 1;
    }
    .service-card-icon-large {
      font-size: 32px !important;
      margin-bottom: 24px !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 58px !important;
      height: 58px !important;
      background: #f8fafc !important;
      border-radius: 16px !important;
      transition: all 0.3s ease !important;
    }
    .service-card:hover .service-card-icon-large {
      transform: scale(1.1);
      background: #eff6ff !important;
    }
    .service-card h3 {
      font-size: 1.3rem !important;
      font-weight: 750 !important;
      color: #0f172a !important;
      margin: 0 0 12px 0 !important;
    }
    .service-card p {
      font-size: 0.95rem !important;
      color: #64748b !important;
      line-height: 1.65 !important;
      margin-bottom: 24px !important;
      flex-grow: 1 !important;
    }
    .service-card a {
      font-size: 0.92rem !important;
      font-weight: 700 !important;
      color: #2563eb !important;
      display: inline-flex !important;
      align-items: center !important;
      gap: 6px !important;
      transition: all 0.3s ease !important;
      text-decoration: none !important;
    }
    .service-card a:hover {
      color: #1d4ed8 !important;
      transform: translateX(4px) !important;
    }
    /* Why Choose Premium White & Soft Glow Background */
    #why-choose {
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
      position: relative;
      overflow: hidden;
      padding: 100px 0 !important;
      border-top: 1px solid rgba(15, 23, 42, 0.05);
      border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    }
    #why-choose .section-title h2 {
      color: #0f172a !important;
    }
    #why-choose .section-title p {
      color: #64748b !important;
    }
    #why-choose .section-kicker {
      color: #2563eb !important;
    }
    #why-choose .service-card {
      background: #ffffff !important;
      border: 1px solid rgba(15, 23, 42, 0.06) !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015) !important;
      border-radius: 24px !important;
      padding: 40px 32px !important;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    }
    #why-choose .service-card h3 {
      color: #0f172a !important;
      font-size: 1.25rem !important;
      font-weight: 750 !important;
      margin-bottom: 12px !important;
    }
    #why-choose .service-card p {
      color: #64748b !important;
      font-size: 0.95rem !important;
      line-height: 1.65 !important;
    }
    #why-choose .service-icon {
      background: #eff6ff !important;
      color: #2563eb !important;
      width: 58px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      font-size: 24px;
      margin-bottom: 22px;
      transition: all 0.3s ease;
      border: 1px solid rgba(37, 99, 235, 0.08) !important;
    }
    #why-choose .service-card:hover {
      transform: translateY(-6px) !important;
      border-color: rgba(37, 99, 235, 0.15) !important;
      box-shadow: 0 20px 40px rgba(37, 99, 235, 0.06) !important;
    }
    #why-choose .service-card:hover .service-icon {
      background: #2563eb !important;
      color: #ffffff !important;
      transform: scale(1.08);
      border-color: transparent !important;
    }
