/* Global Styles */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: #fff;
  color: #223046;
  padding-top: 100px; /* Offset for fixed nav */
  animation: pageLoad 0.6s ease-out;
}

/* 
 * CONSISTENT PAGE PADDING SYSTEM
 * Ensures all pages have consistent top padding that matches the navbar height
 * DO NOT override these values in individual pages - they are responsive:
 * Desktop: 100px, Tablet (≤900px): 120px, Mobile (≤600px): 140px, Small (≤400px): 160px
 */

h1, h2, h3 {
  margin-bottom: 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  color: #223046;
  transition: all 0.3s ease;
}

h1:hover, h2:hover, h3:hover {
  transform: scale(1.02);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

p {
  max-width:900px;
  font-size: 1.9rem;
  line-height: 1.9;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==============================
   MODERN NAVIGATION SYSTEM
   ============================== */

/* Main navbar container */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Navigation container */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

/* Logo styling */
.logo {
  font-weight: 700;
  color: #1d1d1f;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  z-index: 1001;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  max-height: 44px;
  vertical-align: middle;
  transition: all 0.3s ease;
}

/* Main navigation */
.main-nav {
  position: relative;
  margin-left: auto;
}

/* Desktop navigation menu */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 1rem;
}

.nav-menu li {
  margin: 0;
  padding: 0;
}

/* Navigation links */
.nav-menu a {
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
  border-radius: 8px;
  display: block;
}

.nav-menu a:not(.nav-btn-partner):hover {
  color: #39b54a;
  background: rgba(57, 181, 74, 0.08);
  transform: translateY(-1px);
}

/* Modern partner button */
.nav-btn-partner {
  background: linear-gradient(135deg, #39b54a 0%, #2e8b57 100%);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  font-weight: 600;
  margin-left: 0.5rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(57, 181, 74, 0.25);
  transition: all 0.3s ease;
}

.nav-btn-partner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(57, 181, 74, 0.4);
  background: linear-gradient(135deg, #2e8b57 0%, #39b54a 100%);
}

/* Modern hamburger menu button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.05);
}

.nav-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(57, 181, 74, 0.2);
}

/* Hamburger bars */
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #1d1d1f;
  margin: 3px auto;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
  position: relative;
}

/* Smooth hamburger to X animation */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scale(0.8);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: rgba(248, 249, 250, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1001;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-menu li {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  .nav-menu.open li {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Staggered animation for menu items */
  .nav-menu.open li:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu.open li:nth-child(2) { transition-delay: 0.15s; }
  .nav-menu.open li:nth-child(3) { transition-delay: 0.2s; }
  .nav-menu.open li:nth-child(4) { transition-delay: 0.25s; }
  .nav-menu.open li:nth-child(5) { transition-delay: 0.3s; }
  
  .nav-menu a {
    color: #1d1d1f;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 220px;
    display: block;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
  }
  
  .nav-menu a:not(.nav-btn-partner):hover {
    background: rgba(57, 181, 74, 0.1);
    color: #39b54a;
    transform: scale(1.02);
    border-color: rgba(57, 181, 74, 0.2);
  }
  
  .nav-btn-partner {
    background: linear-gradient(135deg, #39b54a 0%, #2e8b57 100%) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border: none !important;
    margin-top: 1rem;
    box-shadow: 0 6px 20px rgba(57, 181, 74, 0.3);
  }
  
  .nav-btn-partner:hover {
    background: linear-gradient(135deg, #2e8b57 0%, #39b54a 100%) !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(57, 181, 74, 0.4) !important;
  }
  
  /* Mobile navigation container adjustments */
  .nav-container {
    padding: 0.8rem 1.5rem;
  }
}

/* ===== MODERN VISUAL ENHANCEMENTS ===== */

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Modern blur effects and glass morphism */
.glassmorphism {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Floating animation for cards */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

/* Modern gradient text effects */
.gradient-text {
  background: linear-gradient(135deg, #39b54a 0%, #2e8b57 50%, #1ba84a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Neon glow effects */
.neon-glow {
  text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor;
}

/* Modern parallax container */
.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-element {
  transition: transform 0.1s ease-out;
}

/* Cool hover effects for cards */
.modern-card {
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(57, 181, 74, 0.1) 0%, rgba(46, 139, 87, 0.1) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.modern-card:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(2deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

/* Animated gradient backgrounds */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animated-gradient {
  background: linear-gradient(-45deg, #1d2e49, #223046, #2a4c6b, #1d2e49);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

/* Modern button effects with ripple */
.modern-button {
  position: relative;
  overflow: hidden;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modern-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.modern-button:hover::before {
  width: 300px;
  height: 300px;
}

.modern-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Typewriter effect for text */
@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #39b54a; }
}

.typewriter {
  overflow: hidden;
  border-right: 3px solid #39b54a;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.1em;
  animation: typewriter 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* Modern loading animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Particle background effect */
.particle-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  background: rgba(57, 181, 74, 0.3);
  border-radius: 50%;
  animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

/* Modern text reveal animations */
.reveal-text {
  position: relative;
  overflow: hidden;
}

.reveal-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #39b54a;
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-text.revealed::after {
  transform: translateX(100%);
}

/* Modern scroll indicators */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(57, 181, 74, 0.2);
  z-index: 9999;
}

.scroll-progress {
  height: 100%;
  background: linear-gradient(90deg, #39b54a 0%, #2e8b57 100%);
  width: 0%;
  transition: width 0.1s ease;
}

/* Modern image filters and effects */
.modern-image {
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
  transition: all 0.3s ease;
}

.modern-image:hover {
  filter: brightness(1.2) contrast(1.2) saturate(1.3);
  transform: scale(1.05);
}

/* Animated underlines */
.animated-underline {
  position: relative;
  display: inline-block;
}

.animated-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #39b54a, #2e8b57);
  transition: width 0.5s ease;
}

.animated-underline:hover::after,
.animated-underline.active::after {
  width: 100%;
}

/* Modern grid layouts with gaps */
.modern-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 768px) {
  .modern-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
  padding-top: 180px;
  background: linear-gradient(135deg, rgba(0, 150, 0, 0.9), rgba(0, 100, 0, 0.8));
  backdrop-filter: blur(10px);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 1000;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.01em;
  background: linear-gradient(45deg, #fff, #e0e0e0, #fff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 3s ease-in-out infinite, fadeInUp 0.8s ease-out;
}

.hero p {
  margin: 0 auto 2rem auto;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
/* ==============================
   HERO BUTTON STYLES
   ============================== */

.hero-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hero-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-button:hover::before {
  width: 300px;
  height: 300px;
}

.hero-button:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.hero-button > * {
  position: relative;
  z-index: 1;
}

.hero-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-button:hover::before {
  width: 300px;
  height: 300px;
}

.hero-button:hover {
  background: #fff;
  color: #007f00;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hero-button > * {
  position: relative;
  z-index: 1;
}
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Responsive Styles */
/* iPad and Tablet */
@media (max-width: 1024px) {
  .hero {
    height: 50vh;
    min-height: 350px;
    max-height: 450px;
    padding-top: 100px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .hero {
    height: 40vh;
    min-height: 280px;
    max-height: 350px;
    padding-top: 80px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content {
    padding: 1.25rem;
    margin: 0 1rem;
  }
  
  .hero-button {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .hero {
    height: 35vh;
    min-height: 250px;
    max-height: 300px;
    padding-top: 60px;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  
  .hero p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
  }
  
  .hero-content {
    padding: 1rem;
    margin: 0 0.5rem;
    border-radius: 15px;
  }
  
  .hero-button {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    margin-top: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 375px) {
  .hero {
    height: 30vh;
    min-height: 220px;
    max-height: 260px;
    padding-top: 50px;
  }
  
  .hero h1 {
    font-size: 1.3rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .hero-content {
    padding: 0.8rem;
    margin: 0 0.25rem;
  }
}

/* Forward Section Styles - Improved Responsive Design */
.forward-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 80px 20px 60px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.forward-section::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.6s;
}

.forward-section:hover::before {
  left: 100%;
}

.forward-section:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.forward-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 0.01em;
  font-family: 'Poppins', sans-serif;
}

.forward-title-backwards {
  color: #223046;
  font-weight: 700;
  opacity: 0.85;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.forward-title-forward {
  color: #1ba84a;
  font-weight: 900;
  letter-spacing: 0.02em;
  display: block;
  margin-top: 0;
}

.forward-intro {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 48px;
  color: #1ba84a;
  letter-spacing: 0.01em;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.forward-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
  justify-items: center;
}

.forward-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(34,48,70,0.12), 0 0 0 1px rgba(255,255,255,0.05);
  padding: 40px 24px 32px 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  min-height: 380px;
  justify-content: flex-start;
}

.forward-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(57, 181, 74, 0.05) 0%, rgba(46, 139, 87, 0.05) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.forward-card:hover {
  transform: translateY(-12px) rotateX(8deg) rotateY(3deg);
  box-shadow: 0 25px 50px rgba(34,48,70,0.20), 0 0 0 1px rgba(57,181,74,0.2);
  border-color: rgba(57, 181, 74, 0.3);
}

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

.forward-card > * {
  position: relative;
  z-index: 1;
}

/* Improved Icon Styles */
.forward-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto 24px auto;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  flex-shrink: 0;
}

/* Card Content */
.forward-caption {
  font-size: 1.2rem;
  color: #1ba84a;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.3;
}

.forward-desc {
  font-size: 1rem;
  color: #223046;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  opacity: 0.9;
}

/* Predict Section Styles */
.predict-section {
  max-width: 10200px;
  margin: 0 auto 80px auto;
  padding: 180px 2rem 140px 2rem;
  text-align: center;
  background: linear-gradient(-45deg, #1d2e49, #223046, #2a4c6b, #1d2e49);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.predict-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
  z-index: 0;
}

.predict-section > * {
  position: relative;
  z-index: 1;
}
.predict-title {
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.1;
  text-align: center;
}
.predict-subhead {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px auto;
  letter-spacing: 0.01em;
  padding: 0 12px;
}
.predict-subhead strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.predict-col-title,
.predict-col-sub,
.predict-list {
  color: #fff;
}
.predict-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.predict-list li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 10px;
}
.predict-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1ba84a;
  font-weight: bold;
  font-size: 1.1em;
  line-height: 1.2;
}
.predict-columns {
  display: flex;
  flex-direction: column;
  gap: 32px; /* space between boxes */
  align-items: center;   /* <-- center the boxes horizontally */
}
.predict-col {
  width: 100%;
  max-width: 700px; /* was 600px */
  margin: 0 auto;
  text-align: left;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(34,48,70,0.15), 0 0 0 1px rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 2.5rem 2rem 2rem 2rem;
  margin: 0 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.predict-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(57, 181, 74, 0.1) 0%, rgba(46, 139, 87, 0.1) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.predict-col:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(34,48,70,0.25), 0 0 0 1px rgba(57,181,74,0.3);
  border-color: rgba(57, 181, 74, 0.4);
}

.predict-col:hover::before {
  opacity: 1;
}

.predict-col > * {
  position: relative;
  z-index: 1;
}
/* ==============================
   PRIMARY BUTTON STYLES
   ============================== */

/* Primary Action Buttons (predict-btn) */
.predict-btn {
  padding: 0.75rem 2rem;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.predict-btn:hover {
  background: #fff;
  color: #1ba84a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

/* Green variant of predict button */
.predict-btn-green {
  padding: 0.75rem 2rem;
  color: #1ba84a;
  border: 2px solid #1ba84a;
  background: #fff;
  font-size: 1.1rem;
}

.predict-btn-green:hover {
  background: #1ba84a;
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(27, 168, 74, 0.3);
}

/* Performance/CTA Buttons */
.performance-btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, #39b54a 0%, #2e8b57 100%);
  color: #fff;
  font-size: 1.1rem;
  border-radius: 50px;
}

.performance-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(57, 181, 74, 0.4);
  background: linear-gradient(135deg, #2e8b57 0%, #39b54a 100%);
}

/* Lead Form Buttons */
.lead-form-btn {
  margin-top: 16px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #39b54a 0%, #2e8b57 100%);
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  border-radius: 16px;
}

.lead-form-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(57, 181, 74, 0.4);
  background: linear-gradient(135deg, #2e8b57 0%, #39b54a 100%);
}

/* Navigation Partner Button - Updated above in main nav section */

/* Announcement Bar Styles */
.announcement-bar {
  width: 100%;
  background: #172f4b;
  color: #fff;
  text-align: left;
  overflow: hidden;
  position: relative;
  padding: 0;
  height: 40px;
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.announcement-scroll {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 18s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}

.appear {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Styles */
footer {
  background: #172f4b;
  color: #fff;
  text-align: center;
  padding: 28px 0 18px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  margin-top: 0; /* Remove top margin */
  border-top: 2px solid #e5eaf2;
}

.footer-nav {
  margin-bottom: 50px; /* Increased margin for more space below links */
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 px;
  font-size: 0.85rem;
  font-weight: 400;
  transition: color 0.2s;
  margin-bottom:20px;
}

.footer-nav a:hover {
  color: #ffffff;
  text-decoration: none; /* Remove underline on hover */
}

.footer-contact {
  margin: 0 auto 0 auto;
  max-width: 400px;
  font-size: 0.8rem;
  line-height: 1.6;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  word-break: break-all;
}
.footer-logo {
  margin-bottom: 10px;
}
.footer-logo img {
  height: 50px;
  width: auto;
  display: inline-block;
}
.footer-contact .footer-copyright {
  margin-top: 18px;
  font-size: 0.8rem;
  color: #fff;
}

/* Lightbox Styles */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-content {
  background: #fff;
  color: #222;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  position: relative;
  text-align: left;
}
.lightbox-close {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Contact Form Styling --- */
#contact-form-section {
  background: linear-gradient(135deg, #1d2e49 0%, #223046 100%) !important;
  padding: 64px 0;
}

#lead-form {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transition: box-shadow 0.2s;
}

#lead-form:focus-within {
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

#lead-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #222;
  letter-spacing: 0.01em;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

#lead-form input,
#lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 18px; /* Match the form's border-radius */
  border: 1.5px solid #e0e0e0;
  background: #fafbfc;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Poppins', sans-serif;
}

#lead-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1.5px solid #e0e0e0;
  background: #fafbfc;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Poppins', sans-serif;
  color: #223046;
}

#lead-form input:focus,
#lead-form textarea:focus {
  border-color: #1a1a1a;
  outline: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ==============================
   FORM SUBMIT BUTTONS
   ============================== */

/* Lead form submit button */
#lead-form button[type="submit"] {
  background: linear-gradient(90deg, #1a1a1a 60%, #3a3a3a 100%);
  color: #fff;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

#lead-form button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
  z-index: 0;
}

#lead-form button[type="submit"]:hover::before {
  width: 300px;
  height: 300px;
}

#lead-form button[type="submit"]:hover,
#lead-form button[type="submit"]:focus {
  background: linear-gradient(90deg, #222 60%, #444 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

#lead-form button[type="submit"] > * {
  position: relative;
  z-index: 1;
}

#form-success {
  display: none;
  color: #1a8f3c;
  margin-top: 18px;
  text-align: center;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

/* Enhanced Form Success Message */
.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #39b54a, #2e8b57);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  animation: slideInSuccess 0.5s ease-out;
  box-shadow: 0 8px 25px rgba(57, 181, 74, 0.3);
}

@keyframes slideInSuccess {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Form Input Animations */
.form-row {
  animation: formItemSlideIn 0.6s ease-out;
}

.form-row:nth-child(1) { animation-delay: 0.1s; }
.form-row:nth-child(2) { animation-delay: 0.2s; }
.form-row:nth-child(3) { animation-delay: 0.3s; }
.form-row:nth-child(4) { animation-delay: 0.4s; }
.form-row:nth-child(5) { animation-delay: 0.5s; }

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

/* Input Validation States */
.lead-form input:valid,
.lead-form textarea:valid,
.lead-form select:valid {
  border-color: #39b54a;
}

.lead-form input:invalid:not(:focus):not(:placeholder-shown),
.lead-form textarea:invalid:not(:focus):not(:placeholder-shown),
.lead-form select:invalid:not(:focus):not([value=""]) {
  border-color: #ff4757;
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

/* reCAPTCHA Styling */
.g-recaptcha {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  transform: scale(0.9);
  transform-origin: center;
}

/* Mobile Form Responsiveness */
@media (max-width: 768px) {
  .lead-form {
    padding: 24px 20px;
    margin: 0 16px;
    gap: 20px;
  }
  
  .lead-form input,
  .lead-form textarea,
  .lead-form select {
    padding: 14px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .lead-form-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Contact Form Section Enhancements */
#contact-form-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

#contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(57, 181, 74, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(46, 139, 87, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Loading State for Submit Button */
.lead-form-btn.loading {
  position: relative;
  color: transparent;
}

.lead-form-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (max-width: 900px) {
  .forward-section {
    margin: 40px 16px;
    padding: 60px 20px 40px 20px;
  }
  
  .forward-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
    margin-bottom: 20px;
  }
  
  .forward-intro {
    font-size: clamp(1rem, 3vw, 1.15rem);
    margin-bottom: 40px;
  }
  
  .forward-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  
  .forward-card {
    max-width: 100%;
    min-height: 320px;
    padding: 32px 20px 28px 20px;
  }
  
  .forward-img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
  
  .forward-caption {
    font-size: 1.1rem;
  }
  
  .forward-desc {
    font-size: 0.95rem;
  }
  
  .predict-columns {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .predict-col {
    max-width: 100%;
    text-align: center;
  }
  .predict-section {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-container a {
    margin: 0.5rem 0;
  }
}

/* --- Testimonials Section --- */
.testimonials-section {
  background: linear-gradient(135deg, #1d2e49 0%, #223046 100%) !important;
  color: #fff;
  padding: 120px 0 120px 0; /* Increased top and bottom padding */
  margin: 00px auto 0px auto;
  max-width: 10000px;
  box-shadow: 0 8px 40px rgba(34,48,70,0.10);
  text-align: center;
  position: relative;
}

.testimonials-heading {
  color: #fff;
  font-size: 2.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 38px;
  letter-spacing: 0.01em;
}

.testimonials-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto 32px auto;
  position: relative;
}

.testimonial-slide {
  position: relative;
  width: 100%;
  height: 220px; /* Fixed height */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.testimonial-text {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
  position: absolute;
  left: 0; right: 0;
  margin: 0 auto;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  padding: 0 32px;
  max-width: 600px;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.12));
  z-index: 1;
  user-select: none;
}

.testimonial-text.active {
  opacity: 1;
  transform: none;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: block;
  margin-top: 22px;
  font-size: 1.02rem;
  font-weight: 500;
  color: #eafff2;
  opacity: 0.85;
  letter-spacing: 0.01em;
  font-style: italic;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.dot.active {
  background: #fff;
  transform: scale(1.18);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

@media (max-width: 900px) {
  .testimonials-section {
    padding: 50px 0 50px 0;
    max-width: 98vw;
  }
  .testimonials-carousel {
    max-width: 98vw;
  }
  .testimonial-text {
    font-size: 1.08rem;
    padding: 0 8vw;
  }
}

/* --- Modern Interactive Form Styles --- */
.lead-form {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.lead-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #39b54a, #2e8b57, #39b54a);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

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

.form-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lead-form label {
  font-weight: 500;
  color: #1d1d1f;
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  position: absolute;
  top: 16px;
  left: 16px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 8px;
  border-radius: 4px;
  transform-origin: left center;
  z-index: 1;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  padding: 16px 20px;
  border-radius: 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  font-size: 1rem;
  color: #1d1d1f;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: inherit;
  resize: none;
  outline: none;
  position: relative;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus,
.lead-form input:not(:placeholder-shown),
.lead-form textarea:not(:placeholder-shown),
.lead-form select:not([value=""]) {
  border-color: #39b54a;
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(57, 181, 74, 0.2);
}

.lead-form input:focus + label,
.lead-form textarea:focus + label,
.lead-form select:focus + label,
.lead-form input:not(:placeholder-shown) + label,
.lead-form textarea:not(:placeholder-shown) + label,
.lead-form select:not([value=""]) + label {
  top: -8px;
  font-size: 0.9rem;
  color: #39b54a;
  font-weight: 600;
  transform: scale(1);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: transparent;
}

.lead-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}

.lead-form-btn {
  margin-top: 16px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #39b54a 0%, #2e8b57 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(57, 181, 74, 0.3);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.lead-form-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.lead-form-btn:hover::before {
  width: 300px;
  height: 300px;
}

.lead-form-btn:hover,
.lead-form-btn:focus {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(57, 181, 74, 0.4);
  background: linear-gradient(135deg, #2e8b57 0%, #39b54a 100%);
}

.lead-form-btn > * {
  position: relative;
  z-index: 1;
}

.predict-col-title {
  font-size: 2.2rem;   /* Increase this value as needed */
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-align: left;
}

.predict-col-sub {
  font-weight: 700;
  font-size: 1.22rem;
  color: #fff;
  margin-bottom: 22px; /* Increased gap below the subheading */
  letter-spacing: 0.01em;
}

/* Remove top margin from the columns and titles in Predict section */
.predict-col {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.predict-col-title {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.predict-col-sub {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.predict-list {
  margin-top: 12px; /* Optional: keep a little space above the list */
}

/* Partners Section Styles */
.partners-section {
  background: #f8f9fa;
  padding: 54px 0 44px 0;
  text-align: center;
  margin: 0 auto 0 auto;
}

.partners-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.partners-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: #3d3d3d;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  font-family: 'Poppins', sans-serif;
}

.partners-subheading {
  font-size: 1.12rem;
  font-weight: 600;
  color: #3d3d3d;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

.partners-body {
  font-size: 1.05rem;
  color: #3d3d3d;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Partners button specific styling for better spacing on desktop */
.partners-section .predict-btn-green {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Media Partners Section Styles */
.media-partners-section {
  background: #f8f9fa;
  padding: 36px 0 24px 0;
  text-align: center;
  margin-bottom: 0; /* Ensure no bottom margin */
}

.media-partners-content {
  max-width: 700px;
  margin: 0 auto;
}

.media-partners-img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.media-partners-heading {
  font-size: 1.08rem;
  font-weight: 600;
  color: #1ba84a;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  font-family: 'Poppins', sans-serif;
}

#contact-form-section h2,
#contact-form-section .contact-form-subhead {
  color: #fff !important;
}

#contact-form-section h2 {
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 32px;
  color: #fff !important;
}

.contact-details {
  text-align: center;
  margin-bottom: 32px;
}
.contact-phone,
.contact-email {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.contact-details a {
  color: #fff;
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.2s;
}
.contact-details a:hover {
  color: #1ba84a;
}

/* Performance Section */
.performance-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.performance-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.performance-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.performance-header {
  text-align: center;
  margin-bottom: 60px;
}

.performance-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 20px;
  line-height: 1.2;
}

.performance-subtitle {
  font-size: 1.2rem;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.performance-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay, 0s);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.performance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
  transition: left 0.5s ease;
}

.performance-card:hover::before {
  left: 100%;
}

.performance-card:hover {
  transform: translateY(-10px);
  border-color: rgba(76, 175, 80, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.performance-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  line-height: 1;
}

.performance-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 10px;
  line-height: 1.4;
}

.performance-description {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.5;
  font-style: italic;
}

.performance-cta {
  text-align: center;
  margin-top: 80px;
}

.performance-cta-text {
  font-size: 1.3rem;
  color: #2c2c2c;
  margin-bottom: 25px;
  font-weight: 500;
}

/* ==============================
   SECONDARY BUTTON STYLES
   ============================== */

/* Standard .btn styles */
.btn {
  padding: 0.85em 2.2em;
  font-size: 1.1rem;
  border-radius: 2em;
  margin-bottom: 8px;
}

.btn-primary {
  background: #fff;
  color: #1ba84a;
  border: 2px solid #fff;
}

.btn-primary:hover {
  background: #1ba84a;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(27, 168, 74, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #1ba84a;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Tab Buttons */
.case-tab-btn {
  background: #e6e9f5;
  border: none;
  color: #223046;
  font-weight: 700;
  font-size: 1.10rem;
  padding: 10px 40px;
  border-radius: 25px;
  margin-bottom: 2px;
}

.case-tab-btn.active,
.case-tab-btn:hover {
  background: #1ba84a;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(27, 168, 74, 0.3);
}

/* Scroll Buttons */
.scroll-btn {
  background: #fff;
  color: #1ba84a;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 1.13rem;
  border-radius: 24px;
  margin: 32px auto 0 auto;
  display: inline-block;
}

.scroll-btn:hover {
  background: #1ba84a;
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(27, 168, 74, 0.3);
}

/* Feature Expand Buttons */
.feature-expand-btn {
  background: #1ba84a;
  color: #fff;
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 20px;
  margin-top: 12px;
}

.feature-expand-btn:hover {
  background: #2e8b57;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(27, 168, 74, 0.3);
}

/* Channel Tab Buttons */
.channels-tab {
  background: #fff;
  color: #1ba84a;
  padding: 10px 22px;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 20px;
  margin: 0 5px 10px 5px;
}

.channels-tab.active,
.channels-tab:hover {
  background: #1ba84a;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(27, 168, 74, 0.3);
}

/* How-to Step Tab Buttons */
.how-step-tab {
  background: #fff;
  color: #1ba84a;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.how-step-tab.active,
.how-step-tab:hover {
  background: #1ba84a;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(27, 168, 74, 0.3);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .performance-section {
    padding: 60px 20px;
  }
  
  .performance-title {
    font-size: 2.2rem;
  }
  
  .performance-subtitle {
    font-size: 1.1rem;
  }
  
  .performance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .performance-card {
    padding: 30px 20px;
  }
  
  .performance-number {
    font-size: 2.8rem;
  }
  
  .performance-label {
    font-size: 1.1rem;
  }
}

/* Comprehensive Mobile Responsive Improvements */
@media (max-width: 900px) {
  body {
    padding-top: 120px;
  }
  
  h1, h2, h3 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    padding: 0 16px;
  }
  
  .container, .content, .main {
    padding: 16px;
    text-align: center;
  }
  
  /* Navigation improvements */
  .nav-container {
    padding: 0 16px;
  }
  
  .nav-menu {
    flex-direction: column;
    width: 100%;
    padding: 16px 0;
  }
  
  .nav-menu li {
    margin: 8px 0;
  }
  
  /* Button improvements */
  .predict-btn, .lead-form-btn, .nav-btn-partner {
    width: 100%;
    max-width: 280px;
    margin: 16px auto;
    display: block;
    padding: 14px 24px;
    text-align: center;
  }
  
  /* Forward section mobile improvements */
  .forward-section {
    margin: 20px 12px;
    padding: 40px 16px 32px 16px;
  }
  
  .forward-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    line-height: 1.25;
  }
  
  .forward-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .forward-card {
    min-height: 280px;
    padding: 24px 16px 20px 16px;
  }
  
  .forward-img {
    width: 80px;
    height: 80px;
  }
  
  .forward-caption {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .forward-desc {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Card layouts */
  .forward-cards, .predict-columns, .results-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .forward-card, .predict-col, .results-stat {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Form improvements */
  .form-row {
    margin-bottom: 16px;
  }
  
  .form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
  
  /* Hero section */
  .hero-content {
    text-align: center;
    padding: 0 16px;
  }
  
  /* Footer improvements */
  .footer-nav {
    flex-direction: column;
    text-align: center;
    line-height: 2;
  }
  
  .footer-contact {
    text-align: center;
    padding: 16px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 14px;
    padding-top: 140px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .container, .content, .main {
    padding: 12px;
  }
  
  /* Logo adjustments */
  .logo img {
    max-height: 36px !important;
  }
  
  /* Performance grid mobile adjustment */
  .performance-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Announcements */
  .announcement-bar {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
  
  /* Cards and sections */
  .content-block, .bg-white, .gradient-bg {
    padding: 24px 12px !important;
  }
  
  /* Images */
  .results-img, .forward-img {
    max-width: 48px !important;
    max-height: 48px !important;
    width: 48px !important;
    height: auto !important;
    object-fit: contain !important;
    display: inline-block;
  }
  
  /* Media partners */
  .media-partners-img {
    max-width: 100%;
    height: auto;
  }
  
  /* Team marquee */
  .team-marquee-img {
    width: 120px !important;
    height: 120px !important;
  }
  
  /* Contact cards */
  .contact-cards {
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-card {
    max-width: 100%;
    padding: 16px;
  }
}

@media (max-width: 400px) {
  body {
    padding-top: 160px;
  }
  
  .container, .content, .main {
    padding: 8px;
  }
  
  .predict-btn, .lead-form-btn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
  
  .nav-container {
    padding: 0 8px;
  }
  
  .announcement-bar {
    font-size: 0.8rem;
    padding: 6px 8px;
  }
}

/* Final Mobile Form Optimizations */

/* Prevent zoom on iOS when focusing inputs */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="password"],
  input[type="number"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important;
    transform-style: preserve-3d;
  }
}

/* Enhanced Focus States */
input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  border-color: #1ba84a !important;
  box-shadow: 0 0 0 3px rgba(27, 168, 74, 0.1) !important;
  transform: translateY(-1px);
}

/* Improved Accessibility */
@media (prefers-reduced-motion: no-preference) {
  .hover-lift:hover {
    transform: translateY(-2px);
       transition: transform 0.2s ease;
  }
}

/* Better Print Styles */
@media print {
  .navbar,
  .announcement-bar,
  footer,
  .btn,
  .contact-form-section {
    display: none !important;
  }
  
  body {
    padding-top: 0 !important;
    color: black !important;
    background: white !important;
  }
  
  .section-title,
  h1, h2, h3 {
    color: black !important;
    page-break-after: avoid;
  }
  
  .content-block {
    page-break-inside: avoid;
    padding: 20px 0 !important;
  }
}

/* Enhanced Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #1ba84a;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Final Layout Consistency */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Better link styles */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1ba84a;
}

/* ==============================
   UNIFIED BUTTON SYSTEM - CONSISTENT ACROSS ALL PAGES
   ============================== */

/* Base button styles - applied to all buttons */
button,
.btn,
.predict-btn,
.predict-btn-green,
.performance-btn,
.lead-form-btn,
.nav-btn-partner,
.case-tab-btn,
.scroll-btn,
.feature-expand-btn,
.channels-tab,
.how-step-tab {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: perspective(1px) translateZ(0);
}

/* Unified ripple effect for all buttons */
.btn::before,
.predict-btn::before,
.predict-btn-green::before,
.performance-btn::before,
.lead-form-btn::before,
.nav-btn-partner::before,
.case-tab-btn::before,
.scroll-btn::before,
.feature-expand-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

/* Hover ripple effect for all buttons */
.btn:hover::before,
.predict-btn:hover::before,
.predict-btn-green:hover::before,
.performance-btn:hover::before,
.lead-form-btn:hover::before,
.nav-btn-partner:hover::before,
.case-tab-btn:hover::before,
.scroll-btn:hover::before,
.feature-expand-btn:hover::before {
  width: 300px;
  height: 300px;
}

/* Ensure button content stays above ripple effect */
.btn > *,
.predict-btn > *,
.predict-btn-green > *,
.performance-btn > *,
.lead-form-btn > *,
.nav-btn-partner > *,
.case-tab-btn > *,
.scroll-btn > *,
.feature-expand-btn > * {
  position: relative;
  z-index: 1;
}

/* Ensure form elements are consistent */
input,
select,
textarea {
  font-family: inherit;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  padding: 12px 16px;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

/* Final mobile optimizations */
@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 8px;
  }
  
  section {
    padding: 20px 8px !important;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* ==============================
   LOGO CLICKABLE HOVER EFFECTS
   ============================== */

/* Make logo clearly clickable with hover effects */
.logo a {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 8px;
  padding: 4px;
}

.logo a:hover {
  transform: scale(1.05);
  background: rgba(57, 181, 74, 0.1);
  box-shadow: 0 4px 15px rgba(57, 181, 74, 0.2);
}

.logo img {
  transition: all 0.3s ease;
  display: block;
}

.logo a:hover img {
  filter: brightness(1.1);
}

/* ============================== */

/* =================================
   WORDPRESS PERFORMANCE OPTIMIZATIONS
   ================================= */

/* Improve font loading performance */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Optimize image loading and performance */
img {
  height: auto;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Optimize scroll performance */
* {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Reduce paint and layout thrashing */
.navbar,
.predict-btn,
.performance-btn,
.lead-form-btn,
.nav-btn-partner,
.btn {
  will-change: transform;
  transform: translateZ(0);
}

/* ============================== */