/**
 * Cube Rebar - Premium Landing Page Stylesheet
 * Modern, Professional, Construction-focused Design
 */

/* =====================================================
   CSS VARIABLES - CUBE REBAR LOGO THEME
   Colors extracted from company logo (Red & Steel Gray)
   ===================================================== */
:root {
  /* ========== PRIMARY COLORS (FROM LOGO) ========== */
  --color-primary: #2D2D2D;
  /* Charcoal - Dark backgrounds */
  --color-secondary: #C41E3A;
  /* Crimson Red - Main brand color */
  --color-accent: #6B6B6B;
  /* Steel Gray - Secondary accent */

  /* ========== RED SPECTRUM ========== */
  --color-red-dark: #8B0000;
  /* Dark Red - Shadows/depth */
  --color-red-light: #DC143C;
  /* Bright Red - Highlights */

  /* ========== GRAY SPECTRUM ========== */
  --color-steel-dark: #4A4A4A;
  /* Dark Steel Gray */
  --color-steel-light: #808080;
  /* Light Steel Gray */

  /* ========== SEMANTIC COLORS ========== */
  --color-success: #10b981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* ========== NEUTRAL COLORS ========== */
  --color-neutral-light: #f5f5f7;
  --color-neutral-dark: #4A4A4A;
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #4a4a4a;
  --color-white: #ffffff;

  /* ========== GRADIENTS (LOGO-BASED) ========== */
  --gradient-primary: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
  --gradient-secondary: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
  --gradient-accent: linear-gradient(135deg, #6B6B6B 0%, #4A4A4A 100%);
  --gradient-red-light: linear-gradient(135deg, #DC143C 0%, #C41E3A 100%);
  --gradient-steel: linear-gradient(135deg, #808080 0%, #6B6B6B 100%);

  /* ========== SHADOWS ========== */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(196, 30, 58, 0.4);
  --shadow-glow-intense: 0 0 50px rgba(196, 30, 58, 0.6);

  /* ========== BORDER RADIUS ========== */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* ========== TRANSITIONS ========== */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* ========== TYPOGRAPHY ========== */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* =====================================================
   BASE STYLES
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
}


/* Wave Dividers */
.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 2;
  pointer-events: none;
}

.wave-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Wave at bottom of Hero V3 - Transitions to white (About section) */
.wave-divider-hero-bottom {
  bottom: 0;
}

.wave-divider-hero-bottom svg path {
  fill: #ffffff;
}

/* Top Wave for sections with white background above */
.wave-divider-section-top {
  top: 0;
}

/* Bottom Wave for sections transitioning to white background */
.wave-divider-section-bottom {
  bottom: 0;
}

/* Dark Mode Wave Dividers */
.wave-divider-dark-top {
  top: 0;
}

.wave-divider-dark-bottom {
  bottom: 0;
}

/* Responsive - Hide floating shapes on mobile for performance */
@media (max-width: 768px) {
  .floating-shapes .shape {
    display: none;
  }

  .wave-divider {
    height: 60px;
  }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.gradient-text {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 700px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-secondary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: var(--color-white);
}

.btn-secondary {
  /*background: rgba(255, 255, 255, 0.1);*/
  background: rgba(45, 45, 45, 0.95);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.btn-outline:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: var(--transition-normal);
  /*background: #FFF;*/
  /*background: rgba(45, 45, 45, 0.95);*/
  background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
}

.header.scrolled {
  /*background: rgba(45, 45, 45, 0.95);*/
  background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}

.logo-tagline {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

.nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: block;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFF;
  transition: var(--transition-fast);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover {
  background: var(--color-white);
  color: var(--color-secondary);
}

/* Active State for Nav Links */
.nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.nav-link.active:hover {
  background: var(--color-white);
  color: var(--color-secondary);
}

/* Home Icon Link */
.nav-home {
  padding: 0.5rem 0.75rem;
}

.nav-home svg {
  width: 20px;
  height: 20px;
}

.nav-cta {
  background: #FFF;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  color: var(--color-secondary) !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--color-white);
  color: var(--color-secondary) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-cta.active {
  background: var(--color-white);
  color: var(--color-secondary) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-normal);
}

/* Mobile Menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 1001;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--color-primary);
  transform: translateX(100%);
  transition: var(--transition-normal);
  z-index: 1002;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-white);
  cursor: pointer;
}

.mobile-nav-menu {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  background: var(--color-white);
  color: var(--color-secondary);
}

.mobile-nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border-left: 3px solid var(--color-secondary);
}

.mobile-nav-link.active:hover {
  background: var(--color-white);
  color: var(--color-secondary);
}

.mobile-nav-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mobile-nav-cta {
  background: var(--gradient-secondary);
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  justify-content: center;
  margin-top: 1rem;
  color: var(--color-white) !important;
}

.mobile-nav-cta:hover {
  background: var(--color-white);
  color: var(--color-secondary) !important;
}

.mobile-menu-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /*background: var(--gradient-primary);*/
  z-index: -1;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(107, 107, 107, 0.1) 0%, transparent 50%);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: bottom;
  /*opacity: 0.8;*/
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(45, 45, 45, 0.7) 100%);*/
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.7) 100%)
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  color: var(--color-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  /*  background: rgba(255, 255, 255, 0.1);*/
  background: rgba(45, 45, 45, 0.95);
  border-radius: var(--radius-full);
  /*font-size: 0.875rem;*/
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #000;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 2.5rem;
  max-width: 100%;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: none;
  letter-spacing: 0.02em;
}

/* Icon circle with SVG arrow */
.hero-subtitle .subtitle-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
  animation: iconPulse 2s ease-in-out infinite;
  color: #fff;
}

.hero-subtitle .subtitle-icon svg {
  width: 16px;
  height: 16px;
}

/* Text styling */
.hero-subtitle .subtitle-text {
  position: relative;
  display: inline-block;
}

/* Animated gradient underline under text only */
.hero-subtitle .subtitle-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #C41E3A, #DC143C, #FF6B6B, #C41E3A);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: gradientSlide 3s ease-in-out infinite;
}

/* Sliding gradient animation */
@keyframes gradientSlide {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Icon pulse animation */
@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.6);
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  display: none;
  position: relative;
}

@media (min-width: 992px) {
  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.hero-main-image {
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image-wrapper:hover .hero-main-image {
  transform: translateY(-5px);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 40px rgba(196, 30, 58, 0.2);
}

.hero-blueprint-grid {
  position: absolute;
  inset: -15px;
  border: 2px solid rgba(196, 30, 58, 0.2);
  border-radius: calc(var(--radius-xl) + 10px);
  background: transparent;
  z-index: 1;
}

.hero-blueprint-grid::before {
  content: '';
  position: absolute;
  inset: 5px;
  /*border: 1px dashed rgba(196, 30, 58, 0.15);*/
  border-radius: calc(var(--radius-xl) + 5px);
}

.hero-floating-elements {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  z-index: 3;
}

.floating-element {
  position: absolute;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 55, 72, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-element svg {
  width: 28px;
  height: 28px;
}

.fe-1 {
  top: 15%;
  right: -30px;
  animation-delay: 0s;
}

.fe-2 {
  bottom: 25%;
  right: -40px;
  animation-delay: 2s;
}

.fe-3 {
  bottom: 10%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  color: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* =====================================================
   TRUST INDICATORS - ULTRA-MODERN PREMIUM DESIGN
   ===================================================== */
.trust-indicators {
  position: relative;
  padding: 10px 0 100px 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
}

/* Animated Background Elements */
.trust-indicators::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.trust-indicators::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Section Header */
.trust-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(196, 30, 58, 0.05));
  border: 1px solid rgba(196, 30, 58, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #C41E3A;
  margin-bottom: 20px;
}

.trust-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.trust-title-gradient {
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Individual Trust Card - Glassmorphism */
.trust-card {
  position: relative;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

/* Animated Gradient Border */
.trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.5), transparent 50%, rgba(196, 30, 58, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  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.4s ease;
}

.trust-card:hover::before {
  opacity: 1;
}

/* Glow Effect on Hover */
.trust-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.trust-card:hover::after {
  opacity: 1;
}

.trust-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 30, 58, 0.3);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(196, 30, 58, 0.2),
    0 0 40px rgba(196, 30, 58, 0.1);
}

/* Icon Container with Animated Ring */
.trust-icon-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
}

.trust-icon {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(196, 30, 58, 0.05));
  border-radius: 50%;
  border: 2px solid rgba(196, 30, 58, 0.3);
  color: #C41E3A;
  z-index: 2;
  transition: all 0.4s ease;
}

.trust-icon svg {
  width: 36px;
  height: 36px;
  stroke: #C41E3A;
  transition: all 0.4s ease;
}

/* Animated Ring */
.trust-icon-ring {
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(196, 30, 58, 0.3);
  border-radius: 50%;
  animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.trust-card:hover .trust-icon {
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.trust-card:hover .trust-icon svg {
  stroke: #ffffff;
  transform: scale(1.15);
}

.trust-card:hover .trust-icon-ring {
  border-color: rgba(196, 30, 58, 0.5);
  animation-duration: 8s;
}

/* Large Stat Value */
.trust-value {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

.trust-card:hover .trust-value {
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Stat Label */
.trust-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.trust-card:hover .trust-label {
  color: rgba(255, 255, 255, 0.9);
}

/* Decorative Number Background */
.trust-number-bg {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
}

.trust-card:hover .trust-number-bg {
  color: rgba(196, 30, 58, 0.08);
}

/* Connecting Lines Between Cards */
.trust-connector {
  display: none;
}

@media (min-width: 1024px) {
  .trust-connector {
    display: block;
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(196, 30, 58, 0.3), rgba(196, 30, 58, 0.1));
    z-index: 1;
  }

  .trust-connector-1 {
    left: calc(33.33% - 30px);
  }

  .trust-connector-2 {
    left: calc(66.66% - 30px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .trust-indicators {
    padding: 60px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-card:nth-child(3) {
    max-width: 100%;
  }

  .trust-value {
    font-size: 2.5rem;
  }

  .trust-icon-wrap {
    width: 70px;
    height: 70px;
  }

  .trust-icon {
    width: 70px;
    height: 70px;
  }

  .trust-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
  padding: 6rem 0;
  background: var(--color-neutral-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.service-image {
  position: relative;
  height: 180px;
  overflow: hidden;
  margin: -2rem -2rem 1.5rem -2rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 45, 45, 0.8) 0%, rgba(45, 45, 45, 0.2) 100%);
  transition: var(--transition-normal);
}

.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(196, 30, 58, 0.7) 0%, rgba(45, 45, 45, 0.3) 100%);
}

.service-content {
  position: relative;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
  border-radius: var(--radius-md);
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.service-features svg {
  color: var(--color-success);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.service-link:hover {
  gap: 0.75rem;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-choose-section {
  padding: 6rem 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-features {
  margin-top: 2rem;
}

.why-feature {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-neutral-light);
}

.why-feature:last-child {
  border-bottom: none;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
  border-radius: var(--radius-md);
  color: var(--color-secondary);
  flex-shrink: 0;
}

.why-feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.why-feature-content p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

.why-choose-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  position: relative;
  padding: 3rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
}

.visual-stat {
  text-align: center;
}

.stat-ring {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 1rem;
}

.stat-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  stroke: rgba(255, 255, 255, 0.1);
}

.ring-fill {
  stroke: var(--color-secondary);
  stroke-linecap: round;
}

.stat-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0;
}

/* =====================================================
   STANDARDS SECTION
   ===================================================== */
.standards-section {
  padding: 6rem 0;
  background: var(--color-neutral-light);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.standards-block {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.block-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.badge-item {
  position: relative;
  padding: 1.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.badge-item:hover {
  transform: scale(1.05);
}

.badge-icon {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}

.badge-logo {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-logo img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.badge-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.badge-item:hover .badge-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--color-neutral-light);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-normal);
}

.tech-item:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.tech-item:hover .tech-logo img {
  filter: brightness(0) invert(1);
}

.tech-logo {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition-normal);
}

.tech-name {
  white-space: nowrap;
}

/* =====================================================
   METRICS SECTION
   ===================================================== */
.metrics-section {
  padding: 6rem 0;
  background: var(--gradient-primary);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.metric-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.metric-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  color: var(--color-white);
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.metric-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

/* =====================================================
   PROJECTS SECTION
   ===================================================== */
.projects-section {
  padding: 6rem 0;
}

.projects-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.project-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  min-width: 300px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.project-image {
  position: relative;
  height: 200px;
  background: var(--gradient-primary);
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.project-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-content {
  padding: 1.5rem;
}

.project-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.project-location,
.project-weight {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-neutral-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-normal);
}

.carousel-btn:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background: var(--color-neutral-light);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--color-secondary);
  width: 30px;
  border-radius: 5px;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
  padding: 6rem 0;
  background: var(--color-neutral-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-intro {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.about-quote {
  padding: 2rem;
  background: var(--color-white);
  border-left: 4px solid var(--color-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2rem;
}

.about-quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.8;
}

.about-principles {
  display: grid;
  gap: 1.5rem;
}

.principle {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.principle-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-secondary);
  border-radius: var(--radius-md);
  color: var(--color-white);
  flex-shrink: 0;
}

.principle h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.principle p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-main-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, transparent 50%);
}

.about-timeline {
  position: relative;
  padding-left: 2rem;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-secondary);
}

.timeline-item {
  position: relative;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-secondary);
  border-radius: 50%;
  border: 3px solid var(--color-white);
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
}

/* =====================================================
   TEAM SECTION
   ===================================================== */
.team-section {
  padding: 6rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  /*background: var(--color-white);*/
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--member-color, var(--color-secondary));
}

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--member-color, var(--color-secondary)), rgba(196, 30, 58, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  color: var(--color-white);
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.team-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-neutral-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.team-email:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */
.process-section {
  padding: 6rem 0;
  background: var(--color-neutral-light);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.process-step {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-secondary);
  border-radius: 50%;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
}

/* =====================================================
   INDUSTRIES SECTION
   ===================================================== */
.industries-section {
  padding: 6rem 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.industry-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-neutral-light);
  transition: var(--transition-normal);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.industry-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
  border-radius: var(--radius-md);
  color: var(--color-secondary);
}

.industry-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.industry-desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin: 0;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section {
  padding: 6rem 0;
  background: var(--color-neutral-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.contact-departments h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.department {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dept-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  color: var(--color-secondary);
}

.dept-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.dept-info a {
  font-size: 0.9rem;
  color: var(--color-text-primary);
}

.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.required {
  color: var(--color-secondary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-neutral-light);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  background: var(--color-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  position: relative;
}

.btn-loading {
  display: none;
}

.btn-submit.loading .btn-text {
  visibility: hidden;
}

.btn-submit.loading .btn-arrow {
  display: none;
}

.btn-submit.loading .btn-loading {
  display: block;
}

.spinner {
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
}

.spinner circle {
  stroke: var(--color-white);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  border: 1px solid var(--color-success);
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid #ef4444;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-primary);
}

.cta-content {
  text-align: center;
  color: var(--color-white);
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
  color: var(--color-white);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--color-secondary);
  margin-top: 2px;
}

.contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.contact-details a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-secondary);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

/* =====================================================
   RESPONSIVE ADJUSTMENTS
   ===================================================== */
@media (max-width: 575px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    flex: 0 0 100%;
    min-width: unset;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================================================
   SERVICES SHOWCASE - CREATIVE DESIGN
   ===================================================== */
.services-showcase {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0f1a 0%, #111827 50%, #0a0f1a 100%);
  overflow: hidden;
}

.showcase-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.showcase-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.4) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 107, 107, 0.3) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation-delay: 7s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(20px, 30px) scale(1.02);
  }
}

.showcase-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Showcase Header */
.showcase-header {
  text-align: center;
  margin-bottom: 80px;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(196, 30, 58, 0.05));
  border: 1px solid rgba(196, 30, 58, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #C41E3A;
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 16px;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.showcase-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-shimmer {
  background: linear-gradient(90deg,
      #C41E3A 0%,
      #DC143C 25%,
      #C41E3A 50%,
      #DC143C 75%,
      #C41E3A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.showcase-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

/* Bento Grid Layout */
.services-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 280px);
  gap: 24px;
  margin-bottom: 80px;
}

.bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 50%, rgba(196, 30, 58, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Bento Grid Positions */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-medium {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-featured {
  grid-column: span 1;
  grid-row: span 1;
}

/* Bento Background */
.bento-bg {
  position: absolute;
  inset: 0;
}

.bento-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-card:hover .bento-bg img {
  transform: scale(1.1);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 15, 26, 0.4) 0%,
      rgba(10, 15, 26, 0.6) 40%,
      rgba(10, 15, 26, 0.95) 100%);
  transition: background 0.5s ease;
}

.bento-card:hover .bento-overlay {
  background: linear-gradient(180deg,
      rgba(196, 30, 58, 0.1) 0%,
      rgba(10, 15, 26, 0.7) 40%,
      rgba(10, 15, 26, 0.98) 100%);
}

/* Bento Content */
.bento-content {
  position: relative;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.bento-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-icon-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.bento-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(196, 30, 58, 0.05));
  border: 1px solid rgba(196, 30, 58, 0.3);
  border-radius: 16px;
  color: #C41E3A;
  transition: all 0.4s ease;
}

.bento-icon svg {
  width: 28px;
  height: 28px;
}

.bento-icon-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bento-card:hover .bento-icon {
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(196, 30, 58, 0.4);
}

.bento-card:hover .bento-icon-glow {
  opacity: 1;
}

/* Bento Info */
.bento-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.bento-card:hover .bento-title {
  color: #C41E3A;
}

.bento-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bento-large .bento-desc {
  -webkit-line-clamp: 3;
}

.bento-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.bento-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-feature svg {
  color: #C41E3A;
}

/* Bento CTA */
.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}

.bento-card:hover .bento-cta {
  opacity: 1;
  transform: translateY(0);
}

.bento-cta:hover {
  background: #C41E3A;
  border-color: #C41E3A;
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.bento-cta svg {
  transition: transform 0.3s ease;
}

.bento-cta:hover svg {
  transform: translate(3px, -3px);
}

/* Bento Shine Effect */
.bento-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      transparent 40%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 60%);
  transform: translateX(-100%);
  transition: none;
  pointer-events: none;
}

.bento-card:hover .bento-shine {
  transform: translateX(100%);
  transition: transform 0.8s ease;
}

/* Bento Card Hover */
.bento-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(196, 30, 58, 0.2);
}

/* Showcase CTA */
.showcase-cta {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.02));
  border: 1px solid rgba(196, 30, 58, 0.15);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.showcase-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #10b981;
  margin-bottom: 16px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.showcase-cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.btn-showcase {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.btn-showcase:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
}

.btn-showcase svg {
  transition: transform 0.3s ease;
}

.btn-showcase:hover svg {
  transform: translateX(5px);
}

/* Responsive Bento Grid */
@media (max-width: 1200px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-large,
  .bento-tall,
  .bento-wide,
  .bento-medium,
  .bento-featured {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 380px;
  }

  .bento-large {
    grid-column: span 2;
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .services-showcase {
    padding: 80px 0;
  }

  .showcase-header {
    margin-bottom: 48px;
  }

  .services-bento {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }

  .bento-large,
  .bento-tall,
  .bento-wide,
  .bento-medium,
  .bento-featured {
    grid-column: span 1;
    min-height: 360px;
  }

  .bento-content {
    padding: 24px;
  }

  .bento-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .showcase-cta {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .showcase-title {
    font-size: 2rem;
  }

  .bento-title {
    font-size: 1.25rem;
  }

  .bento-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .bento-icon {
    width: 48px;
    height: 48px;
  }

  .bento-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* =====================================================
   SERVICES SLIDER - UNIFORM CARD DESIGN
   ===================================================== */
.services-slider-wrapper {
  position: relative;
  padding: 0 60px;
}

.services-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.services-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-slide {
  flex: 0 0 calc(50% - 12px);
  min-width: calc(50% - 12px);
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.service-card {
  position: relative;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background: #1e293b;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.5), transparent, rgba(196, 30, 58, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  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.4s ease;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Card Background Image */
.service-card-bg {
  position: absolute;
  inset: 0;
}

.service-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-bg img {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.85) 100%);
  transition: all 0.4s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg,
      rgba(196, 30, 58, 0.2) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.9) 100%);
}

/* Card Content */
.service-card-content {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.service-number {
  position: absolute;
  top: 24px;
  left: 32px;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  font-family: var(--font-heading);
}

.service-icon-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #C41E3A, #8B0000);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
  transition: all 0.4s ease;
  z-index: 10;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
}

.service-icon {
  width: 26px;
  height: 26px;
  color: #ffffff;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

/* Service Info */
.service-info {
  margin-bottom: 16px;
  margin-top: auto;
}

.service-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.service-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.service-feature svg {
  color: #C41E3A;
}

/* Service CTA */
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s ease;
  width: fit-content;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 30, 58, 0.4);
}

.service-cta svg {
  transition: transform 0.3s ease;
}

.service-cta:hover svg {
  transform: translate(3px, -3px);
}

/* Slider Navigation */
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.slider-btn:hover {
  background: #C41E3A;
  border-color: #C41E3A;
  color: #ffffff;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #C41E3A;
  transform: scale(1.2);
}

.slider-dot:hover {
  background: rgba(196, 30, 58, 0.6);
}

/* Slider Responsive */
@media (max-width: 1024px) {
  .service-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .services-slider-wrapper {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .service-card {
    height: 420px;
  }

  .service-card-content {
    padding: 24px;
  }

  .service-number {
    font-size: 4rem;
    top: 16px;
    left: 24px;
  }

  .service-icon-wrapper {
    top: 16px;
    right: 24px;
    width: 48px;
    height: 48px;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
  }
}


/* =====================================================
   PROCESS MODERN SECTION - LIGHT DESIGN
   ===================================================== */
.process-modern {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg,
      #f8f9fc 0%,
      #ffffff 20%,
      #f0f4f8 50%,
      #ffffff 80%,
      #f8f9fc 100%);
  overflow: hidden;
}

/* Animated Background Icons */
.process-bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-icon {
  position: absolute;
  opacity: 0.04;
  animation: iconFloat 25s ease-in-out infinite;
}

.bg-icon svg {
  width: 180px;
  height: 180px;
  stroke: #1a2332;
  filter: drop-shadow(0 0 20px rgba(196, 30, 58, 0.1));
}

/* Different positions and animations for each icon */
.icon-crane {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.icon-hardhat {
  top: 60%;
  right: 8%;
  animation-delay: 6s;
}

.icon-blueprint {
  bottom: 15%;
  left: 10%;
  animation-delay: 12s;
}

.icon-building {
  top: 30%;
  right: 15%;
  animation-delay: 18s;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate(20px, -30px) rotate(5deg) scale(1.05);
  }

  50% {
    transform: translate(-15px, 25px) rotate(-3deg) scale(0.95);
  }

  75% {
    transform: translate(30px, 15px) rotate(7deg) scale(1.02);
  }
}

/* Section Header */
.process-modern-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
  border: 2px solid rgba(196, 30, 58, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #C41E3A;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.1);
}

.badge-icon {
  font-size: 18px;
  animation: pulse 2s ease-in-out infinite;
}

.process-modern-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1a2332;
  line-height: 1.2;
  margin-bottom: 20px;
}

.title-highlight {
  background: linear-gradient(135deg, #C41E3A 0%, #DC143C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C41E3A, transparent);
  opacity: 0.5;
}

.process-modern-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Process Flow */
.process-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 24px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.flow-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: cardFadeIn 0.6s ease-out forwards;
  animation-delay: var(--delay);
  opacity: 0;
  transform: translateY(20px);
}

@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flow-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(196, 30, 58, 0.15),
    0 0 0 2px rgba(196, 30, 58, 0.1);
}



.badge-num {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

/* Card Icon */
.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  border: 2px solid #bae6fd;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke: #0284c7;
  transition: all 0.4s ease;
}

.flow-card:hover .card-icon {
  background: linear-gradient(135deg, #C41E3A 0%, #DC143C 100%);
  border-color: #C41E3A;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.2);
}

.flow-card:hover .card-icon svg {
  stroke: #ffffff;
}

/* Card Content */
.card-content {
  position: relative;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.flow-card:hover .card-title {
  color: #C41E3A;
}

.card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Flow Arrows */
.flow-arrow {
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
  color: #cbd5e1;
  z-index: 1;
  transition: all 0.3s ease;
}

.flow-arrow svg {
  width: 24px;
  height: 24px;
}

.flow-card:hover+.flow-card .flow-arrow {
  color: #C41E3A;
  transform: translateY(-50%) translateX(5px);
}

/* Hide arrows for cards at the end of rows */
.flow-card:nth-child(3n) .flow-arrow,
.flow-card:last-child .flow-arrow {
  display: none;
}

/* Process CTA */
.process-cta {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.process-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C41E3A, #DC143C, #C41E3A);
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.cta-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.cta-content p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.25);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(196, 30, 58, 0.35);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .process-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .flow-card:nth-child(2n) .flow-arrow {
    display: none;
  }

  .flow-card:nth-child(3n) .flow-arrow {
    display: block;
  }

  .flow-card:nth-child(2n) .flow-arrow {
    display: none;
  }

  .bg-icon svg {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .process-modern {
    padding: 60px 0;
  }

  .process-modern-header {
    margin-bottom: 50px;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .flow-arrow {
    display: none !important;
  }

  .flow-card {
    padding: 28px 20px;
  }

  .card-badge {
    /*width: 42px;*/
    height: 42px;
    top: -10px;
    right: 16px;
  }

  .badge-num {
    font-size: 16px;
  }

  .card-icon {
    width: 52px;
    height: 52px;
  }

  .card-icon svg {
    width: 28px;
    height: 28px;
  }

  .process-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .bg-icon svg {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .process-modern-title {
    font-size: 2rem;
  }

  .header-badge {
    font-size: 13px;
    padding: 8px 16px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-desc {
    font-size: 0.9rem;
  }

  .cta-content h3 {
    font-size: 1.25rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }
}

/* =====================================================
   INDUSTRIES MODERN SECTION - ULTRA-CREATIVE DESIGN
   ===================================================== */
.industries-modern {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  overflow: hidden;
}

.industries-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(196, 30, 58, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Header */
.industries-modern-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.header-spark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(196, 30, 58, 0.03));
  border: 2px solid rgba(196, 30, 58, 0.15);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #C41E3A;
  margin-bottom: 24px;
  box-shadow:
    0 4px 20px rgba(196, 30, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.header-spark svg {
  color: #C41E3A;
  animation: sparkRotate 4s linear infinite;
}

@keyframes sparkRotate {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }
}

.industries-modern-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 24px;
}

.title-gradient {
  background: linear-gradient(135deg, #C41E3A 0%, #DC143C 50%, #8B0000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.title-gradient::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #C41E3A, #DC143C, transparent);
  border-radius: 2px;
}

.industries-modern-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Industries Showcase Grid */
.industries-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

/* Hexagonal Card Design */
.industry-hexcard {
  position: relative;
  height: 380px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  animation: hexcardReveal 0.8s ease-out backwards;
  animation-delay: calc(var(--index) * 0.1s);
}

@keyframes hexcardReveal {
  from {
    opacity: 0;
    transform: translateY(40px) rotateX(10deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* Isometric 3D Effect on Hover */
.industry-hexcard:hover {
  transform: translateY(-12px) perspective(1000px) rotateX(2deg) rotateY(-2deg);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.15),
    0 0 0 2px rgba(196, 30, 58, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Background Image */
.hexcard-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.industry-hexcard:hover .hexcard-bg {
  transform: scale(1.15);
}

/* Gradient Overlay */
.hexcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.75) 0%,
      rgba(30, 41, 59, 0.65) 40%,
      rgba(196, 30, 58, 0.3) 100%);
  z-index: 2;
  transition: background 0.5s ease;
}

.industry-hexcard:hover .hexcard-overlay {
  background: linear-gradient(135deg,
      rgba(196, 30, 58, 0.85) 0%,
      rgba(220, 20, 60, 0.75) 50%,
      rgba(139, 0, 0, 0.6) 100%);
}

/* Card without background image */
.industry-hexcard:not(:has(.hexcard-bg)) {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 2px solid #e2e8f0;
}

.industry-hexcard:not(:has(.hexcard-bg)) .hexcard-overlay {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(248, 250, 252, 0.8) 100%);
}

.industry-hexcard:not(:has(.hexcard-bg)):hover .hexcard-overlay {
  background: linear-gradient(135deg,
      rgba(196, 30, 58, 0.08) 0%,
      rgba(196, 30, 58, 0.05) 100%);
}

/* Card Content */
.hexcard-content {
  position: relative;
  height: 100%;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  z-index: 3;
}

/* Icon Wrapper */
.hexcard-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 28px;
}

.hexcard-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hexcard-icon svg {
  width: 42px;
  height: 42px;
  stroke: #C41E3A;
  transition: all 0.4s ease;
}

.industry-hexcard:hover .hexcard-icon {
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(-5deg);
  box-shadow:
    0 15px 40px rgba(196, 30, 58, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.industry-hexcard:hover .hexcard-icon svg {
  stroke: #ffffff;
  transform: scale(1.1);
}

/* Icon Shine Effect */
.icon-shine {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.4) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  filter: blur(15px);
}

.industry-hexcard:hover .icon-shine {
  opacity: 1;
}

/* Card Info */
.hexcard-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hexcard-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: all 0.3s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.industry-hexcard:not(:has(.hexcard-bg)) .hexcard-title {
  color: #0f172a;
  text-shadow: none;
}

.industry-hexcard:hover .hexcard-title {
  color: #ffffff;
  transform: translateX(5px);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hexcard-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s ease;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.industry-hexcard:not(:has(.hexcard-bg)) .hexcard-desc {
  color: #64748b;
  text-shadow: none;
}

.industry-hexcard:hover .hexcard-desc {
  color: rgba(255, 255, 255, 1);
  transform: translateX(5px);
}

/* Hover Arrow */
.hexcard-arrow {
  position: absolute;
  bottom: 32px;
  right: 30px;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.industry-hexcard:hover .hexcard-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #ffffff;
}

.hexcard-arrow svg {
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* Decorative Elements */
.hexcard-deco {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  transition: all 0.6s ease;
}

.hexcard-deco-1 {
  width: 150px;
  height: 150px;
  top: -50px;
  right: -30px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
  filter: blur(30px);
}

.hexcard-deco-2 {
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: -20px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.2) 0%, transparent 70%);
  filter: blur(25px);
}

.industry-hexcard:hover .hexcard-deco-1 {
  transform: translate(-20px, 20px) scale(1.2);
  opacity: 0.8;
}

.industry-hexcard:hover .hexcard-deco-2 {
  transform: translate(20px, -20px) scale(1.3);
  opacity: 0.9;
}

/* Stats Banner */
.industries-stats {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  position: relative;
  overflow: hidden;
}

.industries-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C41E3A, #DC143C, #C41E3A);
  background-size: 200% 100%;
  animation: statGradient 3s linear infinite;
}

@keyframes statGradient {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  stroke: #C41E3A;
}

.stat-item:hover .stat-icon {
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.stat-item:hover .stat-icon svg {
  stroke: #ffffff;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, #e2e8f0, transparent);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .industries-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .industry-hexcard {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .industries-modern {
    padding: 80px 0;
  }

  .industries-modern-header {
    margin-bottom: 60px;
  }

  .industries-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }

  .industry-hexcard {
    height: 340px;
  }

  .hexcard-content {
    padding: 30px 24px;
  }

  .hexcard-icon-wrap {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
  }

  .hexcard-icon {
    width: 70px;
    height: 70px;
  }

  .hexcard-icon svg {
    width: 36px;
    height: 36px;
  }

  .hexcard-title {
    font-size: 1.5rem;
  }

  .hexcard-desc {
    font-size: 0.95rem;
  }

  .industries-stats {
    flex-direction: column;
    padding: 32px 24px;
  }

  .stat-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  }

  .stat-item {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .industries-modern-title {
    font-size: 2rem;
  }

  .header-spark {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hexcard-title {
    font-size: 1.35rem;
  }

  .hexcard-desc {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .hexcard-arrow {
    display: none;
  }
}

/* =====================================================
   WHY CHOOSE MODERN SECTION - ULTRA-CREATIVE DESIGN
   ===================================================== */
.why-choose-modern {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 30%, #f8f9fb 70%, #ffffff 100%);
  overflow: hidden;
}

/* Animated Civil Background Icons */
.civil-bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.civil-icon {
  position: absolute;
  opacity: 0.03;
  will-change: transform;
}

.civil-icon svg {
  width: 200px;
  height: 200px;
  stroke: #1e293b;
  filter: drop-shadow(0 0 30px rgba(196, 30, 58, 0.1));
}

.civil-blueprint {
  top: 8%;
  left: 3%;
  animation: civilFloat1 35s ease-in-out infinite;
}

.civil-crane {
  top: 65%;
  right: 5%;
  animation: civilFloat2 40s ease-in-out infinite;
}

.civil-ruler {
  bottom: 12%;
  left: 8%;
  animation: civilFloat3 38s ease-in-out infinite;
}

.civil-helmet {
  top: 35%;
  right: 10%;
  animation: civilFloat4 42s ease-in-out infinite;
}

@keyframes civilFloat1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate(30px, -40px) rotate(10deg) scale(1.08);
  }

  50% {
    transform: translate(-20px, 35px) rotate(-8deg) scale(0.92);
  }

  75% {
    transform: translate(40px, 20px) rotate(12deg) scale(1.05);
  }
}

@keyframes civilFloat2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  33% {
    transform: translate(-35px, 30px) rotate(-12deg) scale(1.1);
  }

  66% {
    transform: translate(25px, -25px) rotate(9deg) scale(0.95);
  }
}

@keyframes civilFloat3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  40% {
    transform: translate(40px, -30px) rotate(15deg);
  }

  80% {
    transform: translate(-30px, 40px) rotate(-10deg);
  }
}

@keyframes civilFloat4 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  30% {
    transform: translate(-25px, -35px) rotate(-14deg) scale(1.06);
  }

  70% {
    transform: translate(35px, 25px) rotate(11deg) scale(0.94);
  }
}

/* Section Header */
.why-modern-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.header-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
  border: 2px solid rgba(196, 30, 58, 0.2);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #C41E3A;
  margin-bottom: 24px;
  box-shadow:
    0 4px 20px rgba(196, 30, 58, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-trust-badge svg {
  color: #C41E3A;
  filter: drop-shadow(0 2px 4px rgba(196, 30, 58, 0.3));
}

.why-modern-title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 24px;
}

.title-glow {
  position: relative;
  display: inline-block;
  color: #0f172a;
  text-shadow:
    0 0 20px rgba(196, 30, 58, 0.3),
    0 0 40px rgba(196, 30, 58, 0.2);
}

.title-gradient-orange {
  background: linear-gradient(135deg, #C41E3A 0%, #DC143C 50%, #8B0000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.title-gradient-orange::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, #C41E3A, #DC143C, transparent);
  border-radius: 3px;
  opacity: 0.6;
}

.why-modern-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Modern Grid Layout */
.why-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* LEFT: Features List - ULTRA-MODERN CREATIVE DESIGN */
.why-features-modern {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 40px;
}

/* Vertical Timeline Line */
.why-features-modern::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(196, 30, 58, 0.3) 10%,
      rgba(196, 30, 58, 0.5) 50%,
      rgba(196, 30, 58, 0.3) 90%,
      transparent 100%);
  border-radius: 2px;
}

/* Glowing Orb Animation on Line */
.why-features-modern::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 40px;
  width: 15px;
  height: 15px;
  background: radial-gradient(circle, #C41E3A 0%, transparent 70%);
  border-radius: 50%;
  animation: orbTravel 4s ease-in-out infinite;
  filter: blur(3px);
}

@keyframes orbTravel {

  0%,
  100% {
    top: 40px;
    opacity: 0.8;
  }

  50% {
    top: calc(100% - 55px);
    opacity: 1;
  }
}

/* Feature Card - Premium Glassmorphism */
.feature-modern {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(196, 30, 58, 0.1);
  border-radius: 24px;
  padding: 32px 28px 32px 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  animation: featureSlideIn 0.6s ease-out backwards;
  animation-delay: calc(var(--feature-index) * 0.15s);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

/* Gradient Accent Line on Left */
.feature-modern::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #C41E3A, #DC143C);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Timeline Dot */
.feature-modern::after {
  content: '';
  position: absolute;
  left: -52px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 3px solid #C41E3A;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

@keyframes featureSlideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-modern:hover {
  transform: translateX(12px) translateY(-4px);
  border-color: rgba(196, 30, 58, 0.25);
  box-shadow:
    0 20px 50px rgba(196, 30, 58, 0.12),
    0 0 0 1px rgba(196, 30, 58, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.feature-modern:hover::before {
  opacity: 1;
}

.feature-modern:hover::after {
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  border-color: #DC143C;
  transform: translateY(-50%) scale(1.3);
  box-shadow:
    0 0 0 6px rgba(196, 30, 58, 0.15),
    0 0 20px rgba(196, 30, 58, 0.4);
}

/* Icon Container - Hexagonal Style */
.feature-icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.feature-icon-modern {
  position: relative;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(220, 20, 60, 0.04));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 2px solid rgba(196, 30, 58, 0.15);
  overflow: hidden;
}

/* Animated Border Effect */
.feature-icon-modern::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, transparent, #C41E3A, transparent, #DC143C, transparent);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: iconBorderRotate 3s linear infinite;
  z-index: -1;
}

@keyframes iconBorderRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.feature-modern:hover .feature-icon-modern::before {
  opacity: 1;
}

.feature-icon-modern svg {
  width: 30px;
  height: 30px;
  stroke: #C41E3A;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-modern:hover .feature-icon-modern {
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  border-color: transparent;
  transform: scale(1.1) rotate(-8deg);
  box-shadow:
    0 12px 30px rgba(196, 30, 58, 0.35),
    inset 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.feature-modern:hover .feature-icon-modern svg {
  stroke: #ffffff;
  transform: scale(1.15);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Glow Effect Behind Icon */
.icon-glow-effect {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  filter: blur(15px);
}

.feature-modern:hover .icon-glow-effect {
  opacity: 1;
}

/* Content Styling */
.feature-content-modern {
  flex: 1;
}

.feature-content-modern h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

/* Underline Effect on Hover */
.feature-content-modern h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C41E3A, #DC143C);
  border-radius: 1px;
  transition: width 0.4s ease;
}

.feature-modern:hover .feature-content-modern h3 {
  color: #C41E3A;
}

.feature-modern:hover .feature-content-modern h3::after {
  width: 100%;
}

.feature-content-modern p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

.feature-modern:hover .feature-content-modern p {
  color: #475569;
}

/* Feature Number - Premium Badge */
.feature-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 13px;
  font-weight: 700;
  color: rgba(196, 30, 58, 0.3);
  padding: 6px 12px;
  background: rgba(196, 30, 58, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(196, 30, 58, 0.1);
  transition: all 0.4s ease;
}

.feature-modern:hover .feature-number {
  color: #ffffff;
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

/* RIGHT: Visual Cards Grid */
.why-visuals-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
}

/* Stats Card (Circular Progress) */
.visual-stats-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.visual-stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C41E3A, #DC143C);
  animation: statsGradientMove 3s linear infinite;
  background-size: 200% 100%;
}

@keyframes statsGradientMove {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.visual-stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(196, 30, 58, 0.15);
}

.stats-card-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
}

.circular-progress {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}

.circular-progress svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-bg {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 8;
}

.progress-fill {
  fill: none;
  stroke: url(#progressGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  transition: stroke-dashoffset 2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Add gradient definition inline or via SVG */
.progress-fill {
  stroke: #C41E3A;
}

.progress-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.progress-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.progress-percent {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: -4px;
}

.stats-label {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

/* =====================================================
   WHY CHOOSE US - VISUAL CARDS (4 Image Cards Grid)
   ===================================================== */
.why-visuals-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto;
  gap: 20px;
  position: relative;
}

/* Image Cards - All 4 cards with same base styling */
.visual-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.visual-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(196, 30, 58, 0.2);
}

/* Background Image */
.image-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.visual-image-card:hover .image-card-bg {
  transform: scale(1.1);
}

/* Overlay */
.image-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
  transition: background 0.4s ease;
}

.visual-image-card:hover .image-card-overlay {
  background: linear-gradient(180deg, rgba(196, 30, 58, 0.4) 0%, rgba(196, 30, 58, 0.8) 100%);
}

/* Card Content */
.image-card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

/* Badge */
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.visual-image-card:hover .card-badge {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-5px);
}

.card-badge svg {
  flex-shrink: 0;
}

/* Grid Layout - Position each card */
.visual-image-card.card-1 {
  grid-column: 1;
  grid-row: 1;
}

.visual-image-card.card-2 {
  grid-column: 2;
  grid-row: 1;
}

.visual-image-card.card-3 {
  grid-column: 1;
  grid-row: 2;
}

.visual-image-card.card-4 {
  grid-column: 2;
  grid-row: 2;
}

/* Mini Stats Grid */
.mini-stats-grid {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.mini-stat-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mini-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(196, 30, 58, 0.15);
  border-color: rgba(196, 30, 58, 0.2);
}

.mini-stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

.mini-stat-card:hover .mini-stat-icon {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #8B0000 100%);
  color: white;
  transform: rotate(-5deg) scale(1.1);
}

.mini-stat-icon svg {
  width: 24px;
  height: 24px;
}

.mini-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin-bottom: 5px;
  line-height: 1;
}

.mini-stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
  .why-visuals-modern {
    gap: 15px;
  }

  .visual-image-card {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .why-visuals-modern {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .visual-image-card.card-1,
  .visual-image-card.card-2,
  .visual-image-card.card-3,
  .visual-image-card.card-4 {
    grid-column: 1;
    grid-row: auto;
  }

  .mini-stats-grid {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .visual-image-card {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .visual-image-card {
    height: 200px;
  }

  .card-badge {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .mini-stat-value {
    font-size: 1.75rem;
  }
}

/* Image Cards */
.visual-image-card {
  position: relative;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.visual-image-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.visual-image-card:hover .image-card-bg {
  transform: scale(1.15);
}

.image-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(196, 30, 58, 0.4));
  transition: background 0.5s ease;
}

.visual-image-card:hover .image-card-overlay {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.7), rgba(139, 0, 0, 0.5));
}

.image-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  pointer-events: auto;
  white-space: nowrap;
  z-index: 5;
}

.visual-image-card:hover .card-badge {
  background: #ffffff;
  color: #C41E3A;
  transform: translateY(3px);
}

.card-badge svg {
  stroke: currentColor;
}

/* Mini Stats Grid */
.mini-stats-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mini-stat-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.mini-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 30, 58, 0.3);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
}

.mini-stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.mini-stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: #C41E3A;
}

.mini-stat-card:hover .mini-stat-icon {
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  transform: scale(1.1);
}

.mini-stat-card:hover .mini-stat-icon svg {
  stroke: #ffffff;
}

.mini-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1;
}

.mini-stat-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .why-modern-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .civil-icon svg {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .why-choose-modern {
    padding: 80px 0;
  }

  .why-modern-header {
    margin-bottom: 60px;
  }

  .why-visuals-modern {
    grid-template-columns: 1fr;
  }

  .visual-image-card {
    height: 180px;
  }

  .mini-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .civil-icon svg {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .why-modern-title {
    font-size: 2.25rem;
  }

  .header-trust-badge {
    font-size: 14px;
    padding: 10px 20px;
  }

  .feature-modern {
    padding: 24px 20px;
  }

  .feature-icon-modern {
    width: 48px;
    height: 48px;
  }

  .feature-icon-modern svg {
    width: 24px;
    height: 24px;
  }

  .circular-progress {
    width: 120px;
    height: 120px;
  }

  .progress-number {
    font-size: 2rem;
  }
}

/* =====================================================
   STANDARDS & TECHNOLOGIES MODERN SECTION
   ===================================================== */
.standards-modern {
  position: relative;
  padding: 120px 0 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
  overflow: hidden;
}

.standards-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 300px;
  background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Header */
.standards-modern-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.header-certified-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 24px;
  box-shadow:
    0 4px 20px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-certified-badge svg {
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.standards-modern-title {
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 24px;
}

.title-tech-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.title-tech-gradient::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #3b82f6, #10b981, transparent);
  border-radius: 2px;
  opacity: 0.5;
}

.standards-modern-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Main Grid - FULL WIDTH STACKED LAYOUT */
.standards-tech-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

/* Compliance and Technologies sections - FULL WIDTH */
.compliance-section,
.technologies-section {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ============================================
   SECTION TITLE MODERN - PREMIUM REDESIGN
   ============================================ */
.section-title-modern {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  padding: 30px 40px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.95));
  border-radius: 24px;
  border: 2px solid rgba(196, 30, 58, 0.1);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

/* Decorative corner accents */
.section-title-modern::before,
.section-title-modern::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid transparent;
  transition: all 0.4s ease;
}

.section-title-modern::before {
  top: -3px;
  left: -3px;
  border-top-color: #C41E3A;
  border-left-color: #C41E3A;
  border-radius: 24px 0 0 0;
}

.section-title-modern::after {
  bottom: -3px;
  right: -3px;
  border-bottom-color: #C41E3A;
  border-right-color: #C41E3A;
  border-radius: 0 0 24px 0;
}

.section-title-modern:hover::before,
.section-title-modern:hover::after {
  width: 80px;
  height: 80px;
}

/* Title Row with Icon */
.section-title-modern .title-row-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.title-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #C41E3A, #8B0000);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  box-shadow:
    0 8px 20px rgba(196, 30, 58, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.section-title-modern:hover .title-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(196, 30, 58, 0.4);
}

.title-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
}

/* Tech Icon - Different Color */
.tech-icon {
  background: linear-gradient(135deg, #C41E3A, #DC143C);
}

.tech-icon svg {
  stroke: #ffffff;
}

/* Title Text */
.section-title-modern h3 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, #1e293b 0%, #C41E3A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Animated underline */
.section-title-modern h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C41E3A, #DC143C, transparent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.section-title-modern:hover h3::after {
  width: 100%;
}

/* Subtitle */
.section-title-modern p {
  width: 100%;
  flex-basis: 100%;
  font-size: 1.05rem;
  color: #64748b;
  margin: 0;
  max-width: 500px;
}

/* ============================================
   COMPLIANCE LOGOS - FULL WIDTH WITH FLIP
   ============================================ */
.compliance-logos-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  width: 100%;
}

.compliance-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 220px;
  height: 180px;
  perspective: 1000px;
  animation: complianceReveal 0.6s ease-out backwards;
  animation-delay: calc(var(--comp-index) * 0.1s);
}

@keyframes complianceReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.compliance-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.compliance-card:hover .compliance-card-inner {
  transform: rotateY(180deg);
}

/* Front and Back Faces */
.compliance-front,
.compliance-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.compliance-front {
  background: #ffffff;
  border: 2px solid #e2e8f0;
}

.compliance-back {
  background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
  transform: rotateY(180deg);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
}

.compliance-back-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.compliance-back-full {
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.9;
  text-align: center;
}

.compliance-logo {
  width: 100%;
  /*height: 100px;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.1);
  transition: all 0.4s ease;
}

.compliance-card:hover .compliance-logo img {
  filter: grayscale(0);
  transform: scale(1.1);
}

.compliance-text-logo {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #C41E3A;
  transition: all 0.4s ease;
}

.compliance-card:hover .compliance-text-logo {
  transform: scale(1.1);
  color: #DC143C;
}

.compliance-name {
  display: none;
}

.compliance-full-name,
.compliance-desc {
  display: none;
}

/* ============================================
   TECHNOLOGIES - PREMIUM CREATIVE REDESIGN
   ============================================ */
.technologies-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.tech-card-modern {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  animation: techSlideIn 0.6s ease-out backwards;
  animation-delay: calc(var(--tech-index) * 0.1s);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

/* Animated Gradient Border on Hover */
.tech-card-modern::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, #C41E3A, #DC143C, #10b981, #3b82f6, #C41E3A);
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  animation: techBorderRotate 4s linear infinite;
}

@keyframes techBorderRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Inner Background Mask */
.tech-card-modern::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 22px;
  z-index: -1;
}

.tech-card-modern:hover::before {
  opacity: 1;
}

.tech-card-modern:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 60px rgba(196, 30, 58, 0.12),
    0 0 0 1px rgba(196, 30, 58, 0.1);
}

@keyframes techSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-card-bg {
  display: none;
}

/* Tech Logo Container - Premium Circle Design */
.tech-logo-container {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #e2e8f0;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.05),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
}

/* Animated Ring Around Logo */
.tech-logo-container::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px dashed rgba(196, 30, 58, 0.2);
  border-radius: 24px;
  animation: techRingSpin 12s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

@keyframes techRingSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.tech-card-modern:hover .tech-logo-container::before {
  opacity: 1;
}

.tech-logo-container img {
  max-width: 55px;
  max-height: 55px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.tech-card-modern:hover .tech-logo-container {
  transform: scale(1.1) rotate(-5deg);
  border-color: rgba(196, 30, 58, 0.3);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.15);
}

.tech-card-modern:hover .tech-logo-container img {
  transform: scale(1.1);
}

/* Tech Info */
.tech-info {
  flex: 1;
  position: relative;
  z-index: 1;
}

.tech-name-modern {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.tech-card-modern:hover .tech-name-modern {
  color: #C41E3A;
}

.tech-desc-modern {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Tech Badge - Checkmark */
.tech-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(220, 20, 60, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(196, 30, 58, 0.2);
  transition: all 0.4s ease;
  z-index: 1;
}

.tech-badge svg {
  stroke: #C41E3A;
  transition: all 0.3s ease;
}

.tech-card-modern:hover .tech-badge {
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  border-color: transparent;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.tech-card-modern:hover .tech-badge svg {
  stroke: #ffffff;
}

.tech-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.05), rgba(220, 20, 60, 0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tech-card-modern:hover .tech-card-bg {
  opacity: 1;
}

.tech-card-modern:hover {
  transform: translateX(8px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.15);
}

.tech-logo-container {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #e2e8f0;
  transition: all 0.4s ease;
}

.tech-logo-container img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.tech-card-modern:hover .tech-logo-container {
  background: linear-gradient(135deg, #1e293b 0%, #C41E3A 100%);
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.tech-card-modern:hover .tech-logo-container img {
  filter: grayscale(0) brightness(0) invert(1);
}

.tech-info {
  flex: 1;
}

/*.tech-name-modern {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 6px 0;
  transition: color 0.3s ease;
}

.tech-card-modern:hover .tech-name-modern {
  color: #10b981;
}

.tech-desc-modern {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}	*/

.tech-badge {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}



.tech-card-modern:hover .tech-badge {
  opacity: 1;
  transform: scale(1);
  background: linear-gradient(135deg, #1e293b 0%, #C41E3A 100%);
}

.tech-card-modern:hover .tech-badge svg {
  stroke: #ffffff;
}

/* Trust Banner */
.standards-trust-banner {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  position: relative;
  overflow: hidden;
}

.standards-trust-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #1e293b 0%, #C41E3A 100%);
  background-size: 200% 100%;
  animation: trustGradient 3s linear infinite;
}

@keyframes trustGradient {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.trust-badge-large {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(59, 130, 246, 0.2);
}

.trust-badge-large svg {
  stroke: #3b82f6;
}

.trust-content {
  flex: 1;
}

.trust-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
}

.trust-content p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.trust-stats-mini {
  display: flex;
  align-items: center;
  gap: 30px;
}

.trust-stat-item {
  text-align: center;
}

.trust-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}

.trust-stat-label {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.trust-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, #e2e8f0, transparent);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .standards-tech-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .compliance-logos-grid {
    gap: 16px;
    padding: 0 15px;
  }

  .compliance-card {
    max-width: 180px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .standards-modern {
    padding: 80px 0;
  }

  .standards-modern-header {
    margin-bottom: 60px;
  }

  .standards-tech-grid {
    gap: 40px;
    margin-bottom: 60px;
  }

  /* Mobile Slider for Compliance Logos */
  .compliance-logos-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .compliance-logos-grid::-webkit-scrollbar {
    display: none;
  }

  .compliance-card {
    flex: 0 0 auto;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 180px;
    scroll-snap-align: center;
  }

  .tech-card-modern {
    padding: 20px;
    gap: 16px;
  }

  .tech-logo-container {
    width: 56px;
    height: 56px;
  }

  .standards-trust-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    gap: 24px;
  }

  .trust-stats-mini {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .standards-modern-title {
    font-size: 2rem;
  }

  .header-certified-badge {
    font-size: 14px;
    padding: 10px 20px;
  }

  .section-title-modern {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Keep slider on mobile, just smaller cards */
  .compliance-card {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    height: 160px;
  }

  .tech-card-modern {
    flex-direction: column;
    align-items: flex-start;
  }

  .tech-badge {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .trust-stat-num {
    font-size: 1.75rem;
  }
}

/* =====================================================
   PROCESS MODERN SECTION - CARD BADGE FIX
   ===================================================== */
.process-modern {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  overflow: hidden;
}

.process-bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.04;
}

.bg-icon {
  position: absolute;
}

.bg-icon svg {
  width: 180px;
  height: 180px;
  stroke: #1e293b;
}

.process-modern-header {
  text-align: center;
  margin-bottom: 80px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
  border: 2px solid rgba(196, 30, 58, 0.2);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #C41E3A;
  margin-bottom: 24px;
}

.process-modern-title {
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 24px;
}

.title-highlight {
  background: linear-gradient(135deg, #C41E3A 0%, #DC143C 50%, #8B0000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-modern-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.flow-card {
  position: relative;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  min-height: 200px;
}

.flow-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 30, 58, 0.3);
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.15), 0 0 0 1px rgba(196, 30, 58, 0.1);
}

/* CARD BADGE - Process Flow Crimson Red Numbers - TOP RIGHT */
.flow-card .card-badge {
  position: absolute !important;
  /*top: 20px !important;*/
  right: 20px !important;
  bottom: auto !important;
  left: auto !important;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3), 0 2px 8px rgba(196, 30, 58, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.flow-card .badge-num {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.flow-card:hover .card-badge {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4), 0 3px 10px rgba(196, 30, 58, 0.3);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  stroke: #3b82f6;
  transition: all 0.4s ease;
}

.flow-card:hover .card-icon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.flow-card:hover .card-icon svg {
  stroke: #ffffff;
  transform: scale(1.15);
}

.card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 10px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.flow-card:hover .card-title {
  color: #C41E3A;
}

.card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.flow-arrow {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  opacity: 0.3;
}

.flow-arrow svg {
  width: 100%;
  height: 100%;
  stroke: #C41E3A;
}

.process-cta {
  margin-top: 80px;
  padding: 50px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  text-align: center;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
}

.cta-content p {
  font-size: 1.125rem;
  color: #64748b;
  margin: 0 0 32px 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #C41E3A, #DC143C);
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

@media (max-width: 1024px) {
  .process-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .process-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    display: none;
  }
}

/* =====================================================
   TEAM SECTION - ULTRA-MODERN PREMIUM DESIGN
   ===================================================== */
.team-modern {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 50%, #f8f9fb 100%);
  overflow: hidden;
}

/* Background Elements */
.team-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.team-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.team-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.3), transparent 70%);
  top: -150px;
  right: -150px;
}

.team-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
  bottom: -100px;
  left: -100px;
}

.team-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.15) 1px, transparent 0);
  background-size: 40px 40px;
}

/* Section Header */
.team-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 24px;
}

.team-badge svg {
  stroke: #3b82f6;
}

.team-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.title-gradient-team {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Team Grid */
.team-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* Team Card */
.team-card-modern {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  animation: teamCardReveal 0.6s ease-out backwards;
  animation-delay: calc(var(--card-index) * 0.1s);
}

@keyframes teamCardReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.team-card-modern:hover {
  transform: translateY(-10px);
  border-color: var(--card-color);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 0 0 1px var(--card-color);
}

/* Card Glow */
.card-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--card-color), transparent 70%);
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.team-card-modern:hover .card-glow {
  opacity: 0.15;
}

/* Avatar Section */
.team-avatar-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--card-color);
  animation: ringRotate 3s linear infinite paused;
}

.team-card-modern:hover .avatar-ring {
  animation-play-state: running;
}

@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}

.team-avatar-modern {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border: 3px solid #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card-modern:hover .avatar-image {
  transform: scale(1.1);
}

.avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--card-color), color-mix(in srgb, var(--card-color) 70%, white));
}

.avatar-initials {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.avatar-status {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  background: #10b981;
  border: 3px solid #ffffff;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

/* Info Section */
.team-info-modern {
  margin-bottom: 20px;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
  transition: color 0.3s ease;
}

.team-card-modern:hover .member-name {
  color: var(--card-color);
}

.member-role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--card-color);
  background: color-mix(in srgb, var(--card-color) 10%, transparent);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.member-bio {
  font-size: 0.9rem;
  /*color: #64748b;*/
  color: #FFF;
  line-height: 1.6;
  margin: 0;
}

/* Action Section */
.team-actions {
  margin-top: 16px;
}

.team-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--card-color), color-mix(in srgb, var(--card-color) 80%, black));
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--card-color) 30%, transparent);
}

.team-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--card-color) 40%, transparent);
}

.team-contact-btn svg {
  transition: transform 0.3s ease;
}

.team-contact-btn:hover svg {
  transform: scale(1.1);
}

/* Card Corners */
.card-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--card-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-corner-tl {
  top: 12px;
  left: 12px;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}

.card-corner-br {
  bottom: 12px;
  right: 12px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

.team-card-modern:hover .card-corner {
  opacity: 0.5;
}

/* Team Stats Banner */
.team-stats-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
  padding: 40px 60px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.team-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon-wrap svg {
  stroke: #3b82f6;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.team-stats-banner .stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.team-stats-banner .stat-label {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 4px;
}

.team-stats-banner .stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

/* Responsive */
@media (max-width: 1200px) {
  .team-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .team-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-stats-banner {
    gap: 40px;
    padding: 30px 40px;
  }
}

@media (max-width: 768px) {
  .team-modern {
    padding: 80px 0;
  }

  .team-showcase {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .team-stats-banner {
    flex-direction: column;
    gap: 24px;
    padding: 30px;
  }

  .team-stats-banner .stat-divider {
    width: 80%;
    height: 1px;
  }
}

/* =====================================================
   TEAM CAROUSEL STYLES
   ===================================================== */
.team-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.team-carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 24px;
}

.team-carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-carousel-track .team-card-modern {
  flex: 0 0 calc(25% - 21px);
  min-width: calc(25% - 21px);
  animation: none;
}

/* Navigation Buttons */
.team-nav-btn {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-nav-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.team-nav-btn svg {
  stroke: #64748b;
  transition: stroke 0.3s ease;
}

.team-nav-btn:hover svg {
  stroke: #ffffff;
}

.team-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.team-nav-btn:disabled:hover {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-nav-btn:disabled:hover svg {
  stroke: #64748b;
}

/* Carousel Dots */
.team-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.team-carousel-dot {
  width: 12px;
  height: 12px;
  background: #e2e8f0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-carousel-dot:hover {
  background: #94a3b8;
}

.team-carousel-dot.active {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  width: 36px;
  border-radius: 20px;
}

/* Responsive for Carousel */
@media (max-width: 1200px) {
  .team-carousel-track .team-card-modern {
    flex: 0 0 calc(33.333% - 19px);
    min-width: calc(33.333% - 19px);
  }
}

@media (max-width: 992px) {
  .team-carousel-track .team-card-modern {
    flex: 0 0 calc(50% - 14px);
    min-width: calc(50% - 14px);
  }

  .team-nav-btn {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 768px) {
  .team-carousel-container {
    flex-direction: column;
    gap: 30px;
  }

  .team-carousel-track .team-card-modern {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .team-nav-btn {
    display: none;
  }

  .team-carousel-viewport {
    width: 100%;
  }
}

/* =====================================================
   PORTFOLIO SECTION - GRAYSCALE HOVER DESIGN
   ===================================================== */
.portfolio-modern {
  position: relative;
  padding: 80px 0 100px;
  background: #f3f4f6;
  overflow: hidden;
}

/* Animated Background Icons */
.portfolio-bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.pbi-icon {
  position: absolute;
  color: #9ca3af;
  opacity: 0.07;
}

.pbi-icon svg {
  width: 100%;
  height: 100%;
}

/* Icon 1 - Building (top-left) */
.pbi-icon-1 {
  width: 80px;
  height: 80px;
  top: 8%;
  left: 5%;
  animation: pbiFloat1 8s ease-in-out infinite;
}

/* Icon 2 - Blueprint Grid (top-right) */
.pbi-icon-2 {
  width: 60px;
  height: 60px;
  top: 12%;
  right: 8%;
  animation: pbiFloat2 10s ease-in-out infinite;
  animation-delay: -2s;
}

/* Icon 3 - T-Square (middle-left) */
.pbi-icon-3 {
  width: 70px;
  height: 70px;
  top: 50%;
  left: 3%;
  animation: pbiFloat3 9s ease-in-out infinite;
  animation-delay: -4s;
}

/* Icon 4 - Hard Hat (bottom-right) */
.pbi-icon-4 {
  width: 65px;
  height: 65px;
  bottom: 15%;
  right: 4%;
  animation: pbiFloat4 11s ease-in-out infinite;
  animation-delay: -1s;
}

/* Icon 5 - Crane (bottom-left) */
.pbi-icon-5 {
  width: 90px;
  height: 90px;
  bottom: 10%;
  left: 10%;
  animation: pbiFloat5 12s ease-in-out infinite;
  animation-delay: -3s;
}

/* Floating Animations - Each unique for natural movement */
@keyframes pbiFloat1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-15px) rotate(3deg);
  }

  50% {
    transform: translateY(-8px) rotate(-2deg);
  }

  75% {
    transform: translateY(-20px) rotate(1deg);
  }
}

@keyframes pbiFloat2 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-18px) rotate(-5deg);
  }

  66% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes pbiFloat3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(10px, -12px) rotate(4deg);
  }

  50% {
    transform: translate(5px, -20px) rotate(-2deg);
  }

  75% {
    transform: translate(-5px, -8px) rotate(2deg);
  }
}

@keyframes pbiFloat4 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  30% {
    transform: translateY(-14px) rotate(-3deg);
  }

  60% {
    transform: translateY(-22px) rotate(4deg);
  }
}

@keyframes pbiFloat5 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  20% {
    transform: translate(8px, -10px) rotate(-2deg);
  }

  40% {
    transform: translate(-5px, -18px) rotate(3deg);
  }

  60% {
    transform: translate(12px, -12px) rotate(-4deg);
  }

  80% {
    transform: translate(-3px, -6px) rotate(1deg);
  }
}

/* Hide background icons on mobile */
@media (max-width: 768px) {
  .portfolio-bg-icons {
    display: none;
  }
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* Portfolio Card */
.portfolio-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  animation: portfolioCardReveal 0.6s ease-out backwards;
  animation-delay: var(--card-delay);
}

@keyframes portfolioCardReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Image Section */
.portfolio-image-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

/* Tonnage Badge - Top Left */
.portfolio-tonnage-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.4s ease;
}

.portfolio-tonnage-badge svg {
  color: #C41E3A;
  flex-shrink: 0;
}

.portfolio-card:hover .portfolio-tonnage-badge {
  background: #C41E3A;
  border-color: #C41E3A;
}

.portfolio-card:hover .portfolio-tonnage-badge svg {
  color: #fff;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.6s ease;
}

.portfolio-card:hover .portfolio-img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Info Overlay - Solid bottom bar that slides up on hover */
.portfolio-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(15, 23, 42, 0.92);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-card:hover .portfolio-info-overlay {
  transform: translateY(0);
}

.portfolio-info-text {
  flex: 1;
}

.portfolio-location {
  display: block;
  font-size: 0.78rem;
  color: #5eead4;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.portfolio-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

/* Arrow Button */
.portfolio-arrow {
  width: 40px;
  height: 40px;
  background: var(--color-secondary, #C41E3A);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.portfolio-arrow svg {
  stroke: #fff;
}

.portfolio-arrow:hover {
  transform: scale(1.1);
  background: #a01830;
}

/* Responsive */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-modern {
    padding: 60px 0 80px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .portfolio-image-wrap {
    height: 240px;
  }
}

/* =====================================================
   STANDARDS SECTION - ANIMATED BACKGROUND ICONS
   ===================================================== */
.standards-bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.std-bg-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.06;
  color: #C41E3A;
}

.std-bg-icon svg {
  width: 100%;
  height: 100%;
}

/* Icon 1 - Rebar (top left, floating up-down) */
.std-icon-1 {
  top: 15%;
  left: 8%;
  animation: stdFloat1 8s ease-in-out infinite;
}

@keyframes stdFloat1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

/* Icon 2 - Crane (top right, floating diagonal) */
.std-icon-2 {
  top: 10%;
  right: 12%;
  width: 70px;
  height: 70px;
  animation: stdFloat2 10s ease-in-out infinite;
}

@keyframes stdFloat2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-20px, 25px) rotate(-8deg);
  }
}

/* Icon 3 - Hard Hat (middle left, subtle bounce) */
.std-icon-3 {
  top: 45%;
  left: 5%;
  width: 55px;
  height: 55px;
  animation: stdFloat3 7s ease-in-out infinite;
}

@keyframes stdFloat3 {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Icon 4 - Blueprint (bottom right, rotating float) */
.std-icon-4 {
  bottom: 20%;
  right: 8%;
  width: 65px;
  height: 65px;
  animation: stdFloat4 9s ease-in-out infinite;
}

@keyframes stdFloat4 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(15px, -15px) rotate(5deg);
  }

  75% {
    transform: translate(-10px, 10px) rotate(-5deg);
  }
}

/* Icon 5 - I-Beam (bottom left, slow drift) */
.std-icon-5 {
  bottom: 15%;
  left: 15%;
  width: 50px;
  height: 50px;
  animation: stdFloat5 12s ease-in-out infinite;
}

@keyframes stdFloat5 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(20px, -10px) rotate(8deg);
  }

  66% {
    transform: translate(-15px, -20px) rotate(-5deg);
  }
}

/* Ensure section has relative positioning */
.standards-modern {
  position: relative;
}

/* =====================================================
   LOGO IMAGE STYLES
   ===================================================== */
/* Header Logo Image */
.logo-image {
  height: 50px;
  width: auto;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  object-fit: contain;
}

.logo:hover .logo-image {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

/* Make logo responsive */
@media (max-width: 768px) {
  .logo-image {
    height: 40px;
  }
}

@media (min-width: 992px) {
  .logo-image {
    height: 55px;
  }
}

/* Footer Logo Image */
.footer-logo-image {
  height: 60px;
  width: auto;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-logo:hover .footer-logo-image {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

@media (max-width: 768px) {
  .footer-logo-image {
    height: 50px;
  }
}

/* =====================================================
   NEW PREMIUM SERVICES SLIDER - COMPLETELY REDESIGNED
   ===================================================== */
.premium-services-new {
  position: relative;
  padding: 100px 0;
  background: #0f172a;
  overflow: hidden;
}

.psn-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.psn-gradient-1 {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
  top: -300px;
  right: -200px;
  animation: psnFloat 20s ease-in-out infinite;
}

.psn-gradient-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  animation: psnFloat 25s ease-in-out infinite reverse;
}

@keyframes psnFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }
}

.psn-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Header */
.psn-header {
  text-align: center;
  margin-bottom: 60px;
}

.psn-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(196, 30, 58, 0.05));
  border: 1px solid rgba(196, 30, 58, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #C41E3A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.psn-label svg {
  animation: psnStar 2s ease-in-out infinite;
}

@keyframes psnStar {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.2) rotate(180deg);
  }
}

.psn-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.psn-title span {
  background: linear-gradient(135deg, #C41E3A, #DC143C, #FF6B6B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.psn-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

/* Slider Container */
.psn-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
  padding: 0 60px;
}

.psn-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px 0;
  overflow: visible;
}

/* Card Styles */
.psn-card {
  flex: 0 0 calc(50% - 15px);
  min-width: calc(50% - 15px);
  position: relative;
  perspective: 1000px;
}

/* Animated Rotating Glow Border */
.psn-card-glow {
  position: absolute;
  inset: -3px;
  background: conic-gradient(from 0deg, #C41E3A, #FF6B6B, #DC143C, #8B0000, #C41E3A);
  border-radius: 27px;
  opacity: 0;
  z-index: 0;
  filter: blur(12px);
  transition: opacity 0.5s ease;
  animation: rotateGlow 4s linear infinite paused;
}

@keyframes rotateGlow {
  0% {
    filter: blur(12px) hue-rotate(0deg);
  }

  100% {
    filter: blur(12px) hue-rotate(360deg);
  }
}

.psn-card:hover .psn-card-glow {
  opacity: 0.8;
  animation-play-state: running;
}

.psn-card-inner {
  position: relative;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  transform-style: preserve-3d;
}

/* 3D Tilt + Lift Effect */
.psn-card:hover .psn-card-inner {
  transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
  border-color: rgba(196, 30, 58, 0.5);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(196, 30, 58, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Shine Sweep Effect */
.psn-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  z-index: 10;
  transition: left 0.6s ease;
  pointer-events: none;
}

.psn-card:hover .psn-card-inner::before {
  left: 100%;
}

/* Pulsing Border Animation */
.psn-card-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #C41E3A, transparent, #DC143C);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  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.4s ease;
  pointer-events: none;
}

.psn-card:hover .psn-card-inner::after {
  opacity: 1;
  animation: pulseBorder 2s ease-in-out infinite;
}

@keyframes pulseBorder {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Card Image */
.psn-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.psn-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
  filter: brightness(1);
}

.psn-card:hover .psn-card-image img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.1);
}

.psn-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
  transition: background 0.4s ease;
}

.psn-card:hover .psn-card-image-overlay {
  background: linear-gradient(180deg, rgba(196, 30, 58, 0.1) 0%, rgba(15, 23, 42, 0.9) 100%);
}

/* Card Badge */
.psn-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  z-index: 5;
  transition: all 0.4s ease;
}

.psn-card:hover .psn-card-badge {
  transform: scale(1.1);
  background: rgba(196, 30, 58, 0.8);
  border-color: #C41E3A;
  box-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
}

/* Card Icon */
.psn-card-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #C41E3A, #8B0000);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
  z-index: 5;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.psn-card:hover .psn-card-icon {
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 0 16px 40px rgba(196, 30, 58, 0.6);
  animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

  0%,
  100% {
    transform: scale(1.15) rotate(-10deg);
  }

  50% {
    transform: scale(1.25) rotate(-15deg);
  }
}

.psn-card-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.psn-card:hover .psn-card-icon svg {
  transform: scale(1.1);
}

/* Card Content */
.psn-card-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.psn-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  transition: all 0.3s ease;
}

.psn-card:hover .psn-card-title {
  color: #FF6B6B;
  text-shadow: 0 0 30px rgba(196, 30, 58, 0.3);
}

.psn-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.psn-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.psn-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.psn-card-features li svg {
  color: #C41E3A;
  flex-shrink: 0;
}

/* Card Button */
.psn-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #C41E3A, #8B0000);
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.psn-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.psn-card-btn svg {
  transition: transform 0.3s ease;
}

.psn-card-btn:hover svg {
  transform: translateX(4px);
}

/* Slider Controls */
.psn-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 50px;
}

.psn-arrow {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.psn-arrow:hover {
  background: #C41E3A;
  border-color: #C41E3A;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
}

.psn-dots {
  display: flex;
  gap: 12px;
}

.psn-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.psn-dot.active {
  background: #C41E3A;
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(196, 30, 58, 0.6);
}

.psn-dot:hover:not(.active) {
  background: rgba(196, 30, 58, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .psn-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .premium-services-new {
    padding: 80px 0;
  }

  .psn-header {
    margin-bottom: 40px;
  }

  .psn-card-inner {
    height: 480px;
  }

  .psn-card-content {
    padding: 20px;
  }

  .psn-arrow {
    width: 48px;
    height: 48px;
  }
}



/* =====================================================
   WHY CHOOSE US - ARROW BACKGROUND IMAGES
   ===================================================== */

/* Left Arrow */
.why-choose-arrow-left {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}

.why-choose-arrow-left img {
  width: 300px;
  height: auto;
  display: block;
}

/* Right Arrow */
.why-choose-arrow-right {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}

.why-choose-arrow-right img {
  width: 300px;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {

  .why-choose-arrow-left img,
  .why-choose-arrow-right img {
    width: 180px;
  }
}

@media (max-width: 480px) {

  .why-choose-arrow-left img,
  .why-choose-arrow-right img {
    width: 120px;
  }
}

/* =====================================================
   HERO FLIP CARD - CREATIVE HOVER EFFECT
   ===================================================== */
.hero-flip-card {
  perspective: 1000px;
  position: relative;
}

.hero-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0) rotateY(0);
  }

  25% {
    transform: translateY(-8px) rotateY(0);
  }

  50% {
    transform: translateY(0) rotateY(0);
  }

  75% {
    transform: translateY(-5px) rotateY(0);
  }
}

.hero-flip-card:hover .hero-flip-inner {
  transform: rotateY(180deg);
  animation: none;
}

/* Front card - MUST be absolute for 3D flip to work */
.hero-flip-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 10px 30px rgba(196, 30, 58, 0.15);
}

/* Back card - absolute positioned, pre-rotated 180deg */
.hero-flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 10px 30px rgba(196, 30, 58, 0.15);
  transform: rotateY(180deg);
}

.hero-flip-front img,
.hero-flip-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Glow effect on hover */
.hero-flip-card::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #C41E3A, #DC143C, #FF6B6B);
  border-radius: 28px;
  opacity: 0;
  z-index: -1;
  filter: blur(15px);
  transition: opacity 0.5s ease;
}

.hero-flip-card:hover::before {
  opacity: 0.6;
}

/* Keep existing hero-visual styles compatible */
.hero-visual {
  position: relative;
}

/* CRITICAL: hero-image-wrapper needs aspect ratio for flip to work */
.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  /* Set aspect ratio so flip animation has container height */
  aspect-ratio: 4 / 3;
}

.hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-flip-inner {
    animation: heroFloatMobile 5s ease-in-out infinite;
  }

  @keyframes heroFloatMobile {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-5px);
    }
  }

  .hero-flip-front,
  .hero-flip-back {
    border-radius: 16px;
  }
}

/* =====================================================
   FIXED CSS - Replace the .strip-stat-item styles
   ===================================================== */
/* Use these SPECIFIC selectors to avoid conflicts */
.creative-stats-strip .stat-value {
  position: relative !important;
  /* Override the absolute positioning */
  top: auto !important;
  left: auto !important;
  transform: none !important;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 8px;
}

.creative-stats-strip .stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.strip-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  /* Added to ensure consistent height */
}

.strip-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
  border-color: rgba(196, 30, 58, 0.2);
}

.stat-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--color-secondary) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.strip-stat-item:hover .stat-glow {
  opacity: 1;
}

.stat-icon-circle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #8B0000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
  /* Prevent icon from shrinking */
  order: 1;
  /* Ensure icon comes first */
}

.strip-stat-item:hover .stat-icon-circle {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.stat-info-group {
  text-align: center;
  order: 2;
  /* Ensure text comes second */
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* =====================================================
   RESPONSIVE ADJUSTMENTS
   ===================================================== */
@media (max-width: 768px) {
  .strip-stat-item {
    min-height: 160px;
    padding: 25px 15px;
  }

  .stat-value {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .stat-icon-circle {
    width: 48px;
    height: 48px;
  }

  .stat-icon-circle svg {
    width: 20px;
    height: 20px;
  }

  .strip-stat-item {
    min-height: 150px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-floating-btn:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
  fill: white;
}