
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: linear-gradient(to bottom, #ffffff, #f9fafb);
      color: #333;
    }
    header, footer, section {
      padding: 20px;
      text-align: center;
    }
    /* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background: #ff6600;
      color: white;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
     .header-container {
        display: flex;
        align-items: center;
        gap: 10px; /* Adjust space between image and text */
    }
    
    .header-image {
        height: 40px; /* Adjust to match your heading size */
        width: auto; /* Maintain aspect ratio */
    }
    .navbar h2 {
      margin: 0;
    }
    .menu {
      display: flex;
      gap: 20px;
    }
    .menu a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }
    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }
    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        background: #ff6600;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 150px;
        border-radius: 8px;
        padding: 10px;
      }
      .menu.show {
        display: flex;
      }
      .menu-toggle {
        display: block;
      }
    }

    .hero {
      padding: 60px 20px;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 30px;
      color: #c9c6c6;
    }
    .btn {
      display: inline-block;
      padding: 12px 24px;
      margin: 5px;
      font-size: 1rem;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: 0.3s;
    }
    .btn-primary {
      background: #ff6600;
      color: white;
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #ff6600;
      color: #ffffff;
    }
    .btn:hover {
      opacity: 0.9;
    }
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 20px;
    }
    .card {
      background: #fff;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: 0.3s;
    }
    .card:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .card h3 {
      margin-bottom: 10px;
      color: #111;
    }
    .about {
      background: #f3f4f6;
      padding: 50px 20px;
    }
    .about h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .about p {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1rem;
      color: #444;
    }
    .cta {
      background: #ff6600;
      color: white;
      padding: 60px 20px;
    }
    .cta h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .cta p {
      max-width: 600px;
      margin: 0 auto 30px;
    }
    footer {
      background: #111;
      color: #aaa;
      font-size: 0.9rem;
      padding: 20px;
    }

    /* Fade-in bottom-to-top animation */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }
    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }
    .hero {
  position: relative;
  padding: 80px 20px;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("https://images.unsplash.com/photo-1517336714731-489689fd1ca8?auto=format&fit=crop&w=1600&q=80") no-repeat center center/cover;
  filter: blur(6px) brightness(0.6);
  z-index: -1;
}

.hero-content {
  position: relative;
  max-width: 800px;
  padding: 20px;
}
.features .card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}
.payments {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.payments h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.payments .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.payments .step {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.payments .step:hover {
  transform: translateY(-6px);
}

.payments .step img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
  text-align: center;
  padding: 60px 20px;
  background: #f9fafb;
}

.testimonials h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #111827;
}

.testimonial-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 0;
}

.testimonial-container::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.testimonial {
  flex: 0 0 300px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* FAQ */
.faq {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.faq h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #111827;
}

.faq-item {
  max-width: 700px;
  margin: 10px auto;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-answer p {
  margin: 10px 0;
  color: #374151;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-item.active .arrow {
  transform: rotate(45deg);
}

/* Contact */
.contact {
  padding: 80px 20px;
  background: #f9fafb;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 10px;
}

.contact p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6600;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.2);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  padding: 14px;
  background: #ff6600;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact-form .btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

.footer {
  background: #222;
  color: #ddd;
  padding: 50px 20px;
  text-align: center;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  text-align: left; /* ensures inner texts align left */
}

.footer h3, .footer h4 {
  color: #fff;
}

.footer-links ul,
.footer-legal ul {
  list-style: none; /* remove default bullets */
  padding: 0;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px; /* spacing for vertical line */
}

.footer-links li::before,
.footer-legal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ff6600; /* vertical line color */
}

.footer a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ff6600;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start; /* left aligned instead of center */
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}
