:root {
  --navy: #0f172a;
  --navy2: #1e293b;
  --blue: #56a1e5;
  --blue2: #3b82f6;
  --blue-light: #dbeafe;
  --amber: #0b87f5;
  --amber-light: #fef3c7;
  --emerald: #059669;
  --emerald-light: #d1fae5;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #0f172a;
  --r: 12px;
  --rl: 20px;

  --primary-gradient: linear-gradient(135deg, #0f172a, #1e3a8a);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a{color:#000; text-decoration: none;}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
}

/* NAV */
nav {
  background: var(--primary-gradient);
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 0 30px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  width: 125px;
  padding: 5px 0;
}
.nav-logo img {
  width: 100%;
  filter: brightness(100);
  display: block;
  margin: 0;
}
.nav-logo span {
  color: var(--amber);
}

.nav-links ul{list-style: none; padding: 0; margin: 0; display: flex;}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}
.nav-cta {
  background: var(--amber);
  color:var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
}
.nav-cta:hover {
  background: #1d4ed8 !important;
}
 

.hero {height:calc(100vh - 75px);
  background: linear-gradient(135deg, rgba(3, 7, 18, 0.92), rgba(15, 23, 42, 0.88), rgba(30, 58, 138, 0.78)),
    url("images/landing.jpg") center center / cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;
  overflow: hidden;

  padding:80px 15px 15px;

  background-blend-mode: overlay;
}

/* OPTIONAL GLOW EFFECT */

.hero::before {
  content: "";
  position: absolute;

  width: 700px;
  height: 700px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(59, 130, 246, 0.28), transparent 70%);

  top: -250px;
  right: -180px;

  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 70%);

  bottom: -180px;
  left: -120px;

  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--blue2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-size: 50px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .accent {
    color: var(--amber);
    position: relative;
}

/* Cursor */
.hero h1 .accent::after {
    content: "|";
    margin-left: 4px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-svc {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.hero-svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-blue {
  background: var(--blue2);
}
.dot-amber {
  background: var(--amber);
}
.dot-green {
  background: #34d399;
}
.hero-btns {
  display: flex;
  gap: 14px;
}
.btn-primary {
  background: var(--amber);
  color:var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* LEAD FORM */
.hero-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rl);
  padding: 15px 20px;
  backdrop-filter: blur(10px);
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom:5px;
}
.form-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom:8px;
}
.form-group {
  margin-bottom: 10px;
}
.form-group label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: white;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue2);
}
.form-group select {
  color: rgba(255, 255, 255, 0.6);
}
.form-group select option {
  background: var(--navy2);
  color: white;
}
.form-submit {
  width: 100%;
  background: var(--amber);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px; color: var(--white);
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  margin-top: 4px;
  transition: all 0.2s;
}
.form-submit:hover {

  transform: translateY(-1px);
}
.form-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
  justify-content: center;
}

/* STATS */
.stats {
  background: var(--primary-gradient);
  padding:10px 15px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item { min-width: 120px;
  text-align: center;
  padding: 0 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-size: 36px; line-height: 1;
  font-weight: 800;
  color: white;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  font-weight: 300;
}

/* SECTION BASE */
section {
  padding: 88px 48px;
}
.section-center {
  text-align: center;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary-gradient);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  /* font-size: 17px; */
  font-weight: 300;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.5;
}
.max-w {
  max-width: 1100px;
  margin: 0 auto;
}

/* SERVICES */
.services-bg {
  background: var(--gray-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--rl);
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.svc-card.web::before {
  background: var(--blue);
}
.svc-card.mkt::before {
  background: var(--amber);
}
.svc-card.erp::before {
  background: var(--emerald);
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.ic-blue {
  background: var(--blue-light);
}
.ic-amber {
  background: var(--amber-light);
}
.ic-green {
  background: var(--emerald-light);
}
.svc-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.svc-features {
  list-style: none;
  margin-bottom: 28px;
}
.svc-features li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-features li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.svc-card.mkt .svc-features li::before {
  color: #d97706;
}
.svc-card.erp .svc-features li::before {
  color: var(--emerald);
}
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.svc-card.mkt .svc-cta {
  color: #d97706;
}
.svc-card.erp .svc-cta {
  color: var(--emerald);
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step {
  text-align: center;
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  font-weight: 300;
}

/* PRICING */
.pricing-bg {
  background: var(--primary-gradient);
}
.pricing-bg .section-title {
  color: white;
}
.pricing-bg .section-sub {
  color: rgba(255, 255, 255, 0.5);
}
.pricing-bg .section-eyebrow {
  color: var(--amber);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rl);
  padding: 32px;
  transition: all 0.3s;
}
.price-card.featured {
  background: var(--blue);
  border-color: transparent;
}
.price-card:hover {
  transform: translateY(-4px);
}
.price-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}
.price-tag.feat-tag {
  color: rgba(255, 255, 255, 0.7);
}
.price-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
.price-amount {
  margin-bottom: 24px;
}
.price-from {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.price-amount .amount {
  font-size: 40px;
  font-weight: 800;
  color: white;
}
.price-card.featured .amount {
  color: white;
}
.price-period {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.price-list {
  list-style: none;
  margin-bottom: 28px;
}
.price-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.price-list li::before {
  content: "✓";
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}
.price-card.featured .price-list li::before {
  color: #fde68a;
}
.btn-price {
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  display: block;
  transition: all 0.2s;
}
.btn-price-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
}
.btn-price-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn-price-featured {
  background: var(--amber);
  color: var(--white);
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--rl);
  padding: 28px;
}
.stars {
  color: var(--amber);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 600;
}
.testi-role {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* CTA SECTION */


.contactus-sec{display: flex; margin-bottom: 15px; gap: 15px;}
.cta-section {
  background: var(--primary-gradient);
  padding: 88px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: 44px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-main {
  background: var(--amber);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.cta-btn-main:hover {
  transform: translateY(-2px);
}
.cta-btn-sec {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.cta-btn-sec:hover {
  background: rgba(255, 255, 255, 0.18);
}
.contact-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 50%;
}
.contact-pill {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 48%;
  border-radius: 5px;
  padding: 25px;
}
.contact-pill span{width: 55px; height: 55px; font-size: 22px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center;
justify-content: center; }
.contact-pill strong {
  color: white; font-size: 18px;
}
.contact-pill small{font-size: 14px;}

.map-section {
    padding: 0;
    background: #f8fafc;
    width: 50%;
    border-radius: 5px;
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.map-header p {
    color: #64748b;
}

.map-box {
    overflow: hidden;
    box-shadow:
      0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    border-radius: 5px;
}

.map-box iframe {
    display: block;
    width: 100%;
    border-radius: 5px;
}





/* FOOTER */


footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 48px;
}
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
      }

      .footer-logo {
        font-size: 28px;
        font-weight: 800;
        color: white;

        margin-bottom: 16px;
      }

      .footer-logo span {
        color: var(--amber);
      }

      .footer-about {
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.2;
      }

      .footer-col h4 {
        color: white;
        margin-bottom: 18px;
      }

      .footer-col a {
        display: block;

        text-decoration: none;

        color: rgba(255, 255, 255, 0.5);

        margin-bottom: 12px;

        transition: 0.2s;
      }

      .footer-col a:hover {
        color: white;
      }

      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);

        margin-top: 45px;
        padding-top: 24px;

        text-align: center;

        color: rgba(255, 255, 255, 0.35);
        font-size: 13px;
      }














.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand .logo {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.footer-brand .logo span {
  color: var(--amber);
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  font-weight: 300;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: white;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* WHY US */
.why-grid {display: grid; grid-template-columns: repeat(3, 1fr);  gap:15px;}
.why-card {background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r); padding: 20px;}
.why-icon {font-size: 32px;  margin-bottom: 14px;}
.why-card h4 {font-size: 17px; font-weight: 700; margin-bottom: 8px;}
.why-card p {font-size: 13px; color: var(--gray-600); font-weight: 300; line-height: 1.65;}
.erp-grid {display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;}
.erp-modules {display: grid; grid-template-columns: 1fr 1fr; gap: 12px;}
.erp-mod {background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 10px; padding: 14px 16px;}
.erp-mod h5 {font-size: 13px; font-weight: 600; margin-bottom: 4px;}
.erp-mod p {font-size: 12px; color: var(--gray-600); font-weight: 300;}
.erp-visual {background: var(--primary-gradient); border-radius: var(--rl); padding: 36px;}
.erp-visual h3 {font-size: 28px; font-weight: 800; color: white; margin-bottom: 12px;}
.erp-visual p {font-size: 15px; color: rgba(255, 255, 255, 0.55); font-weight: 300; margin-bottom: 24px; line-height: 1.7;}
.erp-types {display: flex; flex-direction: column; gap: 10px;}
.erp-type {background:rgba(255, 255, 255, 0.06); border:1px solid rgba(255, 255, 255, 0.1); border-radius:10px; padding:14px 18px; display:flex; align-items:center;
  gap: 14px;}
.erp-type-icon {font-size: 22px;}
.erp-type-text {font-size: 13px; font-weight: 500; color: white;}
.erp-type-sub {font-size: 11px; color: rgba(255, 255, 255, 0.4); margin-top: 2px;}
#msg {margin-top: 10px; text-align: center; color: #38ff38;}
.menu-toggle { font-size: 32px; color: var(--white); display: none;}
.heads{padding: 15px;}
footer .nav-logo{padding: 0; margin-top: -10px;}
.flexbox{display: flex; gap: 10px;}
.flexbox > div{width: 100%;}
.tab-content{width: 100%;justify-content:center;}

@media (max-width:767px) {
.nav-logo{width: 110px;}
nav{padding:0 15px; height: 64px;position: relative;}
.menu-toggle {display: block; z-index: 1001; }
.nav-links {position: absolute; top: 0; left: -100%; width:80%; height: 100vh;  background: #0f172a;  transition: 0.3s ease; padding: 20px 0; z-index: 1000; }
.nav-links.active { left: 0;}
.nav-links ul { flex-direction: column;  align-items: flex-start;  gap: 0;  padding: 0;  margin: 0; list-style: none;  }
.nav-links li { width: 100%;}
.nav-link { display: block; width: 100%; padding: 15px 20px; color: #fff; text-decoration: none;  border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-cta { margin: 15px 20px; width: calc(100% - 40px);  text-align: center;  border-radius: 8px;  background: #56a1e5;  }
.section-title{font-size: 20px;}
.hero{padding: 20px;}
.hero h1{font-size: 32px;}
.hero-sub { font-size: 15px;  font-weight: 300; line-height: 1.2;}
.max-w, .footer-grid, .section-sub, .footer-bottom{max-width: 100%;}
.section-sub{ margin: 0 auto 25px; }
.stats-grid{display: flex; overflow: auto;}
.hero-grid, .pricing-grid, .footer-grid,  .services-grid, .testi-grid, .erp-grid, .footer-bottom {display: flex; flex-wrap: wrap;}
.stats, section{padding:20px 10px;}
.svc-card, .cta-section{padding: 15px;}
.cta-section h2{font-size: 24px;}
.hero-form, .price-card,.contact-pills,.contact-pill,.map-section{width: 100%;}
.hero{height: inherit;}
.flexbox,.contactus-sec{flex-wrap: wrap;}
.hero-grid{gap:20px;}
.process-grid,.why-grid{overflow: auto; padding-bottom: 20px;}
.process-step,.why-card{min-width: 250px;}
.why-grid{display: flex;}
footer{margin-top: 80px; padding: 30px;}
}