/* Reset everything properly */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Navbar */
header {
  background: #0d6efd;
  padding: 12px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0; /* ✅ prevents white line at top */
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* adds subtle depth */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #0d6efd, #167bff);
  color: #fff;
  padding: 120px 10% 100px;
/*margin-top: 70px; ✅ matches fixed navbar height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
}

/* Left Text */
.hero-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f5f5f5;
  margin-bottom: 30px;
}

.highlight {
  font-weight: 600;
  color: #fff;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 25px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn.primary {
  background-color: white;
  color: #0d6efd;
}

.btn.primary:hover {
  background-color: #e9f0ff;
}

.btn.secondary {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Right Logo */
.hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.hero-image img {
  width: 180px;
  margin-bottom: 10px;
}

.hero-image h2 {
  font-size: 2rem;
  font-weight: 700;
}

.hero-image p {
  font-size: 1rem;
  opacity: 0.9;
}

/* WHAT YOU GET SECTION */

.features-section {
  padding: 80px 40px;
  text-align: center;
  background: #f8f9fa;
}

.features-section h2 {
  color: #0d6efd;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.features-section .subtext {
  color: #444;
  font-size: 1rem;
  margin-bottom: 50px;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
}

.feature-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.feature-box .icon {
  font-size: 36px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.feature-box p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* WHY CHOOSE ZENCART SECTION */
.why-section {
  padding: 80px 40px;
  background: #fff;
  text-align: center;
}

.why-section h2 {
  color: #0d6efd;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-content: center;
}

.benefit-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.benefit-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.benefit-box .icon {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.benefit-box p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-section {
    padding: 60px 20px;
  }
  .why-section h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  .benefit-box p {
    font-size: 0.95rem;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .features-section {
    padding: 60px 20px;
  }
  .features-section h2 {
    font-size: 1.6rem;
  }
  .features-section .subtext {
    font-size: 0.95rem;
  }
}

/* WHO CAN PARTNER WITH US SECTION */
.partner-section {
  padding: 80px 40px;
  background: #f8f9fa;
  text-align: center;
}

.partner-section h2 {
  color: #0d6efd;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.usecases-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
}

.usecase-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usecase-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.usecase-box .icon {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.usecase-box h3 {
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.usecase-box p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .partner-section {
    padding: 60px 20px;
  }
  .partner-section h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  .usecase-box p {
    font-size: 0.95rem;
  }
}

/* HOW PARTNERSHIP WORKS SECTION */
.how-partner-section {
  padding: 80px 40px;
  background: #fff;
  text-align: center;
}

.how-partner-section h2 {
  color: #0d6efd;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.how-steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
}

.how-step-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-step-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.how-step-box .icon {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.how-step-box h3 {
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.how-step-box p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .how-partner-section {
    padding: 60px 20px;
  }

  .how-partner-section h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .how-step-box p {
    font-size: 0.95rem;
  }
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.pricing-section {
  text-align: center;
  padding: 60px 20px;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.toggle-group {
  display: flex;
  justify-content: center;
  background: #f3f5ff;
  border-radius: 12px;
  width: fit-content;
  margin: 10px auto 30px;
  padding: 4px;
}

.toggle-btn {
  border: none;
  background: none;
  font-size: 1rem;
  padding: 10px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
}

.toggle-btn.active {
  background-color: #155bff;
  color: #fff;
}

.plans-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.plan-card {
  width: 320px;
  border: 1px solid #e5ebff;
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
  background-color: #fff;
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.plan-card .price {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.plan-card li::before {
  content: "✅";
  font-size: 1.1rem;
  color: #00c46c;
}

.testimonials-section {
  padding: 80px 20px;
  text-align: center;
  background: #f9fbff;
}

.testimonials-section .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111827;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e5ebff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  padding: 30px;
  width: 450px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.testimonial-card .quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 600;
  color: #155bff;
  font-size: 1rem;
}

.testimonials-section h2{
    color: #0d6efd;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.cta-section {
  background: #ffffff;
  color: #155bff;
  padding: 100px 20px;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #155bff;
}

.cta-subtext {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #003db3;
}

.cta-button {
  background-color: #155bff;
  color: #fff;
  border: none;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 10px rgba(21, 91, 255, 0.3);
}

.cta-button:hover {
  background-color: #003db3;
  box-shadow: 0 6px 18px rgba(21, 91, 255, 0.4);
  transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    text-align: center;
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
  }

  .social-icons {
    margin-bottom: 20px;
  }

  .social-icons a {
    display: inline-block;
    margin: 0 10px;
    width: 60px;
    height: 60px;
    border: 1px solid #000;
    border-radius: 50%;
    line-height: 60px;
    font-size: 22px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-icons a:hover {
    background-color: #155bff;
    color: #fff;
  }

  .contact-info p {
    margin: 5px 0;
    color: #333;
    font-size: 18px;
  }

  .contact-info a {
    color: #000;
    text-decoration: none;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  .copyright p {
    margin-top: 15px;
    color: #555;
    font-size: 16px;
  }

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text, .hero-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero {
    padding: 100px 5% 80px;
  }
}


/* ===============================
   NAVBAR
=============================== */
header {
  background: #0d6efd;
  padding: 12px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  transition: all 0.3s ease;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Mobile Menu */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #0d6efd;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
    font-size: 1.1rem;
  }
}

/* ===============================
   HERO SECTION
=============================== */
.hero {
  background: linear-gradient(90deg, #0d6efd, #167bff);
  color: #fff;
  padding: 130px 8% 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
}

.hero-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f5f5f5;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 25px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn.primary {
  background-color: white;
  color: #0d6efd;
}

.btn.primary:hover {
  background-color: #e9f0ff;
}

.btn.secondary {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Image */
.hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.hero-image img {
  width: 180px;
  margin-bottom: 10px;
}

.hero-image h2 {
  font-size: 2rem;
  font-weight: 700;
}

.hero-image p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-image img {
    width: 140px;
  }

  .hero {
    padding: 120px 5% 70px;
  }
}
