@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --blue: #063574;
  --deep-blue: #041f49;
  --green: #22c55e;
  --whatsapp: #25d366;
  --text: #111827;
  --muted: #5b6678;
  --light: #f6fbff;
  --border: #e5eef7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Poppins, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 1180px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

/* Top Bar */
.topbar {
  background: var(--blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-left {
  display: flex;
  gap: 28px;
  align-items: center;
}

.top-left i {
  margin-right: 7px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 18px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socials .x {
  color: #ffffff !important;
}

.socials .linkedin {
  color: #0a66c2 !important;
}

.socials .instagram {
  color: #e4405f !important;
}

.socials .whatsapp-icon {
  color: var(--whatsapp) !important;
}

/* Navbar */
.navbar {
  height: 78px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 25, 70, 0.08);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 6px;
}

.logo img {
  height: 58px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.quote-btn {
  background: var(--green);
  color: #ffffff;
  padding: 15px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.25);
}

/* Hero */
.hero-final {
  width: 100%;
  min-height: 515px;
  background-image: url("herophoto1.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-final-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 28px;
  color: #ffffff;
}

.hero-final-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.13);
  color: #dbeafe;
  border-radius: 6px;
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}

.hero-final h1 {
  color: #ffffff;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  max-width: 650px;
  margin-bottom: 16px;
}

.hero-final h1 strong {
  color: var(--green);
}

.hero-final p {
  max-width: 610px;
  color: #e4eefb;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-final-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.hero-final-buttons a {
  min-width: 205px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: var(--green);
  color: #ffffff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-final-buttons a.outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.hero-final-buttons a:hover,
.quote-btn:hover,
.cta a:hover,
.section-cta a:hover,
.price-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.28);
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: -14px;
  margin-bottom: 26px;
}

.hero-trust-badges span {
  color: #ffffff;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* Hero Stats */
.hero-final-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 590px;
  gap: 22px;
}

.hero-final-stats div {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 8px;
  align-items: start;
}

.hero-final-stats i {
  width: 22px;
  height: 22px;
  border: 3px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 10px;
  background: rgba(0, 60, 130, 0.35);
}

.hero-final-stats b {
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.hero-final-stats span {
  grid-column: 2;
  display: block;
  color: #cfe0f5;
  font-size: 10px;
  line-height: 1.35;
  margin-top: 5px;
}

/* Trusted */
.trusted {
  padding: 42px 0;
  text-align: center;
}

.trusted h5,
.heading h5 {
  color: #617895;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.loop {
  overflow: hidden;
  width: 100%;
}

.loop-track {
  display: flex;
  width: max-content;
  animation: scrollLoop 28s linear infinite;
}

.loop:hover .loop-track {
  animation-play-state: paused;
}

@keyframes scrollLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.trusted-track {
  gap: 45px;
}

.trusted-track div {
  min-width: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 16px;
}

.trusted-track i {
  color: var(--green);
  font-size: 20px;
}

.trusted-track small {
  display: block;
  color: #6b7280;
  font-size: 10px;
  font-weight: 600;
}

/* Sections */
.section {
  padding: 80px 0;
}

.light {
  background: linear-gradient(180deg, var(--light), #ffffff);
}

.blue-light {
  background: linear-gradient(180deg, #eef7ff, #f8fcff);
}

.heading {
  text-align: center;
  margin-bottom: 36px;
}

.heading h2 {
  color: var(--text);
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
}

.heading h2::after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background: var(--green);
  margin: 14px auto 0;
  border-radius: 10px;
}

/* Service Cards Loop */
.services-loop {
  padding: 8px 0 20px;
}

.service-track {
  gap: 24px;
  animation-duration: 36s;
}

.service-card {
  width: 280px;
  min-height: 350px;
  flex: 0 0 280px;
  padding: 34px 25px 28px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(12, 45, 88, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.price-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(12,45,88,0.16);
}

.service-card i {
  font-size: 52px;
  margin-bottom: 20px;
}

.blue {
  color: #1167bd;
}

.green {
  color: var(--green);
}

.service-card h3 {
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-card a {
  color: #1167bd;
  font-size: 13px;
  font-weight: 800;
}

/* Section CTA */
.section-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.section-cta a {
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  background: var(--green);
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-cta a:nth-child(2) {
  background: var(--blue);
}

.section-cta a:nth-child(3) {
  background: var(--whatsapp);
}

/* Mini Stats */
.mini-stats {
  background: var(--blue);
  color: #ffffff;
  padding: 34px 0;
}

.mini-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.mini-stats strong {
  display: block;
  font-size: 34px;
  color: var(--green);
}

.mini-stats span {
  font-size: 14px;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.feature-grid > div {
  text-align: center;
  padding: 0 25px;
  border-right: 1px solid #d8e6f3;
}

.feature-grid > div:last-child {
  border-right: none;
}

.feature-grid i {
  font-size: 58px;
  color: #1267bd;
  margin-bottom: 18px;
}

.feature-grid > div:nth-child(even) i {
  color: var(--green);
}

.feature-grid h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.feature-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  text-align: center;
}

.process-grid b {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #ffffff;
  background: #0e5bac;
}

.process-grid div:nth-child(even) b {
  background: var(--green);
}

.process-grid i {
  display: block;
  color: #103f77;
  font-size: 42px;
  margin-bottom: 13px;
}

.process-grid h3 {
  font-size: 14px;
  margin-bottom: 8px;
}

.process-grid p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 42px 48px 34px;
  box-shadow: 0 16px 45px rgba(12,45,88,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card.popular {
  transform: translateY(-18px);
}

.price-card span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--green);
  color: #ffffff;
  text-align: center;
  padding: 7px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 8px 8px 0 0;
}

.price-card h3 {
  text-align: center;
  font-size: 22px;
}

.basic-title {
  color: #1167bd;
}

.ecom-title {
  color: #f97316;
}

.price-card p {
  text-align: center;
  color: #66809c;
  font-size: 12px;
  margin: 8px 0 20px;
}

.price-card strong {
  display: block;
  text-align: center;
  font-size: 34px;
  margin-bottom: 30px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 15px;
  margin-bottom: 32px;
}

.price-card li {
  font-size: 13px;
}

.price-card li::before {
  content: "✓";
  color: var(--green);
  margin-right: 12px;
  font-weight: 800;
}

.price-card a {
  width: 170px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border: 2px solid #77a7db;
  border-radius: 6px;
  color: #0d5ba9;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card.popular a {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}

.note {
  text-align: center;
  color: #596b80;
  font-size: 12px;
  margin-top: 18px;
}

/* Testimonials */
.testimonials {
  background: var(--light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 16px 45px rgba(12,45,88,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card p {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 20px;
}

.testimonial-card h3 {
  font-size: 16px;
  color: var(--text);
}

.testimonial-card span {
  color: #6b7280;
  font-size: 13px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

details {
  border: 1px solid #dfe8f3;
  border-bottom: none;
  background: #ffffff;
}

details:last-child {
  border-bottom: 1px solid #dfe8f3;
}

summary {
  list-style: none;
  cursor: pointer;
  min-height: 56px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 800;
}

summary::after {
  content: "+";
  font-size: 24px;
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 20px 18px;
  color: #45576c;
  font-size: 13px;
  line-height: 1.7;
}

.faq-art {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq-art strong {
  font-size: 210px;
  color: #9fc5f3;
  line-height: 1;
}

.faq-art span {
  position: absolute;
  top: 35px;
  right: 70px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 800;
}

/* CTA */
.cta {
  background: linear-gradient(90deg, var(--blue), #0a5fb7);
  color: #ffffff;
  padding: 0;
}

.cta-inner {
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 7px;
}

.cta p {
  color: #d9e8fb;
}

.cta a {
  background: var(--green);
  padding: 18px 28px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #051d3c, #052e67);
  color: #c9d9eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 1fr 1.25fr;
  gap: 52px;
  padding: 44px 0 36px;
}

.footer-logo {
  background: transparent;
  padding: 0;
}

.footer-logo img {
  height: 62px;
  filter: drop-shadow(0 2px 6px rgba(255,255,255,0.25));
}

footer h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

footer p,
footer a {
  display: block;
  color: #c9d9eb;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-socials a {
  font-size: 18px;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.15);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Sticky Buttons */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  border: 5px solid #ddffe9;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 99;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.sticky-call {
  display: none;
}

/* Tablet */
@media (max-width: 980px) {
  .topbar-inner,
  .top-left {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 8px 0;
  }

  .nav-links {
    display: none;
  }

  .hero-final {
    min-height: auto;
    background-position: center top;
  }

  .hero-final-content {
    width: 100%;
    padding: 42px 20px 260px;
    background: linear-gradient(90deg, rgba(4,44,103,0.9), rgba(4,44,103,0.18));
  }

  .hero-final h1 {
    font-size: 42px;
  }

  .hero-final-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-stats-grid,
  .feature-grid,
  .process-grid,
  .pricing-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid > div {
    border-right: none;
    border-bottom: 1px solid #d8e6f3;
    padding: 25px;
  }

  .price-card.popular {
    transform: none;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .floating-whatsapp {
    bottom: 84px;
  }

  .sticky-call {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 99;
    height: 52px;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #ffffff;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  }
}

@media (max-width: 640px) {
  .container {
    max-width: calc(100% - 28px);
  }

  .hero-final {
    background-position: center top;
  }

  .hero-final-content {
    padding: 32px 14px 220px;
  }

  .hero-final h1 {
    font-size: 32px;
  }

  .hero-final p {
    font-size: 13px;
  }

  .hero-final-buttons {
    flex-direction: column;
  }

  .hero-final-buttons a {
    width: 100%;
  }

  .hero-final-stats,
  .mini-stats-grid,
  .feature-grid,
  .process-grid,
  .pricing-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .heading h2 {
    font-size: 27px;
  }

  .faq-art {
    height: 230px;
  }

  .faq-art strong {
    font-size: 135px;
  }

  .cta-inner,
  .copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 0;
  }
}



/* Attractive trusted-logo icon colors */
.trusted-track div:nth-child(1) i,
.trusted-track div:nth-child(10) i {
  color: #2563eb;
}

.trusted-track div:nth-child(2) i,
.trusted-track div:nth-child(11) i {
  color: #22c55e;
}

.trusted-track div:nth-child(3) i,
.trusted-track div:nth-child(12) i {
  color: #f59e0b;
}

.trusted-track div:nth-child(4) i,
.trusted-track div:nth-child(13) i {
  color: #10b981;
}

.trusted-track div:nth-child(5) i,
.trusted-track div:nth-child(14) i {
  color: #14b8a6;
}

.trusted-track div:nth-child(6) i,
.trusted-track div:nth-child(15) i {
  color: #ef4444;
}

.trusted-track div:nth-child(7) i,
.trusted-track div:nth-child(16) i {
  color: #f97316;
}

.trusted-track div:nth-child(8) i,
.trusted-track div:nth-child(17) i {
  color: #ec4899;
}

.trusted-track div:nth-child(9) i,
.trusted-track div:nth-child(18) i {
  color: #8b5cf6;
}

.trusted-track i {
  font-size: 25px !important;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.12));
}
