* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}
.banner-section{
  background-color: #b388ff;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 4rem;
}
.banner-heading{
  color: white;
}
.banner-para{
    color: rgba(255, 255, 255, 0.8);
}


.feature-section{
  background-color: #fffcf5;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.05); /* Slightly enlarge the card */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}


.icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #010172;
  font-family: 'Poppins', sans-serif;
}

.feature-card:nth-child(1) .icon-wrapper {
  background: #333;
  color: white;
}

.feature-card:nth-child(2) .icon-wrapper {
  background: #E91E63;
  color: white;
}

.feature-card:nth-child(3) .icon-wrapper {
  background: #4CAF50;
  color: white;
}

.feature-card:nth-child(4) .icon-wrapper {
  background: #2196F3;
  color: white;
}

.feature-card:nth-child(5) .icon-wrapper {
  background: #4caf50;
  color: white;
}

.feature-card:nth-child(6) .icon-wrapper {
  background: #9c27b0;
  color: white;
}

.feature-cardh2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.feature-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
}

.feature-card button {
  background: #f0f0f0;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.3s;
}

.feature-card button:hover {
  background: #e0e0e0;
}

@media (min-width: 768px) {
  .feature-cards {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-cards {
      grid-template-columns: repeat(4, 1fr);
  }
}

/* benifts section */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}



.heading {
  font-size: 3.5rem;
  color: #1A2B3C;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Poppins', sans-serif;
}

.subtitle {
  color: #4A5568;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  text-align: left;
  padding: 20px;
  border-radius: 10px;
}

.benefit-card:hover {
  border: 2px solid #010172;
  border-radius: 10px;
}


.icon-container {
  /* background-color: #FFE4E0; */
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon {
  width: 6.5rem;
  height: 3.5rem;
  object-fit: contain;
}

.benefit-title {
  font-size: 18px;
  color: #010172;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.benefit-description {
  color: #4A5568;
  line-height: 1.5;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .heading {
    font-size: 2.5rem;
  }
}

/* faq css */
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-header h1 span {
  color: orange;
}

.faq-header p {
  color: #666;
  font-size: 0.95em;
}

.faq-item {
  margin-bottom: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 15px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  transition: box-shadow 0.3s ease, color 0.3s ease;
}
.faq-question:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  color: #007bff;
}
.faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #666;
  transition: transform 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.faq-question.active::after {
  content: '−';
  font-family: 'Poppins', sans-serif;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  text-align: justify;
  padding: 0px 15px;
  /* padding: 0 20px; */
  font-family: 'Poppins', sans-serif;
}

.faq-answer.active {
  max-height: 200px;
  /* padding-bottom: 20px; */
  text-align: justify;
  padding: 0px 15px;
  font-family: 'Poppins', sans-serif;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95em;
  font-family: 'Poppins', sans-serif;
}

/* contact css */
.contact-container{
  width: 100%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
}
.contact-container .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-container .content .left-side{
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.content .left-side::before{
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}
.content .left-side .details{
  margin: 14px;
  text-align: center;
}
.content .left-side .details i{
  font-size: 30px;
  color: #3e2093;
  margin-bottom: 10px;
}
.content .left-side .details .topic{
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two{
  font-size: 14px;
  color: #afafb6;
}
.contact-container .content .right-side{
  width: 75%;
  margin-left: 75px;
}
.content .right-side .topic-text{
  font-size: 23px;
  font-weight: 600;
  color: #3e2093;
}
.right-side .input-box{
  height: 50px;
  width: 100%;
  margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
.right-side .message-box{
  min-height: 110px;
}
.right-side .input-box textarea{
  padding-top: 6px;
}
.right-side .button{
  display: inline-block;
  margin-top: 12px;
}
.right-side .button input[type="button"]{
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #3e2093;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input[type="button"]:hover{
  background: #5029bc;
}
@media (max-width: 950px) {
  .container{
    width: 90%;
    padding: 30px 40px 40px 35px ;
  }
  .contact-container .content .right-side{
   width: 75%;
   margin-left: 55px;
}
}
@media (max-width: 820px) {
  .contact-container{
    margin: 40px 0;
    height: 100%;
  }
  .contact-container .content{
    flex-direction: column-reverse;
  }
 .contact-container .content .left-side{
   width: 100%;
   flex-direction: row;
   margin-top: 40px;
   justify-content: center;
   flex-wrap: wrap;
 }
 .contact-container .content .left-side::before{
   display: none;
 }
 .contact-container .content .right-side{
   width: 100%;
   margin-left: 0;
 }
}

/* testimonial */
.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-header h1 {
  color: black;
  font-size: clamp(24px, 5vw, 36px);
  margin-bottom: 15px;
  font-weight: 700;
}

.testimonial-header p {
  color: #666;
  font-size: clamp(16px, 3vw, 18px);
}

.testimonial-slider {
  position: relative;
  background-color: #2a3b75;
  border-radius: 15px;
  padding: 60px 20px;
  min-height: 400px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar-container {
  position: relative;
  margin-bottom: 30px;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #ff6b6b;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center,
      transparent 60px,
      rgba(255, 255, 255, 0.1) 60px,
      rgba(255, 255, 255, 0.1) 70px,
      transparent 70px
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.name {
  color: #4CAF50;
  font-size: 24px;
  margin-bottom: 10px;
}

.position {
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
}

.quote {
  color: white;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.6;
  position: relative;
  padding: 0 40px;
}

.quote::before,
.quote::after {
  content: '"';
  font-size: 60px;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
}

.quote::before {
  left: 0;
  top: -20px;
}

.quote::after {
  right: 0;
  bottom: -40px;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  z-index: 10;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.dots-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .testimonial-slider {
      padding: 40px 15px;
  }

  .avatar {
      width: 120px;
      height: 120px;
  }

  .quote {
      padding: 0 20px;
  }

  .nav-button {
      width: 35px;
      height: 35px;
  }
}

/* workflow */
.workflow-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  
}

.header {
  margin-bottom: 50px;
}

.header h1 {
  font-size: 35px;
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
  
}

.subtitle {
  font-size: 16px;
  color: #555;
  line-height: 24px;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
}

.checklist {
  flex: 1;
  padding-right: 50px;
}

.checklist-title {
  font-size: 28px;
  color: #010172;
  text-align: left;
  margin-bottom: 30px;
  font-weight: 700;
}

.checklist-items {
  text-align: left;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.checkmark {
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
}

.checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

.checklist-text {
  flex: 1;
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}

.illustration {
  flex: 1;
  /* text-align: right; */
}

.illustration img {
  max-width: 400px;
  height: auto;
}

@media (max-width: 768px) {
  .content {
      flex-direction: column;
  }
  
  .checklist {
      padding-right: 0;
      margin-bottom: 30px;
  }

  .illustration {
      text-align: center;
  }
}

/* navbar */
.main-navbar {
  background: #b388ff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.mainnav-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0.8rem 1rem; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-linkul {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding:  1rem;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  font-weight: 700;
}

.nav-linkul::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #073f91;
  transition: width 0.3s ease;
}

.nav-linkul:hover::after,
.nav-linkul.active::after {
  width: 100%;
}

.nav-linkul.active {
  color: #073f91;
  font-weight: 500;
}

/* Tablet Responsive Styles */
@media (max-width: 991px) {
  .nav-links {
      gap: 1rem;
  }

  .nav-linkul {
      /* padding: 0.5rem; */
      font-size: 0.95rem;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
      display: flex;
  }

  .nav-links {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #fff;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      padding: 2rem;
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
  }

  .nav-links.active {
      display: flex;
      opacity: 1;
  }

  .nav-linkul {
      font-size: 1.2rem;
      padding: 0.75rem 1.5rem;
      text-align: center;
  }

  .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 6px);
  }

  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -5px);
  }
}

/* Small Mobile Responsive Styles */
@media (max-width: 480px) {
  .logo-text {
      font-size: 1.25rem;
  }

  .logo img {
      width: 32px;
      height: 32px;
  }

  .nav-linkul {
      font-size: 1.1rem;
      padding: 0.5rem 1rem;
  }

  .mainnav-container {
      padding: 0.6rem 1rem;
  }
}

/* form modal */

  /* Button Styles */
  .btn-outline-primary {
    color: #0d6efd;
    border: 2px solid #0d6efd;
    background: transparent;
    padding: 15px 30px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: #0d6efd;
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

/* Form Styles */
.form-title {
    margin: 0 0 1.5rem 0;
    color: #333;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.input-with-button {
    display: flex;
    gap: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.otp-btn {
    padding: 0.75rem 1rem;
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
}

.otp-btn:hover {
    background: #0b5ed7;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #0b5ed7;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.benifits-section{
background-color: #ffa50014;
}