 section.faq {
      max-width: 900px;
      margin: 3rem auto;
      padding: 2rem;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .faq h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
      color: #0a2540;
    }

    .faq-item {
      border-bottom: 1px solid #ddd;
      padding: 1rem 0;
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1rem;
      color: #0a2540;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      font-size: 0.95rem;
      color: #555;
      margin-top: 0.5rem;
    }

    .faq-item.active .faq-answer {
      max-height: 200px; /* enough to show answer */
    }

    .faq-question span {
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question span {
      transform: rotate(45deg);
    }

     section.reviews {
      max-width: 1100px;
      margin: 3rem auto;
      padding: 2rem;
    }

    .review-card {
      background:#0051a21f !important;
      border-radius: 12px;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .review-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
      flex-wrap: wrap;
    }

    .review-header img {
      width: 75px;
      height: auto;
    }

    .review-header h3 {
      margin: 0;
      color: #0a2540;
    }

    .stars {
      color: #f4b400;
      font-size: 1.2rem;
    }

    .review-body {
      margin-top: 1rem;
      line-height: 1.6;
      color: #444;
    }

    .pros-cons {
      display: flex;
      gap: 2rem;
      margin-top: 1rem;
      flex-wrap: wrap;
    }

    .pros, .cons {
      flex: 1;
      background: #0051a200 !important;
      padding: 1rem;
      border-radius: 8px;
    }

    .pros h4 {
      color: green;
      margin-bottom: 0.5rem;
    }

    .cons h4 {
      color: red;
      margin-bottom: 0.5rem;
    }

    @media (max-width: 768px) {
      .review-header {
        flex-direction: column;
        align-items: flex-start;
      }
      .pros-cons {
        flex-direction: column;
      }
      
    }


    

    @media (max-width: 768px) {
      .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .pros-cons {
        flex-direction: column;
      }
    }

    /* Read Review button */
.read-review {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, #0070f3, #00bcd4);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 112, 243, 0.3);
  transition: all 0.3s ease;
}

.read-review:hover {
  background: linear-gradient(135deg, #0051a2, #0097a7);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 112, 243, 0.5);
}


/* Footer full width */
.footer {
  background: #0a2540;
  color: #fff;
  padding: 3rem 1.5rem 1rem;
  margin-top: 3rem;
  width: 100%;
}

/* Container full width */
.footer-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}


  .footer-col h3, 
  .footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #0070f3;
    display: inline-block;
    padding-bottom: 0.3rem;
  }

  .footer-col p {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #ddd;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
  }

  .footer-col ul li {
    margin: 0.5rem 0;
  }

  .footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-col ul li a:hover {
    color: #00bcd4;
  }

  /* Newsletter */
  .newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .newsletter input {
    padding: 0.7rem;
    border: none;
    border-radius: 6px;
    outline: none;
    font-size: 0.9rem;
  }

  .newsletter button {
    padding: 0.7rem;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #0070f3, #00bcd4);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }

  .newsletter button:hover {
    background: linear-gradient(135deg, #0051a2, #0097a7);
  }

  /* Footer bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .footer-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
    }
  }

  /*home page*/

   /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      line-height: 1.6;
      color: #333;
    }

    /* Navbar */
    header {
      background: #0a2540;
      color: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: auto;
    }

    .navbar h1 {
      font-size: 1.5rem;
      color: #fff;
    }

    .nav-links {
      display: flex;
      list-style: none;
    }

    .nav-links li {
      margin: 0 1rem;
    }

    .nav-links a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: #00d4ff;
    }

    /* Mobile menu */
    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background: #0a2540;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        border-radius: 8px;
      }

      .nav-links.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
        color: #fff;
      }
    }

    /* Hero */
      .hero {
    background: url('https://images.news18.com/ibnlive/uploads/2022/01/credit-cards-16423191874x3.png') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
  }

  /* dark overlay for readability */
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 1rem;
  }

  .hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }


    .btn {
      background: #00d4ff;
      color: #0a2540;
      padding: 0.8rem 1.5rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .btn:hover {
      background: #fff;
      color: #0a2540;
    }

    /* About Section */
    .about {
      max-width: 1000px;
      margin: 3rem auto;
      padding: 2rem;
      text-align: center;
    }

    .about h2 {
      color: #0a2540;
      margin-bottom: 1rem;
      font-size: 2rem;
    }

    .about p {
      color: #555;
      font-size: 1.05rem;
    }

    /* Reviews Section */
    .reviews {
      max-width: 1100px;
      margin: 3rem auto;
      padding: 0 2rem;
    }

    .reviews h2 {
      text-align: center;
      color: #0a2540;
      margin-bottom: 2rem;
      font-size: 2rem;
    }

    .review-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .review-card {
      background: #f9f9f9;
      border-radius: 10px;
      padding: 1.5rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .review-card:hover {
      transform: translateY(-5px);
    }

    .review-card h3 {
      margin-bottom: 0.5rem;
      color: #0a2540;
    }

    .stars {
      color: #f4b400;
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .review-card p {
      font-size: 0.95rem;
      color: #555;
    }

    .container p {
  line-height: 1.7;
  font-size: 16px;
  color: #333;
}
.container h2 {
  margin-top: 30px;
  color: #222;
}


     .container {
      max-width: 900px;
      margin: 2rem auto;
      padding: 2rem;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    h1, h2, h3 {
      margin-bottom: 1rem;
      /*color: #0a2540; */
      color: white;
    }

    p {
      margin-bottom: 1.2rem;
      font-size: 1rem;
    }

   .pros-cons {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.pros, .cons {
  flex: 1;
  padding: 15px;
  border-radius: 8px;
}
.pros {
  background: #e8f7ec;
  border: 1px solid #7bcf98;
}
.cons {
  background: #fdeaea;
  border: 1px solid #f18c8c;
}

    .pros h3 { color: green; }
    .cons h3 { color: red; }
    .pros ul, .cons ul {
      margin-top: 0.5rem;
      padding-left: 1.5rem;
    }

    img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}


    @media (max-width: 768px) {
      .pros-cons {
        grid-template-columns: 1fr;
      }
    }


    /* Hero */
    .hero1 {
      background: linear-gradient(to right, #0a2540, #1e88e5) !important;
      color: white;
      padding: 5rem 2rem;
      text-align: center;
      height: 350px;
    }

    .hero1 h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: white;
    }

    .hero1 p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }

    /*why us*/

   .why-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: nowrap; /* prevent wrapping */
  overflow-x: auto;  /* allow horizontal scroll on small screens */
  padding-bottom: 1rem;
}

.why-card {
  flex: 0 0 250px; /* fixed width for each card */
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.why-card svg {
  margin-bottom: 1rem;
}

.why-card h3 {
  color: #0a2540;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Hide scrollbar on Webkit browsers */
.why-grid::-webkit-scrollbar {
  display: none;
}
.container2
   {
    margin: 2rem auto;
    padding: 2rem;
    background:#fff;
   }
   
   .container2 h2{
   coloR: #0a2540;
   text-align:center
   }

    .container2 p{
   coloR: #0a2540;
   text-align:center;
   font-size:20px
   }

