body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background: #fff;
  color: #0e1832;
}
 header {
      background: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px 20px;
    }

    .nav-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .logo {
      font-weight: bold;
      font-size: 24px;
      color: #1b4fe0;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 20px;
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #1b4fe0;
    }

    .btn-download {
      background: #f1b949;
      color: #000;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.3s;
    }

    .btn-download:hover {
      background: #f0a900;
    }

    .hamburger {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }

    /* Banner Section */
    .banner {
      background: #0f3bcf;
      color: white;
      padding: 60px 20px;
    }

    .banner-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .banner h1 {
      font-size: 40px;
      font-weight: bold;
    }

    .banner h2 {
      font-size: 32px;
      margin-top: 10px;
      font-weight: 600;
      color: #c6d6ff;
    }

    .banner p {
      margin-top: 20px;
      font-size: 18px;
      max-width: 700px;
    }

    .rating {
      margin-top: 30px;
      font-size: 18px;
    }

    .stars {
      color: gold;
      font-size: 24px;
    }

    .banner .btn-download {
      display: inline-block;
      margin-top: 25px;
      background: white;
      color: #0f3bcf;
    }

    /* Responsive */
    @media (max-width: 768px) {
  .why-choose-us
{
  
    padding: 0px!important;
}
.right-column {
   
    padding: 12px!important;
}
 

      .banner h1 {
        font-size: 28px;
      }

      .banner h2 {
        font-size: 22px;
      }

      .banner p {
        font-size: 16px;
      }
    }

  @media (max-width: 768px) {
  .nav-bar {
    flex-direction: row;         /* force single row */
    justify-content: space-between;
    align-items: center;
  }

  nav {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 10px;
    padding-left: 0;
  }

  nav ul.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .logo {
    flex-shrink: 0;
  }
}



    .platform-section {
  background-color: #f9f9ff;
  padding: 40px 20px;
}

.platform-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.platform-heading {
  font-size: 36px;
  color: #0a197d;
  font-weight: bold;
  margin-bottom: 40px;
}

.platform-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-card {
  background-color: #f5f6ff;
  padding: 30px;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 360px;
  box-sizing: border-box;
  text-align: center;
}

.platform-card h3 {
  font-size: 22px;
  margin-top: 20px;
  color: #0a197d;
}

.platform-card p {
  color: #444;
  margin-top: 10px;
  line-height: 1.5;
}

.platform-btn {
  margin-top: 20px;
  background-color: #0a197d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.platform-btn:hover {
  background-color: #09155e;
}

.platform-icon {
  width: 40px;
  height: 40px;
}

.related-products-section {
  background-color: #133bbf;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.related-products-section .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.related-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.product-card {
  flex: 1 1 300px;
  max-width: 320px;
}

.product-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.product-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-card a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  padding: 10px;
  background-color: #efb854;
  border-radius: 30px;
}

.product-card a:hover {
  text-decoration: underline;
}

.benefits-section {
  padding: 60px 20px;
  background-color: #f4f6fa;
}

.benefits-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.benefits-image {
  flex: 1 1 400px;
  text-align: center;
}

.benefits-image img {
  max-width: 100%;
  border-radius: 12px;
}

.benefits-text {
  flex: 1 1 500px;
}

.benefits-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #133bbf;
}

.benefits-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-text ul li {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.benefits-text ul li::before {
  content: '✔';
  color: #1e88e5;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.why-choose-us {
  background-color: #062773;
  color: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.left-column {
  flex: 1 1 45%;
  padding: 20px;
}

.left-column img.responsive-img {
  width: 100%;
  height: auto;
  display: block;
}

.right-column {
  flex: 1 1 50%;
  padding: 20px;
}

.right-column h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.right-column h2 span {
  font-weight: bold;
  color: #ffffff;
}

.right-column p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.benefits-list li {
  font-size: 16px;
  margin: 12px 0;
  display: flex;
  align-items: center;
}

.benefits-list li i {
  color: #0fb8ff;
  margin-right: 12px;
  font-size: 18px;
}

.call-btn {
  display: inline-block;
  background-color: #0fb8ff;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.call-btn i {
  margin-right: 8px;
}

.call-btn:hover {
  background-color: #00a2e2;
}

.our-story-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.story-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.story-left {
  flex: 1;
  min-width: 300px;
  border-right: 2px solid #333;
  padding-right: 30px;
}

.story-left blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: #333;
  margin-bottom: 30px;
}

.contact-box p {
  margin: 6px 0;
  font-size: 0.95rem;
}

.contact-box a {
  color: #fff;
  text-decoration: none;
}

.btn-call {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
}

.btn-call i {
  margin-right: 8px;
}

.story-right {
  flex: 2;
  min-width: 300px;
}

.story-right h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.story-right p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.site-footer {
  background-color: #1c284c;
  color: #eee;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container div {
  flex: 1;
  min-width: 200px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 10px;
  color: #fff;
}

.footer-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-container ul li {
  margin-bottom: 8px;
}

.footer-container a {
  color: #ccc;
  text-decoration: none;
}

.footer-container a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 0.85rem;
  color: #aaa;
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 20px auto 0;
  font-size: 0.85rem;
  color: #bbb;
  line-height: 1.6;
  padding: 0 20px;
  text-align: center;
}

.pricing-plans {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.plans-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.plan-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 30px;
  width: 300px;
  position: relative;
  transition: transform 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.plan-card .price {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.plan-features li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.plan-features i {
  color: #28a745;
  margin-right: 8px;
}

.plan-features .inactive i {
  color: #ccc;
}

.plan-button {
  display: inline-block;
  background-color: #0066cc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.plan-button:hover {
  background-color: #004f9a;
}

.popular {
  border: 2px solid #0066cc;
}

.tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0066cc;
  color: #fff;
  padding: 4px 12px;
  font-size: 0.75rem;
  border-radius: 20px;
}
.breadcrumb-section {
  background: #f0f2f5;
  padding: 20px 0;
  font-size: 0.95rem;
}

.breadcrumb-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.breadcrumb {
  display: flex;
  list-style: none;
  gap: 10px;
  flex-wrap: wrap;
}

.breadcrumb li {
  color: #333;
}

.breadcrumb li a {
  text-decoration: none;
  color: #0066cc;
  align-items: center;
  gap: 5px;
}

.breadcrumb li.active {
  color: #555;
  pointer-events: none;
}

.breadcrumb li::after {
  content: "/";
  margin: 0 8px;
  color: #999;
}

.breadcrumb li:last-child::after {
  content: "";
}
.contact-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222;
}

.contact-section .lead {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-form, .contact-info {
  flex: 1 1 400px;
  max-width: 500px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007BFF;
  outline: none;
}

.submit-btn {
  background-color: #007BFF;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #0056b3;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
}

.contact-info p {
  margin: 10px 0;
  color: #444;
  font-size: 1rem;
}

.contact-info i {
  margin-right: 10px;
  color: #007BFF;
}

.contact-info .note {
  font-style: italic;
  font-size: 0.95rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .right-column {
    flex: auto!important;
    
}


}
