

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

    body {
      
      color: #333;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
    }
    .container {
      font-family: 'Arial, sans-serif';
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      background: #fff;
    }
    h1 {
      font-size: 40px;
      margin-bottom: 10px;
      color: black;
    }

    
    .section-title i {
      color: #1e3a8a;
      margin-right: 10px;
    }
    .lead {
      font-size: 18px;
      margin-bottom: 30px;
      line-height: 1.6;
    }
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }
    .feature {
      background: #f1f1f1;
      padding: 20px;
      border-radius: 8px;
      transition: 0.3s;
      text-align: center;
    }
    .feature i {
      font-size: 24px;
      margin-bottom: 10px;
      color: #1e3a8a;
    }
    .feature:hover {
      background: #e0e7ff;
    }
    .faq {
      margin-top: 60px;
    }
    .faq h2 {
      color: #1e3a8a;
      margin-bottom: 20px;
    }
    .faq-item {
      margin-bottom: 15px;
    }
    .faq-item h3 {
      font-size: 18px;
      color: #1e3a8a;
      margin-bottom: 5px;
    }
    .cta {
      text-align: center;
      margin-top: 50px;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 28px;
      }
    }


   /* Reset/Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  
  color: #222;
  line-height: 1.6;
  background: #f5f7fa;
}

/* Section Container */
.process-section {

  background-color: #fff;
}

.container {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

/* Step Cards */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.step-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.step-card .icon {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.step-card .text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.step-card .text p {
  font-size: 1rem;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .step-card {
    padding: 25px 20px;
  }

  .step-card .icon {
    font-size: 1.8rem;
  }

  .step-card .text h3 {
    font-size: 1.15rem;
  }

  .step-card .text p {
    font-size: 0.95rem;
  }
}


    .faq-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  border-radius: 12px;
}

.faq-section h2 {
  text-align: center;
  color: black;
  margin-bottom: 30px;
  font-size: 40px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 10px;
  font-size: 18px;
  color: black;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.arrow-icon {
  transition: transform 0.3s ease;
  color: #1e3a8a;
}

.faq-answer {
  padding: 0 10px 15px;
  color: #333;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .arrow-icon {
  transform: rotate(180deg);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



.expertise-section {
  padding: 50px 25px;
  background: #fff; /* Keep it white */
  border-radius: 16px;

}

.expertise-section .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: #444;
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
  list-style: none;
}

.expertise-list li {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%; /* Ensures equal height with grid */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.expertise-list li i {
  font-size: 1.4rem;
  color: #1e3a8a;
  flex-shrink: 0;
}

.expertise-list li span {
  font-size: 1rem;
  color: #333;
  flex-grow: 1;
  line-height: 1.5;
}



.custom-cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #1e3a8a;
  text-decoration: none;
  border: 2px solid #1e3a8a;
  border-radius: 9999px;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  transition: color 0.4s ease;
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.12);
  user-select: none;
  z-index: 0;
}

.custom-cta-button i {
  color: red;
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.custom-cta-button::before {
  content: '';
  position: absolute;
  inset: -2px;
  background-color: #1e3a8a;
  border-radius: inherit;
  transform-origin: left center;   /* Animate fill from left */
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.custom-cta-button:hover::before {
  transform: scaleX(1);
}

.custom-cta-button:hover {
  color: white;
}

.custom-cta-button:hover i {
  transform: scale(1.15);
}
