/* Custom CSS for AuditPro Website */

:root {
  --primary-blue: #0066cc;
  --primary-purple: #9333ea;
  --dark-slate: #0f172a;
  --light-gray: #f8fafc;
  --opex-blue: #0066cc;
}

/* Typography */
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #334155;
  line-height: 1.6;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Navbar */
.navbar {
  transition: all 0.3s ease;
  padding: 0.75rem 0;
  background: linear-gradient(
    135deg,
    #0066cc 0%,
    #0052a3 100%
  ) !important;
  z-index: 1030;
}

.navbar.scrolled {
  background-color: white !important;
  background: white !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
  color: #1f2937 !important;
}

/* Change hamburger icon to dark when scrolled */
.navbar.scrolled .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(31, 41, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile navbar - always solid background */
@media (max-width: 991px) {
  .navbar {
    background: linear-gradient(
      135deg,
      #0066cc 0%,
      #0052a3 100%
    ) !important;
    padding: 0.5rem 0;
  }

  .navbar-collapse {
    background: linear-gradient(
      135deg,
      #0066cc 0%,
      #0052a3 100%
    ) !important;
    padding: 1rem;
    margin: 0.5rem -1rem 0 -1rem;
    border-radius: 0.5rem;
    max-height: 80vh;
    overflow-y: auto;
  }

  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
    padding: 0.5rem;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.5em;
    height: 1.5em;
  }

  .nav-link {
    color: white !important;
    padding: 0.75rem 1rem !important;
    margin: 0 !important;
    border-radius: 0.375rem;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .navbar-brand {
    color: white !important;
  }

  .btn-light {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .navbar-nav {
    gap: 0.25rem;
  }
}

.navbar-brand {
  color: white !important;
}

.navbar-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Light logo - visible on blue navbar */
.navbar-logo-light {
  display: block;
}

/* Dark logo - hidden on blue navbar */
.navbar-logo-dark {
  display: none;
}

/* When navbar is scrolled (white background) */
.navbar.scrolled .navbar-logo-light {
  display: none;
}

.navbar.scrolled .navbar-logo-dark {
  display: block;
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 50px;
  }
}

.navbar.scrolled .navbar-logo {
  /* Logo visible in scrolled state */
  opacity: 1;
}

.nav-link {
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-outline-custom {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #0f172a 0%,
    #1e3a8a 50%,
    #0f172a 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
}

.hero-bg-blob-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  filter: blur(80px);
  top: -200px;
  left: -200px;
  animation: pulse 4s ease-in-out infinite;
}

.hero-bg-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(147, 51, 234, 0.3);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -200px;
  right: -200px;
  animation: pulse 4s ease-in-out infinite 1s;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 50px 50px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: #9ca3af;
  font-size: 0.875rem;
}

.floating-card {
  animation: float 3s ease-in-out infinite;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Section Headers */
.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.badge-blue {
  background-color: #dbeafe;
  color: #2563eb;
}

.badge-green {
  background-color: #dcfce7;
  color: #16a34a;
}

.badge-purple {
  background-color: #f3e8ff;
  color: #9333ea;
}

/* Audit Cards */
.audit-card {
  padding: 2rem;
  background: linear-gradient(135deg, #f9fafb, white);
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.audit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.audit-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.audit-card:hover::before {
  opacity: 1;
}

.audit-card:hover .card-content {
  color: white;
}

.audit-card:hover .icon-box {
  background: rgba(255, 255, 255, 0.2) !important;
}

.audit-card:hover .icon-box i {
  color: white !important;
}

.audit-card:hover .feature-check {
  color: white !important;
}

.audit-card:hover .card-number {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
}

.card-content {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.icon-box {
  width: 56px;
  height: 56px;
  background-color: #dbeafe;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.icon-box i {
  font-size: 1.75rem;
  color: #2563eb;
  transition: color 0.3s ease;
}

.card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* Gradient Backgrounds */
.bg-gradient-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.bg-gradient-purple {
  background: linear-gradient(135deg, #a855f7, #9333ea);
}

.bg-gradient-red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.bg-gradient-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.bg-gradient-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.bg-gradient-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.bg-gradient-indigo {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.bg-gradient-pink {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.bg-gradient-teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.bg-gradient-yellow {
  background: linear-gradient(135deg, #eab308, #ca8a04);
}

.bg-gradient-violet {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.bg-gradient-rose {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

/* How It Works Section */
.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-line {
  position: relative;
}

.step-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #9333ea, #10b981);
  transform: translateY(-50%);
  z-index: -1;
}

/* Testimonials */
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.star-rating i {
  color: #fbbf24;
  font-size: 1.25rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
  padding: 6rem 0;
}

.cta-box {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 2rem;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(
    circle at 2px 2px,
    white 1px,
    transparent 0
  );
  background-size: 30px 30px;
}

/* Footer */
footer {
  background-color: #0f172a;
  color: #9ca3af;
}

footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #2563eb;
  transform: translateY(-3px);
}

.contact-info-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: #1e293b;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  color: #60a5fa;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-section {
    padding: 6rem 0 3rem;
  }

  .step-line::after {
    display: none;
  }

  .cta-box {
    padding: 2rem;
  }
}

/* Page-specific styles */
.page-header {
  padding: 10rem 0 6rem;
  background: linear-gradient(
    135deg,
    #0f172a 0%,
    #1e3a8a 50%,
    #0f172a 100%
  );
  position: relative;
  overflow: hidden;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 2rem;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.content-section {
  padding: 5rem 0;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: #2563eb;
  margin-top: 0.25rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
}

.form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* About Us Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 16px;
  background: #2563eb;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 4px solid white;
  box-shadow: 0 0 0 4px #e5e7eb;
}

.timeline-content {
  width: 45%;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 0;
  }

  .timeline-dot {
    left: 0;
  }

  .timeline-content {
    width: 100%;
    margin-left: 2rem !important;
  }
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

/* Info Box */
.info-box {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid #2563eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

.info-box h4 {
  color: #2563eb;
  margin-bottom: 0.5rem;
}

/* ===========================
   Operational Excellence Platform Styles
   =========================== */

/* Hero Section - OpEx Style */
.hero-section-opex {
  min-height: auto;
  max-height: 100vh;
  background: linear-gradient(
    135deg,
    #0066cc 0%,
    #0052a3 50%,
    #004080 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 8rem 0 3rem;
}

/* Mobile Hero Section */
@media (max-width: 768px) {
  .hero-section-opex {
    padding: 6rem 0 3rem !important;
    min-height: auto !important;
    max-height: none !important;
  }

  .hero-section-opex h1 {
    font-size: 2rem !important;
  }

  .hero-section-opex .lead {
    font-size: 1rem !important;
  }

  .hero-section-opex .display-4 {
    font-size: 2rem !important;
  }
}

/* Hero Compact View */
.hero-compact-view {
  padding: 7rem 0 3rem !important;
}

/* Value Props Compact */
.value-props-compact {
  margin-top: 2rem;
}

.value-props-compact .value-prop-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.value-props-compact .value-prop-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-number-compact {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.stat-label-compact {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Pillars Showcase Image */
.pillars-visual-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}

.pillars-showcase-img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.pillars-showcase-img:hover {
  transform: scale(1.02);
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-card h3 {
  color: white;
  margin-bottom: 0.25rem;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Module Cards */
.module-card {
  background: white;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.module-card-active {
  border-color: #0066cc;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.module-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.module-card:hover .module-icon {
  transform: scale(1.1);
}

.module-icon i {
  font-size: 1.75rem;
  color: white;
}

.module-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.module-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.module-stats .badge {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
}

/* Feature Cards - Simple Style */
.feature-card-simple {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.feature-card-simple:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: #0066cc;
}

.feature-icon-simple {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card-simple:hover .feature-icon-simple {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-simple i {
  font-size: 2rem;
  color: white;
}

.feature-card-simple h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

/* Step Cards */
.step-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.step-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: #0066cc;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0066cc, #004999);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  border-color: #0066cc;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0066cc, #004999);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin-right: 1rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

/* CTA Section - OpEx Style */
.cta-section-opex {
  background: linear-gradient(135deg, #0066cc, #004999);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section-opex::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(
    circle at 2px 2px,
    white 1px,
    transparent 0
  );
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.cta-section-opex .container {
  position: relative;
  z-index: 2;
}

.cta-form-box {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 3;
}

.cta-form-box h4 {
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-form-box .form-control,
.cta-form-box .form-select {
  background-color: #ffffff !important;
  border: 2px solid #e5e7eb !important;
  color: #1f2937 !important;
  cursor: text !important;
  pointer-events: auto !important;
  opacity: 1 !important;
  user-select: text !important;
  position: relative;
  z-index: 10;
}

.cta-form-box .form-select {
  cursor: pointer !important;
}

.cta-form-box form {
  position: relative;
  z-index: 10;
}

/* Footer - OpEx Style */
.footer-opex {
  background-color: #0f172a;
  color: #9ca3af;
}

.footer-opex p {
  color: #9ca3af !important;
}

.footer-opex .text-muted {
  color: #9ca3af !important;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: #0066cc;
}

.social-icon-opex {
  width: 40px;
  height: 40px;
  background-color: #1e293b;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #9ca3af;
  text-decoration: none;
}

.social-icon-opex:hover {
  background: linear-gradient(135deg, #0066cc, #004999);
  color: white;
  transform: translateY(-3px);
}

/* Badge Styles */
.badge-orange {
  background-color: #fed7aa;
  color: #ea580c;
}

/* Dropdown Enhancements */
.dropdown-menu {
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.75rem;
  min-width: 280px;
}

.dropdown-menu-mega {
  min-width: 100%;
  max-width: 1000px;
  left: 50% !important;
  transform: translateX(-50%);
  padding: 0 !important;
}

@media (min-width: 992px) {
  .dropdown-menu-mega {
    min-width: 900px;
  }
}

/* Mobile dropdown - stack vertically */
@media (max-width: 991px) {
  .dropdown-menu-mega {
    position: static !important;
    transform: none !important;
    left: auto !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    max-height: 60vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background-color: #004999 !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 0.5rem;
    border-radius: 0.5rem !important;
    -webkit-overflow-scrolling: touch;
  }

  .dropdown-menu-mega .container {
    padding: 0 !important;
    max-width: 100% !important;
  }

  .dropdown-menu-mega .row {
    margin: 0 !important;
  }

  .dropdown-menu-mega .col-lg-3,
  .dropdown-menu-mega .col-md-6 {
    width: 100% !important;
    padding: 0 !important;
  }

  .dropdown-header,
  .pillar-dropdown-header {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    padding: 1rem 1rem 0.5rem !important;
    margin: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05) !important;
  }

  .dropdown-header:first-child,
  .pillar-dropdown-header:first-child {
    border-top: none;
  }

  .dropdown-item {
    color: rgba(255, 255, 255, 0.95) !important;
    padding: 0.85rem 1.25rem !important;
    border-radius: 0 !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
  }

  .dropdown-item:hover,
  .dropdown-item:focus,
  .dropdown-item:active,
  .dropdown-item.active {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
  }

  .dropdown-item i {
    opacity: 0.9;
    font-size: 1.1rem !important;
    min-width: 24px;
  }

  /* Ensure dropdown stays visible when toggled */
  .navbar-nav .dropdown-menu {
    display: none;
  }

  .navbar-nav .dropdown-menu.show {
    display: block !important;
  }
}

.dropdown-header {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #6b7280;
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
}

.dropdown-item {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.dropdown-item:hover {
  background-color: #f3f4f6;
  color: #0066cc;
}

.dropdown-item i {
  font-size: 1rem;
}

.dropdown-divider {
  margin: 0.5rem 0;
  opacity: 0.1;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .hero-section-opex {
    padding: 6rem 0 3rem !important;
    min-height: auto !important;
  }

  .module-card {
    margin-bottom: 1rem;
  }

  .stat-card {
    margin-bottom: 1rem;
  }

  .cta-section-opex {
    padding: 4rem 0;
  }

  .cta-form-box {
    padding: 2rem;
  }

  .feature-card-simple,
  .step-card,
  .testimonial-card {
    margin-bottom: 1rem;
  }

  .dropdown-menu {
    min-width: 100%;
  }

  /* Hero text sizing for mobile */
  h1,
  .h1 {
    font-size: 2rem !important;
  }

  h2,
  .h2 {
    font-size: 1.75rem !important;
  }

  .display-4 {
    font-size: 2rem !important;
  }

  .display-5 {
    font-size: 1.75rem !important;
  }

  .lead {
    font-size: 1rem !important;
  }

  /* Compact stats on mobile */
  .value-props-compact .stat-number-compact {
    font-size: 1.5rem !important;
  }

  .value-props-compact .stat-label-compact {
    font-size: 0.875rem !important;
  }

  /* Button adjustments */
  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
  }

  /* Navbar brand logo */
  .navbar-logo {
    height: 40px !important;
  }

  /* Container padding */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Hero compact view mobile */
  .hero-compact-view {
    padding: 5rem 0 2rem !important;
  }

  /* Pillars visual mobile */
  .pillars-visual-container {
    margin-top: 2rem;
  }

  .pillars-showcase-img {
    max-width: 100%;
    height: auto;
  }

  /* Value props spacing */
  .value-props-compact {
    margin-top: 2rem !important;
  }

  .value-props-compact .col-lg-3,
  .value-props-compact .col-md-6 {
    margin-bottom: 0.75rem;
  }

  /* Hero badge mobile */
  .hero-badge {
    font-size: 0.875rem !important;
    padding: 0.375rem 0.75rem !important;
  }

  /* Flex direction adjustments */
  .d-flex.flex-column.flex-sm-row {
    flex-direction: column !important;
  }

  .d-flex.flex-column.flex-sm-row .btn {
    width: 100%;
  }

  /* Page header mobile */
  .page-header {
    padding: 6rem 0 3rem !important;
  }

  .page-header h1 {
    font-size: 1.75rem !important;
  }

  .page-header .lead {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 992px) {
  .nav-link {
    margin: 0.5rem 0;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Badge Variations */
.badge.bg-success {
  background-color: #10b981 !important;
}

.badge.bg-danger {
  background-color: #ef4444 !important;
}

.badge.bg-warning {
  background-color: #f59e0b !important;
}

.badge.bg-secondary {
  background-color: #6b7280 !important;
}

/* ===========================
   Additional Appcarter Styles
   =========================== */

/* Pillar Cards */
.pillar-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pillar-card-blue {
  border-color: #3b82f6;
}

.pillar-card-blue:hover {
  border-color: #2563eb;
  background: linear-gradient(135deg, #eff6ff, white);
}

.pillar-card-green {
  border-color: #10b981;
}

.pillar-card-green:hover {
  border-color: #059669;
  background: linear-gradient(135deg, #d1fae5, white);
}

.pillar-card-purple {
  border-color: #a855f7;
}

.pillar-card-purple:hover {
  border-color: #9333ea;
  background: linear-gradient(135deg, #faf5ff, white);
}

.pillar-card-red {
  border-color: #ef4444;
}

.pillar-card-red:hover {
  border-color: #dc2626;
  background: linear-gradient(135deg, #fee2e2, white);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #0066cc, #004999);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.pillar-card-green .pillar-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.pillar-card-purple .pillar-icon {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.pillar-card-red .pillar-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

/* Industry Badges */
.industry-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.industry-badge:hover {
  border-color: #0066cc;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
  transform: translateY(-5px);
}

.industry-badge i {
  font-size: 2.5rem;
  color: #0066cc;
  transition: transform 0.3s ease;
}

.industry-badge:hover i {
  transform: scale(1.1);
}

.industry-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
}

@media (max-width: 768px) {
  .industry-badge {
    padding: 1rem 0.5rem;
  }

  .industry-badge i {
    font-size: 2rem;
  }

  .industry-badge span {
    font-size: 0.8rem;
  }
}

.pillar-module-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.pillar-module-link:hover {
  background: white;
  border-color: #0066cc;
  color: #0066cc;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.pillar-module-link i:first-child {
  font-size: 1.25rem;
  opacity: 0.7;
}

.pillar-module-link i.bi-arrow-right {
  font-size: 1rem;
  opacity: 0.5;
}

.pillar-module-link:hover i {
  opacity: 1;
}

/* Feature Box */
.feature-box {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #0066cc;
}

.feature-box-icon {
  width: 72px;
  height: 72px;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.feature-box:hover .feature-box-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-box-icon i {
  color: white;
}

/* Client Logo Box */
.client-logo-box {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.client-logo-box:hover {
  border-color: #0066cc;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.client-logo-box img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  max-height: 60px;
}

.client-logo-box:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Testimonial Card Modern */
.testimonial-card-modern {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #0066cc;
}

.testimonial-stars i {
  font-size: 1.125rem;
}

.testimonial-avatar-modern img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 3px solid #f3f4f6;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: white;
  backdrop-filter: blur(10px);
  font-size: 0.875rem;
}

.stat-mini {
  text-align: center;
}

/* Button Enhancements */
.btn-primary {
  background: linear-gradient(135deg, #0066cc, #004999);
  border: none;
  font-weight: 600;
  padding: 0.875rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #004999, #003366);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.4);
}

/* Form Enhancements */
.form-control:focus,
.form-select:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.15);
}

/* Form Validation Styles */
.form-control.is-valid,
.form-select.is-valid {
  border-color: #10b981;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.375rem) center;
  background-size: calc(0.75em + 0.75rem) calc(0.75em + 0.75rem);
  padding-right: calc(1.5em + 1.5rem);
}

.form-control.is-valid:focus,
.form-select.is-valid:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #ef4444;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.375rem) center;
  background-size: calc(0.75em + 0.75rem) calc(0.75em + 0.75rem);
  padding-right: calc(1.5em + 1.5rem);
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 0.25rem rgba(239, 68, 68, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #ef4444;
}

.invalid-feedback.d-block {
  display: block !important;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #10b981;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
  .pillar-card {
    margin-bottom: 1.5rem;
  }

  .pillar-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }

  .feature-box {
    margin-bottom: 1rem;
  }

  .client-logo-box {
    height: 80px;
  }

  .testimonial-card-modern {
    margin-bottom: 1.5rem;
  }

  .stat-mini {
    margin-bottom: 1rem;
  }
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pillar-card,
.feature-box,
.testimonial-card-modern {
  animation: slideInUp 0.6s ease-out;
}

/* Mobile App Showcase Section */
.mobile-app-showcase {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  position: relative;
  overflow: hidden;
}

.mobile-app-showcase::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 204, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.mobile-app-showcase::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(147, 51, 234, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 570px;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 35px;
  padding: 12px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.phone-mockup:hover {
  transform: translateY(-10px) scale(1.02);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: #0f172a;
  border-radius: 0 0 15px 15px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.app-feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.app-feature-list li:hover {
  transform: translateX(10px);
  border-color: #0066cc;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.app-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0066cc, #004999);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-feature-icon i {
  color: white;
  font-size: 1.5rem;
}

.app-feature-content h4 {
  margin: 0 0 0.25rem 0;
  color: #1f2937;
  font-size: 1.125rem;
}

.app-feature-content p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Analytics Dashboard Section */
.analytics-dashboard-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.dashboard-preview {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.dashboard-preview:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0, 102, 204, 0.2);
  border-color: #0066cc;
}

.dashboard-preview img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}

.dashboard-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #0066cc, #9333ea);
  border-radius: 1.5rem 1.5rem 0 0;
}

.analytics-stat-card {
  background: white;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.analytics-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0066cc, #004999);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.analytics-stat-card:hover::before {
  transform: scaleX(1);
}

.analytics-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
  border-color: #0066cc;
}

.analytics-stat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.analytics-stat-icon i {
  font-size: 2rem;
  color: #0066cc;
}

.analytics-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.analytics-stat-label {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.analytics-feature-grid {
  display: grid;
  gap: 1.5rem;
}

.analytics-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.analytics-feature-item:hover {
  background: white;
  border-color: #0066cc;
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.1);
}

.analytics-feature-icon-small {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0066cc, #004999);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.analytics-feature-icon-small i {
  color: white;
  font-size: 1.25rem;
}

.analytics-feature-content h5 {
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
}

.analytics-feature-content p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Responsive Styles for New Sections */
@media (max-width: 992px) {
  .phone-mockup {
    width: 240px;
    height: 490px;
  }

  .analytics-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .phone-mockup {
    width: 220px;
    height: 450px;
    margin-bottom: 2rem;
  }

  .app-feature-list li {
    padding: 1rem;
  }

  .app-feature-icon {
    width: 40px;
    height: 40px;
  }

  .app-feature-icon i {
    font-size: 1.25rem;
  }

  .analytics-stat-card {
    margin-bottom: 1rem;
  }

  .dashboard-preview {
    margin-bottom: 2rem;
  }

  .analytics-feature-item {
    padding: 1rem;
  }
}

/* New Four Pillars V2 Styles - Clean Design */
.pillar-card-v2 {
  background: white;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pillar-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Border colors for each pillar */
.pillar-border-blue {
  border-color: #e0f2fe;
}

.pillar-border-blue:hover {
  border-color: #0066cc;
}

.pillar-border-green {
  border-color: #dcfce7;
}

.pillar-border-green:hover {
  border-color: #16a34a;
}

.pillar-border-purple {
  border-color: #f3e8ff;
}

.pillar-border-purple:hover {
  border-color: #9333ea;
}

.pillar-border-red {
  border-color: #fee2e2;
}

.pillar-border-red:hover {
  border-color: #ef4444;
}

/* Pillar Icons V2 */
.pillar-icon-v2 {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.pillar-icon-blue {
  background: linear-gradient(135deg, #0066cc, #0052a3);
  color: white;
}

.pillar-icon-green {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: white;
}

.pillar-icon-purple {
  background: linear-gradient(135deg, #9333ea, #7e22ce);
  color: white;
}

.pillar-icon-red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.pillar-card-v2:hover .pillar-icon-v2 {
  transform: scale(1.1) rotate(5deg);
}

/* Pillar Title and Description V2 */
.pillar-title-v2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.pillar-description-v2 {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Pillar Modules Grid */
.pillar-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.pillar-module-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0.875rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  position: relative;
}

.pillar-module-item:hover {
  background: white;
  border-color: #0066cc;
  color: #0066cc;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.12);
}

.pillar-module-item i:first-child {
  font-size: 1.125rem;
  opacity: 0.7;
  flex-shrink: 0;
}

.pillar-module-item:hover i:first-child {
  opacity: 1;
}

.pillar-module-item span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pillar-module-item .module-arrow {
  font-size: 1.5rem;
  opacity: 0.4;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.pillar-module-item:hover .module-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Green variant for Audit & Compliance */
.pillar-border-green .pillar-module-item:hover {
  border-color: #16a34a;
  color: #16a34a;
}

/* Purple variant for Employee Engagement */
.pillar-border-purple .pillar-module-item:hover {
  border-color: #9333ea;
  color: #9333ea;
}

/* Red variant for EHS Excellence */
.pillar-border-red .pillar-module-item:hover {
  border-color: #ef4444;
  color: #ef4444;
}

/* Responsive adjustments for Four Pillars V2 */
@media (max-width: 992px) {
  .pillar-card-v2 {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .pillar-modules-grid {
    gap: 0.65rem;
  }

  .pillar-module-item {
    padding: 0.875rem 0.75rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .pillar-card-v2 {
    padding: 1.75rem 1.25rem;
  }

  .pillar-icon-v2 {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .pillar-title-v2 {
    font-size: 1.25rem;
  }

  .pillar-description-v2 {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .pillar-modules-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .pillar-module-item {
    padding: 0.875rem;
  }
}