/* ===== Base Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== Navbar ===== */
.navbar {
  background: linear-gradient(-45deg, rgba(0, 80, 0, 0.7), rgba(1, 45, 1, 0.9), rgba(0, 60, 0, 0.95), rgba(2, 30, 2, 1));
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(0, 255, 100, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.6s ease-in-out;
}

@keyframes slideDown {
  0% {
    transform: translateY(-80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo {
  font-size: 22px;
  color: #4cff4c;
  font-weight: bold;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.logo span {
  color: white;
}

.logo:hover {
  transform: scale(1.1);
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

/* Elliptical nav link style with animation and glassmorphism */
.nav-links li a {
  text-decoration: none;
  color: #c8f7c5;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid transparent;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.35s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Hover style with shine + border + movement */
.nav-links li a:hover {
  color: #7dff6c;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(90, 255, 120, 0.4);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 12px rgba(90, 255, 120, 0.15);
}

/* Shine Effect */
.nav-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.nav-links li a:hover::before {
  left: 150%;
}

/* Request Demo Button */
.demo-btn {
  background: linear-gradient(135deg, #29c76f, #57eb91);
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(29, 230, 140, 0.3);
}

.demo-btn:hover {
  background: linear-gradient(135deg, #1cae58, #47d77b);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(29, 230, 140, 0.4);
}

/* Icon inside cards */
.icon {
  font-size: 32px;
  margin-bottom: 10px;
  color: #99ffcc;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== Hero Section with Green Transparent Background ===== */
.hero {
  background: linear-gradient(-45deg, rgba(0, 60, 0, 0.9), rgba(1, 80, 1, 0.85), rgba(0, 30, 0, 0.95), rgba(0, 45, 0, 1));
  background-size: 300% 300%;
  animation: gradientBG 12s ease infinite;
  color: #e6ffe6;
  text-align: center;
  padding: 80px 20px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Marquee Container */
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 15px;
  position: relative;
  height: 48px;
}

.marquee-track {
  display: inline-block;
  animation: marqueeScroll 15s linear infinite;
}

.marquee-text {
  display: inline-block;
  font-size: 38px;
  font-weight: 700;
  color: #69ffaf;
  padding-right: 100px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ===== Hero Content ===== */
.hero h1 {
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 700;
  animation: fadeIn 1s ease forwards;
  color: #adffb0;
}

.subtitle {
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
  color: #c7ffdd;
}

/* ===== Features Section ===== */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* ===== Feature Cards ===== */
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 150, 0.1);
  border-radius: 10px;
  padding: 30px 20px;
  width: 260px;
  color: #ccffd9;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.4s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  position: relative;
  overflow: hidden;
}

/* Hover Effect + Glow */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(0, 255, 150, 0.25), 0 0 25px rgba(0, 255, 150, 0.15);
  border-color: rgba(0, 255, 150, 0.3);
}

/* Optional Shimmer Overlay on Hover */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-30deg);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

/* Icon Style */
.icon {
  font-size: 32px;
  margin-bottom: 10px;
  color: #99ffcc;
}

/* Card Text */
.feature-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #e8fff0;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.4;
  color: #caffdf;
}

/* Staggered Animation Delays */
.feature-card:nth-child(1) {
  animation-delay: 0.3s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.5s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.7s;
}

/* Slide-up Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* General fade-in for title and subtitle */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Stats Section ===== */
.stats-section {
  background: linear-gradient(-45deg, rgba(0, 60, 0, 0.85), rgba(0, 100, 0, 0.9), rgba(0, 45, 0, 0.95), rgba(0, 80, 0, 1));
  background-size: 400% 400%;
  animation: animatedBG 15s ease infinite;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

/* Background animation */
@keyframes animatedBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Heading */
.stats-heading {
  font-size: 32px;
  font-weight: 700;
  color: #a6ffc3;
  margin-bottom: 12px;
  position: relative;
}

.stats-heading::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #40e27b;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Subtitle */
.stats-subtitle {
  max-width: 680px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #c0f5d4;
  line-height: 1.6;
}

/* Grid Layout */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Stat Card */
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(90, 255, 150, 0.15);
  border-radius: 16px;
  padding: 30px 20px;
  width: 220px;
  color: #e8ffee;
  box-shadow: 0 8px 24px rgba(0, 80, 0, 0.2);
  transition: all 0.4s ease;
  transform: translateY(40px);
  opacity: 0;
}

/* Animate in view */
.stat-card.animate {
  transform: translateY(0);
  opacity: 1;
}

/* Hover effects */
.stat-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 18px rgba(40, 255, 120, 0.4);
  border-color: rgba(90, 255, 150, 0.25);
}

/* Icon */
.stat-icon {
  background: #e6ffee;
  color: #30da7b;
  font-size: 24px;
  padding: 18px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: inline-block;
  transition: transform 0.3s, background 0.3s;
}

.stat-card:hover .stat-icon {
  transform: rotate(8deg) scale(1.1);
  background: #b6ffd9;
}

/* Stat number */
.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #a4ff75;
  margin-bottom: 8px;
}

/* Label */
.stat-label {
  font-size: 14px;
  color: #bdfbd9;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 90%;
  }
}

/* ===== Why Us Section ===== */
.why-us-section {
  background: linear-gradient(-45deg, rgba(0, 60, 0, 0.9), rgba(0, 80, 0, 0.95), rgba(0, 45, 0, 1), rgba(0, 100, 0, 0.85));
  background-size: 400% 400%;
  animation: bgFlow 12s ease infinite;
  padding: 80px 20px;
  text-align: center;
  color: white;
}

/* Flowing Background Animation */
@keyframes bgFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.why-heading {
  font-size: 28px;
  font-weight: 700;
  color: #a8ffcc;
  margin-bottom: 12px;
  position: relative;
}

.why-heading::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #4dde76;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.why-subtitle {
  max-width: 680px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #bdf5d4;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(90, 255, 150, 0.15);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 80, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.5s;
  opacity: 0;
  transform: translateX(60px);
}

/* When in view */
.why-card.animate {
  opacity: 1;
  transform: translateX(0);
}

.why-card:nth-child(1) { animation-delay: 0.2s; }
.why-card:nth-child(2) { animation-delay: 0.4s; }
.why-card:nth-child(3) { animation-delay: 0.6s; }
.why-card:nth-child(4) { animation-delay: 0.8s; }

.why-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(70, 255, 150, 0.35);
}

/* Icon Style */
.why-icon {
  background: #dbffe7;
  color: #30da7b;
  font-size: 22px;
  padding: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover .why-icon {
  transform: scale(1.2) rotate(6deg);
  box-shadow: 0 0 10px #40e27b;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #e9fff0;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #dcfce9;
  line-height: 1.5;
}


/* ===== Integrations Section ===== */
.integrations-section {
  background: linear-gradient(-45deg, rgba(0, 60, 0, 0.9), rgba(0, 90, 0, 0.95), rgba(0, 30, 0, 1), rgba(0, 80, 0, 0.85));
  background-size: 400% 400%;
  animation: animatedBG 18s ease infinite;
  text-align: center;
  padding: 80px 20px;
  color: white;
  overflow: hidden;
}

@keyframes animatedBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.integrations-heading {
  font-size: 32px;
  font-weight: 700;
  color: #a8ffcc;
  margin-bottom: 10px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.integrations-heading::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #34e87b;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.integrations-subtitle {
  font-size: 16px;
  color: #c1f9db;
  margin-bottom: 50px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease 0.1s;
}

.integrations-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

/* Card Styling */
.integration-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(80, 255, 150, 0.15);
  border-radius: 14px;
  padding: 28px 24px;
  width: 180px;
  box-shadow: 0 6px 18px rgba(0, 100, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateX(60px);
}

.integration-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(52, 232, 123, 0.2);
}

/* Icon Wrapper */
.integration-icon {
  background: #e2ffe5;
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-icon img,
.integration-icon i {
  font-size: 26px;
  color: #2be77a;
  max-width: 60%;
  max-height: 60%;
}

/* Integration Label */
.integration-name {
  font-weight: 600;
  font-size: 15px;
  color: #d6ffe4;
}

/* Scroll/Load animation active class */
.animate-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .integrations-grid {
    flex-direction: column;
    align-items: center;
  }

  .integration-card {
    width: 80%;
  }
}


/* ===== Pricing Section ===== */
.pricing-section {
  background: linear-gradient(-45deg, rgba(0, 80, 0, 0.95), rgba(0, 60, 0, 0.9), rgba(0, 100, 0, 1), rgba(0, 50, 0, 0.85));
  background-size: 400% 400%;
  animation: bgShift 20s ease infinite;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pricing-heading {
  font-size: 32px;
  font-weight: 800;
  color: #b6ffd4;
  margin-bottom: 12px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.pricing-heading::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #34e87b;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.pricing-subtitle {
  font-size: 16px;
  color: #c8ffe4;
  margin-bottom: 50px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease 0.1s;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(80, 255, 150, 0.12);
  border-radius: 14px;
  padding: 30px 26px;
  width: 320px;
  color: #e2ffe5;
  box-shadow: 0 8px 30px rgba(0, 100, 0, 0.15);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(60px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(52, 232, 123, 0.2);
}

/* Plan Title Styles */
.basic .plan-title,
.premium .plan-title {
  font-size: 18px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 18px;
}

.basic .plan-title {
  background-color: #34c759;
}

.premium .plan-title {
  background-color: #1fae62;
}

/* Plan Description */
.plan-desc {
  font-size: 15px;
  color: #bbffe0;
  margin-bottom: 20px;
}

/* Features List */
.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.plan-features li {
  font-size: 14px;
  color: #eafff4;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.plan-features li i {
  color: #2be77a;
  margin-right: 10px;
}

/* Button */
.pricing-btn {
  width: 100%;
  padding: 12px 0;
  border: none;
  background: linear-gradient(135deg, #2be77a, #4df49a);
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(52, 232, 123, 0.3);
}

/* Animate on scroll */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-card {
    width: 90%;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 80px 20px;
  background: linear-gradient(-45deg, rgba(0, 80, 0, 0.95), rgba(0, 50, 0, 0.9), rgba(0, 100, 0, 1), rgba(0, 60, 0, 0.85));
  background-size: 400% 400%;
  animation: bgMove 20s ease infinite;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.faq-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #b6ffd4;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease;
}

.faq-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #34e87b;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.faq-subtitle {
  color: #c8ffe4;
  font-size: 16px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease 0.2s;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(80, 255, 150, 0.15);
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
  color: #e2ffe5;
  opacity: 0;
  transform: translateX(-80px);
}

.faq-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #d6ffe4;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: rgba(80, 255, 150, 0.05);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 14px;
  color: #bbffe0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-arrow {
  transition: transform 0.3s ease;
  color: #2be77a;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

/* Scroll animation helpers */
.fade-in-up, .fade-in-down,
.fade-in-left, .fade-in-right {
  opacity: 1 !important;
  transform: translate(0) !important;
}


/* ===== Contact Section ===== */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(-45deg, rgba(0, 80, 0, 0.95), rgba(0, 60, 0, 0.9), rgba(0, 100, 0, 1), rgba(0, 50, 0, 0.85));
  color: #fff;
  overflow-x: hidden;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUpFade 1s ease forwards;
}

/* Left Info */
.contact-info {
  flex: 1;
  min-width: 280px;
  animation: fadeInLeft 1.2s ease forwards;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #5aff9d;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #e0ffe9;
}

.contact-info i {
  color: #34e87b;
  margin-right: 8px;
  font-size: 16px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-icons a:hover {
  background: #34e87b;
  transform: scale(1.1);
}

/* Right Form */
.container {
  flex: 1;
  min-width: 300px;
  animation: fadeInRight 1.2s ease forwards;
}

.contact-title {
  font-size: 24px;
  font-weight: 700;
  color: #5aff9d;
  margin-bottom: 25px;
  text-align: center;
}

.highlight-bar {
  border-bottom: 3px solid #34e87b;
  padding-bottom: 6px;
}

.contact-form {
  background: #fafffa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 255, 100, 0.1);
  color: #333;
  animation: slideUpFade 1.4s ease forwards;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 15px;
  width: 100%;
  margin-top: 6px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #34e87b;
  outline: none;
}

.contact-form label {
  font-weight: 600;
  color: #222;
}

.contact-form span {
  color: red;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1;
  min-width: 140px;
}

.form-group.full-width {
  flex-basis: 100%;
}

.contact-btn {
  background: linear-gradient(135deg, #34e87b, #6dfcb1);
  color: white;
  border: none;
  padding: 12px 0;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #28c96e, #34e87b);
  transform: scale(1.03);
}

/* Animations */
@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .container {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
  }
}


.footer {
  background-color: rgba(0, 60, 0, 0.95);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}

.footer-column h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #34e87b;
  margin-top: 5px;
}

.footer-column p,
.footer-column li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #b5f6c7;
}

.footer-column a {
  color: #b5f6c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #34e87b;
}

.footer-column i {
  color: #34e87b;
  margin-right: 8px;
}

.compliance-icons {
  margin-bottom: 10px;
}

.compliance-icons i {
  font-size: 20px;
  color: #34e87b;
  background: #ffffff;
  padding: 6px;
  border-radius: 6px;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #b5f6c7;
  border-top: 1px solid rgba(52, 232, 123, 0.2);
  padding-top: 20px;
}

