/* ========================
   WEADDER - Modern Corporate Website
   ======================== */

/* ========================
   ROOT VARIABLES
   ======================== */
:root {
  /* Primary Brand Colors */
  --primary-color: #0d6efd;
  --primary-dark: #0b5ed7;
  --primary-light: #4285f4;
  --secondary-color: #6c757d;

  /* Background Colors */
  --bg-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --bg-hero: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  --bg-section: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark: #212529;

  /* Text Colors */
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  --text-white-75: rgba(255, 255, 255, 0.75);

  /* Shadows */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --shadow-xl: 0 2rem 4rem rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;

  /* Border Radius */
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;

  /* Spacing */
  --section-padding: 5rem 0;
  --element-margin: 2rem;
}

/* ========================
   GLOBAL STYLES
   ======================== */
* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.modern-corporate {
  position: relative;
}

/* ========================
   ENHANCED TEXT GRADIENT
   ======================== */
.text-gradient {
  background: linear-gradient(45deg, #4285f4, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ========================
   NEW HERO SECTION DESIGN
   ======================== */
.hero-section-new {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0c1426 0%,
    #1a2332 25%,
    #2d4059 50%,
    #1a2332 75%,
    #0c1426 100%
  );
  padding-top: 80px; /* Account for fixed header */
  padding-bottom: 80px; /* Account for fixed footer */
}

/* Dynamic Background */
.hero-bg-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* Ensure background doesn't interfere with clicks */
}

.gradient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(66, 133, 244, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 212, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(147, 51, 234, 0.1) 0%,
      transparent 50%
    );
  animation: gradientShift 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Floating Orbs */
.floating-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(66, 133, 244, 0.3),
    rgba(0, 212, 255, 0.2)
  );
  backdrop-filter: blur(2px);
  animation: floatOrb 20s linear infinite;
  pointer-events: none;
}

.orb-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -150px;
  animation-delay: 0s;
  animation-duration: 25s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -100px;
  animation-delay: 5s;
  animation-duration: 20s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
  animation-duration: 30s;
}

.orb-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation-delay: 15s;
  animation-duration: 18s;
}

@keyframes floatOrb {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) translateX(20px) rotate(120deg);
  }
  66% {
    transform: translateY(20px) translateX(-15px) rotate(240deg);
  }
  100% {
    transform: translateY(0px) translateX(0px) rotate(360deg);
  }
}

/* Grid Overlay */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(66, 133, 244, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(66, 133, 244, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  opacity: 0.3;
  pointer-events: none;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Hero Content */
.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Premium Badge */
.hero-premium-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.3);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(66, 133, 244, 0.2);
  overflow: hidden;
  animation: premiumPulse 4s ease-in-out infinite;
}

.badge-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(66, 133, 244, 0.4),
    transparent
  );
  animation: badgeRotate 3s linear infinite;
}

@keyframes badgeRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-premium-badge i {
  color: #ffd700;
  font-size: 1.2rem;
  z-index: 2;
  position: relative;
}

.hero-premium-badge span {
  z-index: 2;
  position: relative;
}

/* Main Title */
.hero-main-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

.title-line-1,
.title-line-3 {
  display: block;
  font-weight: 300;
  font-size: 3.5rem;
}

.title-line-2 {
  display: block;
  font-weight: 900;
  font-size: 5.5rem;
  margin: 0.2rem 0;
}

.text-gradient-new {
  background: linear-gradient(45deg, #4285f4, #00d4ff, #9333ea);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 3s ease-in-out infinite;
}

@keyframes gradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

/* Interactive Stats */
.hero-stats {
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(66, 133, 244, 0.4);
  box-shadow: 0 20px 40px rgba(66, 133, 244, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #4285f4;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Action Buttons */
.hero-action-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
}

.btn-hero-primary,
.btn-hero-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 2px solid transparent;
  margin: 0.5rem;
}

.btn-hero-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-primary .btn-bg,
.btn-hero-secondary .btn-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-hero-primary .btn-bg {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--primary-color)
  );
}

.btn-hero-secondary .btn-bg {
  background: rgba(255, 255, 255, 0.1);
}

.btn-hero-primary:hover .btn-bg,
.btn-hero-secondary:hover .btn-bg {
  left: 0;
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}

.btn-text {
  position: relative;
  z-index: 2;
}

/* Floating Tech Icons */
.floating-tech-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  animation: floatTech 6s ease-in-out infinite;
  transition: all 0.3s ease;
  z-index: 1;
}

.floating-tech-icon:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

@keyframes floatTech {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  color: white;
  transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scroll-arrow {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Hero Interactive Elements Container */
.hero-interactive-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Hero Content Wrapper Enhancement */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card-modern {
    padding: 1rem;
  }

  .stat-card-modern .stat-number {
    font-size: 1.5rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    margin: 0.3rem;
  }

  .floating-tech-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero-content-wrapper {
    padding: 1rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-main-title {
    font-size: 2rem !important;
  }

  .hero-description {
    font-size: 1rem;
  }
}

/* Enhanced Hero Title */
.hero-main-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-highlight-text {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--primary-color),
    #00d4ff
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  display: block;
  /* animation: shimmer 3s ease-in-out infinite; */
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
}

/* ========================
   ENHANCED HERO BADGE
   ======================== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin: 0 auto 1.5rem;
}

.hero-badge .badge-icon {
  margin-right: 0.75rem;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.hero-badge .badge-text {
  color: white;
  font-weight: 600;
}

/* Hero Description */
.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ========================
   ENHANCED FLOATING ICONS
   ======================== */
.floating-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.floating-icon-1 {
  top: 15%;
  right: 15%;
  animation-delay: 0s;
}

.floating-icon-2 {
  top: 50%;
  left: -35px;
  animation-delay: 1.5s;
}

.floating-icon-3 {
  bottom: 25%;
  right: -35px;
  animation-delay: 3s;
}

.floating-icon-4 {
  bottom: 40%;
  left: 15%;
  animation-delay: 4.5s;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  align-items: center;
}

.hero-actions .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-actions .btn-primary {
  background: linear-gradient(45deg, #4285f4, #00d4ff);
  border: none;
  color: white;
}

.hero-actions .btn-primary:hover {
  background: linear-gradient(45deg, #3367d6, #00b8d4);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(66, 133, 244, 0.4);
}

.hero-actions .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-actions .btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: var(--transition-slow);
}

.hero-image-container:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-image {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

/* ========================
   SECTION BADGES
   ======================== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: 50px;
  color: #4285f4;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.section-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(66, 133, 244, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.section-badge:hover::before {
  left: 100%;
}

.section-badge-white {
  /* background: rgba(255, 255, 255, 0.95); */
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
}

.badge-icon {
  font-size: 1rem;
}

/* ========================
   ABOUT WEADDER SECTION - REDESIGNED
   ======================== */
#about {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 50%, #f1f8e9 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(66, 133, 244, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

#about .container {
  position: relative;
  z-index: 2;
}

.about-content {
  padding: 2rem 0;
}

.about-content h1 {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(45deg, #4285f4, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.about-text {
  position: relative;
  text-align: justify;
}

.about-text .lead {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #2c3e50;
  font-weight: 400;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 2rem;
}

.about-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-actions .btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-actions .btn-primary {
  background: linear-gradient(45deg, #4285f4, #00d4ff);
  border: none;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.about-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(66, 133, 244, 0.4);
}

.about-actions .btn-outline-primary {
  border: 2px solid #4285f4;
  color: #4285f4;
  background: rgba(66, 133, 244, 0.05);
  backdrop-filter: blur(10px);
}

.about-actions .btn-outline-primary:hover {
  background: #4285f4;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.about-visual {
  position: relative;
  padding: 2rem 0;
}

.about-image-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.about-image-container:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.about-image {
  width: 100%;
  height: auto;
  transition: all 0.4s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(66, 133, 244, 0.1),
    rgba(0, 212, 255, 0.05)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-image-container:hover .image-overlay {
  opacity: 1;
}

/* ========================
   WHY WEADDER SECTION
   ======================== */
.py-5:nth-of-type(3) {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.py-5:nth-of-type(3)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(66, 133, 244, 0.03),
    rgba(0, 212, 255, 0.02)
  );
  z-index: 1;
}

.why-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.why-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.why-content .lead {
  font-size: 1.3rem;
  color: #4285f4;
  font-weight: 600;
}

.success-points {
  margin-top: 2rem;
}

.success-point {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(66, 133, 244, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.success-point::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #4285f4, #00d4ff);
  transition: width 0.3s ease;
}

.success-point:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.success-point:hover::before {
  width: 8px;
}

.point-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4285f4, #00d4ff);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
  transition: all 0.3s ease;
}

.point-icon i {
  color: white;
  font-size: 1.5rem;
}

.success-point:hover .point-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(66, 133, 244, 0.4);
}

.point-content h5 {
  color: #2c3e50;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.point-content p {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

.why-visual {
  position: relative;
  padding: 2rem 0;
}

.why-image-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.why-image-container:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.why-image {
  width: 100%;
  height: auto;
  transition: all 0.4s ease;
}

/* ========================
   STATS SECTION - ENHANCED
   ======================== */
.stats-section {
  background: linear-gradient(
    135deg,
    #0c1426 0%,
    #1a2332 25%,
    #2d4059 50%,
    #1a2332 75%,
    #0c1426 100%
  );
  position: relative;
  overflow: hidden;
}

.stats-background {
  z-index: 1;
}

.stats-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(66, 133, 244, 0.1),
    rgba(0, 212, 255, 0.05)
  );
  animation: floatStats 20s linear infinite;
}

.stats-shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.stats-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -150px;
  animation-delay: 10s;
  animation-direction: reverse;
}

@keyframes floatStats {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(0px) rotate(180deg);
  }
  75% {
    transform: translateY(20px) rotate(270deg);
  }
  100% {
    transform: translateY(0px) rotate(360deg);
  }
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stats-section h2 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 2.5rem 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4285f4, #00d4ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 70px rgba(66, 133, 244, 0.3);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4285f4, #00d4ff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.4);
  transition: all 0.3s ease;
}

.stat-icon i {
  font-size: 2rem;
  color: white;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(66, 133, 244, 0.5);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stat-plus {
  color: #4285f4;
  font-size: 2.5rem;
  margin-left: 0.2rem;
}

.stat-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.stat-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ========================
   SERVICES SECTION
   ======================== */
.services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(66, 133, 244, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4285f4, #00d4ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(66, 133, 244, 0.8),
    rgba(0, 212, 255, 0.6)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.service-overlay i {
  font-size: 3rem;
  color: white;
  transform: scale(0.5);
  transition: all 0.4s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-card:hover .service-overlay i {
  transform: scale(1);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
  position: relative;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4285f4, #00d4ff);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 1.5rem;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(66, 133, 244, 0.4);
}

.service-title {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-description {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  background: rgba(66, 133, 244, 0.1);
  color: #4285f4;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(66, 133, 244, 0.2);
}

/* ========================
   CASE STUDIES SECTION
   ======================== */
.case-studies-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.case-studies-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(66, 133, 244, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 212, 255, 0.03) 0%,
      transparent 50%
    );
  z-index: 1;
}

.case-studies-section .container {
  position: relative;
  z-index: 2;
}

.case-studies-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.case-study-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.case-study-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4285f4, #00d4ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.case-study-card:hover::before {
  transform: scaleX(1);
}

.case-study-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.case-study-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.case-study-image .image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.1);
}

.case-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.category-badge {
  background: rgba(66, 133, 244, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.case-study-content {
  padding: 2rem;
}

.case-title {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.case-description {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric {
  text-align: center;
  padding: 1rem;
  background: rgba(66, 133, 244, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(66, 133, 244, 0.1);
}

.metric-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #4285f4;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
  background: linear-gradient(
    135deg,
    #0c1426 0%,
    #1a2332 25%,
    #2d4059 50%,
    #1a2332 75%,
    #0c1426 100%
  );
  position: relative;
  overflow: hidden;
}

.cta-background {
  z-index: 1;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(66, 133, 244, 0.1),
    rgba(0, 212, 255, 0.05)
  );
  animation: floatCTA 25s linear infinite;
}

.cta-shape-1 {
  width: 500px;
  height: 500px;
  top: -250px;
  right: -250px;
  animation-delay: 0s;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  animation-delay: 12s;
  animation-direction: reverse;
}

@keyframes floatCTA {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(90deg);
  }
  50% {
    transform: translateY(0px) rotate(180deg);
  }
  75% {
    transform: translateY(30px) rotate(270deg);
  }
  100% {
    transform: translateY(0px) rotate(360deg);
  }
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-actions .btn {
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-actions .btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: #2c3e50;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-actions .btn-light:hover {
  background: white;
  color: #2c3e50;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.cta-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  transform: translateY(-3px);
}

/* ========================
   FLOATING CONTACT BUTTONS
   ======================== */
.contact-btns-modern {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-label-modern {
  background: rgba(66, 133, 244, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: labelPulse 3s ease-in-out infinite;
}

@keyframes labelPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.social-float-modern {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.whatsapp-float-modern {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.email-float-modern {
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.phone-float-modern {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.social-float-modern:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  color: white;
}

.social-float-modern .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-float-modern:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 768px) {
  .about-content h1 {
    font-size: 2.5rem;
  }

  .why-content h2,
  .services-section h2,
  .case-studies-section h2 {
    font-size: 2rem;
  }

  .stats-section h2,
  .cta-content h2 {
    font-size: 2.5rem;
  }

  .hero-action-buttons,
  .about-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-btns-modern {
    bottom: 1rem;
    right: 1rem;
  }

  .stat-card,
  .service-card,
  .case-study-card {
    margin-bottom: 2rem;
  }

  .success-point:hover {
    transform: none;
  }

  .point-icon {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
  }
}

/* ========================
   PERFORMANCE OPTIMIZATIONS
   ======================== */
.hero-image,
.about-image,
.why-image,
.service-image img,
.case-study-image img {
  will-change: transform;
}

/* Reduce animations on lower-end devices */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .floating-icon {
    animation-duration: 8s;
  }

  .particle {
    animation-duration: 30s;
  }
}

/* ========================
   ACCESSIBILITY IMPROVEMENTS
   ======================== */
@media (prefers-reduced-motion: reduce) {
  .floating-icon,
  .particle,
  .pulse-ring,
  .hero-shape,
  .stats-shape {
    animation: none !important;
  }

  .social-float-modern:hover {
    transform: scale(1.05) !important;
  }

  .hero-image-container:hover {
    transform: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-shape,
  .stats-shape,
  .cta-shape {
    display: none;
  }

  .section-badge,
  .hero-badge {
    border-width: 2px;
  }
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

.carousel-item.active {
  display: block;
}

.carousel-item .row {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.carousel-item .col-lg-6:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ========================
   DESKTOP HERO CENTERING
   ======================== */
@media (min-width: 992px) {
  .carousel-item .row {
    min-height: 100vh;
    align-items: center;
    justify-content: center;
  }

  .carousel-item .col-lg-6:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ========================
   HERO INTEGRATION & POLISH
   ======================== */

/* Ensure hero section doesn't conflict with header */
.hero-section-new {
  padding-top: 80px; /* Account for fixed header */
}

/* Enhanced button hover effects */
.btn-hero-primary::after,
.btn-hero-secondary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: all 0.3s ease;
  opacity: 0;
}

.btn-hero-primary:hover::after,
.btn-hero-secondary:hover::after {
  right: 15px;
  opacity: 1;
}

/* Premium badge pulse effect */
@keyframes premiumPulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(66, 133, 244, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 12px 40px rgba(66, 133, 244, 0.4);
    transform: scale(1.02);
  }
}

.hero-premium-badge {
  animation: premiumPulse 4s ease-in-out infinite;
}

/* Trust logos enhanced animation */
.trust-logo {
  position: relative;
  overflow: hidden;
}

.trust-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.trust-logo:hover::before {
  left: 100%;
}

/* Mobile optimizations */
@media (max-width: 480px) {
  .hero-section-new {
    padding-top: 70px;
  }

  .hero-main-title {
    font-size: 2rem;
  }

  .title-line-1,
  .title-line-3 {
    font-size: 1.6rem;
  }

  .title-line-2 {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-premium-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .stat-item {
    padding: 0.8rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* Performance optimizations */
.hero-bg-animated,
.orb,
.gradient-mesh {
  will-change: transform, opacity;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .orb,
  .gradient-mesh,
  .badge-glow,
  .grid-overlay {
    animation: none !important;
  }

  .text-gradient-new {
    background: #4285f4;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: #4285f4;
  }

  .hero-premium-badge {
    animation: none !important;
  }

  .scroll-indicator .scroll-arrow {
    animation: none !important;
  }
}

/* ========================
   MODERN ABOUT SECTION
   ======================== */

/* About Page Specific Styles */
.about-page .hero-section-new {
  background: linear-gradient(
    135deg,
    #0c1426 0%,
    #1a2332 25%,
    #2d4059 50%,
    #1a2332 75%,
    #0c1426 100%
  );
}

/* About Background Shapes */
.about-bg-light {
  z-index: 1;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(66, 133, 244, 0.1),
    rgba(0, 212, 255, 0.05)
  );
  animation: floatShape 15s ease-in-out infinite;
}

.about-shape-1 {
  width: 300px;
  height: 300px;
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.about-shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -5%;
  animation-delay: -5s;
}

.about-shape-3 {
  width: 250px;
  height: 250px;
  top: 10%;
  right: -8%;
  animation-delay: -2s;
}

.about-shape-4 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: -5%;
  animation-delay: -7s;
}

.about-shape-5 {
  width: 220px;
  height: 220px;
  top: 30%;
  left: -7%;
  animation-delay: -3s;
}

.about-shape-6 {
  width: 160px;
  height: 160px;
  bottom: 30%;
  right: -6%;
  animation-delay: -8s;
}

.about-shape-7 {
  width: 280px;
  height: 280px;
  top: 15%;
  left: -9%;
  animation-delay: -1s;
}

.about-shape-8 {
  width: 190px;
  height: 190px;
  bottom: 25%;
  right: -7%;
  animation-delay: -6s;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3;
  }
}

/* Floating Achievement Badges */
.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, #4285f4, #00d4ff);
  border-radius: 15px;
  padding: 15px 20px;
  color: white;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.floating-badge-1 {
  top: 20%;
  right: -10%;
  transform: rotate(-5deg);
}

.floating-badge-2 {
  bottom: 30%;
  right: -15%;
  transform: rotate(5deg);
}

.floating-badge-3 {
  top: 50%;
  right: -12%;
  transform: rotate(-3deg);
}

.badge-number {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Enhanced About Image Container */
.about-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(66, 133, 244, 0.1),
    rgba(0, 212, 255, 0.1)
  );
  z-index: 2;
  border-radius: 20px;
}

.about-image {
  transition: transform 0.6s ease;
  border-radius: 20px;
}

.about-image-container:hover .about-image {
  transform: scale(1.05);
}

/* About Story Section */
.about-story-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Mission Vision Section Enhancements */
.mission-vision-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8360c3 100%);
}

.mission-vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 70%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 50%
    );
  z-index: 1;
}

.mission-vision-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  text-align: center;
}

.mission-vision-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.mission-vision-content p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

/* Mission & Vision Cards */
.mission-vision-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  min-height: 500px;
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.card-glow-effect {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 25%,
    transparent 75%,
    rgba(255, 255, 255, 0.3) 100%
  );
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.mission-vision-card:hover .card-glow-effect {
  opacity: 1;
}

.card-content-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Icon Header */
.card-icon-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.icon-container {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  position: relative;
  font-size: 2rem;
  color: white;
}

.mission-icon-bg {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.vision-icon-bg {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

.icon-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 24px;
  background: inherit;
  opacity: 0.3;
  animation: iconPulse 2s ease-in-out infinite;
}

.icon-title {
  flex: 1;
}

.card-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.2;
}

.title-underline {
  height: 4px;
  width: 80px;
  border-radius: 2px;
  margin-top: 0.5rem;
}

.mission-underline {
  background: linear-gradient(90deg, #ff6b6b, #ee5a52);
}

.vision-underline {
  background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

/* Card Content */
.card-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* Key Points */
.key-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.key-point {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: all 0.3s ease;
}

.key-point:hover {
  color: white;
  transform: translateX(10px);
}

.point-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.key-point:hover .point-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Card Decoration */
.card-decoration {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.decoration-line {
  height: 2px;
  flex: 1;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  margin-right: 1rem;
}

.decoration-dots {
  display: flex;
  gap: 0.5rem;
}

.decoration-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: dotPulse 2s ease-in-out infinite;
}

.decoration-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.decoration-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Impact Stats */
.impact-stats-section {
  margin-top: 4rem;
}

.stats-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem 2rem;
}

.impact-stat {
  transition: all 0.3s ease;
}

.impact-stat:hover {
  transform: translateY(-5px);
}

.impact-stat .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.impact-stat:hover .stat-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.15)
  );
  color: white;
}

.impact-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}

.impact-stat .stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Gradient Accents */
.text-gradient-accent {
  background: linear-gradient(135deg, #ffeaa7, #fab1a0, #fd79a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
@keyframes gradientShift {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-10px) translateY(-10px);
  }
  50% {
    transform: translateX(10px) translateY(-5px);
  }
  75% {
    transform: translateX(-5px) translateY(10px);
  }
}

@keyframes floatAround {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
  100% {
    transform: translateY(0px) rotate(360deg);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0.8;
  }
  75% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-200px) translateX(100px);
    opacity: 0;
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.1;
  }
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* =====================
   CAREERS PAGE STYLES
   ===================== */

/* Step Numbers */
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.step-number::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  z-index: -1;
  opacity: 0.3;
}

/* Job Cards */
.job-card {
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.job-header {
  margin-bottom: 1rem;
}

.job-title {
  color: var(--dark-color);
  font-size: 1.25rem;
}

.job-type {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.job-location {
  color: var(--muted-color);
  font-size: 0.9rem;
}

.job-location i {
  color: var(--primary-color);
}

.job-description {
  color: var(--muted-color);
  line-height: 1.6;
}

.skill-tag {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
}

/* Hero stats mini */
.hero-stats-mini .stat-item {
  text-align: center;
}

.hero-stats-mini .stat-number {
  font-size: 1.5rem;
}

.hero-stats-mini .stat-label {
  font-size: 0.8rem;
}

/* Tech stack badges */
.tech-stack .badge {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* Floating icon animation */
.floating-icon {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Process step wrapper */
.step-wrapper {
  transition: all 0.3s ease;
  position: relative;
}

.step-wrapper:hover {
  transform: translateY(-5px);
}

/* Purple color utility */
.text-purple {
  color: #6f42c1 !important;
}

.bg-purple-subtle {
  background-color: rgba(111, 66, 193, 0.1) !important;
}

/* Additional hover effects for feature cards */
.feature-card:hover .icon-wrapper {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(var(--bs-primary-rgb), 0.1),
    rgba(var(--bs-secondary-rgb), 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Job card apply button enhancement */
.job-card .btn {
  transition: all 0.3s ease;
}

.job-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.3);
}

/* CTA section enhancements */
.cta-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Text gradient for light backgrounds */
.text-gradient-light {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced glass effect for career page */
.glass-effect {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* =====================
   ENHANCED CAREERS HERO
   ===================== */

/* Hero Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-card-modern {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.stat-card-modern:hover::before {
  left: 100%;
}

.stat-card-modern:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card-modern .stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.2rem;
  color: white;
}

.stat-card-modern .stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card-modern .stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Information Vertical Layout */
.contact-item-vertical {
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 12px;
}

.contact-item-vertical:hover {
  /* background: rgba(13, 110, 253, 0.05); */
  transform: translateY(-5px);
}

.contact-item-vertical .contact-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-item-vertical .contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
  transition: all 0.3s ease;
}

.contact-item-vertical:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.contact-item-vertical .contact-details h5 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.contact-item-vertical .contact-details p {
  line-height: 1.6;
}

.contact-item-vertical .contact-details a {
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-item-vertical .contact-details a:hover {
  color: var(--primary-dark);
  text-decoration: underline !important;
}

/* Social Media Section */
.social-links-section {
  border-top: 1px solid rgba(13, 110, 253, 0.1);
}

.social-links-section .social-icons {
  gap: 1rem;
}

.social-links-section .social-icon-modern {
  width: 55px;
  height: 55px;
  font-size: 1.3rem;
}

.social-links-section .social-icon-modern:hover {
  transform: translateY(-5px) scale(1.15);
}

/* Fix Text Selection Issues */
.values-section {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

.values-section * {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  pointer-events: auto;
}

.values-section .about-bg-light {
  pointer-events: none;
  z-index: 1;
}

.values-section .container {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.values-section .about-shape {
  pointer-events: none;
  z-index: 1;
}

/* Modal Styles for Why Choose WEADDER */
.weadder-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.weadder-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  margin: 2% auto;
  padding: 0;
  border: none;
  border-radius: 20px;
  width: 95%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.weadder-modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 2rem;
  border-radius: 20px 20px 0 0;
  position: relative;
  text-align: center;
}

.weadder-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.weadder-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.weadder-modal-body {
  padding: 3rem 2rem;
}

.modal-advantage-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 110, 253, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modal-advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.modal-advantage-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

.modal-advantage-details {
  text-align: center;
}

.modal-advantage-details h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.modal-advantage-details p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.modal-advantage-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.modal-advantage-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  color: var(--text-secondary);
}

.modal-advantage-features li i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

/* Modal Animation */
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.weadder-modal.show .weadder-modal-content {
  animation: modalSlideIn 0.4s ease-out;
}

/* Modal Button */
.modal-trigger-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  cursor: pointer;
}

.modal-trigger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

/* =====================
   WHY CHOOSE US - VALUE CARDS ENHANCEMENT
   ===================== */

/* Glass-morphism card base */
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.6;
}

.glass-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.8s ease;
  z-index: 1;
}

.glass-card:hover::after {
  left: 100%;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(13, 110, 253, 0.3);
}

/* Enhanced value cards */
.value-card {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

/* Icon wrapper enhancement */
.value-icon {
  position: relative;
  z-index: 3;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  box-shadow: 
    0 8px 25px rgba(13, 110, 253, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.value-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 35px rgba(13, 110, 253, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Individual card color themes */
.value-card:nth-child(1) .icon-wrapper {
  background: linear-gradient(135deg, #0d6efd, #4285f4);
}

.value-card:nth-child(2) .icon-wrapper {
  background: linear-gradient(135deg, #198754, #20c997);
}

.value-card:nth-child(3) .icon-wrapper {
  background: linear-gradient(135deg, #0dcaf0, #0fb8d4);
}

.value-card:nth-child(4) .icon-wrapper {
  background: linear-gradient(135deg, #ffc107, #fd7e14);
}

/* Hover effects for individual cards */
.value-card:nth-child(1):hover {
  background: rgba(13, 110, 253, 0.05);
  border-color: rgba(13, 110, 253, 0.2);
}

.value-card:nth-child(2):hover {
  background: rgba(25, 135, 84, 0.05);
  border-color: rgba(25, 135, 84, 0.2);
}

.value-card:nth-child(3):hover {
  background: rgba(13, 202, 240, 0.05);
  border-color: rgba(13, 202, 240, 0.2);
}

.value-card:nth-child(4):hover {
  background: rgba(255, 193, 7, 0.05);
  border-color: rgba(255, 193, 7, 0.2);
}

/* Text enhancement */
.value-card h4 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.value-card:hover h4 {
  transform: translateY(-2px);
}

.value-card:hover p {
  color: var(--text-primary);
}

/* Lift effect class */
.hover-lift:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Values section background enhancement */
.values-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
  position: relative;
}

.values-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(13, 110, 253, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(25, 135, 84, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .glass-card {
    border-radius: 16px;
    margin-bottom: 1.5rem;
  }
  
  .icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .value-card h4 {
    font-size: 1.2rem;
  }
  
  .value-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .glass-card {
    padding: 1.5rem;
    border-radius: 12px;
  }
  
  .glass-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
}
