* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

* {
  max-width: 100%;
}

body {
  color: #111827;
}

:root {
  --section-padding: 80px;
}

#features {
  scroll-margin-top: 100px;
}

#demo-form {
  scroll-margin-top: 100px;
}

html {
  scroll-behavior: smooth;
}

#contact {
  scroll-margin-top: 100px;
}

/* =========================
   LOADER
========================= */

#loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 55px;
  height: 55px;
  border: 5px solid rgba(0, 160, 226, 0.2);
  border-top: 5px solid #00a0e2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-box p {
  font-size: 14px;
  color: #111827;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 80px;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.logo img {
  height: 60px;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #111827;
  font-size: 15px;
  transition: 0.3s;
}

.menu a:hover {
  color: #00a0e2;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right p {
  font-size: 14px;
}

.nav-right button,
.primary-btn {
  background: #00a0e2;
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  border: none;
}

/* Mobile menu toggle button */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #111827;
  margin-left: auto;
}

/* Mobile Sidebar */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background: white;
  z-index: 99999;
  flex-direction: column;
  padding: 30px 25px;
  gap: 20px;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  transition: left 0.35s ease;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu a {
  text-decoration: none;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #00a0e2;
}

.mobile-menu .mobile-btn {
  background: #00a0e2;
  color: white;
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  border: none;
}

.close-menu {
  font-size: 22px;
  cursor: pointer;
  align-self: flex-end;
  color: #6b7280;
  margin-bottom: 10px;
}

/* Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
}

.menu-overlay.active {
  display: block;
}

/* =========================
   HERO
========================= */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px;
  gap: 60px;
}

.hero-left {
  width: 50%;
}

.hero-right {
  flex: 1;
  min-width: 300px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: rgba(0, 160, 226, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.video-wrapper:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: #00a0e2;
}

.hero-video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  color: #00a0e2;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  border: 1px solid #00a0e2;
  display: inline-block;
}

.hero-left h1 {
  font-size: 60px;
  margin-top: 30px;
  line-height: 1.2;
}

.hero-left h1 span {
  color: #00a0e2;
}

.hero-left p {
  margin-top: 20px;
  color: #6b7280;
  line-height: 1.8;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.primary-btn {
  background: #00a0e2;
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.secondary-btn {
  border: 1px solid #00a0e2;
  padding: 14px 24px;
  border-radius: 10px;
  color: #00a0e2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-features {
  display: flex;
  gap: 25px;
  margin-top: 40px;
  color: #6b7280;
  font-size: 14px;
  flex-wrap: wrap;
}

/* =========================
   BRANDS SCROLL
========================= */

/* This forces the scroll to be 100% smooth without pausing */
.swiper-wrapper {
  transition-timing-function: linear !important; 
}

/* 1. The Rigid Box */
.brand-card.swiper-slide {
  width: 280px !important;  /* Strictly locks the box width */
  height: 140px !important; /* Strictly locks the box height */
  
  /* These flex rules perfectly center the logo inside the box */
  display: flex;
  align-items: center;      /* Centers vertically (Stops the up-and-down jumping!) */
  justify-content: center;  /* Centers horizontally */
  
  padding: 15px;            /* Gives a little breathing room inside the box */
  box-sizing: border-box;   /* Prevents padding from changing the total box size */
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
}

/* 2. The Image Control */
.brand-card img {
  width: auto;
  height: auto;
  max-width: 100%;       /* Image cannot be wider than the box */
  max-height: 100%;      /* Image cannot be taller than the box */
  object-fit: contain;   /* THE MAGIC TRICK: Fits the whole logo inside without stretching or cropping */
  display: block;
}
/* =========================
   STATS
========================= */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  padding: 0 80px;
}

.stat-box {
  background: white;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-box i {
  font-size: 30px;
  color: #00a0e2;
}

.stat-box h3 {
  margin-top: 15px;
  font-size: 35px;
}

.stat-box p {
  color: #6b7280;
}

/* =========================
   SOLUTIONS
========================= */

.solutions {
  padding: 80px;
}

.trusted h2,
.section-title {
  text-align: center;
}

.trusted h2 span,
.section-title span {
  color: #00a0e2;
}

.faq-title {
  text-align: left;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.solution-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
  cursor: pointer;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.solution-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.solution-card img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

.solution-card-body {
  margin-top: 25px;
  font-weight: bold;
}

.purple .feature-item i { background: #7c3aed; }
.green .feature-item i { background: #22c55e; }
.orange .feature-item i { background: #f97316; }

.feature-item i {
  width: 22px;
  height: 22px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  margin-bottom: 12px;
  font-size: 15px;
}

.purple { border-top: 5px solid #9333ea; }
.purple h3 { color: #9333ea; }
.green { border-top: 5px solid #22c55e; }
.green h3 { color: #22c55e; }
.orange { border-top: 5px solid #f97316; }
.orange h3 { color: #f97316; }

/* =========================
   FEATURES
========================= */

.fetaures {
  text-align: center;
  padding: 50px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-card {
  width: 150px;
  height: 140px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i { font-size: 28px; }

.feature-card.invoice .icon-box { background: #f3e8ff; }
.feature-card.invoice i { color: #8b5cf6; }
.feature-card.whatsapp .icon-box { background: #dcfce7; }
.feature-card.whatsapp i { color: #25d366; }
.feature-card.mobile .icon-box { background: #dbeafe; }
.feature-card.mobile i { color: #3b82f6; }
.feature-card.barcode .icon-box { background: #fce7f3; }
.feature-card.barcode i { color: #ec4899; }
.feature-card.inventory .icon-box { background: #fef3c7; }
.feature-card.inventory i { color: #f59e0b; }
.feature-card.users .icon-box { background: #cffafe; }
.feature-card.users i { color: #06b6d4; }
.feature-card.cloud .icon-box { background: #dbeafe; }
.feature-card.cloud i { color: #3b82f6; }
.feature-card.report .icon-box { background: #d1fae5; }
.feature-card.report i { color: #10b981; }

.feature-card p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #222;
}

.fetaures-button {
  margin-top: 20px;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #00a0e2;
  color: #00a0e2;
  background-color: white;
}

.fetaures-button:hover {
  background-color: #00a0e2;
  color: white;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {
  padding: 80px;
  position: relative;
}

.section-title h1 {
  font-size: 40px;
  margin-bottom: 30px;
}

.slider-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #00a0e2;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.prev { left: 20px; }
.next { right: 20px; }

.testimonials-wrapper { overflow: hidden; }

.testimonials-grid {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar { display: none; }

.testimonial-card {
  min-width: calc((100% - 50px) / 3);
  flex-shrink: 0;
}

.video-card {
  position: relative;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
}

.video-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
}

/* =========================
   FAQ
========================= */

.faq-section {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  background: #f5f5f5;
}

.faq-wrapper {
  max-width: 1100px;
  margin: auto;
  background: white;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.faq-image { flex: 1; }

.faq-image img {
  width: 100%;
  max-width: 350px;
}

.faq-content { flex: 1; }

.faq-heading h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #111827;
}

.faq-heading p {
  color: #6b7280;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 15px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  color: #111827;
  text-align: left;
  gap: 10px;
}

.faq-question i {
  color: #3b82f6;
  transition: 0.3s;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.faq-answer p,
.faq-answer ul {
  margin-top: 15px;
  color: #4b5563;
  line-height: 1.7;
}

.faq-answer ul { padding-left: 20px; }

.faq-item.active .faq-answer { max-height: 500px; }

.shape { position: absolute; z-index: 1; }
.blue-top {
  width: 250px;
  height: 250px;
  background: #00a0e2;
  border-radius: 50%;
  top: -80px;
  right: -80px;
}
.yellow-bottom {
  width: 120px;
  height: 120px;
  background: #facc15;
  border-radius: 50%;
  bottom: -40px;
  right: 40px;
}
.pink-circle {
  width: 80px;
  height: 80px;
  border: 4px solid #ff4fd8;
  border-radius: 50%;
  bottom: 50px;
  left: 20px;
  background: transparent;
}

/* =========================
   CTA
========================= */

.cta-wrapper {
  padding: 30px 80px;
  background: #f3f4f6;
}

.cta {
  background: #00a0e2;
  border-radius: 22px;
  padding: 22px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta > div:first-child { flex: 1; }

.cta h2 {
  color: white;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
}

.cta h2 span {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

/* =========================
   CONTACT FORM
========================= */

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  flex: 1.5;
  width: 100%;
  max-width: 500px;
}

.input-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #111827;
}

.input-field label span { color: red; }

.input-field input,
.input-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  outline: none;
  font-size: 15px;
  transition: 0.3s ease;
  margin-bottom: 20px;
}

.input-field textarea {
  min-height: 120px;
  resize: none;
}

.input-field input:focus,
.input-field textarea:focus {
  border-color: #00a0e2;
  box-shadow: 0 0 0 4px rgba(0, 160, 226, 0.12);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.primary-btn-line {
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  background: #00a0e2;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-btn-line .fa-whatsapp {
  color: #25d366;
  font-size: 20px;
}

.whatsapp-btn {
  height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
  border: 1px solid #25d366;
  color: #25d366;
  text-decoration: none;
  background: transparent;
}

.whatsapp-btn i { font-size: 25px; }

.whatsapp-btn:hover {
  background: #1ebe5d;
  color: white;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #0f172a;
  color: white;
  padding: 70px 80px 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 50px;
}

.footer-contact,a{
  text-decoration: none;
}

.footer-logo,
.footer-contact,
.footer-links,
.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  height: 100px;
  margin-bottom: 20px;
}

.footer-contact p,
.footer-links a {
  color: #cbd5e1;
  line-height: 1.9;
  text-decoration: none;
  font-size: 15px;
  display: block;
}

.footer-links h1,
.footer-contact h1,
.footer-social h1,
.footer-products-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-links a:hover { color: #00a0e2; }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.footer-social i {
  font-size: 18px;
  color: #00a0e2;
}

.footer-social a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.footer-products-section { margin-top: 30px; }

.footer-product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
}

.footer-product-card:hover {
  transform: translateY(-5px);
  border-color: #00a0e2;
}

.footer-product-card h3 {
  font-size: 18px;
  color: white;
}

/* =========================
   ABOUT PAGE
========================= */

.about-hero {
  text-align: center;
  padding: 120px 20px;
  background: #f8fafc;
}

.about-hero h1 {
  font-size: 60px;
  margin: 20px 0;
}

.about-hero p {
  max-width: 700px;
  margin: auto;
  color: #64748b;
}

.journey { margin-top: 100px; }

.journey-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.journey-badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(0, 160, 226, 0.1);
  color: #00a0e2;
  font-weight: 600;
  margin-bottom: 20px;
}

.journey-header h1 {
  font-size: 50px;
  font-weight: 700;
  color: #0f172a;
  margin: 10px 0;
  line-height: 1.2;
}

.journey-header p {
  margin-top: 10px;
  color: #64748b;
}

.journey-header h1 span { color: #00a0e2; }

.roadmap {
  position: relative;
  max-width: 1000px;
  margin: 80px auto;
  padding: 20px 0;
}

.roadmap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #cfefff;
  transform: translateX(-50%);
}

.roadmap-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.roadmap-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.roadmap-item:nth-child(even) { left: 50%; }

.roadmap-item::before {
  content: "";
  position: absolute;
  top: 35px;
  width: 18px;
  height: 18px;
  background: #00a0e2;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px #cfefff;
}

.roadmap-item:nth-child(odd)::before { right: -13px; }
.roadmap-item:nth-child(even)::before { left: -13px; }

.roadmap-card {
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.roadmap-card h3 {
  color: #00a0e2;
  margin-bottom: 10px;
}

.leadership {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.leader-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  text-align: left;
  border-top: 5px solid #00a0e2;
}

.leader-card:hover { transform: translateY(-8px); }

.leader-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 25px;
}

.leader-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0f172a;
}

.leader-role {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 50px;
  background: #e0f2fe;
  color: #00a0e2;
  font-size: 14px;
  font-weight: 600;
}

.leader-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #64748b;
}
@media (max-width: 768px) {
  .leader-card img {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
  }
}

.team-gallery {
  padding: 80px 20px;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Tablet */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery img {
    border-radius: 12px;
  }
}

.gallery img:hover { transform: scale(1.05); }

/* =========================
   PRICING
========================= */

.pricing-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  text-align: center;
}

.pricing-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.tab-btn {
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  background: #eef2f7;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-btn:hover { transform: translateY(-2px); }

.tab-btn.active {
  background: #00a0e2;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 160, 226, 0.25);
}

.pricing-table {
  display: none;
  max-width: 1100px;
  margin: auto;
}

.pricing-table.active { display: block; }

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.pricing-table th {
  background: #00a0e2;
  color: #fff;
  padding: 22px;
  font-size: 20px;
  font-weight: 700;
}

.pricing-table td {
  padding: 20px;
  font-size: 17px;
  border-bottom: 1px solid #edf2f7;
  transition: background 0.2s ease;
}

.pricing-table tr:hover td { background: #f8fbff; }

.pricing-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1e293b;
  width: 35%;
}

.pricing-table td:not(:first-child) {
  text-align: center;
  font-weight: 600;
}

.recommended {
  background: #0089c3 !important;
  position: relative;
}

.recommended::after {
  content: "POPULAR";
  position: absolute;
  top: 8px;
  right: 10px;
  background: white;
  color: #00a0e2;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 20px;
}

small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #64748b;
}

.price-note {
  margin-top: 15px;
  font-size: 14px;
  color: #64748b;
}

.check { color: #16a34a; font-size: 22px; font-weight: bold; }
.cross { color: #dc2626; font-size: 22px; font-weight: bold; }

.pricing-btn {
  margin-top: 25px;
  padding: 14px 28px;
  border-radius: 12px;
  background: #00a0e2;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.single-firm-note {
  margin-top: 30px;
  padding: 25px;
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  text-align: center;
}

.single-firm-note h3 {
  color: #00a0e2;
  margin-bottom: 10px;
  font-size: 22px;
}

.single-firm-note p {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE — TABLET (max 1024px)
========================= */

@media (max-width: 1024px) {
  .navbar {
    padding: 18px 30px;
  }

  .hero {
    padding: 60px 30px;
    gap: 40px;
  }

  .hero-left h1 {
    font-size: 44px;
  }

  .stats {
    padding: 0 30px;
  }

  .solutions {
    padding: 60px 30px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fetaures {
    padding: 40px 30px;
  }

  .testimonials {
    padding: 60px 30px;
  }

  .testimonial-card {
    min-width: calc((100% - 25px) / 2);
  }

  .cta-wrapper {
    padding: 30px;
  }

  .footer {
    padding: 60px 30px 40px;
  }

  .footer-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   RESPONSIVE — MOBILE (max 768px)
========================= */

@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .logo img {
    height: 44px;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    gap: 35px;
  }

  .hero-left {
    width: 100%;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 32px;
    margin-top: 20px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-right {
    width: 100%;
    min-width: unset;
  }

  .video-wrapper {
    height: 230px;
  }

  .video-thumb {
    height: 230px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
    gap: 15px;
  }

  /* Brands */
  .brand-card {
    width: 160px;
    height: 90px;
  }

  /* Stats */
  .stats {
    grid-template-columns: 1fr;
    padding: 0 20px;
    margin-top: 30px;
  }

  /* Solutions */
  .solutions {
    padding: 40px 20px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  /* Features */
  .fetaures {
    padding: 40px 20px;
  }

  .feature-card {
    width: calc(50% - 10px);
    height: 130px;
  }

  /* Testimonials */
  .testimonials {
    padding: 50px 20px;
  }

  .testimonials-wrapper {
    overflow: hidden;
  }

  .testimonials-grid {
    gap: 0;
    scroll-snap-type: x mandatory;
  }

  .testimonial-card {
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
  .slider-btn {
    top: auto;
    bottom: 10px;
    transform: none;
  }

  .prev { left: calc(50% - 60px); }
  .next { right: calc(50% - 60px); }

  /* CTA / Demo Form */
  .cta-wrapper {
    padding: 20px;
  }

  .cta {
    flex-direction: column;
    padding: 25px 20px;
    gap: 25px;
  }

  .cta h2 {
    font-size: 22px;
  }

  .contact-form {
    max-width: 100%;
    padding: 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .primary-btn-line {
    width: 100%;
    justify-content: center;
  }

  /* FAQ */
  .faq-section {
    padding: 50px 15px;
  }

  .faq-wrapper {
    flex-direction: column;
    padding: 25px 20px;
    gap: 30px;
  }

  .faq-image {
    display: none;
  }

  .faq-question {
    font-size: 15px;
  }

  /* Footer */
  .footer {
    padding: 50px 20px 30px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-products {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    height: 70px;
  }

  .footer-links h1,
  .footer-contact h1,
  .footer-social h1,
  .footer-products-title {
    font-size: 20px;
  }

  /* Roadmap */
  .roadmap::before {
    left: 20px;
  }

  .roadmap-item,
  .roadmap-item:nth-child(even),
  .roadmap-item:nth-child(odd) {
    width: 100%;
    left: 0;
    padding-left: 60px;
    text-align: left;
  }

  .roadmap-item::before {
    left: 11px !important;
    right: auto;
  }

  /* About */
  .about-hero h1 {
    font-size: 36px;
  }

  .journey-header h1 {
    font-size: 32px;
  }

  /* Leaders */
  .leaders-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing table scroll */
  .pricing-table {
    overflow-x: auto;
  }

  .pricing-table table {
    min-width: 600px;
  }

  .pricing-section h2 {
    font-size: 28px;
  }

  .section-title h1 {
    font-size: 26px;
  }
}

/* =========================
   RESPONSIVE — SMALL MOBILE (max 480px)
========================= */

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 28px;
  }

  .feature-card {
    width: calc(50% - 8px);
    height: 120px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
  }

  .icon-box i {
    font-size: 22px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .stat-box h3 {
    font-size: 28px;
  }

  .blue-top {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -50px;
  }

  .yellow-bottom {
    width: 80px;
    height: 80px;
  }
}


/* =========================
   Privacy Policy Page
========================= */

.privacy-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.privacy-container h1 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 36px;
  color: #1e293b;
}

.last-updated {
  text-align: center;
  color: #64748b;
  margin-bottom: 30px;
}

.privacy-container h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 28px;
  color: #0f172a;
  border-bottom: 2px solid #e2e8f0;
}

.privacy-container h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #334155;
}

.privacy-container p {
  margin-bottom: 16px;
  color: #475569;
}

.privacy-container ul {
  margin: 15px 0 20px;
  padding-left: 25px;
}

.privacy-container li {
  margin-bottom: 10px;
  color: #475569;
}

.privacy-container strong {
  color: #1e293b;
}

.contact-box {
  margin-top: 25px;
  padding: 20px;
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
}

.contact-box p {
  margin: 8px 0;
}

.contact-box a {
  color: #2563eb;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* =========================
   Mobile Responsive
========================= */

@media (max-width: 768px) {
  .privacy-container {
    margin: 20px;
    padding: 25px;
  }

  .privacy-container h1 {
    font-size: 28px;
  }

  .privacy-container h2 {
    font-size: 22px;
  }

  .privacy-container h3 {
    font-size: 18px;
  }
}