/*!
Theme Name: Meridian Africa
Theme URI: https://meridian-africa.com/
Author: Meridian Africa Team
Author URI: https://meridian-africa.com/
Description: A modern WordPress theme for Meridian Africa featuring satellite-powered agricultural intelligence. Built with responsive design, custom navigation, and comprehensive styling for agricultural technology solutions.
Version: 2.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: meridian-africa
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, agriculture, technology, satellite, responsive-design, modern

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Meridian Africa is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* ===========================
   GOOGLE FONTS IMPORT
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* ===========================
   GLOBAL STYLES & VARIABLES
   =========================== */

:root {
  /* Primary Blue Colors (trust, technology, government) */
  --primary-blue-1: #1e40af;
  --primary-blue-2: #3b82f6;
  --primary-blue-3: #60a5fa;
  --primary-color: #1e40af; /* Main brand color */

  /* Success Green (checkmarks, positive metrics) */
  --success-green: #10b981;

  /* Warning Orange/Red (problem section, fraud alerts) */
  --warning-orange: #f59e0b;
  --warning-red: #ef4444;

  /* Purple (secondary features, diversity) */
  --purple: #8b5cf6;

  /* Gray (neutral, professional) */
  --gray-light: #6b7280;
  --gray-dark: #f3f4f6;

  /* Legacy color mappings for backward compatibility */
  --primary-green: #2e8f33;
  --primary-light: #60a5fa;
  --primary-dark: #1e40af;
  --primary-lighter: #dbeafe;

  /* Secondary Colors */
  --secondary-blue: #3b82f6;
  --secondary: #3b82f6;
  --secondary-light: #60a5fa;
  --accent-orange: #f59e0b;
  --accent: #f59e0b;

  /* Neutral Colors */
  --neutral-gray: #f3f4f6;
  --dark-text: #1a1a1a;
  --light-text: #333333;
  --border-color: #e5e7eb;
  --white: #ffffff;
  --dark: #0f172a;
  --light: #f8fafc;
  --text: #1e293b;
  --border: #e2e8f0;

  /* Shadows */
  --shadow: 0 4px 15px rgba(30, 64, 175, 0.08);
  --shadow-lg: 0 12px 40px rgba(30, 64, 175, 0.15);
  --shadow-xl: 0 20px 60px rgba(30, 64, 175, 0.2);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-body: 18px;
  --font-size-body-large: 20px;
  --font-size-small: 12px;
  --font-size-small-medium: 14px;
  --font-size-h1: 60px;
  --font-size-h2: 48px;
  --font-size-h3: 36px;
  --font-size-h4: 32px;
  --line-height-body: 1.6;
  --line-height-heading: 1.2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--dark-text);
  line-height: var(--line-height-body);
  background-color: var(--white);
  overflow-x: hidden;
  font-size: var(--font-size-body);
}

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--line-height-heading);
  color: var(--dark-text);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
}

small, .small-text {
  font-size: var(--font-size-small-medium);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-highlight {
    color: #2e8f33;
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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



@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(30, 64, 175, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(30, 64, 175, 0.6);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(80px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(80px) rotate(-360deg);
  }
}



/* ===========================
   BUTTONS
   =========================== */

.btn-primary,
.btn-secondary,
.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30, 64, 175, 0.4);
  /* background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary-color) 100%
  ); */
}

.btn-primary.btn-glow {
  animation: glow 2s ease-in-out infinite;
}

.btn-secondary {
  background-color: transparent;
  /* color: var(--primary-color); */
  color: white;
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
}

.btn-login {
  background-color: transparent;
  color: var(--dark-text);
  border: none;
  padding: 8px 16px;
  font-size: 13px;
}

.btn-login:hover {
  color: var(--primary-green);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* ===========================
   NAVIGATION HEADER
   =========================== */

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  animation: slideInLeft 0.6s ease;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 10px;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(46, 143, 51, 0.25);
}

.logo-image {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 8px;
  opacity: 1 !important;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 80%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  margin-top: 12px;
  overflow: hidden;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--dark-text);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background-color: var(--neutral-gray);
  color: var(--primary-green);
  border-left-color: var(--primary-green);
  padding-left: 20px;
}

.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Hide mobile nav buttons on desktop */
.mobile-nav-buttons {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background-color: var(--dark-text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(46deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
  position: relative;
  padding: 50px 0;
  background-color: #0E172A;
  /* background: linear-gradient(135deg, #f8fafb 0%, #f0f4f8 100%); */
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(46, 143, 51, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(14, 165, 233, 0.08) 0%,
      transparent 50%
    );
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.floating-shapes .shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  top: -100px;
  right: -100px;
  animation: float 15s ease-in-out infinite;
}

.floating-shapes .shape-2 {
  width: 200px;
  height: 200px;
  background: var(--secondary-blue);
  bottom: -50px;
  left: 10%;
  animation: float 20s ease-in-out infinite 2s;
}

.floating-shapes .shape-3 {
  width: 150px;
  height: 150px;
  background: var(--accent-orange);
  top: 50%;
  right: 10%;
  animation: float 18s ease-in-out infinite 1s;
}

.floating-shapes .shape-4 {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  bottom: 20%;
  left: 5%;
  animation: float 22s ease-in-out infinite 3s;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 600px;
}

.hero-content {
  animation: slideInLeft 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 122, 62, 0.1);
  color: var(--primary-green);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease;
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  /* color: var(--dark-text); */
  color: white;
}

.hero-title .word {
  display: block;
  animation: fadeInUp 0.8s ease backwards;
}

.hero-title .word:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-title .word:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-title .word:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-subtitle {
  font-size: 18px;
  color: white;
  /* color: var(--light-text); */
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.5s backwards;
}


.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.hero-visual {
  position: relative;
  height: 450px;
  animation: slideInRight 0.8s ease;
}

.satellite-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.satellite {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(46, 143, 51, 0.3);
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}

.orbit {
  position: absolute;
  border: 2px solid rgba(46, 143, 51, 0.15);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-2 {
  width: 300px;
  height: 300px;
  animation-duration: 30s;
  animation-direction: reverse;
}

.orbit-3 {
  width: 400px;
  height: 400px;
  border-color: rgba(30, 136, 229, 0.1);
  animation-duration: 40s;
}

.protection-wrapper{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===========================
   SECTION HEADER
   =========================== */

.section-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease;
  position: relative;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--dark-text);
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 18px;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

/* ===========================
   GLOBAL DEVELOPMENT FRAMEWORKS MARQUEE
   =========================== */

.frameworks-marquee {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.frameworks-marquee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(46, 143, 51, 0.2) 50%, transparent 100%);
}

.frameworks-marquee::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(46, 143, 51, 0.2) 50%, transparent 100%);
}

.marquee-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease;
}

.marquee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(46, 143, 51, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid rgba(46, 143, 51, 0.15);
  box-shadow: 0 4px 15px rgba(46, 143, 51, 0.08);
  position: relative;
  overflow: hidden;
}

.marquee-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.marquee-badge i {
  font-size: 16px;
  color: var(--primary-color);
}

.marquee-badge span {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marqueeScroll 40s linear infinite;
  width: fit-content;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
}

.framework-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 20px 32px;
  border-radius: 16px;
  border: 2px solid rgba(46, 143, 51, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 280px;
}

.framework-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-blue) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.framework-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(46, 143, 51, 0.2);
}

.framework-card:hover::before {
  opacity: 0.05;
}

.framework-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(46, 143, 51, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.framework-card:hover .framework-icon {
  background: linear-gradient(135deg, rgba(46, 143, 51, 0.15) 0%, rgba(14, 165, 233, 0.15) 100%);
  transform: rotate(5deg) scale(1.1);
}

.framework-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.4s ease;
}

.framework-card:hover .framework-icon img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

.framework-info {
  position: relative;
  z-index: 1;
  flex: 1;
}

.framework-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.framework-card:hover .framework-info h4 {
  color: var(--primary-color);
}

.framework-info p {
  font-size: 13px;
  color: var(--light-text);
  margin: 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.framework-card:hover .framework-info p {
  opacity: 1;
}


/* ===========================
   VERIFICATION CRISIS SECTION
   =========================== */

.verification-crisis {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.verification-crisis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(46, 143, 51, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.crisis-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  animation: fadeInUp 0.8s ease;
}

.crisis-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid rgba(249, 115, 22, 0.2);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.crisis-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3s infinite;
}

.crisis-badge span {
  font-size: 11px;
  font-weight: 800;
  color: #ea580c;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.crisis-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.crisis-header p {
  font-size: 17px;
  color: var(--light-text);
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
}

.crisis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.crisis-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 20px;
  border-left: 6px solid;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease backwards;
}

.crisis-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.05;
  transition: all 0.4s ease;
}

.crisis-card-1 {
  border-left-color: #6366f1;
  animation-delay: 0.1s;
}

.crisis-card-1::before {
  background: #6366f1;
  top: -40px;
  right: -40px;
}

.crisis-card-2 {
  border-left-color: #ec4899;
  animation-delay: 0.2s;
}

.crisis-card-2::before {
  background: #ec4899;
  top: -40px;
  right: -40px;
}

.crisis-card-3 {
  border-left-color: #f59e0b;
  animation-delay: 0.3s;
}

.crisis-card-3::before {
  background: #f59e0b;
  top: -40px;
  right: -40px;
}

.crisis-card-4 {
  border-left-color: #10b981;
  animation-delay: 0.4s;
}

.crisis-card-4::before {
  background: #10b981;
  top: -40px;
  right: -40px;
}

.crisis-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.crisis-card:hover::before {
  opacity: 0.08;
  transform: scale(1.2);
}

.crisis-number {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.crisis-card-1 .crisis-number {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crisis-card-2 .crisis-number {
  background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crisis-card-3 .crisis-number {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crisis-card-4 .crisis-number {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crisis-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 14px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.crisis-card p {
  font-size: 15px;
  color: var(--light-text);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}


/* ===========================
   SOLUTIONS SECTION
   =========================== */

.solutions {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8fafb 0%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
}

.solutions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(46, 143, 51, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(14, 165, 233, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.solutions .section-header h2 {
  color: var(--dark-text);
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions .section-header p {
  color: var(--light-text);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.solution-card {
  background: var(--white);
  padding: 48px 40px;
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(46, 143, 51, 0.08);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease backwards;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.solution-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.solution-card-1 {
  animation-delay: 0.1s;
  border-color: #ff6b6b;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 107, 107, 0.03) 100%
  );
}
.solution-card-2 {
  animation-delay: 0.2s;
  border-color: #4ecdc4;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(78, 205, 196, 0.03) 100%
  );
}
.solution-card-3 {
  animation-delay: 0.3s;
  border-color: #ffe66d;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 230, 109, 0.03) 100%
  );
}
.solution-card-4 {
  animation-delay: 0.4s;
  border-color: #95e1d3;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(149, 225, 211, 0.03) 100%
  );
}
.solution-card-5 {
  animation-delay: 0.5s;
  border-color: #f38181;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(243, 129, 129, 0.03) 100%
  );
}

.solution-card:hover::after {
  transform: scaleX(1);
}

.solution-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 20px 60px rgba(46, 143, 51, 0.15);
  border-color: var(--primary-color);
}

.solution-card-1:hover {
  border-color: #ff6b6b;
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.15);
}
.solution-card-2:hover {
  border-color: #4ecdc4;
  box-shadow: 0 20px 60px rgba(78, 205, 196, 0.15);
}
.solution-card-3:hover {
  border-color: #ffe66d;
  box-shadow: 0 20px 60px rgba(255, 230, 109, 0.15);
}
.solution-card-4:hover {
  border-color: #95e1d3;
  box-shadow: 0 20px 60px rgba(149, 225, 211, 0.15);
}
.solution-card-5:hover {
  border-color: #f38181;
  box-shadow: 0 20px 60px rgba(243, 129, 129, 0.15);
}

.solution-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(46, 143, 51, 0.12) 0%,
    rgba(14, 165, 233, 0.08) 100%
  );
  border-radius: 20px;
  font-size: 36px;
  color: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 15px rgba(46, 143, 51, 0.1);
}

.solution-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.solution-card:hover .solution-icon {
  color: var(--white);
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 30px rgba(46, 143, 51, 0.25);
}

.solution-card:hover .solution-icon::before {
  opacity: 1;
}

.solution-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.5px;
}

.solution-card ul {
  list-style: none;
  margin-top: 24px;
}

.solution-card li {
  padding: 14px 0;
  color: #333333;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.solution-card li:last-child {
  border-bottom: none;
}

.solution-card li:hover {
  color: var(--primary-green);
  padding-left: 8px;
  font-weight: 600;
}

.solution-card li .icon {
  font-size: 16px;
  min-width: 20px;
}

/* ===========================
   TECHNICAL SPECIFICATIONS SECTION
   =========================== */

.tech-specs {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.tech-specs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(46, 143, 51, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(14, 165, 233, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.tech-specs .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.tech-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.tech-spec-card {
  background: var(--white);
  border: 2px solid rgba(46, 143, 51, 0.1);
  border-left: 4px solid var(--primary-color);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease backwards;
  box-shadow: 0 4px 20px rgba(46, 143, 51, 0.08);
}

.tech-spec-card:nth-child(1) {
  animation-delay: 0.1s;
}
.tech-spec-card:nth-child(2) {
  animation-delay: 0.2s;
}
.tech-spec-card:nth-child(3) {
  animation-delay: 0.3s;
}
.tech-spec-card:nth-child(4) {
  animation-delay: 0.4s;
}
.tech-spec-card:nth-child(5) {
  animation-delay: 0.5s;
}
.tech-spec-card:nth-child(6) {
  animation-delay: 0.6s;
}

.tech-spec-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(46, 143, 51, 0.03) 0%,
    rgba(14, 165, 233, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.tech-spec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(46, 143, 51, 0.15);
  border-left-width: 6px;
  border-color: var(--primary-color);
}

.tech-spec-card:hover::before {
  opacity: 1;
}

.spec-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(46, 143, 51, 0.2);
  position: relative;
  z-index: 1;
}

.tech-spec-card:hover .spec-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(46, 143, 51, 0.3);
}

.tech-spec-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.spec-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.spec-item {
  font-size: 14px;
  line-height: 1.6;
  color: var(--light-text);
  padding-left: 16px;
  position: relative;
}

.spec-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

.spec-item strong {
  color: var(--dark-text);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* ===========================
   WHY SATELLITE VERIFICATION NOW SECTION
   =========================== */

.why-now {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1f35 0%, #252b45 50%, #1a1f35 100%);
  position: relative;
  overflow: hidden;
}

.why-now::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(46, 143, 51, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(46, 143, 51, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.why-now .container {
  position: relative;
  z-index: 1;
}

.why-now-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  animation: fadeInUp 0.8s ease;
}

.why-now-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(46, 143, 51, 0.15) 0%, rgba(34, 197, 94, 0.15) 100%);
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid rgba(46, 143, 51, 0.3);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.why-now-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

.why-now-badge span {
  font-size: 11px;
  font-weight: 800;
  color: #4ade80;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.why-now-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-now-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
}

.why-now-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.why-now-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease backwards;
  display: flex;
  flex-direction: column;
}

.why-now-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 143, 51, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.why-now-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(46, 143, 51, 0.3), rgba(34, 197, 94, 0.3));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.why-now-card:nth-child(1) {
  animation-delay: 0.1s;
}

.why-now-card:nth-child(1) .why-now-icon {
  background: linear-gradient(135deg, #2e8f33 0%, #22c55e 100%);
}

.why-now-card:nth-child(2) {
  animation-delay: 0.2s;
}

.why-now-card:nth-child(2) .why-now-icon {
  background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
}

.why-now-card:nth-child(3) {
  animation-delay: 0.3s;
}

.why-now-card:nth-child(3) .why-now-icon {
  background: linear-gradient(135deg, #10b981 0%, #2e8f33 100%);
}

.why-now-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(46, 143, 51, 0.4);
  box-shadow:
    0 25px 60px rgba(46, 143, 51, 0.25),
    0 0 40px rgba(46, 143, 51, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.why-now-card:hover::before {
  opacity: 1;
}

.why-now-card:hover::after {
  opacity: 1;
}

.why-now-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2e8f33 0%, #22c55e 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 24px;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(46, 143, 51, 0.3);
}

.why-now-card:hover .why-now-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(46, 143, 51, 0.5);
}

.why-now-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.why-now-description {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.why-now-status {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.status-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(46, 143, 51, 0.2) 0%, rgba(34, 197, 94, 0.2) 100%);
  border: 1px solid rgba(46, 143, 51, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.why-now-card:hover .status-badge {
  background: linear-gradient(135deg, rgba(46, 143, 51, 0.3) 0%, rgba(34, 197, 94, 0.3) 100%);
  border-color: rgba(46, 143, 51, 0.5);
  color: #86efac;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */

.testimonials {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafb 0%, #f0f4f8 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(46, 143, 51, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: fadeInUp 0.8s ease backwards;
  border: 1px solid rgba(46, 143, 51, 0.05);
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(46, 143, 51, 0.15);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.stars {
  color: #ffd700;
  font-size: 16px;
  display: flex;
  gap: 4px;
}

.quote-icon {
  font-size: 28px;
  color: rgba(46, 143, 51, 0.2);
}

.testimonial-card p {
  font-size: 16px;
  color: var(--light-text);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  font-size: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(46, 143, 51, 0.12) 0%,
    rgba(14, 165, 233, 0.08) 100%
  );
  border-radius: 50%;
}

.testimonial-author strong {
  color: var(--dark-text);
  font-size: 14px;
  display: block;
}

.testimonial-author span {
  color: var(--light-text);
  font-size: 12px;
  display: block;
}

/* ===========================
   METRICS SECTION
   =========================== */

.metrics {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  overflow: hidden;
}

.metrics-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.metrics-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.metrics-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  animation: float 15s ease-in-out infinite;
}

.metrics-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 10%;
  animation: float 20s ease-in-out infinite 2s;
}

.metrics-shape.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation: float 18s ease-in-out infinite 1s;
}

.metrics .section-header h2 {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: unset;
}

.metrics .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.metric-card {
  text-align: center;
  animation: fadeInUp 0.8s ease backwards;
}

.metric-card:nth-child(1) {
  animation-delay: 0.1s;
}
.metric-card:nth-child(2) {
  animation-delay: 0.2s;
}
.metric-card:nth-child(3) {
  animation-delay: 0.3s;
}
.metric-card:nth-child(4) {
  animation-delay: 0.4s;
}

.metric-icon {
  font-size: 40px;
  opacity: 0.8;
}

.metric-number {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 8px;
  display: block;
}

.metric-card p {
  font-size: 16px;
  opacity: 0.9;
}

.contact-btn{
    color: white;
}
/* ===========================
   CTA SECTION
   =========================== */

.cta {
  position: relative;
  padding: 120px 0;
  background: #1a2332;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.cta-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(46, 143, 51, 0.08) 0%,
    transparent 70%
  );
  z-index: 1;
}

.cta-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease;
}

.cta-title {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 20px;
  margin-bottom: 48px;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cta-btn {
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  position: relative;
  overflow: hidden;
}

.cta-btn::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;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn-primary {
  background: var(--primary-green);
  color: var(--white);
  border: 2px solid var(--primary-green);
  box-shadow: 0 4px 20px rgba(46, 143, 51, 0.3);
}

.cta-btn-primary:hover {
  background: #26a32e;
  border-color: #26a32e;
  box-shadow: 0 6px 30px rgba(46, 143, 51, 0.4);
  transform: translateY(-2px);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.cta-features {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
}

.cta-feature-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 20px;
}

.cta-feature-icon i {
  filter: drop-shadow(0 0 8px rgba(46, 143, 51, 0.5));
}

/* CTA Responsive Styles */
@media (max-width: 992px) {
  .cta {
    padding: 100px 0;
  }

  .cta-title {
    font-size: 40px;
  }

  .cta-subtitle {
    font-size: 18px;
  }

  .cta-features {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .cta {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .cta-subtitle {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }

  .cta-btn {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    padding: 16px 32px;
    font-size: 15px;
  }

  .cta-features {
    flex-direction: column;
    gap: 20px;
  }

  .cta-feature-item {
    font-size: 14px;
  }

  section#home.hero .hero-buttons{
    flex-direction: row;
  }

  section#home.hero .hero-buttons a.btn-large{
    width: fit-content;
  }

  section#platform.platform .platform-card{
    padding: 0px;
  }
}

@media (max-width: 480px) {
  .cta {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .cta-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .cta-btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .cta-features {
    gap: 16px;
  }

  .cta-feature-item {
    font-size: 13px;
    gap: 10px;
  }

  .cta-feature-icon {
    width: 18px;
    height: 18px;
    font-size: 18px;
  }
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--white);
  padding: 80px 0 20px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-logo i {
  font-size: 24px;
  color: var(--primary-green);
}

.footer-logo-image {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 8px;
  opacity: 1 !important;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.word-wrapper{
  color: var(--primary-green);
}

strong.margin-faq {
    margin-left: 30px;
}

.footer-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  margin: 0px;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
}

.footer-section a:hover {
  color: white;
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--white);
  font-size: 18px;
}

.social-link:hover {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-blue) 100%
  );
  transform: translateY(-4px);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-green);
}

.faq-section .faq-category .category-header h2{
  font-size: 22px;
}



/* ===========================
   PLATFORM SECTION
   =========================== */

.platform {
  padding: 120px 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 30%, #f8fdf9 70%, #ecfdf5 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background Shapes */
.platform-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.platform-background-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 20s infinite ease-in-out;
}

.platform-background-shapes .shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #2e8f33, #25a244);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.platform-background-shapes .shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #25a244, #2e8f33);
  bottom: -80px;
  right: -80px;
  animation-delay: 5s;
}

.platform-background-shapes .shape-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #2e8f33, #1f7a2a);
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

.platform .container {
  position: relative;
  z-index: 1;
}

.platform .section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(46, 143, 51, 0.1), rgba(37, 162, 68, 0.1));
  color: #2e8f33;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin-bottom: 24px;
  border: 2px solid #2e8f33;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.badge-pill:hover {
  background: linear-gradient(135deg, rgba(46, 143, 51, 0.15), rgba(37, 162, 68, 0.15));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 143, 51, 0.2);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon svg {
  width: 16px;
  height: 16px;
}

.platform .section-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0a2e0d;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #0a2e0d 0%, #2e8f33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.platform .section-header p {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto;
  font-weight: 400;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 70px;
}

.platform-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fdf9 100%);
  border-radius: 24px;
  padding: 0;
  border: 1px solid rgba(46, 143, 51, 0.1);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(46, 143, 51, 0.06),
              0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 520px;
  cursor: pointer;
}

/* Animated Gradient Border */
.platform-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #2e8f33, #4ade80, #2e8f33, #10b981);
  background-size: 300% 300%;
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

/* Glow Effect */
.platform-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 143, 51, 0.15), transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.platform-card:hover::after {
  width: 500px;
  height: 500px;
}

/* Card Content Wrapper */
.card-content-verification {
  padding: 40px 32px;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.platform-card:hover .card-content-verification {
  transform: translateY(-8px);
}

/* Background Image - New Design */
.card-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  opacity: 0;
  transform: scale(1.2);
  filter: blur(0px);
}

.card-background-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(46, 143, 51, 0.95) 0%,
    rgba(46, 143, 51, 0.85) 50%,
    rgba(16, 185, 129, 0.9) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.platform-card:hover .card-background-image {
  opacity: 1;
  transform: scale(1.05);
  filter: blur(0px);
}

.platform-card:hover .card-background-image::before {
  opacity: 1;
}

/* Corner Accent - Redesigned */
.card-corner-accent {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(46, 143, 51, 0.08), transparent 70%);
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.platform-card:hover .card-corner-accent {
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(46, 143, 51, 0.15), transparent 70%);
}

.platform-card:hover {
  transform: unset !important;
  box-shadow: 0 30px 80px rgba(46, 143, 51, 0.25),
              0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(46, 143, 51, 0.3);
}

/* Shimmer Overlay Effect */
.platform-card .card-shimmer {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.8s ease;
  pointer-events: none;
  z-index: 10;
}

.platform-card:hover .card-shimmer {
  left: 100%;
  top: 100%;
}

/* Capability Header */
.capability-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
  z-index: 3;
}

.capability-number {
  font-size: 11px;
  font-weight: 800;
  color: #2e8f33;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(46, 143, 51, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1.5px solid rgba(46, 143, 51, 0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
}

.platform-card:hover .capability-number {
  background: rgba(46, 143, 51, 0.15);
  border-color: rgba(46, 143, 51, 0.4);
  transform: translateX(-5px);
  color: #ffffff;
  background: linear-gradient(135deg, #2e8f33, #25a244);
}

.capability-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2e8f33, #4ade80);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(46, 143, 51, 0.25);
  position: relative;
  overflow: hidden;
}

.capability-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.platform-card:hover .capability-icon {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 12px 40px rgba(46, 143, 51, 0.4);
  background: linear-gradient(135deg, #4ade80, #2e8f33);
}

.platform-card:hover .capability-icon::before {
  left: 100%;
}

.capability-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  position: relative;
  z-index: 1;
}

.platform-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0a2e0d;
  line-height: 1.3;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.platform-card:hover h3 {
  color: #ffffff;
  transform: translateX(5px);
}

.platform-card p {
  font-size: 15px;
  color: #4a5568;
  margin-bottom: 24px;
  line-height: 1.8;
  font-weight: 400;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.platform-card:hover p {
  color: rgba(255, 255, 255, 0.95);
}

.platform-technical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: rgba(46, 143, 51, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(46, 143, 51, 0.1);
  position: relative;
  z-index: 3;
  margin-top: auto;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.platform-card:hover .platform-technical {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.tech-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  padding: 0;
  transition: all 0.3s ease;
}

.platform-card:hover .tech-detail {
  transform: translateX(3px);
}

.tech-label {
  font-weight: 600;
  color: #2e8f33;
  transition: color 0.3s ease;
}

.platform-card:hover .tech-label {
  color: rgba(255, 255, 255, 0.9);
}

.tech-value {
  font-weight: 500;
  color: #4a5568;
  transition: color 0.3s ease;
}

.platform-card:hover .tech-value {
  color: rgba(255, 255, 255, 0.85);
}

/* Learn More Button */
.learn-more-btn {
  margin-top: 20px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  color: #2e8f33;
  border: 2px solid #2e8f33;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(46, 143, 51, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  width: 100%;
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.platform-card:hover .learn-more-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  background: #ffffff;
  color: #2e8f33;
  border-color: #ffffff;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.learn-more-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(46, 143, 51, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.learn-more-btn:hover::before {
  width: 300px;
  height: 300px;
}

.learn-more-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.learn-more-btn svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.learn-more-btn:hover svg {
  transform: translateX(6px);
}

/* Platform Modal */
.platform-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.platform-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 46, 13, 0.85);
  backdrop-filter: blur(8px);
}

.platform-modal-content {
  position: relative;
  background: white;
  border-radius: 24px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10001;
}

.platform-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10002;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.platform-modal-close:hover {
  background: white;
  transform: rotate(90deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.platform-modal-close svg {
  stroke: #0a2e0d;
}

.platform-modal-header {
  position: relative;
  height: 300px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.modal-header-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.modal-header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(10, 46, 13, 0.95), rgba(10, 46, 13, 0.7), transparent);
  color: white;
}

.modal-header-overlay h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
}

.modal-header-overlay p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.platform-modal-body {
  padding: 50px;
}

.modal-section {
  margin-bottom: 40px;
}

.modal-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0a2e0d;
  margin-bottom: 16px;
}

.modal-section p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
}

.modal-highlight {
  background: linear-gradient(135deg, rgba(46, 143, 51, 0.05), rgba(37, 162, 68, 0.05));
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid #2e8f33;
}

.modal-image-section {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-image-section img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-label {
  color: #2e8f33;
  font-weight: 700;
  min-width: 90px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-value {
  color: #0a2e0d;
  font-weight: 600;
  font-size: 13px;
}

.platform-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.platform-stats .stat-item {
  display: flex;
  flex-direction: column;
}

.platform-stats .stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.platform-stats .stat-label {
  font-size: 11px;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ===========================
   INDUSTRIES WE SERVE SECTION - COMPACT & USER-FRIENDLY
   =========================== */

.industries-compact {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.industries-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(46, 143, 51, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.industries-compact .container {
  position: relative;
  z-index: 1;
}

.industries-header-compact {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.industries-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #2e8f33;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding: 8px 20px;
  background: rgba(46, 143, 51, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(46, 143, 51, 0.2);
}

.industries-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1f35;
  margin-bottom: 16px;
  line-height: 1.2;
}

.industries-description {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
}

.industries-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.industry-compact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.industry-compact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.card-top-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
  transition: height 0.4s ease;
}

.industry-compact-card:hover .card-top-border {
  height: 6px;
}

.border-purple {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.border-green {
  background: linear-gradient(90deg, #2e8f33, #22c55e);
}

.border-red {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.border-amber {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.industry-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.icon-purple {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.icon-green {
  background: linear-gradient(135deg, #2e8f33, #22c55e);
}

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

.icon-amber {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.industry-icon i {
  font-size: 26px;
  color: #ffffff;
}

.industry-title-group h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f35;
  margin-bottom: 4px;
  line-height: 1.2;
}

.industry-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.industry-brief {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.industry-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.industry-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.industry-list li:hover {
  color: #1a1f35;
  transform: translateX(4px);
}

.industry-list li i {
  color: #2e8f33;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.industry-compact-card:hover .industry-list li i {
  transform: scale(1.2);
}

.industries-footer-compact {
  margin-top: 50px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(46, 143, 51, 0.05), rgba(34, 197, 94, 0.05));
  border-radius: 16px;
  border: 2px dashed rgba(46, 143, 51, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.industries-footer-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 143, 51, 0.1), transparent);
  animation: shimmer 4s infinite;
}

.footer-icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2e8f33, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(46, 143, 51, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.footer-icon-box i {
  font-size: 28px;
  color: #ffffff;
}

.industries-footer-compact p {
  font-size: 18px;
  font-weight: 600;
  color: #1a1f35;
  margin-bottom: 16px;
}

.contact-link-compact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #2e8f33, #22c55e);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(46, 143, 51, 0.3);
}

.contact-link-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 143, 51, 0.4);
}

.contact-link-compact i {
  transition: transform 0.3s ease;
}

.contact-link-compact:hover i {
  transform: translateX(4px);
}

/* ===========================
   CAPABILITIES SECTION
   =========================== */

.capabilities {
  padding: 80px 0;
  background: white;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.capability-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #f5f5f5 100%);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #d1fae5;
  transition: all 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(46, 143, 51, 0.1);
}

.capability-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.capability-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.capability-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.capability-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capability-features li {
  font-size: 14px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.capability-features i {
  font-size: 12px;
}

/* ===========================
   APPLICABLE DEVELOPMENT PROGRAMS SECTION
   =========================== */

.development-programs {
  padding: 80px 0;
  background: #1e293b;
  position: relative;
  overflow: hidden;
}

.development-programs-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  z-index: 0;
}

.development-programs-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(46, 143, 51, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
}

.development-programs .container {
  position: relative;
  z-index: 1;
}

.development-programs .section-header h2 {
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #d1fae5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.development-programs .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.development-programs .badge-pill {
  background: linear-gradient(135deg, #2e8f33, #4ade80);
  color: #ffffff;
  box-shadow: none !important;
  /* animation: glow-badge 2s ease-in-out infinite; */
}

@keyframes glow-badge {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  }
  50% {
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  }
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.program-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(46, 143, 51, 0.2);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease backwards;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-blue) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.program-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-light);
  box-shadow: 0 20px 60px rgba(46, 143, 51, 0.3);
}

.program-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

/* .country-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
} */

.country-flag {
    margin-top: 12px;
}

.country-flag:hover {
  /* background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3); */
  transform: translateY(-2px);
}

#development-programs.development-programs .program-card .program-header .country-flag{
  margin-top: 0px;
  display: flex;
}

.flag-icon {
  width: 28px;
  height: 28px;
  /* border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); */
  flex-shrink: 0;
}

.country-code {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.program-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.program-donor,
.program-amount,
.program-period {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.program-donor {
  background: rgba(46, 143, 51, 0.2);
  color: var(--primary-light);
  border: 1px solid rgba(46, 143, 51, 0.3);
}

.program-amount {
  background: rgba(14, 165, 233, 0.2);
  color: var(--secondary-light);
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.program-period {
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.program-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.sentinel-opportunity {
  background: linear-gradient(135deg, rgba(46, 143, 51, 0.15) 0%, rgba(14, 165, 233, 0.1) 100%);
  border-left: 3px solid var(--primary-light);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.sentinel-opportunity strong {
  color: var(--primary-light);
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Staggered animation for program cards */
.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }
.program-card:nth-child(4) { animation-delay: 0.4s; }
.program-card:nth-child(5) { animation-delay: 0.5s; }
.program-card:nth-child(6) { animation-delay: 0.6s; }
.program-card:nth-child(7) { animation-delay: 0.7s; }
.program-card:nth-child(8) { animation-delay: 0.8s; }
.program-card:nth-child(9) { animation-delay: 0.9s; }

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

@media (max-width: 1024px) {
  /* Industries We Serve - Tablet */
  .industries-compact {
    padding: 70px 0;
  }

  .industries-main-title {
    font-size: 38px;
  }

  .industries-description {
    font-size: 16px;
  }

  .industries-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .industry-compact-card {
    padding: 24px;
  }

  .industries-footer-compact {
    padding: 32px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-visual {
    height: 350px;
  }

 

  .why-now {
    padding: 70px 0;
  }

  .why-now-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-now-header h2 {
    font-size: 38px;
  }

  .why-now-card {
    padding: 36px 28px;
  }

  /* Verification Crisis - Tablet */
  .verification-crisis {
    padding: 70px 0;
  }

  .crisis-header h2 {
    font-size: 38px;
  }

  .crisis-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Platform Section - Tablet */
  .platform {
    padding: 70px 0;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Development Programs - Tablet */
  .development-programs {
    padding: 70px 0;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Testimonials - Tablet */
  .testimonials {
    padding: 70px 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  /* Capabilities - Tablet */
  .capabilities {
    padding: 70px 0;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Frameworks Marquee - Tablet */
  .frameworks-marquee {
    padding: 50px 0 70px;
  }

  .framework-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideInDown 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
    align-items: start;
  }

  .hamburger {
    display: flex;
  }

  /* Hide desktop nav buttons on mobile */
  .nav-buttons {
    display: none !important;
  }

  /* Show mobile nav buttons inside menu */
  .mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mobile-nav-buttons .btn-login,
  .mobile-nav-buttons .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-title .word {
    display: inline;
  }

  .hero-title .word::after {
    content: " ";
  }

  .hero-buttons {
    flex-direction: column;
  }


  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  .hero-visual {
    height: 300px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-badge {
    font-size: 13px;
    padding: 10px 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .satellite-container {
    width: 220px;
    height: 220px;
  }

  .satellite {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }

  .orbit {
    width: 180px;
    height: 180px;
  }

  .orbit-2 {
    width: 260px;
    height: 260px;
  }

  /* Dropdown Menu - Mobile */
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-top: 8px;
    background: transparent;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Section Headers - Mobile */
  .section-header h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .section-header p {
    font-size: 16px;
    line-height: 1.6;
  }

  .badge-pill {
    font-size: 11px;
    padding: 8px 18px;
  }

  .frameworks-marquee {
    padding: 50px 0 60px;
  }

  .marquee-header {
    margin-bottom: 30px;
  }

  .marquee-badge {
    padding: 10px 24px;
  }

  .marquee-badge i {
    font-size: 14px;
  }

  .marquee-badge span {
    font-size: 11px;
  }

  .marquee-track {
    gap: 30px;
    animation: marqueeScroll 35s linear infinite;
  }

  .framework-card {
    padding: 16px 24px;
    min-width: 240px;
  }

  .framework-icon {
    width: 45px;
    height: 45px;
  }

  .framework-icon img {
    width: 24px;
    height: 24px;
  }

  .framework-info h4 {
    font-size: 15px;
  }

  .framework-info p {
    font-size: 12px;
  }

  .benefits,
  .features,
  .technology,
  .testimonials,
  .metrics,
  .pricing,
  .cta,
  .platform,
  .capabilities,
  .development-programs,
  .why-now,
  .verification-crisis {
    padding: 60px 0;
  }

  .crisis-header h2 {
    font-size: 32px;
  }

  .crisis-header p {
    font-size: 15px;
  }

  .crisis-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .crisis-card {
    padding: 32px 28px;
  }

  .crisis-number {
    font-size: 44px;
  }

  .crisis-card h3 {
    font-size: 19px;
  }

  .crisis-card p {
    font-size: 14px;
  }

  /* Platform Section - Mobile */
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .platform-card {
    min-height: 400px;
  }

  .card-content-verification {
    padding: 28px 24px;
  }

  .capability-number {
    font-size: 11px;
  }

  .platform-card h3 {
    font-size: 20px;
  }

  .platform-card p {
    font-size: 14px;
  }

  .platform-technical {
    flex-direction: column;
    gap: 12px;
  }

  .tech-detail {
    font-size: 13px;
  }

  .learn-more-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* Platform Modal - Mobile */
  .platform-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .platform-modal-header {
    height: 220px;
  }

  .modal-header-overlay {
    padding: 24px;
  }

  .modal-header-overlay h2 {
    font-size: 26px;
  }

  .modal-header-overlay p {
    font-size: 14px;
  }

  .platform-modal-body {
    padding: 30px 24px;
  }

  .modal-section h3 {
    font-size: 20px;
  }

  .modal-section p {
    font-size: 14px;
  }

  .modal-highlight {
    padding: 20px;
  }

  /* Development Programs - Mobile */
  .development-programs {
    padding: 60px 0;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .program-card {
    padding: 28px 24px;
  }

  .program-header h3 {
    font-size: 20px;
  }

  .program-meta {
    font-size: 11px;
  }

  .program-description {
    font-size: 14px;
  }

  .sentinel-opportunity {
    font-size: 13px;
    padding: 16px;
  }

  /* Testimonials - Mobile */
  .testimonials {
    padding: 60px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-author {
    font-size: 15px;
  }

  .testimonial-role {
    font-size: 13px;
  }

  /* Capabilities - Mobile */
  .capabilities {
    padding: 60px 0;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .capability-card {
    padding: 28px 24px;
  }

  .capability-card h3 {
    font-size: 20px;
  }

  .capability-card p {
    font-size: 14px;
  }

  .why-now-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-now-header h2 {
    font-size: 36px;
  }

  .why-now-header p {
    font-size: 15px;
  }

  .why-now-card {
    padding: 36px 28px;
  }

  .why-now-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .benefits-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .solutions-grid,
  .platform-grid,
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .platform {
    padding: 80px 0;
  }

  .shape-1 {
    width: 300px;
    height: 300px;
  }

  .shape-2 {
    width: 250px;
    height: 250px;
  }

  .shape-3 {
    width: 200px;
    height: 200px;
  }

  .platform .section-header {
    margin-bottom: 50px;
  }

  .platform .section-header h2 {
    font-size: 36px;
  }

  .platform .section-header p {
    font-size: 15px;
  }

  .badge-pill {
    font-size: 10px;
    padding: 8px 18px;
  }

  .platform-card {
    min-height: 420px;
  }

  .card-content-verification {
    padding: 32px 28px;
  }

  .capability-header {
    margin-bottom: 16px;
  }

  .capability-number {
    font-size: 9px;
    padding: 5px 12px;
  }

  .capability-icon {
    width: 42px;
    height: 42px;
  }

  .capability-icon svg {
    width: 20px;
    height: 20px;
  }

  .platform-card h3 {
    font-size: 20px;
  }

  .platform-card p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .platform-technical {
    gap: 12px;
    padding-top: 20px;
  }

  .tech-detail {
    font-size: 13px;
    padding: 6px 0;
  }

  .tech-label {
    min-width: 80px;
    font-size: 12px;
  }

  .tech-value {
    font-size: 12px;
  }

  .card-corner-accent {
    width: 60px;
    height: 60px;
  }

  /* Industries We Serve - Mobile */
  .industries-compact {
    padding: 60px 0;
  }

  .industries-header-compact {
    margin-bottom: 40px;
  }

  .industries-label {
    font-size: 11px;
    padding: 6px 16px;
  }

  .industries-main-title {
    font-size: 32px;
  }

  .industries-description {
    font-size: 15px;
  }

  .industries-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-compact-card {
    padding: 20px;
  }

  .industry-card-header {
    gap: 12px;
  }

  .industry-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .industry-icon i {
    font-size: 22px;
  }

  .industry-title-group h3 {
    font-size: 18px;
  }

  .industry-subtitle {
    font-size: 11px;
  }

  .industry-brief {
    font-size: 13px;
  }

  .industry-list li {
    font-size: 12px;
  }

  .industry-list li i {
    font-size: 12px;
  }

  .industries-footer-compact {
    margin-top: 40px;
    padding: 28px 20px;
  }

  .footer-icon-box {
    width: 56px;
    height: 56px;
  }

  .footer-icon-box i {
    font-size: 24px;
  }

  .industries-footer-compact p {
    font-size: 16px;
  }

  .contact-link-compact {
    padding: 10px 24px;
    font-size: 14px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tech-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .pricing-card {
    padding: 3rem;
  }

  .pricing-card.featured {
    transform: scale(1.05);
    padding: 3.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .nav-buttons {
    gap: 8px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* Industries We Serve - Extra Small Screens */
  .industries-compact {
    padding: 50px 0;
  }

  .industries-main-title {
    font-size: 28px;
  }

  .industries-description {
    font-size: 14px;
  }

  .industries-cards-wrapper {
    gap: 16px;
  }

  .industry-compact-card {
    padding: 18px;
  }

  .industry-card-header {
    gap: 10px;
  }

  .industry-icon {
    width: 44px;
    height: 44px;
  }

  .industry-icon i {
    font-size: 20px;
  }

  .industry-title-group h3 {
    font-size: 17px;
  }

  .industry-subtitle {
    font-size: 10px;
  }

  .industry-brief {
    font-size: 12px;
  }

  .industry-list {
    gap: 8px;
  }

  .industry-list li {
    font-size: 11px;
  }

  .industry-list li i {
    font-size: 11px;
  }

  .industries-footer-compact {
    padding: 24px 16px;
  }

  .footer-icon-box {
    width: 50px;
    height: 50px;
  }

  .footer-icon-box i {
    font-size: 22px;
  }

  .industries-footer-compact p {
    font-size: 15px;
  }

  .contact-link-compact {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  .container {
    padding: 0 16px;
  }

  .navbar-content {
    padding: 12px 0;
  }

  .logo {
    font-size: 20px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .logo-image {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    gap: 12px;
  }


  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 11px;
  }

  .hero-visual {
    height: 250px;
  }

  .satellite {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }

  .orbit {
    width: 150px;
    height: 150px;
  }

  .orbit-2 {
    width: 220px;
    height: 220px;
  }

  .orbit-3 {
    width: 300px;
    height: 300px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
  }

  .frameworks-marquee {
    padding: 40px 0 50px;
  }

  .marquee-header {
    margin-bottom: 24px;
  }

  .marquee-badge {
    padding: 8px 20px;
    gap: 8px;
  }

  .marquee-badge i {
    font-size: 12px;
  }

  .marquee-badge span {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 80px;
  }

  .marquee-track {
    gap: 20px;
    animation: marqueeScroll 25s linear infinite;
  }

  .framework-card {
    padding: 14px 20px;
    min-width: 200px;
    gap: 12px;
  }

  .framework-icon {
    width: 40px;
    height: 40px;
  }

  .framework-icon img {
    width: 22px;
    height: 22px;
  }

  .framework-info h4 {
    font-size: 14px;
  }

  .framework-info p {
    font-size: 11px;
  }

  .benefits,
  .features,
  .technology,
  .testimonials,
  .metrics,
  .pricing,
  .cta,
  .why-now,
  .verification-crisis {
    padding: 40px 0;
  }

  .crisis-header h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .crisis-header p {
    font-size: 13px;
  }

  .crisis-badge {
    padding: 8px 18px;
  }

  .crisis-badge span {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .crisis-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .crisis-card {
    padding: 28px 24px;
  }

  .crisis-number {
    font-size: 38px;
  }

  .crisis-card h3 {
    font-size: 17px;
  }

  .crisis-card p {
    font-size: 13px;
  }

  .why-now-header h2 {
    font-size: 28px;
  }

  .why-now-header p {
    font-size: 14px;
  }

  .why-now-badge {
    padding: 8px 18px;
  }

  .why-now-badge span {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .why-now-card {
    padding: 32px 24px;
  }

  .why-now-card h3 {
    font-size: 18px;
  }

  .why-now-description {
    font-size: 14px;
  }

  .why-now-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .status-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .benefit-card,
  .feature-card,
  .solution-card,
  .tech-spec-card,
  .testimonial-card {
    padding: 28px 20px;
  }

  .pricing-card {
    padding: 36px 24px;
  }

  .pricing-card.featured {
    padding: 44px 28px;
  }

  .benefit-icon,
  .feature-icon,
  .solution-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .metric-number {
    font-size: 36px;
  }

  .metric-card p {
    font-size: 14px;
  }

  .benefits-grid,
  .features-grid,
  .solutions-grid,
  .testimonials-grid,
  .pricing-grid,
  .platform-grid,
  .capabilities-grid,
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .platform-card,
  .capability-card,
  .program-card {
    padding: 28px 24px;
  }

  .platform {
    padding: 60px 0;
  }

  .shape-1,
  .shape-2,
  .shape-3 {
    width: 200px;
    height: 200px;
  }

  .platform .section-header {
    margin-bottom: 40px;
  }

  .platform .section-header h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .platform .section-header p {
    font-size: 14px;
    line-height: 1.7;
  }

  .badge-pill {
    font-size: 9px;
    padding: 8px 16px;
    gap: 6px;
  }

  .badge-icon svg {
    width: 14px;
    height: 14px;
  }

  .platform-grid {
    gap: 24px;
    margin-top: 40px;
  }

  .platform-card {
    border-radius: 16px;
  }

  .capability-header {
    flex-direction: row;
    margin-bottom: 14px;
  }

  .capability-number {
    font-size: 8px;
    padding: 5px 10px;
    letter-spacing: 1px;
  }

  .capability-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .capability-icon svg {
    width: 18px;
    height: 18px;
  }

  .platform-card h3,
  .capability-card h3,
  .program-card h3 {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .platform-card p,
  .capability-card p,
  .program-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .platform-technical {
    gap: 10px;
    padding-top: 18px;
  }

  .tech-detail {
    font-size: 12px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
  }

  .tech-label {
    min-width: 75px;
    font-size: 11px;
  }

  .tech-value {
    font-size: 11px;
  }

  .card-corner-accent {
    width: 50px;
    height: 50px;
    border-radius: 0 16px 0 80%;
  }

  .platform-card:hover {
    transform: translateY(-6px) scale(1.01);
  }

  .learn-more-btn {
    padding: 11px 22px;
    font-size: 13px;
  }

  .platform-modal-content {
    width: 92%;
  }

  .platform-modal-header {
    height: 200px;
  }

  .modal-header-overlay h2 {
    font-size: 24px;
  }

  .platform-modal-body {
    padding: 28px 20px;
  }

  .modal-section h3 {
    font-size: 18px;
  }

  .program-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .country-flag {
    padding: 5px 10px;
    gap: 6px;
  }

  .flag-icon {
    width: 24px;
    height: 24px;
  }

  .country-code {
    font-size: 12px;
  }

  .sentinel-opportunity {
    font-size: 12px;
    padding: 10px 12px;
  }

  .platform-stats {
    grid-template-columns: 1fr 1fr;
  }

  .tech-specs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .price .currency {
    font-size: 40px;
  }

  .pricing-card h3 {
    font-size: 24px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta p {
    font-size: 16px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 13px;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 14px;
  }

  .footer-section h4 {
    font-size: 15px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 13px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .footer-links {
    gap: 16px;
  }
}

/* ===========================
   FRAUD CRISIS SECTION
   =========================== */

.fraud-crisis {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.fraud-crisis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(46, 143, 51, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.fraud-crisis-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.fraud-crisis-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #1a1a1a 0%, #2e8f33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.fraud-crisis-subtitle {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.fraud-crisis-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease-out both;
}

.fraud-crisis-card:nth-child(2) {
  animation-delay: 0.1s;
}

.fraud-crisis-card:nth-child(3) {
  animation-delay: 0.2s;
}

.fraud-crisis-card:nth-child(4) {
  animation-delay: 0.3s;
}

.fraud-crisis-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-blue) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fraud-crisis-card:hover::before {
  transform: scaleX(1);
}

.fraud-crisis-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Current State Card - Green Theme */
.current-state-card {
  border-left: 5px solid #2e8f33;
  background: linear-gradient(135deg, #f0fdf4 0%, white 100%);
}

.current-state-card .card-header {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.current-state-card .card-header i {
  font-size: 32px;
  color: #2e8f33;
  animation: pulse 2s ease-in-out infinite;
}

.current-state-card .card-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e6b23;
  margin: 0;
}

.verification-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.verification-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border-left: 4px solid #6ee7b7;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.verification-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #2e8f33 0%, #1e6b23 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.verification-item:hover::before {
  transform: scaleY(1);
}

.verification-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(46, 143, 51, 0.15);
}

.verification-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #2e8f33;
}

.verification-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.verification-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Documented Case Card - Green Theme */
.documented-case-card {
  border-left: 5px solid #4ade80;
  background: linear-gradient(135deg, #ecfdf5 0%, white 100%);
}

.documented-case-card .card-header {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.documented-case-card .card-header i {
  font-size: 32px;
  color: #059669;
}

.documented-case-card .card-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2e8f33;
  margin: 0;
}

.case-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
}

.case-content strong {
  color: #2e8f33;
  font-weight: 700;
  font-size: 18px;
}

.case-content em {
  color: #64748b;
  font-style: italic;
}

/* Traditional M&E Card - Green Theme */
.traditional-me-card {
  border-left: 5px solid #0ea5e9;
  background: linear-gradient(135deg, #f0f9ff 0%, white 100%);
}

.traditional-me-card .card-header {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.traditional-me-card .card-header i {
  font-size: 32px;
  color: #0284c7;
}

.traditional-me-card .card-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0369a1;
  margin: 0;
}

.me-content .me-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
}

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

.me-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  margin-bottom: 12px;
  border-left: 3px solid #7dd3fc;
  transition: all 0.3s ease;
}

.me-list li:hover {
  transform: translateX(5px);
  border-left-color: #0ea5e9;
  box-shadow: 0 5px 20px rgba(14, 165, 233, 0.15);
}

.me-list li i {
  color: #0ea5e9;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Solution CTA */
.fraud-crisis-cta {
  background: linear-gradient(135deg, #2e8f33 0%, #059669 100%);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.fraud-crisis-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-content-wrapper {
  position: relative;
  z-index: 1;
}

.fraud-crisis-cta h3 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
}

.fraud-crisis-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.fraud-crisis-cta .btn-primary {
  background: white;
  color: var(--primary-color);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fraud-crisis-cta .btn-primary:hover {
  background: #f0fdf4;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .fraud-crisis {
    padding: 60px 0;
  }

  .fraud-crisis-title {
    font-size: 28px;
  }

  .fraud-crisis-subtitle {
    font-size: 16px;
  }

  .fraud-crisis-card {
    padding: 25px;
    margin-bottom: 20px;
  }

  .current-state-card .card-header,
  .documented-case-card .card-header,
  .traditional-me-card .card-header {
    padding: 15px 20px;
    flex-direction: column;
    text-align: center;
  }

  .current-state-card .card-header h3,
  .documented-case-card .card-header h3,
  .traditional-me-card .card-header h3 {
    font-size: 18px;
  }

  .verification-item {
    flex-direction: column;
    padding: 15px;
  }

  .verification-content h4 {
    font-size: 16px;
  }

  .verification-content p {
    font-size: 14px;
  }

  .case-content p,
  .me-content .me-intro {
    font-size: 14px;
  }

  .fraud-crisis-cta {
    padding: 30px 20px;
  }

  .fraud-crisis-cta h3 {
    font-size: 24px;
  }

  .fraud-crisis-cta p {
    font-size: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .fraud-crisis-title {
    font-size: 36px;
  }

  .verification-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra Small Devices (max-width: 360px) */
@media (max-width: 360px) {
  .platform {
    padding: 50px 0;
  }

  .platform .section-header h2 {
    font-size: 26px;
  }

  .platform .section-header p {
    font-size: 13px;
  }

  .badge-pill {
    font-size: 8px;
    padding: 6px 14px;
  }

  .platform-grid {
    gap: 20px;
  }

  .platform-card {
    min-height: 380px;
  }

  .card-content {
    padding: 24px 20px;
  }

  .capability-number {
    font-size: 7px;
    padding: 4px 8px;
  }

  .capability-icon {
    width: 36px;
    height: 36px;
  }

  .capability-icon svg {
    width: 16px;
    height: 16px;
  }

  .platform-card h3 {
    font-size: 17px;
  }

  .platform-card p {
    font-size: 13px;
  }

  .tech-label,
  .tech-value {
    font-size: 10px;
  }

  .tech-label {
    min-width: 70px;
  }

  .learn-more-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .platform-modal-close {
    width: 38px;
    height: 38px;
    top: 15px;
    right: 15px;
  }

  .platform-modal-header {
    height: 180px;
  }

  .modal-header-overlay {
    padding: 20px;
  }

  .modal-header-overlay h2 {
    font-size: 22px;
  }

  .modal-header-overlay p {
    font-size: 13px;
  }

  .platform-modal-body {
    padding: 24px 18px;
  }

  .modal-section h3 {
    font-size: 17px;
  }

  .modal-section p {
    font-size: 13px;
  }

  .modal-highlight {
    padding: 18px;
  }
}
/* ===========================
   POLICY ALIGNMENT SHOWCASE SECTION
   =========================== */

.policy-alignment-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f9ff 50%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.policy-alignment-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(46, 143, 51, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.policy-alignment-showcase .container {
    position: relative;
    z-index: 1;
}

/* Header Section */
.policy-showcase-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
    animation: fadeInUp 0.8s ease;
}

.policy-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(46, 143, 51, 0.12) 0%, rgba(14, 165, 233, 0.12) 100%);
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(46, 143, 51, 0.25);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(46, 143, 51, 0.1);
}

.policy-badge-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

.policy-badge-premium i {
    font-size: 18px;
    color: #2e8f33;
    position: relative;
    z-index: 1;
}

.policy-badge-premium span {
    font-size: 12px;
    font-weight: 800;
    color: #2e8f33;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.policy-main-title {
    font-size: 52px;
    font-weight: 900;
    color: #0a2e0d;
    margin-bottom: 24px;
    line-height: 1.15;
    background: linear-gradient(135deg, #0a2e0d 0%, #2e8f33 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.policy-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
    font-weight: 400;
}

/* Frameworks Grid */
.policy-frameworks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Framework Item Card */
.policy-framework-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    animation: fadeInUp 0.8s ease backwards;
}

.policy-framework-item:nth-child(1) {
    animation-delay: 0.1s;
}

.policy-framework-item:nth-child(2) {
    animation-delay: 0.2s;
}

.policy-framework-item:nth-child(3) {
    animation-delay: 0.3s;
}

.policy-framework-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Accent Bar */
.framework-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
    transition: height 0.4s ease;
}

.policy-framework-item:hover .framework-accent-bar {
    height: 8px;
}

/* Color Variants */
.framework-purple {
    --accent-color-1: #8b5cf6;
    --accent-color-2: #a78bfa;
    --icon-bg: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(167, 139, 250, 0.1));
    --hover-shadow: rgba(139, 92, 246, 0.25);
}

.framework-teal {
    --accent-color-1: #14b8a6;
    --accent-color-2: #5eead4;
    --icon-bg: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(94, 234, 212, 0.1));
    --hover-shadow: rgba(20, 184, 166, 0.25);
}

.framework-amber {
    --accent-color-1: #f59e0b;
    --accent-color-2: #fbbf24;
    --icon-bg: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.1));
    --hover-shadow: rgba(245, 158, 11, 0.25);
}

.framework-emerald {
    --accent-color-1: #10b981;
    --accent-color-2: #34d399;
    --icon-bg: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.1));
    --hover-shadow: rgba(16, 185, 129, 0.25);
}

/* Header Section */
.framework-header-section {
    padding: 36px 36px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.framework-icon-premium {
    width: 70px;
    height: 70px;
    background: var(--icon-bg);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.framework-icon-premium i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.framework-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.policy-framework-item:hover .framework-icon-premium {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.framework-title-premium {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

/* Description Box */
.framework-description-box {
    padding: 0 36px 28px;
}

.framework-description-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.framework-description-box strong {
    color: #1e293b;
    font-weight: 700;
}

/* Footer Tag */
.framework-footer-tag {
    padding: 20px 36px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.tag-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 12px var(--hover-shadow);
    transition: all 0.3s ease;
}

.policy-framework-item:hover .tag-label {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--hover-shadow);
}

/* Hover Effects */
.policy-framework-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px var(--hover-shadow);
    border-color: var(--accent-color-1);
}

/* Responsive Design for Policy Alignment */
@media (max-width: 1024px) {
    .policy-alignment-showcase {
        padding: 80px 0;
    }

    .policy-main-title {
        font-size: 42px;
    }

    .policy-subtitle {
        font-size: 17px;
    }

    .policy-frameworks-grid {
        gap: 32px;
    }

    .framework-header-section {
        padding: 32px 32px 20px;
    }

    .framework-description-box {
        padding: 0 32px 24px;
    }

    .framework-footer-tag {
        padding: 18px 32px;
    }
}

@media (max-width: 768px) {
    .policy-alignment-showcase {
        padding: 60px 0;
    }

    .policy-showcase-header {
        margin-bottom: 50px;
    }

    .policy-badge-premium {
        padding: 12px 24px;
    }

    .policy-badge-premium i {
        font-size: 16px;
    }

    .policy-badge-premium span {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .policy-main-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .policy-subtitle {
        font-size: 16px;
    }

    .policy-frameworks-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .framework-header-section {
        padding: 28px 28px 18px;
        gap: 16px;
    }

    .framework-icon-premium {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .framework-icon-premium i {
        font-size: 28px;
    }

    .framework-title-premium {
        font-size: 21px;
    }

    .framework-description-box {
        padding: 0 28px 22px;
    }

    .framework-description-box p {
        font-size: 14px;
    }

    .framework-footer-tag {
        padding: 16px 28px;
    }

    .tag-label {
        font-size: 10px;
        padding: 7px 16px;
    }
}

@media (max-width: 480px) {
    .policy-alignment-showcase {
        padding: 50px 0;
    }

    .policy-showcase-header {
        margin-bottom: 40px;
    }

    .policy-badge-premium {
        padding: 10px 20px;
        gap: 10px;
    }

    .policy-badge-premium i {
        font-size: 14px;
    }

    .policy-badge-premium span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .policy-main-title {
        font-size: 28px;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .policy-subtitle {
        font-size: 15px;
        line-height: 1.7;
    }

    .policy-frameworks-grid {
        gap: 24px;
    }

    .framework-header-section {
        padding: 24px 24px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .framework-icon-premium {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .framework-icon-premium i {
        font-size: 26px;
    }

    .framework-title-premium {
        font-size: 19px;
    }

    .framework-description-box {
        padding: 0 24px 20px;
    }

    .framework-description-box p {
        font-size: 13px;
        line-height: 1.7;
    }

    .framework-footer-tag {
        padding: 14px 24px;
    }

    .tag-label {
        font-size: 9px;
        padding: 6px 14px;
        letter-spacing: 1px;
    }

    .policy-framework-item:hover {
        transform: translateY(-8px) scale(1.01);
    }
}


/* ===========================
   DATA SOVEREIGNTY PREMIUM SECTION
   =========================== */

.data-sovereignty-premium {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.data-sovereignty-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(46, 143, 51, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.sovereignty-header-zone {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.sovereignty-badge-elite {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2e8f33 0%, #1e6b23 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(46, 143, 51, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sovereignty-badge-elite:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(46, 143, 51, 0.35);
}

.sovereignty-badge-elite i {
    font-size: 16px;
}

.sovereignty-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0f172a 0%, #2e8f33 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sovereignty-hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
}

/* Sovereignty Pillars Grid */
.sovereignty-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.sovereignty-pillar-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.8s ease-out backwards;
}

.sovereignty-pillar-card:nth-child(1) {
    animation-delay: 0.1s;
}

.sovereignty-pillar-card:nth-child(2) {
    animation-delay: 0.2s;
}

.sovereignty-pillar-card:nth-child(3) {
    animation-delay: 0.3s;
}

.sovereignty-pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(46, 143, 51, 0.15);
}

.pillar-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2e8f33, #0ea5e9, #2e8f33);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sovereignty-pillar-card:hover .pillar-glow-effect {
    opacity: 1;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Pillar Image Container */
.pillar-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.pillar-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sovereignty-pillar-card:hover .pillar-visual {
    transform: scale(1.1);
}

.pillar-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.7) 100%);
}

/* Pillar Content */
.pillar-content-zone {
    padding: 32px;
}

.pillar-label-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #2e8f33;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(46, 143, 51, 0.2);
}

.pillar-label-tag i {
    font-size: 13px;
}

.pillar-ownership .pillar-label-tag {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #0ea5e9;
    border-color: rgba(14, 165, 233, 0.2);
}

.pillar-deployment .pillar-label-tag {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
    border-color: rgba(217, 119, 6, 0.2);
}

.pillar-security .pillar-label-tag {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #db2777;
    border-color: rgba(219, 39, 119, 0.2);
}

.pillar-headline {
    font-size: 25px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.pillar-description-box {
    margin-bottom: 24px;
}

.pillar-description-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

/* Pillar Features List */
.pillar-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

.feature-check-item i {
    color: #2e8f33;
    font-size: 16px;
    flex-shrink: 0;
}

/* Trust Indicators Bar */
.sovereignty-trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: white;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.trust-indicator-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    transition: all 0.3s ease;
}

.trust-indicator-item:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    transform: translateY(-4px);
}

.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2e8f33 0%, #1e6b23 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 24px;
    color: white;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-label {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.trust-sublabel {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sovereignty-hero-title {
        font-size: 46px;
    }

    .sovereignty-pillars-grid {
        gap: 30px;
    }

    .pillar-content-zone {
        padding: 28px;
    }

    .scroll-image-section .scrollable-content-container .content-block{
        padding-top: 0px;
    }

    .scroll-image-section .scrollable-content-container .content-block .content-stats{
        margin-top: 0px;
    }
}

@media (max-width: 992px) {
    .data-sovereignty-premium {
        padding: 80px 0;
    }

    .sovereignty-header-zone {
        margin-bottom: 60px;
    }

    .sovereignty-hero-title {
        font-size: 40px;
    }

    .sovereignty-hero-subtitle {
        font-size: 18px;
    }

    .sovereignty-pillars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sovereignty-trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px;
    }

    .scroll-image-section .scrollable-content-container .content-block{
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (max-width: 768px) {
    .data-sovereignty-premium {
        padding: 60px 0;
    }

    .sovereignty-header-zone {
        margin-bottom: 50px;
    }

    .sovereignty-badge-elite {
        padding: 10px 22px;
        font-size: 11px;
        gap: 8px;
    }

    .sovereignty-badge-elite i {
        font-size: 14px;
    }

    .sovereignty-hero-title {
        font-size: 34px;
    }

    .sovereignty-hero-subtitle {
        font-size: 16px;
    }

    .pillar-image-container {
        height: 200px;
    }

    .pillar-content-zone {
        padding: 24px;
    }

    .pillar-headline {
        font-size: 22px;
    }

    .pillar-description-box p {
        font-size: 14px;
    }

    .sovereignty-trust-bar {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }

    .trust-indicator-item {
        padding: 16px;
    }

    .trust-icon {
        width: 48px;
        height: 48px;
    }

    .trust-icon i {
        font-size: 20px;
    }

    .trust-label {
        font-size: 14px;
    }

    .trust-sublabel {
        font-size: 12px;
    }

    .scroll-image-section .scroll-image-wrapper .image-label{
        font-size: 16px
    }

    .scroll-image-section .scroll-image-wrapper .image-label::before{
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .data-sovereignty-premium {
        padding: 50px 0;
    }

    .sovereignty-header-zone {
        margin-bottom: 40px;
    }

    .sovereignty-hero-title {
        font-size: 28px;
    }

    .sovereignty-hero-subtitle {
        font-size: 15px;
    }

    .pillar-image-container {
        height: 180px;
    }

    .pillar-content-zone {
        padding: 20px;
    }

    .pillar-headline {
        font-size: 20px;
    }

    .pillar-features-list {
        gap: 10px;
    }

    .feature-check-item {
        font-size: 13px;
    }

    .feature-check-item i {
        font-size: 14px;
    }

    .sovereignty-trust-bar {
        padding: 20px;
    }

    .scroll-image-section .scroll-image-wrapper .image-label{
        font-size: 14px;
    }

    .scroll-image-section .scroll-image-wrapper .image-label::before{
        width: 6px;
        height: 6px;
    }

    #development-programs.development-programs .program-card .program-header h3{
      margin-bottom: 0px;
    }

    section#home.hero .hero-buttons{
      flex-direction: column;
    }
}

/* ===========================
   AGROVUE VERIFY SECTION - NEW PREMIUM SECTION
   =========================== */

.agrovue-verify-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #0a1628 0%, #0f1f3a 50%, #1a2942 100%);
    overflow: hidden;
}

.verify-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.3;
    pointer-events: none;
}

.verify-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: floatOrb 25s ease-in-out infinite;
}

.verify-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 143, 51, 0.25) 0%, transparent 70%);
    top: -250px;
    right: -150px;
    animation-delay: 0s;
}

.verify-gradient-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 143, 51, 0.2) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    animation-delay: 8s;
}

.verify-gradient-orb.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 16s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(40px, -40px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 40px) scale(1.05);
    }
}

/* Verify Section Header */
.verify-section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.verify-flagship-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 143, 51, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #2e8f33;
    margin-bottom: 28px;
    border: 1px solid rgba(46, 143, 51, 0.3);
    animation: fadeInDown 0.8s ease;
    transition: all 0.3s ease;
}

.verify-flagship-badge:hover {
    background: rgba(46, 143, 51, 0.25);
    border-color: rgba(46, 143, 51, 0.5);
    transform: translateY(-2px);
}

.verify-flagship-badge i {
    font-size: 16px;
    color: #2e8f33;
}

.verify-section-title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #ffffff;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.verify-section-title .title-brand {
    color: #ffffff;
}

.verify-section-title .title-highlight {
    background: linear-gradient(135deg, #2e8f33 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verify-section-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Verify Cards Grid */
.verify-cards-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.verify-card {
    position: relative;
    animation: fadeInUp 0.8s ease both;
}

.verify-card-inner {
    position: relative;
    background: rgba(15, 30, 50, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(46, 143, 51, 0.2);
    border-radius: 24px;
    padding: 48px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.verify-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 143, 51, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.verify-card:hover .verify-card-inner {
    transform: translateY(-12px);
    border-color: rgba(46, 143, 51, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(46, 143, 51, 0.15);
}

.verify-card:hover .verify-card-inner::before {
    opacity: 1;
}

.verify-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 143, 51, 0.2);
    border-radius: 16px;
    margin-bottom: 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.verify-card-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(46, 143, 51, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.verify-card:hover .verify-card-icon::before {
    width: 120px;
    height: 120px;
}

.verify-card-icon i {
    font-size: 32px;
    color: #2e8f33;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.verify-card:hover .verify-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(46, 143, 51, 0.3);
}

.verify-card:hover .verify-card-icon i {
    color: #4ade80;
    transform: scale(1.1);
}

.verify-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.verify-card-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    flex-grow: 1;
}

.verify-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2e8f33;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.verify-learn-more:hover {
    color: #4ade80;
    gap: 14px;
}

.verify-learn-more i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.verify-learn-more:hover i {
    transform: translateX(4px);
}

/* Responsive Design for Connect Section */
@media (max-width: 1200px) {
    .connect-cards-grid {
        gap: 30px;
    }

    .connect-card-inner {
        padding: 40px 30px;
    }

    .connect-section-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .agrovue-connect-section {
        padding: 100px 0;
    }

    .connect-section-header {
        margin-bottom: 60px;
    }

    .connect-section-title {
        font-size: 42px;
    }

    .connect-section-description {
        font-size: 17px;
    }

    .connect-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }

    .connect-card-inner {
        padding: 44px 36px;
    }

    .connect-gradient-orb.orb-1 {
        width: 450px;
        height: 450px;
    }

    .connect-gradient-orb.orb-2 {
        width: 400px;
        height: 400px;
    }

    .connect-gradient-orb.orb-3 {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .agrovue-connect-section {
        padding: 80px 0;
    }

    .connect-section-header {
        margin-bottom: 50px;
    }

    .connect-flagship-badge {
        padding: 10px 20px;
        font-size: 12px;
        margin-bottom: 24px;
    }

    .connect-section-title {
        font-size: 36px;
    }

    .connect-section-description {
        font-size: 16px;
    }

    .connect-card-inner {
        padding: 36px 28px;
    }

    .connect-card-icon {
        width: 70px;
        height: 70px;
    }

    .connect-card-icon i {
        font-size: 32px;
    }

    .connect-card-title {
        font-size: 24px;
    }

    .connect-card-description {
        font-size: 14px;
    }

    .connect-gradient-orb.orb-1 {
        width: 350px;
        height: 350px;
    }

    .connect-gradient-orb.orb-2 {
        width: 300px;
        height: 300px;
    }

    .connect-gradient-orb.orb-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .agrovue-connect-section {
        padding: 60px 0;
    }

    .connect-section-header {
        margin-bottom: 40px;
    }

    .connect-flagship-badge {
        padding: 8px 16px;
        font-size: 11px;
        margin-bottom: 20px;
    }

    .connect-flagship-badge i {
        font-size: 14px;
    }

    .connect-section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .connect-section-description {
        font-size: 15px;
    }

    .connect-cards-grid {
        gap: 24px;
    }

    .connect-card-inner {
        padding: 32px 24px;
    }

    .connect-card-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .connect-card-icon i {
        font-size: 28px;
    }

    .connect-card-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .connect-card-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .connect-card-info {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .connect-link {
        font-size: 15px;
    }

    .connect-status {
        font-size: 14px;
    }

    .connect-card-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .connect-gradient-orb.orb-1,
    .connect-gradient-orb.orb-2,
    .connect-gradient-orb.orb-3 {
        width: 250px;
        height: 250px;
    }
}

/* ===========================
   MODERN FOOTER CONTACT SECTION (ORIGINAL)
   =========================== */

.footer-contact-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

.footer-contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.4;
}

.contact-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.contact-gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 143, 51, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.contact-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.contact-gradient-orb.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

.footer-contact-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.footer-contact-content {
    color: white;
}

.contact-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 143, 51, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #4ade80;
    margin-bottom: 24px;
    border: 1px solid rgba(74, 222, 128, 0.3);
    animation: fadeInUp 0.8s ease;
}

.contact-badge-modern i {
    font-size: 14px;
}

.footer-contact-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.footer-contact-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.contact-info-quick {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: all 0.3s ease;
}

.quick-info-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 143, 51, 0.2);
    border-radius: 10px;
    color: #4ade80;
    font-size: 16px;
    transition: all 0.3s ease;
}

.quick-info-item:hover i {
    background: rgba(46, 143, 51, 0.3);
    transform: scale(1.1);
}

.footer-contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group-modern {
    position: relative;
}

.form-input-modern,
.form-textarea-modern,
.form-select-modern {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-select-modern {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
}

.form-select-modern option {
    background: #1e293b;
    color: white;
}

.form-input-modern:focus,
.form-textarea-modern:focus,
.form-select-modern:focus {
    border-bottom-color: #4ade80;
}

.form-input-modern::placeholder,
.form-textarea-modern::placeholder {
    color: transparent;
}

.form-label-modern {
    position: absolute;
    left: 0;
    top: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-label-modern.select-label-modern {
    top: -20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.form-label-modern.file-label-modern {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
}

.form-input-modern:focus ~ .form-label-modern,
.form-input-modern:not(:placeholder-shown) ~ .form-label-modern,
.form-textarea-modern:focus ~ .form-label-modern,
.form-textarea-modern:not(:placeholder-shown) ~ .form-label-modern {
    top: -20px;
    font-size: 12px;
    color: #4ade80;
    font-weight: 600;
}

.form-select-modern:focus ~ .form-label-modern.select-label-modern,
.form-select-modern:valid ~ .form-label-modern.select-label-modern {
    color: #4ade80;
}

.form-input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2e8f33, #4ade80);
    transition: width 0.4s ease;
}

.form-input-modern:focus ~ .form-input-border,
.form-textarea-modern:focus ~ .form-input-border,
.form-select-modern:focus ~ .form-input-border {
    width: 100%;
}

.form-textarea-modern {
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
}

/* File Upload Styles */
.file-upload-modern {
    margin-top: 10px;
}

.file-upload-wrapper-modern {
    position: relative;
}

.file-input-modern {
    display: none;
}

.file-upload-label-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.file-upload-label-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4ade80;
    color: #4ade80;
}

.file-upload-label-modern i {
    font-size: 20px;
}

.file-text-modern {
    font-weight: 500;
}

.file-info-modern {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.file-info-modern i {
    font-size: 12px;
}

/* Form Action Buttons */
.form-actions-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 10px;
}

.btn-submit-modern,
.btn-reset-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-submit-modern {
    background: linear-gradient(135deg, #2e8f33 0%, #4ade80 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(46, 143, 51, 0.3);
}

.btn-reset-modern {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-submit-modern::before,
.btn-reset-modern::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 ease;
}

.btn-submit-modern:hover::before,
.btn-reset-modern:hover::before {
    left: 100%;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 143, 51, 0.4);
}

.btn-reset-modern:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-submit-modern:active,
.btn-reset-modern:active {
    transform: translateY(-1px);
}

.btn-submit-modern i,
.btn-reset-modern i {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover i {
    transform: translateX(5px);
}

.btn-reset-modern:hover i {
    transform: rotate(360deg);
}

.form-message-modern {
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    display: none;
    animation: slideInUp 0.4s ease;
}

.form-message-modern.success {
    display: block;
    background: rgba(46, 143, 51, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.form-message-modern.error {
    display: block;
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(252, 165, 165, 0.3);
}

/* Responsive Design for Footer Contact Form Section */
@media (max-width: 1024px) {
    .footer-contact-wrapper {
        gap: 60px;
    }

    .footer-contact-title {
        font-size: 40px;
    }

    .footer-contact-form-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .footer-contact-section {
        padding: 80px 0;
    }

    .footer-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-contact-title {
        font-size: 36px;
    }

    .footer-contact-description {
        font-size: 16px;
    }

    .footer-contact-form-container {
        padding: 35px;
    }

    .form-row-footer {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-actions-modern {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-gradient-orb.orb-1 {
        width: 350px;
        height: 350px;
    }

    .contact-gradient-orb.orb-2 {
        width: 300px;
        height: 300px;
    }

    .contact-gradient-orb.orb-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .footer-contact-section {
        padding: 60px 0;
    }

    .footer-contact-title {
        font-size: 28px;
    }

    .footer-contact-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .footer-contact-form-container {
        padding: 25px;
        border-radius: 16px;
    }

    .footer-contact-form {
        gap: 25px;
    }

    .btn-submit-modern,
    .btn-reset-modern {
        padding: 16px 32px;
        font-size: 15px;
    }

    .quick-info-item {
        font-size: 14px;
    }

    .quick-info-item i {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .file-upload-label-modern {
        padding: 16px;
        font-size: 14px;
    }

    .file-info-modern {
        font-size: 11px;
    }
}

/* Responsive Design for Verify Section */
@media (max-width: 1200px) {
    .verify-cards-grid {
        gap: 30px;
    }

    .verify-card-inner {
        padding: 40px 30px;
    }

    .verify-section-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .agrovue-verify-section {
        padding: 100px 0;
    }

    .verify-section-header {
        margin-bottom: 60px;
    }

    .verify-section-title {
        font-size: 42px;
    }

    .verify-section-description {
        font-size: 17px;
    }

    .verify-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }

    .verify-card-inner {
        padding: 44px 36px;
    }

    .verify-gradient-orb.orb-1 {
        width: 450px;
        height: 450px;
    }

    .verify-gradient-orb.orb-2 {
        width: 400px;
        height: 400px;
    }

    .verify-gradient-orb.orb-3 {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .agrovue-verify-section {
        padding: 80px 0;
    }

    .verify-section-header {
        margin-bottom: 50px;
    }

    .verify-flagship-badge {
        padding: 10px 20px;
        font-size: 12px;
        margin-bottom: 24px;
    }

    .verify-section-title {
        font-size: 36px;
    }

    .verify-section-description {
        font-size: 16px;
    }

    .verify-card-inner {
        padding: 36px 28px;
    }

    .verify-card-icon {
        width: 64px;
        height: 64px;
    }

    .verify-card-icon i {
        font-size: 28px;
    }

    .verify-card-title {
        font-size: 22px;
    }

    .verify-card-description {
        font-size: 14px;
    }

    .verify-gradient-orb.orb-1 {
        width: 350px;
        height: 350px;
    }

    .verify-gradient-orb.orb-2 {
        width: 300px;
        height: 300px;
    }

    .verify-gradient-orb.orb-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .agrovue-verify-section {
        padding: 60px 0;
    }

    .verify-section-header {
        margin-bottom: 40px;
    }

    .verify-flagship-badge {
        padding: 8px 16px;
        font-size: 11px;
        margin-bottom: 20px;
    }

    .verify-flagship-badge i {
        font-size: 14px;
    }

    .verify-section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .verify-section-description {
        font-size: 15px;
    }

    .verify-cards-grid {
        gap: 24px;
    }

    .verify-card-inner {
        padding: 32px 24px;
    }

    .verify-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 24px;
    }

    .verify-card-icon i {
        font-size: 26px;
    }

    .verify-card-title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .verify-card-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .verify-learn-more {
        font-size: 14px;
    }

    .verify-gradient-orb.orb-1,
    .verify-gradient-orb.orb-2,
    .verify-gradient-orb.orb-3 {
        width: 250px;
        height: 250px;
    }
}

/* ===========================
   SCROLL-TRIGGERED IMAGE SECTION - PREMIUM DESIGN
   =========================== */

.scroll-image-section {
    position: relative;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0f1419 100%);
    padding: 0;
    overflow: visible;
}

/* Animated Background Elements */
.scroll-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(46, 143, 51, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.scroll-image-wrapper {
    position: relative;
    display: flex;
    min-height: 400vh;
    z-index: 1;
}

/* Fixed Image Container - Sticky Left Side with Premium Design */
.fixed-image-container {
    position: sticky;
    top: 120px;
    left: 0;
    width: 45%;
    height: calc(100vh - 160px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    margin: 80px 0;
}

/* Decorative Frame Around Image */
.fixed-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20px;
    right: 20px;
    bottom: -20px;
    border: 2px solid rgba(46, 143, 51, 0.2);
    border-radius: 24px;
    pointer-events: none;
    z-index: -1;
}

.fixed-image-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    right: -20px;
    bottom: 20px;
    background: linear-gradient(135deg, rgba(46, 143, 51, 0.1), rgba(14, 165, 233, 0.05));
    border-radius: 24px;
    pointer-events: none;
    z-index: -2;
    filter: blur(20px);
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-stack:hover {
    transform: scale(1.02) translateZ(20px);
}

/* Glowing Border Animation */
.image-stack::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        #2e8f33,
        #0ea5e9,
        #2e8f33,
        #0ea5e9
    );
    background-size: 300% 300%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    animation: gradientShift 6s ease infinite;
    transition: opacity 0.4s ease;
}

.image-stack:hover::before {
    opacity: 0.6;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.scroll-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.scroll-image.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.scroll-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) contrast(1.1);
}

/* Premium Image Overlay with Gradient */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    background: linear-gradient(
        to top,
        rgba(10, 15, 28, 0.95) 0%,
        rgba(10, 15, 28, 0.7) 40%,
        rgba(10, 15, 28, 0.3) 70%,
        transparent 100%
    );
    z-index: 3;
    pointer-events: none;
    backdrop-filter: blur(8px);
}

.image-label {
    color: white;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    position: relative;
    padding-left: 20px;
}

.image-label::before {
    content: '';
    position: absolute;
    left: 3%;
    top: 38%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(to bottom, #2e8f33, #0ea5e9);
    border-radius: 2px;
}

/* Scrollable Content Container - Right Side */
.scrollable-content-container {
    position: relative;
    width: 55%;
    background: transparent;
    z-index: 2;
    padding-left: 40px;
}

.content-block {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 80px 60px 60px;
    opacity: 0.3;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
}

.content-block.main-content-block{
    padding: 100px 80px 100px 60px;
}

.content-block.active {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Badge Design */
.content-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(46, 143, 51, 0.15), rgba(46, 143, 51, 0.05));
    color: #2e8f33;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1.5px solid rgba(46, 143, 51, 0.3);
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(46, 143, 51, 0.1);
}

.content-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #2e8f33;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(46, 143, 51, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.content-block h2 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Content Features - Premium Card Style */
.content-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #2e8f33, #0ea5e9);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(46, 143, 51, 0.1), rgba(14, 165, 233, 0.05));
    border-color: rgba(46, 143, 51, 0.3);
    box-shadow: 0 8px 30px rgba(46, 143, 51, 0.15);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #2e8f33, #1e6b23);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(46, 143, 51, 0.2), rgba(46, 143, 51, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e8f33;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(46, 143, 51, 0.2);
}

.feature-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.4px;
}

.feature-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Content Stats - Premium Design */
.content-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: left;
    padding: 28px;
    background: linear-gradient(135deg, rgba(46, 143, 51, 0.08), rgba(14, 165, 233, 0.04));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2e8f33, #0ea5e9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(46, 143, 51, 0.15), rgba(14, 165, 233, 0.08));
    border-color: rgba(46, 143, 51, 0.3);
    box-shadow: 0 12px 40px rgba(46, 143, 51, 0.2);
}

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

.stat-item:hover .stat-number {
    transform: scale(1.05);
    color: #2e8f33;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff, #2e8f33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Responsive Styles for Scroll Image Section */
@media (max-width: 1400px) {
    .fixed-image-container {
        width: 48%;
        padding: 30px 40px;
    }

    .scrollable-content-container {
        width: 52%;
        padding-left: 30px;
    }

    .content-block {
        padding: 80px 60px 80px 40px;
    }

    .content-block h2 {
        font-size: 46px;
    }
}

@media (max-width: 1200px) {
    .scroll-image-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .fixed-image-container {
        position: relative;
        top: 0;
        width: 100%;
        height: 600px;
        padding: 40px;
        margin: 0;
    }

    .fixed-image-container::before,
    .fixed-image-container::after {
        display: none;
    }

    .scrollable-content-container {
        width: 100%;
        padding-left: 0;
    }

    .content-block {
        min-height: auto;
        padding: 80px 60px;
    }

    .content-block h2 {
        font-size: 42px;
    }

    .image-label {
        font-size: 24px;
    }

    .image-overlay {
        padding: 40px;
    }

    .content-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Modern Mobile Design - Unique Card-Based Sticky Layout */
    .scroll-image-wrapper {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding: 0;
    }

    .fixed-image-container {
        position: sticky;
        top: 90px;
        width: calc(100% - 32px);
        height: 350px;
        padding: 0;
        margin: 16px 16px 0 16px;
        z-index: 10;
        border-radius: 24px;
        overflow: hidden;
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .fixed-image-container::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg, #2e8f33, #0ea5e9, #2e8f33);
        background-size: 200% 200%;
        border-radius: 24px;
        z-index: -1;
        opacity: 0.6;
        animation: borderGlow 3s ease infinite;
    }

    @keyframes borderGlow {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    .fixed-image-container::after {
        display: none;
    }

    .image-stack {
        border-radius: 24px;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    /* Modern gradient overlay with glassmorphism */
    .scroll-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            linear-gradient(
                135deg,
                rgba(46, 143, 51, 0.15) 0%,
                rgba(14, 165, 233, 0.1) 50%,
                rgba(10, 15, 28, 0.4) 100%
            ),
            linear-gradient(
                to top,
                rgba(10, 15, 28, 0.95) 0%,
                rgba(10, 15, 28, 0.7) 40%,
                rgba(10, 15, 28, 0.3) 70%,
                transparent 100%
            );
        z-index: 1;
        pointer-events: none;
    }

    /* Modern image overlay with glass effect */
    .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 24px;
        background: linear-gradient(
            to top,
            rgba(10, 15, 28, 0.98) 0%,
            rgba(10, 15, 28, 0.85) 50%,
            transparent 100%
        );
        backdrop-filter: blur(12px) saturate(180%);
        -webkit-backdrop-filter: blur(12px) saturate(180%);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 2;
    }

    /* Modern label with badge style */
    .image-label {
        font-size: 16px;
        font-weight: 800;
        letter-spacing: -0.3px;
        color: #ffffff;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        background: linear-gradient(135deg, rgba(46, 143, 51, 0.25), rgba(14, 165, 233, 0.15));
        border: 1px solid rgba(46, 143, 51, 0.4);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 24px rgba(46, 143, 51, 0.2);
    }

    .image-label::before {
        content: '';
        width: 8px;
        height: 8px;
        background: linear-gradient(135deg, #2e8f33, #0ea5e9);
        border-radius: 50%;
        box-shadow:
            0 0 12px rgba(46, 143, 51, 0.8),
            0 0 24px rgba(46, 143, 51, 0.4);
        animation: pulse 2s ease-in-out infinite;
    }

    .scrollable-content-container {
        width: 100%;
        padding: 0 16px 24px 16px;
    }

    .content-block {
        min-height: 100vh;
        padding:  unset !important;
        opacity: 0.35;
        transform: translateY(30px) scale(0.98);
        background: transparent;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .content-block.main-content-block{
        padding: unset !important;
    }

    .content-block.active {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    /* Modern badge with glow effect */
    .content-badge {
        font-size: 10px;
        padding: 8px 16px;
        margin-bottom: 20px;
        background: linear-gradient(135deg, rgba(46, 143, 51, 0.2), rgba(46, 143, 51, 0.1));
        border: 1.5px solid rgba(46, 143, 51, 0.4);
        box-shadow:
            0 4px 16px rgba(46, 143, 51, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .content-block h2 {
        font-size: 32px;
        margin-bottom: 18px;
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .content-lead {
        font-size: 16px;
        margin-bottom: 28px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.75);
    }

    .content-features {
        gap: 12px;
        margin-bottom: 28px;
    }

    /* Modern feature cards with hover effects */
    .feature-item {
        gap: 14px;
        padding: 18px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .feature-item:active {
        transform: scale(0.98);
        background: linear-gradient(135deg, rgba(46, 143, 51, 0.12), rgba(14, 165, 233, 0.06));
        border-color: rgba(46, 143, 51, 0.3);
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(46, 143, 51, 0.25), rgba(46, 143, 51, 0.15));
        border: 1px solid rgba(46, 143, 51, 0.3);
        box-shadow: 0 4px 12px rgba(46, 143, 51, 0.2);
    }

    .feature-text h4 {
        font-size: 16px;
        margin-bottom: 6px;
        font-weight: 700;
    }

    .feature-text p {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.65);
    }

    /* Modern stats grid */
    .content-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding-top: 28px;
        margin-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-item {
        padding: 18px 14px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(46, 143, 51, 0.1), rgba(14, 165, 233, 0.05));
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .stat-item::before {
        height: 2px;
    }

    .stat-number {
        font-size: 26px;
        margin-bottom: 6px;
        font-weight: 800;
    }

    .stat-label {
        font-size: 10px;
        line-height: 1.3;
        color: rgba(255, 255, 255, 0.6);
    }
}

@media (max-width: 480px) {
    /* Modern Small Mobile Design */
    .fixed-image-container {
        top: 75px;
        height: 280px;
        width: calc(100% - 24px);
        margin: 12px 12px 0 12px;
        border-radius: 20px;
    }

    .fixed-image-container::before {
        border-radius: 20px;
    }

    .image-stack {
        border-radius: 20px;
    }

    .image-overlay {
        padding: 18px;
    }

    .image-label {
        font-size: 14px;
        padding: 8px 14px;
        border-radius: 10px;
        gap: 8px;
    }

    .image-label::before {
        width: 6px;
        height: 6px;
    }

    .scrollable-content-container {
        padding: 0 12px 20px 12px;
    }

    .content-block {
        padding: 40px 16px;
    }
    .content-block.main-content-block {
        padding: unset;
    }

    .content-badge {
        font-size: 9px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .content-block h2 {
        font-size: 26px;
        letter-spacing: -0.8px;
        margin-bottom: 14px;
    }

    .content-lead {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .content-features {
        gap: 10px;
        margin-bottom: 24px;
    }

    .feature-item {
        padding: 14px;
        gap: 12px;
        border-radius: 14px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 10px;
    }

    .feature-text h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .feature-text p {
        font-size: 13px;
        line-height: 1.5;
    }

    .content-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding-top: 24px;
        margin-top: 24px;
    }

    .stat-item {
        padding: 14px 10px;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 9px;
        line-height: 1.2;
    }
}

/* ===========================
   OPERATIONAL TIMELINE SECTION (HOME PAGE)
   =========================== */

/* Operational Section */
.operational-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.operational-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.operational-section .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2e8f33, #4ade80);
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(46, 143, 51, 0.3);
}

.operational-section .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.operational-section .section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Operational Timeline */
.operational-timeline {
    max-width: 1000px;
    margin: 60px auto 0;
}

.operational-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    transition: all 0.3s ease;
}

.operational-step:hover .step-number-large{
  color: #9da0a2;
}

.operational-step:last-child {
    margin-bottom: 0;
}

.step-number-large {
    font-size: 120px;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
    min-width: 150px;
    text-align: center;
    flex-shrink: 0;
}

.step-content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-content-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2e8f33, #4ade80);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(46, 143, 51, 0.3);
}

.step-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.step-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Reverse layout for alternating steps */
.operational-step.step-reverse {
    flex-direction: row-reverse;
}

.operational-step.step-reverse .step-content-wrapper {
    flex-direction: row-reverse;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .operational-step {
        gap: 30px;
    }

    .step-number-large {
        font-size: 100px;
        min-width: 120px;
    }

    .step-content-wrapper {
        padding: 30px;
        gap: 25px;
    }

    .step-icon-box {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .operational-section .section-header h2 {
        font-size: 36px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .operational-section {
        padding: 60px 0;
    }

    .operational-step {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .operational-step.step-reverse {
        flex-direction: column;
    }

    .step-number-large {
        font-size: 80px;
        min-width: auto;
    }

    .step-content-wrapper {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
    }

    .operational-step.step-reverse .step-content-wrapper {
        flex-direction: column;
    }

    .step-icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-text h3 {
        font-size: 19px;
    }

    .step-text p {
        font-size: 14px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .operational-section {
        padding: 50px 0;
    }

    .operational-section .section-header h2 {
        font-size: 24px;
    }

    .operational-section .section-header p {
        font-size: 15px;
    }

    .step-number-large {
        font-size: 60px;
    }

    .step-content-wrapper {
        padding: 20px 15px;
    }

    .step-text h3 {
        font-size: 17px;
    }

    .step-text p {
        font-size: 13px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .operational-section {
        padding: 50px 0;
    }

    .operational-step {
        flex-direction: row;
        gap: 25px;
    }

    .operational-step.step-reverse {
        flex-direction: row-reverse;
    }

    .step-content-wrapper {
        flex-direction: row;
    }

    .operational-step.step-reverse .step-content-wrapper {
        flex-direction: row-reverse;
    }
}

