:root {
  --dark-bg: #1a202c;
  --accent: #198754;
  --light-bg: #f9fafb;
  --text-dark: #1f2937;
  --text-light: #6b7280;
}

/* Base */
body {
  font-family: "Source Sans Pro", sans-serif;
  margin: 0;
  color: var(--text-dark);
  background: var(--light-bg);
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Base */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}

.logo img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 36px;
  margin-right: 8px;
  transition: transform 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

.logo h1 {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 30px;
  color: var(--text-light);
  font-weight: 700;
  font-family: "Raleway", sans-serif;
}

.logo h1 span {
  color: var(--accent);
  margin-right: 8px;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #1f2937;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* General nav link style */
.nav-links .nav-link {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: #333;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

/* Underline effect */
.nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
  width: 100%;
}

/* Hover color */
.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: var(--accent);
}

/* Highlight Download App option */
.nav-links .highlight-download > .dropdown-toggle {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-links .highlight-download > .dropdown-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
}

/* Keep chevron white */
.nav-links .highlight-download .chevron-icon {
  color: #fff;
  margin-left: 6px;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Toggle button */
.dropdown-toggle {
  background: none;
  border: none;
  font: inherit;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

.dropdown-toggle:hover {
  color: var(--accent);
}

/* Dropdown menu hidden by default */
.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 200px;
  display: none;
  opacity: 0;
  transform: scale(0.95);
  transform-origin: top center;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1000;
}

/* Show when active */
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown.open .dropdown-menu {
  display: block;
  opacity: 1;
  transform: scale(1);
}

/* Dropdown links */
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  background: #f3fdfc;
  color: var(--accent);
  border-radius: 6px;
}

/* Chevron rotation */
.chevron-icon {
  transition: transform 0.3s ease;
}

.dropdown.open .chevron-icon {
  transform: rotate(180deg);
}

/* General nav links */
.nav-links li a {
  position: relative;
  color: #333;
  text-decoration: none;
  /* font-weight: 500; */
  /* padding: 6px 0; */
  transition: color 0.3s ease;
}

/* Underline effect */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--accent); /* Professional blue */
  transition: width 0.3s ease;
}

/* Hover effect: expand underline */
.nav-links li a:hover::after {
  width: 100%;
}

/* Active (selected) link */
.nav-links li a.active::after {
  width: 100%;
}

.btn-hero {
  display: inline-flex; /* flex for icon alignment */
  align-items: center;
  gap: 0.5rem; /* space between text and icon */

  background: var(--accent); /* Professional blue */
  color: #fff;
  font-size: 1.125rem; /* ~18px */
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 9999px; /* pill shape */
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
}

/* Hover effect */
.btn-hero:hover {
  background: var(--accent);
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
  transform: translateY(-2px);
}

/* Active (when clicked) */
.btn-hero:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
}

/* Icon style */
.btn-hero i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* Icon animates on hover */
.btn-hero:hover i {
  transform: translateX(4px);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #1f2937;
}

/* Hero Section */
.hero-home {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem; /* adjust top/bottom padding */
  background: linear-gradient(135deg, #e6ffed 0%, #d1f9e6 100%);
  position: relative;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bolder;
  line-height: 4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

/* Store Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  font-size: 1.5rem;
  color: var(--accent);
  text-decoration: none;
}

.store-btn:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

/* Floating CTA Buttons on Hero Image */
.hero-floating-cta {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-floating {
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary.cta-floating {
  background: var(--accent);
  color: #fff;
}

.btn-primary.cta-floating:hover {
  background: darkgreen;
  transform: translateY(-4px);
}

.btn-secondary.cta-floating {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-secondary.cta-floating:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-4px);
}

/* Hero Image */
.hero-image {
  flex: 1 1 450px;
  text-align: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  border-radius: 12px;
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Stats Section */
.stats-section {
  background: #f9fafb;
  padding: 60px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(25, 135, 84, 0.15);
}

.stat-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.stat-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 1rem;
  color: var(--text-light);
}

/* Scroll Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.fade-in-up.delay-1 {
  animation-delay: 0.2s;
}
.fade-in-up.delay-2 {
  animation-delay: 0.4s;
}
.fade-in-up.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Section */
.features {
  padding: 80px 20px;
  background-color: white;
}
.features h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  text-decoration: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.3s;
  color: inherit;
}
.feature-card:hover {
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
  transform: translateY(-4px);
}
.feature-card .icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ============================= */
/* Pricing Section */
/* ============================= */

/* ============================= */
/* Billing Toggle */
/* ============================= */
.billing-toggle-container {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: system-ui, sans-serif;
  position: relative;
}

.billing-toggle-input {
  display: none;
}

.billing-toggle-label {
  display: inline-flex;
  position: relative;
  width: 160px;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 9999px;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
}

.billing-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
}

.billing-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 76px;
  height: 32px;
  background-color: #0a8f64;
  border-radius: 9999px;
  transition: transform 0.3s ease;
  z-index: 0;
}

/* Move slider when checked */
.billing-toggle-input:checked + .billing-toggle-label .billing-slider {
  transform: translateX(80px);
}

/* Default: Yearly (left option) is active (white), Monthly is inactive (gray) */
.billing-toggle-input:not(:checked)
  + .billing-toggle-label
  .billing-option:first-child {
  color: #fff;
}
.billing-toggle-input:not(:checked)
  + .billing-toggle-label
  .billing-option:nth-child(2) {
  color: #777;
}

/* When toggled (Monthly is selected): */
.billing-toggle-input:checked
  + .billing-toggle-label
  .billing-option:first-child {
  color: #777;
}
.billing-toggle-input:checked
  + .billing-toggle-label
  .billing-option:nth-child(2) {
  color: #fff;
}

.billing-option {
  transition: color 0.3s ease;
}

/* Save tag */
.save-note {
  font-size: 0.75rem;
  color: #0a8f64;
  background-color: #e6f5ef;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.pricing-section {
  padding: 6rem 1rem;
  background: #fff;
  text-align: center;
}

.pricing-section .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111827;
  letter-spacing: -0.5px;
}

.pricing-section .section-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
  margin-top: 5rem;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
}

.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  /* margin-bottom: 1rem; */
  color: var(--accent);
}

.pricing-card h1 {
  color: var(--text-light);
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-top: 0;
  margin-bottom: 1.75rem;
}

.pricing-card .price small {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  margin-left: 4px;
}

.pricing-card .features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.pricing-card .features li {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
}

.pricing-card .features i {
  color: var(--accent);
  margin-right: 0.6rem;
  font-size: 1rem;
}

/* Buttons */
.pricing-card .btn-primary,
.pricing-card .btn-outline {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card .btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(25, 135, 84, 0.25);
}

.pricing-card .btn-primary:hover {
  background: #157347;
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.35);
}

.pricing-card .btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
}

.pricing-card .btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* Featured Card */
.pricing-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.05);
  background: linear-gradient(180deg, #f9fdfb 0%, #ffffff 100%);
  position: relative;
}

.pricing-card.featured .badge {
  position: absolute;
  top: -14px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(25, 135, 84, 0.25);
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(
    135deg,
    rgba(25, 135, 84, 1) 0%,
    rgba(26, 32, 44, 1) 100%
  );
  padding: 4rem 0;
  overflow: hidden;
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--light-bg);
}

/* Rows */
.testimonial-row {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 2.5rem;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
}

/* Cards */
.testimonial-card {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1rem;
}

.testimonial-card span {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
}

/* Auto scroll effect */
.row-1 .testimonial-track {
  animation: scroll-left 40s linear infinite;
}

.row-2 .testimonial-track {
  animation: scroll-right 40s linear infinite;
}

/* Keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Footer Base */
.site-footer {
  background: #1f2937; /* dark slate */
  color: #f9fafb; /* light text */
  padding: 4rem 1rem 1rem;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

/* .footer-brand .logo img {
  height: 48px;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #d1d5db;
  line-height: 1.6;
} */

.footer-brand {
  text-align: center;
  max-width: 260px;
  margin: 0 auto;
}

.footer-brand .logo img.product-logo {
  height: 36px;
  margin-right: 8px;
  /* margin: 0; */
  /* margin-bottom: 0.5rem; */
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--light-bg);
  line-height: 1.6;
  margin: 0.5rem 0 1rem;
}

.footer-brand .powered-by {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #d1d5db;
}

.footer-brand .powered-by img.parent-logo {
  height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-brand .powered-by img.parent-logo:hover {
  opacity: 1;
}

/* Links */
.footer-links h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--accent); /* accent color */
}

/* Social */
.footer-social h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #374151; /* slightly lighter dark */
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #f9fafb;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #374151;
  text-align: center;
  padding-top: 1rem;
  color: #9ca3af;
  font-size: 0.85rem;
}

/* .hero-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeUp 0.8s ease forwards;
}

.hero-text p {
  font-size: 1.15rem;
  color: #555;
  max-width: 600px;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease forwards;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  animation: fadeRight 1s ease forwards;
} */

/* Mission Section */
.about-mission {
  padding: 5rem 0;
  background: #f9fafb;
}

.mission-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.mission-text h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.mission-text p {
  color: #555;
  line-height: 1.6;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
}
.stat-card h3 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

/* Values Section */
.about-values {
  padding: 5rem 0;
  text-align: center;
  background-color: var(--light-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
}
.value-card .icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Timeline Section */
/* .about-journey {
  padding: 5rem 0;
  background: #f9fafb;
  text-align: center;
}

.timeline {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

.timeline-item {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.25s ease;
}
.timeline-item:hover {
  transform: translateY(-5px);
}
.timeline-item .year {
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
} */

/* Video Section */
.about-video {
  padding: 4rem 0;
  background: #fff;
  text-align: center;
}

.about-video h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.about-video p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
}

/* Responsive video embed */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Team Section
.about-team {
  padding: 5rem 0;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.team-member {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.team-member img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid #eef2ff;
}
.team-member h4 {
  margin-bottom: 0.25rem;
}
.team-member p {
  color: #666;
  font-size: 0.9rem;
} */

/* ---------------- */
/* ANIMATIONS */
/* ---------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mini Hero */
.page-hero {
  background: linear-gradient(135deg, #e6ffed 0%, #d1f9e6 100%);
  text-align: center;
  padding: 80px 20px;
  position: relative;
}
.page-hero-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 15px;
}
.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 15px;
}
.page-hero p {
  max-width: 650px;
  margin: 0 auto 20px;
  color: #555;
  line-height: 1.5;
}

/* Breadcrumb Container */
.breadcrumb {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #555;
  font-family: "Inter", system-ui, sans-serif;
}

/* Breadcrumb List */
.breadcrumb ol {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Each Item */
.breadcrumb li {
  display: flex;
  align-items: center;
  color: #666;
}

/* Breadcrumb Links */
.breadcrumb a {
  text-decoration: none;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* Separator */
.breadcrumb li + li::before {
  content: "/";
  margin: 0 0.5rem;
  color: #bbb;
}

/* Current Page (not a link) */
.breadcrumb li[aria-current="page"] {
  color: #888;
  font-weight: 500;
}

/* Optional: Icon Style */
.breadcrumb .icon {
  width: 16px;
  height: 16px;
  color: #888;
}

/* Features Section */
.uni-features {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.uni-features-grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Feature Card */
.uni-feature-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 360px;
}
.uni-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
}

.uni-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.uni-feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.uni-feature-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.uni-feature-card ul {
  text-align: left;
  padding-left: 20px;
  font-size: 0.9rem;
  color: #555;
}

.uni-feature-card ul li {
  margin-bottom: 8px;
}

/* ===========================
   HERO
=========================== */
.pricing-hero-section {
  background: #f9fafb;
  padding: 4rem 1rem;
  text-align: center;
}

.pricing-hero-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing-hero-section .subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.page-hero-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ===========================
   PRICING PLANS
=========================== */
.pricing-plans-section {
  padding: 4rem 1rem;
  background: #fff;
  text-align: center;
}

.pricing-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.save-tag {
  background: var(--accent);
  color: #fff;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #d1d5db;
  transition: 0.3s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background: var(--accent);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* Pricing Grid */
.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-plan-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
}

.pricing-plan-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.pricing-features-list i {
  color: var(--accent);
}

.badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 0.25rem;
}

.featured {
  border: 2px solid var(--accent);
  background: #f0f7ff;
}

.btn-outline {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.note {
  font-size: 0.8rem;
  color: #6b7280;
  display: block;
  margin-top: 0.75rem;
  text-align: center;
}

.bottom-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #6b7280;
}

/* ===========================
   COMPARISON TABLE
=========================== */
.pricing-comparison-container {
  margin-top: 5rem;
  overflow-x: auto;
}

.pricing-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
  padding: 1rem;
  border: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.95rem;
}

.pricing-comparison-table th {
  background: #f3f4f6;
  font-weight: 600;
}

.included {
  color: var(--accent);
}

.excluded {
  color: #ef4444;
}

/* ===========================
   SIGNUP SECTION
=========================== */
.pricing-signup-section {
  padding: 3rem 1rem;
  text-align: center;
  background: #f9fafb;
}

.signup-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 2rem;
  border-radius: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.signup-card .form-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.signup-card input {
  flex: 1;
  padding: 0.6rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
}

.signup-card button {
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.signup-card button:hover {
  background: #1e40af;
}

/* Chatbot Styles */
#chatbot-container {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: "Source Sans Pro", sans-serif;
}

#chat-toggle {
  display: inline-flex;
  background-color: var(--accent);
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.3rem;
}

#chatbox {
  display: none;
  flex-direction: column;
  width: 320px;
  height: 400px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin-bottom: 10px;
}

.chat-header {
  background-color: var(--accent);
  color: white;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
}

.chat-input {
  display: flex;
  border-top: 1px solid #eee;
}

.chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.chat-input button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0 16px;
  cursor: pointer;
}

.bot-message,
.user-message {
  margin: 8px 0;
  padding: 10px;
  border-radius: 8px;
  max-width: 85%;
}

.bot-message {
  background: #f1f1f1;
  align-self: flex-start;
}

.user-message {
  background: #d1e7ff;
  align-self: flex-end;
  text-align: right;
}

/* Hero Section */
.contact-hero {
  background: linear-gradient(
    360deg,
    rgba(25, 135, 84, 1) 0%,
    rgba(26, 32, 44, 1) 100%
  );
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  border-radius: 0 0 12px 12px;
}
.contact-hero .hero-icon i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}
.contact-hero .hero-subtext {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Contact Wrapper */
.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin: 3rem auto;
}
.contact-form-section h2,
.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  /* color: var(--accent); */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form-section h2 i,
.contact-info h2 i {
  color: var(--accent);
}

/* Form */
.contact-form label {
  display: block;
  font-weight: 600;
  margin-top: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 90%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 0.4rem;
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
}
.btn-submit {
  margin-top: 1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}
.btn-submit:hover {
  background: var(--dark-bg);
}

/* Support Info */
.info-cards {
  display: grid;
  gap: 1.2rem;
}
.info-card {
  text-decoration: none;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: 0.2s;
  color: #000;
}
.info-card:hover {
  background: #fff;
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
}
.info-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.info-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* ===== Layout ===== */
.content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* ===== Sidebar (TOC) ===== */
.toc-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  position: sticky;
  top: 7rem;
  flex: 0 0 260px;
  transition: all 0.3s ease;
}

/* TOC list */
.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-list > li {
  margin-bottom: 1rem;
}

.toc-list > li > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.toc-list > li > a:hover {
  color: var(--accent);
}

/* Sublist */
.toc-sublist {
  list-style: none;
  margin: 0.3rem 0 0 1.2rem;
  padding: 0;
}

.toc-sublist li {
  margin: 0.4rem 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.toc-sublist a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  color: #444;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.toc-sublist a:hover {
  color: var(--accent);
  background: #f0fdf4;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
}

/* Icons */
.toc-list i,
.toc-sublist i {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0fdf4;
  color: var(--accent);
  border-radius: 50%;
  padding: 8px;
  font-size: 0.85rem;
  min-width: 18px;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); */
}

/* ===== Main Content ===== */
main {
  flex: 1;
}

main section {
  background: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  scroll-margin-top: 80px;
}

main section h1 {
  /* font-size: 1.5rem; */
  color: var(--accent);
  margin-top: 0;
}

main section h3 {
  font-size: 1.2rem;
  margin-top: 1.2rem;
  color: #222;
}

main p,
main li {
  line-height: 1.6;
  color: #333;
}

.sub-section {
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  scroll-margin-top: 110px;
}

/* ===== Contact Box ===== */
.contact-box {
  background: #f0fdf4;
  padding: 2rem;
  border: 1px solid var(--accent);
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-box h3 {
  margin-top: 0;
  color: var(--accent);
}

.contact-box a {
  color: var(--accent);
  font-weight: 600;
}

/* ===== Mobile TOC Toggle ===== */
.toc-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
  border: none;
}

#scrollTopBtn {
  position: fixed;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 0.6rem 1rem 0.6rem 0.8rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  opacity: 0;
  z-index: 1000;
}

#scrollTopBtn.show {
  opacity: 1;
}

#scrollTopBtn:hover {
  transform: translateX(-50%) scale(1.05);
  background: var(--accent);
}

#scrollTopBtn .arrow {
  display: inline-block;
  background: rgba(25, 135, 84, 0.15);
  padding: 0.2rem 0.4rem;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
}

.blog {
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.blog {
  padding: 4rem 1rem;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
}

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
  text-align: left;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.read-more {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

/* General Blog Post Page */
.blog-post {
  padding: 4rem 1rem;
}

.post-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.post-meta {
  font-size: 0.9rem;
  color: #777;
  text-align: center;
  margin-bottom: 2rem;
}

.post-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;
  color: #555;
}

.post-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.post-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.back-button {
  text-align: center;
  margin-top: 3rem;
}

.back-button a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
}

.back-button a:hover {
  text-decoration: underline;
}

/* Related Posts Section */
.related-posts {
  padding: 4rem 0 2rem;
  text-align: center;
}

.related-posts h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.related-posts .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Blog Card Style (matches features) */
.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(25, 135, 84, 0.15);
}

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
  text-align: left;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.read-more {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

/* Offer Slider */
.offer-slider {
  background: #0a2540;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 0;
  overflow: hidden;
  position: fixed;
  top: 88px; /* header height */
  width: 100%;
  z-index: 999;
}

.offer-container {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
}

.offer-track {
  display: inline-block;
  animation: slide-left 20s linear infinite;
}

.offer {
  display: inline-block;
  padding: 0 50px;
}

/* Scrolling Animation */
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .offer {
    padding: 0 30px;
    font-size: 0.85rem;
  }
}

/* Smooth fade-in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a.uni-link {
  color: var(--accent);
  text-decoration: none;
}

a.uni-link:hover,
a.uni-link:focus {
  text-decoration: underline;
  outline: none;
}

/* Header */
header.uni-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

a.uni-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

img.uni-logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  margin-right: 0.75rem;
}

h1.uni-sitename {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  user-select: none;
  color: var(--text-light);
}

.uni-text-success {
  color: var(--accent);
}

/* Main content */
main.uni-main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

div.uni-page-title {
  text-align: center;
  margin-bottom: 2rem;
}

div.uni-page-title h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #222;
}

section.uni-service-details p {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: #444;
}

section.uni-service-details p strong {
  font-weight: 700;
  color: #000;
}

.know-more-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
  h1.uni-sitename {
    font-size: 1.25rem;
  }

  main.uni-main {
    margin: 1rem;
  }

  section.uni-service-details p {
    font-size: 1rem;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    flex-direction: column;
    background: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 260px;
    padding: 2rem 1.5rem;
    border-left: 1px solid #e5e7eb;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-links.active {
    right: 0; /* slides into view */
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1000; /* stays above the nav */
  }

  .nav-links li {
    width: 100%;
    margin-bottom: 1rem;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f9fafb;
    border-radius: 6px;
    padding-left: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .btn-primary {
    display: none;
  }
  .hero-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 3rem;
    line-height: 2.5rem;
    font-weight: bolder;
  }

  .hero-text,
  .hero-image {
    order: unset;
  }
  .hero-floating-cta {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .uni-features {
    padding: 60px 20px;
  }
  .uni-features-grid {
    gap: 25px;
  }

  .pricing-card {
    padding: 1.75rem;
  }
  .pricing-card h3 {
    font-size: 1.4rem;
  }
  .pricing-card .price {
    font-size: 2rem;
  }
  .comparison-table td,
  .comparison-table th {
    padding: 10px 8px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .content-wrapper {
    flex-direction: column;
  }
  .content-wrapper {
    gap: 1.5rem;
  }
  main section {
    padding: 1.5rem;
  }
  .toc-box {
    display: none;
    margin-bottom: 1rem;
    border-radius: 6px;
    animation: fadeIn 0.3s ease-in-out;
  }
  .toc-box.active {
    display: block;
  }
  .toc-toggle {
    display: block;
    margin-top: 2rem;
    margin-bottom: 0rem;
  }
  .blog-image img {
    height: 180px;
  }
  .post-image img {
    max-height: 300px;
  }
  .blog-image img {
    height: 180px;
  }
  .btn-hero {
    font-size: 1rem; /* ~18px */
    padding: 0.5rem 1.5rem;
  }
  .hero-text h1 {
    margin-top: 5rem;
  }
  .related-posts .blog-grid {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    gap: 1rem;
  }
  .hero-home {
    padding: 0 15px;
    gap: 0;
  }
  .hero-buttons {
    justify-content: center;
  }
  .store-btn img {
    max-height: 45px;
  }
  .hero-text {
    flex: 0;
  }

  .pricing-section {
    padding: 4rem 1rem;
  }

  .pricing-section .section-title {
    font-size: 1.75rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-card .price {
    font-size: 2rem;
  }
  .testimonial-card {
    flex: 0 0 80%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    margin-bottom: 2rem;
  }

  .social-icons {
    justify-content: center;
  }

  .hero-flex,
  .mission-flex {
    flex-direction: column;
    text-align: center;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
  }
  .page-hero {
    padding: 60px 15px;
  }
  .page-hero h1 {
    font-size: 1.9rem;
  }
  .page-hero p {
    max-width: 90%;
  }
  .uni-features {
    padding: 50px 15px;
  }
  .uni-features-grid {
    grid-template-columns: 1fr; /* single column on small devices */
    gap: 20px;
  }
  .uni-feature-card {
    padding: 25px 15px;
    min-height: auto;
  }

  .pricing-section {
    padding: 60px 15px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .billing-toggle {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  body {
    font-size: 15px;
  }
  main section h2 {
    font-size: 1.3rem;
  }
  main section h3 {
    font-size: 1.05rem;
  }
  .toc-box {
    padding: 1rem;
  }
  .toc-box ul li {
    margin: 0.4rem 0;
  }

  #scrollTopBtn {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem 0.5rem 0.6rem;
  }
  #scrollTopBtn .arrow {
    font-size: 1rem;
    padding: 0.15rem 0.3rem;
  }

  .blog-image img {
    height: 160px;
  }

  .blog-content h3 {
    font-size: 1.15rem;
  }

  .blog-content p {
    font-size: 0.9rem;
  }
  .post-hero h1 {
    font-size: 1.85rem;
  }
  .post-content h2 {
    font-size: 1.35rem;
  }
  .post-content p {
    font-size: 0.95rem;
  }
  .blog-image img {
    height: 160px;
  }
}
@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .store-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .store-btn img {
    max-height: 40px;
  }

  .page-hero-icon {
    font-size: 2.2rem;
  }
  .uni-feature-card h3 {
    font-size: 1.2rem;
  }
  .uni-feature-card p,
  .uni-feature-card ul {
    font-size: 0.85rem;
  }
  .uni-feature-card ul {
    padding-left: 15px;
  }
  .pricing-card h3 {
    font-size: 1.25rem;
  }
  .pricing-card .price {
    font-size: 1.75rem;
  }
  .pricing-card .features-list li {
    font-size: 0.85rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-image img {
    height: 140px;
  }

  .blog-content h3 {
    font-size: 1.1rem;
  }

  .blog-content p {
    font-size: 0.85rem;
  }

  .read-more {
    font-size: 0.9rem;
  }

  .blog-post {
    padding: 3rem 1rem;
  }
  .post-hero h1 {
    font-size: 1.6rem;
  }
  .post-content h2 {
    font-size: 1.2rem;
  }
  .post-content p {
    font-size: 0.9rem;
  }
  .read-more {
    font-size: 0.9rem;
  }
  .related-posts .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-image img {
    height: 140px;
  }
}
