/* ======================================================
   SS INFOTECHS - MAIN LAYOUT & STYLING
   
   TABLE OF CONTENTS:
   1. GLOBAL STYLES & TYPOGRAPHY
   2. TOPBAR STYLING
   3. NAVBAR & MOBILE DROPDOWN STYLING
   4. BUTTON COMPONENTS
   5. HERO SECTION LAYOUT
   6. RESPONSIVE MEDIA QUERIES
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');


/* ======================================================
   1. GLOBAL STYLES & TYPOGRAPHY
   ====================================================== */

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-body);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Gradient Text Utility Class */
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Accent Color Helper */
.text-cyan {
  color: var(--cyan-vibrant) !important;
}


/* ======================================================
   2. TOPBAR STYLING
   ====================================================== */

.topbar-wrapper {
  background-color: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.825rem;
  position: relative;
  z-index: 1031;
}

.topbar-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 400;
}

.topbar-link:hover {
  color: var(--cyan-vibrant);
}

/* Support Status Badge with Pulsing Indicator */
.support-badge {
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--sky-bright);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981; /* Live status green indicator */
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Micro Social Media Icons */
.social-icon-sm {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-icon-sm:hover {
  background: var(--cyan-vibrant);
  color: var(--navy-deep);
  transform: translateY(-2px);
}


/* ======================================================
   3. NAVBAR & NAVIGATION STYLING
   ====================================================== */

/* Sticky Base Navigation Bar */
.navbar-custom {
  position: sticky; /* Flows smoothly below topbar and sticks on scroll */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 0.9rem 0;
  background: var(--bg-surface-white);
  transition: var(--transition-smooth);
}

/* Scrolled State (Active via JS) */
.navbar-custom.scrolled {
  background: var(--bg-glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-sm);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Brand Logo Styling */
.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

/* Navigation Menu Links */
.nav-link {
  font-weight: 500;
  color: var(--navy-deep) !important;
  margin: 0 0.3rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.nav-link:hover, 
.nav-link.active {
  color: var(--cyan-vibrant) !important;
  background-color: rgba(6, 182, 212, 0.08);
}


/* ======================================================
   4. BUTTON COMPONENTS
   ====================================================== */

.btn-primary-custom {
  background: var(--gradient-accent);
  color: var(--text-white);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 10px 20px -5px rgba(6, 182, 212, 0.4);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--text-white);
}

.btn-outline-custom {
  border: 2px solid var(--navy-deep);
  color: var(--navy-deep);
  font-weight: 600;
  padding: 0.7rem 1.75rem;
  border-radius: 50px;
  background: transparent;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: var(--navy-deep);
  color: var(--text-white);
  transform: translateY(-2px);
}


/* ======================================================
   5. HERO SECTION LAYOUT (Parallax & Depth Styling)
   ====================================================== */

.hero-wrapper {
  position: relative;
  min-height: calc(100vh - 120px);
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--bg-body);
  display: flex;
  align-items: center;
}

/* Background Grid Overlay */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 25, 47, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
  z-index: 1;
}

/* Ambient Glowing Background Orbs */
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 1;
}

.blob-1 {
  width: 350px;
  height: 350px;
  background: rgba(6, 182, 212, 0.25);
  top: 10%;
  right: 15%;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(30, 58, 138, 0.15);
  bottom: 5%;
  left: 10%;
}

/* Parallax Frame Container */
.hero-parallax-container {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

/* Central Dashboard Media Card */
.hero-media-card {
  width: 380px;
  background: var(--bg-surface-white);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(10, 25, 47, 0.18);
  border: 1px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: transform 0.1s ease-out;
}

.media-header-bar {
  background: var(--navy-deep);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.media-header-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.media-header-bar .dot.red { background: #ef4444; }
.media-header-bar .dot.yellow { background: #f59e0b; }
.media-header-bar .dot.green { background: #10b981; }

.media-title-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  margin-left: 0.5rem;
  font-weight: 500;
}

.tech-graphic-preview {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #fafafc 0%, #ffffff 100%);
}

.preview-brand-symbol {
  height: 90px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 15px rgba(6, 182, 212, 0.2));
}

.preview-analytics-line {
  height: 8px;
  background: linear-gradient(90deg, var(--cyan-vibrant) 0%, var(--blue-royal) 100%);
  border-radius: 10px;
  margin: 0.5rem auto;
  width: 80%;
}

.preview-analytics-line.short {
  width: 50%;
  opacity: 0.5;
}

/* Floating Technology Node Cards */
.floating-tech-card {
  position: absolute;
  background: var(--bg-surface-white);
  padding: 0.85rem 1.25rem;
  border-radius: 16px;
  box-shadow: 0 15px 30px -5px rgba(10, 25, 47, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3;
  pointer-events: auto;
  transition: transform 0.1s ease-out;
}

.floating-tech-card.card-1 { top: 2%; left: -2%; }
.floating-tech-card.card-2 { bottom: 8%; left: -5%; }
.floating-tech-card.card-3 { top: 8%; right: -2%; }
.floating-tech-card.card-4 { bottom: 5%; right: 2%; }

.fs-7 { font-size: 0.75rem; }


/* ------------------------------------------------------
   6. MOBILE HERO & FLOATING BADGES FIX (max-width: 767.98px)
   ------------------------------------------------------ */
@media (max-width: 767.98px) {
  
  /* Reduce hero container height for mobile screens */
  .hero-parallax-container {
    height: auto;
    min-height: 380px;
    padding: 1rem 0;
    flex-direction: column;
  }

  /* Scale central media card to fit small viewports */
  .hero-media-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Reposition floating cards so they don't obscure central logo/content */
  .floating-tech-card {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 280px;
    margin: 0.5rem auto;
    box-shadow: 0 4px 12px rgba(10, 25, 47, 0.06);
  }

  /* Hide 2 lesser-important badges on extra-small mobile (320px) to prevent scroll clutter */
  .floating-tech-card.card-3,
  .floating-tech-card.card-4 {
    display: none !important;
  }
}

/* ======================================================
   7. TRUSTED BY / CLIENT LOGOS MARQUEE STYLING
   ====================================================== */

.trusted-by-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafafc 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.text-navy {
  color: var(--navy-deep);
}

.bg-primary-subtle { background-color: rgba(30, 58, 138, 0.08) !important; }
.bg-cyan-subtle { background-color: rgba(6, 182, 212, 0.1) !important; }
.bg-purple-subtle { background-color: rgba(124, 58, 237, 0.1) !important; }

/* Outer Viewport Box with Gradient Fade Mask */
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

/* Sliding Parent Container */
.marquee-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
}

/* Individual Content Blocks */
.marquee-content {
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  min-width: 100%;
  animation: marquee-infinite-loop 28s linear infinite;
}

/* Pause Infinite Scroll on Hover */
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

/* Medium-Sized Logo Cards */
.logo-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.2rem;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  user-select: none;
  filter: grayscale(80%);
  opacity: 0.75;
}

.logo-card:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.12);
  border-color: rgba(6, 182, 212, 0.4);
}

.logo-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-deep);
}

/* True Infinite Keyframe Loop */
@keyframes marquee-infinite-loop {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ======================================================
   8. ABOUT SECTION (ORGANIC CLOUD-MORPH & TECH NODES)
   ====================================================== */

.about-section {
  background-color: var(--bg-body);
}

/* Outer Cloud Hub Wrapper */
.cloud-visual-hub {
  position: relative;
  width: 100%;
  min-height: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Central Organic Fluid Morphing Cloud Card */
.cloud-center-card {
  width: 290px;
  height: 290px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: var(--gradient-primary);
  box-shadow: 0 25px 50px -10px rgba(10, 25, 47, 0.25),
              0 0 40px rgba(6, 182, 212, 0.2);
  position: relative;
  z-index: 2;
  animation: morph-cloud 10s ease-in-out infinite alternate;
}

/* Organic Fluid Morph Animation */
@keyframes morph-cloud {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 40% 60% 70% 30% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
  }
}

.cloud-brand-symbol {
  height: 85px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.bg-cyan-pill {
  background: var(--gradient-accent);
}

/* Ambient Pulsing Background Rings */
.cloud-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(6, 182, 212, 0.2);
  z-index: 1;
}

.ring-1 {
  width: 360px;
  height: 360px;
  animation: pulse-ring 4s ease-out infinite;
}

.ring-2 {
  width: 440px;
  height: 440px;
  border-color: rgba(30, 58, 138, 0.12);
  animation: pulse-ring 6s ease-out infinite 1s;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/* Orbiting Capsule Badges */
.cloud-orbit-badge {
  position: absolute;
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0 15px 35px -5px rgba(10, 25, 47, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.95);
  z-index: 3;
  transition: var(--transition-smooth);
}

.cloud-orbit-badge:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 40px -8px rgba(6, 182, 212, 0.25);
  border-color: rgba(6, 182, 212, 0.4);
}

.orbit-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-cloud-tr {
  top: 5%;
  right: 2%;
}

.badge-cloud-bl {
  bottom: 5%;
  left: 2%;
}

.badge-cloud-tl {
  top: 10%;
  left: 0%;
}

/* Interactive Tech Node Cards (Right Side) */
.tech-node-card {
  transition: var(--transition-smooth);
  cursor: pointer;
  border-color: rgba(226, 232, 240, 0.9) !important;
}

.node-border-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: var(--transition-fast);
}

.tech-node-card:hover {
  transform: translateX(6px);
  border-color: rgba(6, 182, 212, 0.3) !important;
  box-shadow: 0 10px 25px -5px rgba(10, 25, 47, 0.08) !important;
}

.tech-node-card:hover .node-border-line {
  background: var(--gradient-accent);
}

.tech-node-card:hover .node-icon-box {
  transform: scale(1.1) rotate(5deg);
  transition: var(--transition-fast);
}

.leading-relaxed {
  line-height: 1.65;
}

/* Mobile Breakpoint Tweaks */
@media (max-width: 767.98px) {
  .cloud-visual-hub {
    min-height: 380px;
  }
  .cloud-center-card {
    width: 240px;
    height: 240px;
  }
  .badge-cloud-tr {
    top: 0%;
    right: 0%;
  }
  .badge-cloud-bl {
    bottom: 0%;
    left: 0%;
  }
  .ring-1, .ring-2 {
    display: none;
  }
}

/* ======================================================
   9. SERVICES SHOWCASE SECTION (CLEAN STYLING)
   ====================================================== */

.services-section {
  background-color: var(--bg-surface-white);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.max-w-700 {
  max-width: 700px;
}

/* Base Service Card Setup */
.service-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease;
  border-color: rgba(226, 232, 240, 0.9) !important;
  cursor: pointer;
}

/* HOVER ELEVATION HIGHLIGHT */
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.45) !important;
  box-shadow: 0 18px 36px -10px rgba(10, 25, 47, 0.12) !important;
}

/* Icon Container Styling */
.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon-box {
  transform: scale(1.08);
}

/* Technology Badges */
.tech-pill {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  background: var(--bg-body);
  color: var(--text-muted);
  border-radius: 6px;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

/* Service CTA Link */
.service-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--cyan-vibrant) !important;
  transform: translateX(4px);
}

/* ======================================================
   10. PRODUCTS SHOWCASE SECTION STYLING
   ====================================================== */

.products-section {
  background-color: var(--bg-body);
}

/* Product Selection Tab Button */
.product-tab-item {
  cursor: pointer;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-tab-item:hover {
  transform: translateX(6px);
  border-color: rgba(6, 182, 212, 0.35) !important;
}

.product-tab-item.active {
  background: var(--navy-deep) !important;
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.2) !important;
}

.product-tab-item.active h6 {
  color: #ffffff !important;
}

.product-tab-item.active small {
  color: rgba(255, 255, 255, 0.75) !important;
}

.product-tab-item.active .tab-arrow {
  color: var(--cyan-vibrant) !important;
  transform: translateX(4px);
}

.tab-icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark Display Frame */
.product-display-frame {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0c1e36 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 420px;
}

/* Fail-Safe Visibility Panes */
.product-detail-pane {
  display: none !important;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-detail-pane.active {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.bg-cyan {
  background-color: var(--cyan-vibrant) !important;
}


/* ======================================================
   12. PORTFOLIO & CASE STUDIES SECTION STYLING
   ====================================================== */

.portfolio-section {
  background-color: var(--bg-body);
}

.max-w-700 {
  max-width: 700px;
}

/* Category Filter Pills */
.filter-pill {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 30px;
  background: var(--bg-surface-white);
  color: var(--text-muted);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-pill:hover {
  color: var(--navy-deep);
  border-color: var(--cyan-vibrant);
}

.filter-pill.active {
  background: var(--navy-deep);
  color: var(--cyan-vibrant);
  border-color: var(--cyan-vibrant);
  box-shadow: 0 8px 20px -5px rgba(10, 25, 47, 0.25);
}

/* Case Study Cards */
.case-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0c1e36 100%);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.45) !important;
  box-shadow: 0 25px 50px -15px rgba(10, 25, 47, 0.3) !important;
}

.impact-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Filtering Animations */
.portfolio-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.portfolio-item.hide-item {
  display: none !important;
  opacity: 0;
  transform: scale(0.95);
}

.portfolio-item.show-item {
  display: block !important;
  opacity: 1;
  transform: scale(1);
}

/* ======================================================
   13. TESTIMONIALS SECTION STYLING
   ====================================================== */

.testimonials-section {
  background-color: var(--bg-surface-white);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.testimonial-slider-wrapper {
  max-width: 850px;
  overflow: hidden;
}

.testimonial-track {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: rgba(6, 182, 212, 0.35) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.1) !important;
}

.client-avatar {
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
}

/* Slider Controls */
.slider-nav-btn {
  width: 42px;
  height: 42px;
  background: var(--bg-surface-white);
  color: var(--navy-deep);
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  transition: var(--transition-fast);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav-btn:hover {
  background: var(--navy-deep);
  color: #ffffff;
  border-color: var(--navy-deep) !important;
}

.dot-pill {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(203, 213, 225, 0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot-pill.active {
  width: 28px;
  border-radius: 20px;
  background: var(--cyan-vibrant);
}

/* ======================================================
   14. WORK PROCESS SECTION (CROSSWALK RUNWAY STYLING)
   ====================================================== */

.process-section {
  background-color: var(--bg-body);
}

.crosswalk-container {
  max-width: 1000px;
}

/* Central Code Runway Track */
.runway-spine {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, 
              rgba(30, 58, 138, 0.2) 0%, 
              rgba(6, 182, 212, 0.8) 50%, 
              rgba(16, 185, 129, 0.9) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  z-index: 1;
}

/* Crosswalk Row Layout */
.crosswalk-node-row {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.crosswalk-node-row.left-node {
  justify-content: flex-start;
}

.crosswalk-node-row.right-node {
  justify-content: flex-end;
}

/* Crosswalk Card Width & Placement */
.crosswalk-card {
  width: 100%;
  max-width: 440px;
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.crosswalk-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.4) !important;
  box-shadow: 0 18px 36px -10px rgba(10, 25, 47, 0.12) !important;
}

.node-number-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Runway Central Checkpoint Node */
.runway-checkpoint-dot {
  position: absolute;
  left: 50%;
  width: 46px;
  height: 46px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid var(--cyan-vibrant);
  color: var(--navy-deep);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
  transition: all 0.3s ease;
  z-index: 3;
}

.crosswalk-node-row:hover .runway-checkpoint-dot {
  background: var(--navy-deep);
  color: var(--cyan-vibrant);
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.5);
}

.active-endpoint {
  border-color: #10b981;
  color: #10b981;
}

/* Mobile Responsive Tweak */
@media (max-width: 991.98px) {
  .crosswalk-node-row.left-node,
  .crosswalk-node-row.right-node {
    justify-content: center;
  }
  .crosswalk-card {
    max-width: 100%;
  }
}

/* ======================================================
   15. CALL TO ACTION & CONSULTATION BANNER STYLING
   ====================================================== */

.cta-section {
  background-color: var(--bg-body);
}

.cta-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0a1b30 100%);
  box-shadow: 0 20px 40px -15px rgba(10, 25, 47, 0.3) !important;
}

.cta-section .max-w-700 {
  max-width: 700px;
}

.hover-text-cyan:hover {
  color: var(--cyan-vibrant) !important;
}

/* Ambient Glow Blobs */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.glow-1 {
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(0, 229, 255, 0.15);
}

.glow-2 {
  bottom: -50px;
  right: -50px;
  width: 320px;
  height: 320px;
  background: rgba(30, 58, 138, 0.35);
}

/* ======================================================
   16. FOOTER SECTION STYLING
   ====================================================== */

.footer-section {
  background-color: var(--navy-deep);
}

.brand-logo-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-icon-btn:hover {
  background: var(--cyan-vibrant);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--cyan-vibrant);
  padding-left: 4px;
}

/* Back to Top Floating Button */
.back-to-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4) !important;
}



/* ===========================================================================
                     About Section
   ============================================================================ */


/* ======================================================
   ABOUT HERO SECTION (CYBER-GRID COMMAND CONCEPT)
   ====================================================== */

.about-hero-section {
  background-color: var(--navy-deep);
}

/* Animated Cyber Mesh Overlay */
.cyber-glow-bg {
  background: radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.2) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.3) 0%, transparent 50%);
}

/* Pulsing Beacon Light */
.pulse-beacon {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: cyberBeacon 1.8s infinite ease-in-out;
}

@keyframes cyberBeacon {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Pill Badges */
.cyber-pill {
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.cyber-pill:hover {
  background: rgba(6, 182, 212, 0.15);
  border-color: var(--cyan-vibrant);
  color: #ffffff;
}

/* HUD Command Card */
.hud-command-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hud-stat-item {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hud-stat-item:hover {
  transform: translateX(6px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 10px 20px -5px rgba(6, 182, 212, 0.25);
}

/* ======================================================
   17. EXECUTIVE STORY & STATS SECTION STYLING
   ====================================================== */

.story-section {
  background-color: var(--bg-body);
}

.stat-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.1) !important;
}


/* ======================================================
   18. CORE VALUES SECTION STYLING
   ====================================================== */

.values-section {
  background-color: var(--bg-surface-white);
}

.value-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.12) !important;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======================================================
   19. LEADERSHIP SECTION STYLING
   ====================================================== */

.leadership-section {
  background-color: var(--bg-body);
}

.leader-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.leader-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.1) !important;
}

.leader-img-wrapper {
  transition: all 0.3s ease;
}

.leader-card:hover .leader-img-wrapper {
  background-color: rgba(6, 182, 212, 0.05) !important;
}

.leader-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-body);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: all 0.25s ease;
}

.leader-social-btn:hover {
  background: var(--cyan-vibrant);
  color: #ffffff;
  border-color: var(--cyan-vibrant);
}

/* ======================================================
   20. SECURITY & CTA SECTION STYLING
   ====================================================== */

.security-section {
  background-color: var(--bg-surface-white);
}

.compliance-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.compliance-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.1) !important;
}

.compliance-icon-box {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.about-cta-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0d2347 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/*===========================================================================
                  Services Page Specific Styles
============================================================================*/

/* ======================================================
   21. SERVICES HERO SECTION STYLING
   ===================================================== */

.services-hero-section {
  background-color: var(--navy-deep);
  min-height: 80vh; /* Ensures consistent presence */
  display: flex;
  align-items: center;
}

/* Animated Cyber Mesh Overlay */
.cyber-glow-bg {
  background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.3) 0%, transparent 60%);
  animation: cyberPulse 10s infinite ease-in-out;
}

@keyframes cyberPulse {
  0% { opacity: 0.2; }
  50% { opacity: 0.35; }
  100% { opacity: 0.2; }
}

/* HUD Telemetry Card */
.hud-telemetry-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.hud-telemetry-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 16px;
  padding: 1px; /* Subtle glowing border */
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.5), transparent 50%, rgba(30, 58, 138, 0.3));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
}

/* Radar Status Dot (Success) */
.status-radar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: radarPulse 2s infinite ease-in-out;
}

@keyframes radarPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Capability Jump Pills */
.cyber-pill {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cyber-pill:hover {
  background: rgba(6, 182, 212, 0.15);
  border-color: var(--cyan-vibrant);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.2);
}


/* ======================================================
   22. SERVICES MATRIX SECTION STYLING
   ====================================================== */

.services-matrix-section {
  background-color: var(--bg-body);
}

.service-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.12) !important;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tech Pills inside Service Cards */
.tech-tag {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  padding: 0.2rem 0.55rem;
  background-color: var(--bg-body);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 6px;
  color: var(--navy-deep);
  font-weight: 500;
}

/* ======================================================
   23. CROSSPATH PIPELINE STYLING
   ====================================================== */

.crosspath-section {
  background-color: var(--bg-surface-white);
}

.crosspath-wrapper {
  padding: 40px 0;
}

/* Central Horizontal Pipeline Track (Desktop) */
.crosspath-rail {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 4px;
  background: linear-gradient(90deg, 
    rgba(10, 25, 47, 0.1) 0%, 
    var(--cyan-vibrant) 50%, 
    rgba(10, 25, 47, 0.1) 100%
  );
  transform: translateY(-2px);
  z-index: 1;
}

/* Node Layout Styling */
.crosspath-node {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Top Node Styling (Steps 1 & 3) */
@media (min-width: 992px) {
  .crosspath-top {
    margin-bottom: 70px;
  }
  .crosspath-bottom {
    margin-top: 70px;
  }
}

.crosspath-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 3;
}

.crosspath-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.12) !important;
}

/* Connector Line & Dot Components */
.node-dot-wrapper {
  align-items: center;
  flex-direction: column;
  z-index: 2;
}

.node-connector-line {
  width: 2px;
  height: 35px;
  background: linear-gradient(180deg, var(--cyan-vibrant), rgba(6, 182, 212, 0.2));
}

.node-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--cyan-vibrant);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
  transition: all 0.3s ease;
}

.inner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--cyan-vibrant);
}

.crosspath-card:hover + .node-dot-wrapper .node-dot,
.node-dot-wrapper:hover .node-dot {
  transform: scale(1.3);
  box-shadow: 0 0 18px var(--cyan-vibrant);
}

/* ======================================================
   24. TECH STACK SECTION STYLING
   ====================================================== */

.tech-stack-section {
  background-color: var(--bg-body);
}

.tech-stack-section .nav-pills .nav-link {
  color: var(--navy-deep);
  background-color: var(--bg-surface-white);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: all 0.3s ease;
}

.tech-stack-section .nav-pills .nav-link.active,
.tech-stack-section .nav-pills .nav-link:hover {
  background-color: var(--navy-deep);
  color: #ffffff;
  border-color: var(--navy-deep);
}

.tech-item-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-item-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 12px 25px -8px rgba(10, 25, 47, 0.1) !important;
}

.tech-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ======================================================
   25. SERVICES CTA SECTION STYLING
   ====================================================== */

.services-cta-section {
  background-color: var(--bg-surface-white);
}

.services-cta-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0d2347 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}



/*===================================================================================
                    Products Page Specific Styles
===================================================================================*/

/* ======================================================
   26. PRODUCTS HERO SECTION STYLING
   ====================================================== */

.products-hero-section {
  background-color: var(--navy-deep);
  min-height: 75vh;
  display: flex;
  align-items: center;
}

/* Responsive Utilities & Font Adjustments for Mobile */
@media (max-width: 767.98px) {
  .products-hero-section {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .hud-telemetry-card {
    margin-top: 1rem;
  }

  .cyber-pill {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }
}

/* Ensure text max width aligns centered on mobile */
.max-w-600 {
  max-width: 600px;
}

/* ======================================================
   27. FEATURED PRODUCTS SUITE STYLING
   ====================================================== */

.products-suite-section {
  background-color: var(--bg-body);
}

.product-feature-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-feature-card:hover {
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 20px 40px -15px rgba(10, 25, 47, 0.12) !important;
}

.product-preview-box {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0d2347 100%);
}

/* ======================================================
   28. DEPLOYMENT MODELS SECTION STYLING
   ====================================================== */

.deployment-models-section {
  background-color: var(--bg-surface-white);
}

.deployment-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.deployment-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.12) !important;
}

.deployment-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======================================================
   29. COMPLIANCE MATRIX SECTION STYLING
   ====================================================== */

.compliance-matrix-section {
  background-color: var(--bg-body);
}

.compliance-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.compliance-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.12) !important;
}

.compliance-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======================================================
   30. PRODUCTS CTA SECTION STYLING
   ====================================================== */

.products-cta-section {
  background-color: var(--bg-surface-white);
}

.products-cta-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0d2347 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}


/* =================================================================================
    Industry Solutions Section Styling
====================================================================================== */

/* ======================================================
   31. INDUSTRIES HERO SECTION STYLING
   ====================================================== */

.industries-hero-section {
  background-color: var(--navy-deep);
  min-height: 75vh;
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .industries-hero-section {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ======================================================
   32. VERTICAL SOLUTIONS SHOWCASE STYLING
   ====================================================== */

.industries-showcase-section {
  background-color: var(--bg-body);
}

.industry-feature-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-feature-card:hover {
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 20px 40px -15px rgba(10, 25, 47, 0.12) !important;
}

/* ======================================================
   33. INDUSTRY COMPLIANCE SECTION STYLING
   ====================================================== */

.industry-compliance-section {
  background-color: var(--bg-surface-white);
}

.compliance-pillar-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.compliance-pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.12) !important;
}


/* ======================================================
   34. INDUSTRY METRICS SECTION STYLING
   ====================================================== */

.industry-metrics-section {
  background-color: var(--bg-body);
}

.metric-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.metric-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.12) !important;
}


/* ======================================================
   35. INDUSTRIES CTA SECTION STYLING
   ====================================================== */

.industries-cta-section {
  background-color: var(--bg-surface-white);
}

.industries-cta-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0d2347 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}


/*===========================================================================
         CAREERS PAGE SPECIFIC STYLES
============================================================================*/


/* ======================================================
   36. CAREERS HERO SECTION STYLING
   ====================================================== */

.careers-hero-section {
  background-color: var(--navy-deep);
  min-height: 75vh;
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .careers-hero-section {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ======================================================
   37. CAREERS CULTURE SECTION STYLING
   ====================================================== */

.careers-culture-section {
  background-color: var(--bg-surface-white);
}

.culture-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.culture-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.12) !important;
}

.culture-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ======================================================
   38. CAREERS ROLES SECTION STYLING
   ====================================================== */

.careers-roles-section {
  background-color: var(--bg-body);
}

.job-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.job-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.12) !important;
}


/* ======================================================
   39. CAREERS PIPELINE SECTION STYLING (PERFECT Z-PATTERN)
   ====================================================== */

.careers-pipeline-section {
  background-color: var(--bg-surface-white);
}

.pipeline-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pipeline-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.12) !important;
}


/* ======================================================
   40. CAREERS CTA SECTION STYLING
   ====================================================== */

.careers-cta-section {
  background-color: var(--bg-body);
}

.careers-cta-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0d2347 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}


/* ===========================================================================
                     Contact Page Specific Styles
   ============================================================================ */


/* ======================================================
   41. CONTACT HERO SECTION STYLING
   ====================================================== */

.contact-hero-section {
  background-color: var(--navy-deep);
  min-height: 75vh;
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .contact-hero-section {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ======================================================
   42. CONTACT HUB SECTION STYLING
   ====================================================== */

.contact-hub-section {
  background-color: var(--bg-surface-white);
}

.contact-form-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
}

.bg-navy-deep {
  background-color: var(--navy-deep, #0a192f) !important;
}

.channel-icon-box {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.hover-cyan-border {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-cyan-border:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-vibrant) !important;
  box-shadow: 0 15px 30px -10px rgba(10, 25, 47, 0.12) !important;
}


/* ======================================================
   43. CONTACT OFFICES SECTION STYLING
   ====================================================== */

.contact-offices-section {
  background-color: var(--bg-body);
}

.office-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-container-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  background-color: #e5e3df;
}

.min-h-350 {
  min-height: 350px;
}

/* ======================================================
   44. CONTACT FAQ SECTION STYLING
   ====================================================== */

.contact-faq-section {
  background-color: var(--bg-surface-white);
}

.accordion-item {
  border-color: rgba(226, 232, 240, 0.9) !important;
}

.accordion-button:not(.collapsed) {
  color: var(--navy-deep);
  background-color: #f8fafc !important;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 229, 255, 0.5);
}

.accordion-button::after {
  background-size: 1rem;
}

