/* ===== Variables ===== */
:root {
  --header-bg: #ffffff;
  --header-border: #e5e7eb;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --active-link: #0d6efd;
  --transition: 0.2s ease;
  --footer-bg: #192f6a;
  --footer-bottom-bg: #212121;
  --footer-text: #ffffff;
  --footer-text-muted: rgba(255, 255, 255, 0.9);
  --footer-subscribe-btn: #e85d04;
  --footer-subscribe-btn-hover: #d95304;
  --hero-overlay: rgba(0, 0, 0, 0.5);
  --hero-search-btn: #e85d04;
  --hero-search-btn-hover: #d95304;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ===== Header ===== */
.header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ===== logo ===== */
.logo img{
  height: 42px;
}


/* ===== Mobile menu toggle ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--header-border);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: #f3f4f6;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Navigation ===== */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  /* background: #f0f9ff; */
}

.nav-link.active {
  color: var(--active-link);
  background: transparent;
}

.nav-link .fa-caret-down {
  font-size: 14px;
  margin-left: 2px;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  margin: 4px 0 0;
  padding: 0.5rem 0;
  background: #fff;
  border: 1px solid var(--header-border);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.dropdown a:hover {
  background: #f3f4f6;
  color: var(--primary);
}

/* ===== Header actions (Search + Social) ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.search-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--header-border);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.search-input {
  width: 220px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border: none;
  outline: none;
  color: var(--text-dark);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-search {
  width: 35px;
  height: 35px;
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
}

.btn-search:hover {
  background: var(--primary-hover);
}

/* ===== Hero Banner ===== */
.hero-banner {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 0;
}

.hero-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 8rem;
  width: 100%;
}

.hero-banner-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 5vw, 2.875rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  max-width: 800px;
}

.hero-banner-desc {
  margin: 0 0 1.75rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  max-width: 640px;
}

.hero-banner-search {
  display: flex;
  gap: 0;
  max-width: 480px;
}

.hero-banner-search-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-right: none;
  /* border-radius: 6px 0 0 6px; */
  outline: none;
  color: var(--text-dark);
  background: #fff;
}

.hero-banner-search-input::placeholder {
  color: var(--text-muted);
}

.hero-banner-search-btn {
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--hero-search-btn);
  border: none;
  /* border-radius: 0 6px 6px 0; */
  cursor: pointer;
  transition: var(--transition);
}

.hero-banner-search-btn:hover {
  background: var(--hero-search-btn-hover);
}

/* ===== Footer ===== */
.footer {
  margin-top: auto;
}

.footer-top {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 3rem 1.5rem 1rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-heading {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--footer-text);
}

.footer-newsletter .newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.newsletter-input {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
  color: var(--text-dark);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--footer-subscribe-btn);
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: 0.2s ease;
}

.newsletter-btn:hover {
  background: var(--footer-subscribe-btn-hover);
}

.payment-logos img{
  width: 100%;
  margin-top: 10px;
}

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

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

.footer-links a {
  color: var(--footer-text-muted);
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s ease;
}

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

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1rem;
  color: var(--footer-text-muted);
  font-size: 16px;
  line-height: 1.5;
}

.footer-contact li i {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1rem;
  color: var(--footer-text);
}

.footer-contact a {
  color: var(--footer-text-muted);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--footer-text);
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--footer-text);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--footer-text);
}

.footer-bottom {
  background: var(--footer-bottom-bg);
  color: var(--footer-text-muted);
  padding: 10px 20px;
}

.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  margin: 0;
  font-size: 0.875rem;
  color: var(--footer-text-muted);
}

.footer-iso img{
    width: 250px;
    border-radius: 5px;
}

/* ===== Revolutionary Growth Strategies section ===== */
.strategies-section {
  background: #fff;
  padding: 3rem 1.5rem;
}

.strategies-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.strategies-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a2b5b;
  margin: 0 0 2.5rem;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.strategies-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.25rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid #e2e8f0;
  cursor: pointer;
}

.strategies-card:focus-within {
  outline: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 3px rgba(232, 93, 4, 0.25);
}

.strategies-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.15), rgba(26, 43, 91, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.strategies-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(232, 93, 4, 0.08);
  border-color: rgba(232, 93, 4, 0.2);
}

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

.strategies-card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.strategies-card:hover .strategies-card-icon-wrap {
  background: linear-gradient(135deg, #e85d04, #d14d02);
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.35);
}

.strategies-card-icon {
  font-size: 1.25rem;
  color: #e85d04;
  transition: color 0.3s ease, transform 0.3s ease;
}

.strategies-card:hover .strategies-card-icon {
  color: #fff;
  transform: scale(1.1);
}

.strategies-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin: 1rem 0 0.75rem;
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.strategies-card:hover .strategies-card-title {
  color: #1a2b5b;
}

.strategies-card-desc {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  transition: color 0.25s ease;
}

.strategies-card:hover .strategies-card-desc {
  color: #444;
}

/* ===== Reports Categories section ===== */
.reports-categories-section {
  background: #f8fafc;
  padding: 3rem 1.5rem;
}

.reports-categories-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reports-categories-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a5f;
  margin: 0 0 2rem;
}

.reports-categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.reports-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #1e293b;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reports-category-card:hover,
.reports-category-card:focus {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.95);
}


.reports-category-card:hover .reports-category-label,
.reports-category-card:focus .reports-category-label {
  color: #0f172a;
  font-weight: 600;
}

.reports-category-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, filter 0.3s ease;
  position: relative;
  z-index: 1;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
}

.reports-category-label {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 1.35;
  transition: color 0.3s ease, font-weight 0.3s ease;
  position: relative;
  z-index: 1;
}

/* ===== Latest Reports & Press Release sections (card layout with date block) ===== */
.latest-reports-section {
  background: #f8fafc;
  padding: 3rem 1.5rem;
}

.press-release-section {
  background: #fff;
  padding: 3rem 1.5rem;
}

.content-cards-section .content-cards-inner {
  max-width: 90%;
  margin: 0 auto;
}

.content-cards-title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 2rem;
}

.content-cards-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-card {
  margin: 0;
}

.content-card-link {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.content-card-link:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: #c7d2fe;
}

.content-card-date {
  flex-shrink: 0;
  width: 100px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1d4ed8;
  color: #fff;
  padding: 1rem 0.75rem;
  text-align: center;
}

.content-card-date-month {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.content-card-date-year {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.content-card-body {
  flex: 1;
  padding: 1rem 1.25rem;
  min-width: 0;
}

.content-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}

.content-card-link:hover .content-card-title {
  color: var(--primary);
}

.content-card-details {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #343a40;
}

.content-card-details strong {
  font-weight: 700;
  color: #343a40;
}

.content-card-details__value {
  font-weight: 400;
  color: #6c757d;
}

.content-card-details__sep {
  margin: 0 0.4rem;
  color: #adb5bd;
  font-weight: 400;
  user-select: none;
}

.content-card-desc {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.content-cards-cta-wrap {
  text-align: center;
}

.content-cards-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2563eb;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.content-cards-cta:hover {
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.35);
}

.content-cards-cta .fa-arrow-right {
  font-size: 0.875rem;
}

/* ===== Testimonials section ===== */
.testimonials-section {
  background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
}

.testimonials-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2.5rem;
  letter-spacing: -0.02em;
}

.testimonials-slider {
  position: relative;
}

.testimonial-track {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  display: none;
  padding: 2rem 2.25rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(30, 58, 95, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  align-items: flex-start;
  gap: 1.5rem;
}

.testimonial-slide.active {
  display: flex;
  animation: testimonialFadeIn 0.4s ease;
}

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

.testimonial-quote-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  opacity: 0.9;
}

.testimonial-quote-icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-content {
  flex: 1;
  min-width: 0;
}

.testimonial-text {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #334155;
}

.testimonial-separator {
  height: 2px;
  width: 48px;
  background: linear-gradient(90deg, var(--primary), #93c5fd);
  margin-bottom: 1rem;
  border-radius: 1px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-author-title {
  font-weight: 700;
  color: #1e3a5f;
  font-size: 1.05rem;
}

.testimonial-author-company {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.75rem;
  padding: 0 0.25rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.testimonials-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.2s ease;
}

.testimonial-dot:hover {
  background: #94a3b8;
  transform: scale(1.15);
}

.testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.25);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
}

.testimonials-nav {
  display: flex;
  gap: 0.5rem;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.12);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.testimonial-btn:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  border-color: var(--primary);
}

.testimonial-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ===== Stats / Achievements section ===== */
.stats-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #1e293b 100%);
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, transform 0.25s ease, border-color 0.25s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.stat-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.stat-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
  font-weight: 500;
}


/* line animation */
.lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 90vw;
    z-index: 1;
}
.lines .line-three {
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgb(255 255 255 / 0.1);
    overflow: hidden;
}
.lines .line-three::after {
    content: "";
    display: block;
    position: absolute;
    height: 15px;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #1d58e5;
    -webkit-animation: moveLeftBounces-one 15s linear infinite;
    animation: moveLeftBounces-one 12s linear infinite;
}
.lines .line-three:nth-child(1) {
    margin-left: -25%;
}
.lines .line-three:nth-child(3) {
    margin-left: 25%;
}
.lines .line-three:nth-child(1)::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.lines .line-three:nth-child(3)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}
@keyframes moveLeftBounces-one {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(500px);
    }
    100% {
        transform: translateY(0);
    }
}
.line-btn::before {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: 25px;
    top: -1px;
    left: 0;
    background-color: #1d58e5;
    -webkit-animation: moveLeftBounces-two 15s linear infinite;
    animation: moveLeftBounces-two 15s linear infinite;
    box-shadow: 0 3px 10px -1px rgb(76 147 206 / 0.75);
    -webkit-box-shadow: 0 3px 10px -1px rgb(76 147 206 / 0.75);
    -moz-box-shadow: 0 3px 10px -1px rgb(76 147 206 / 0.75);
}
.line-btn::after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: 25px;
    bottom: -1px;
    right: 0;
    background-color: #1d58e5;
    -webkit-animation: moveRightBounces-two 15s linear infinite;
    animation: moveRightBounces-two 15s linear infinite;
    box-shadow: 0 3px 10px -1px rgb(76 147 206 / 0.75);
    -webkit-box-shadow: 0 3px 10px -1px rgb(76 147 206 / 0.75);
    -moz-box-shadow: 0 3px 10px -1px rgb(76 147 206 / 0.75);
}
@keyframes moveLeftBounces-two {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(510px);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes moveRightBounces-two {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-510px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Hero Banner Search Button */
.hero-banner-search-btn {
    background-color: #2563eb; /* A strong blue */
    color: #ffffff;            /* Pure white */
    /* Contrast Ratio: 4.63:1 - PASSES */
}

/* Newsletter Button */
/* If your newsletter button has a light background, use dark text. 
   If it's a dark background, ensure the blue/brand color is deep enough. */
.newsletter-btn {
    background-color: #1e40af; /* Even deeper blue for better contrast */
    color: #ffffff;            /* Pure white */
    font-weight: 600;          /* Bolder text helps with readability */
}

/* Hover States (Don't forget to keep contrast high here too) */
.hero-banner-search-btn:hover, 
.newsletter-btn:hover {
    background-color: #1d4ed8;
    color: #ffffff;
}
/* 1. Increase Dot Size and Spacing */
.testimonial-dot {
    width: 12px;           /* The visual size */
    height: 12px;
    margin: 0 12px;        /* Increases spacing between dots */
    cursor: pointer;
    position: relative;
}

/* Use a pseudo-element to expand the "hit area" without changing the look */
.testimonial-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;           /* Large invisible tap area */
    height: 44px;
}

/* 2. Increase Nav Button Size */
.testimonial-btn {
    width: 44px;           /* Standardize to 44px */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;          /* Ensure content doesn't touch edges */
}
img.lazyloaded {
    width: 100%;
    height: auto;
}
