@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

 body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
  }

    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

  .about-wrapper {
    padding:20px;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-header h1 {
    font-size: clamp(1.5rem, 2.5vw + 1rem, 2rem);
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
  }

  .section-header h1::after {
    content: "";
    display: block;
    width: 120px;
    height: 6px;
    background-color: #1e3a8a;
    margin: 8px auto 0;
  }

  .aboutus-content {
    font-size: 16px;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }

  .grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }

  .card {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
  }

  .card i {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
  }

  .card h3 {
    font-size: 18px;
    color: #1e3a8a;
    margin-bottom: 10px;
  }

  .card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
  }





section {

  max-width: 1200px;
  margin: auto;
  font-family: 'Poppins';
 
}

h2.section-title {
  font-size: clamp(1.5rem, 2.5vw + 1rem, 2rem);
  color: #1a1a1a;
  margin-bottom: 16px;
  position: relative;
  font-weight: 700;
  text-align: center; /* Center the text */
}

h2.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  background-color: #1e3a8a; /* blue-600 */
  margin: 8px auto 0; /* Center the underline */
  border-radius: 2px;
}


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 40px;
  padding: 0 16px;
}

.team-member {
  background: white;
  padding: 24px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #1e3a8a;
}

.team-member h4 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #111827;
}

.team-member p {
  font-size: 14px;
  color: #4b5563;
  margin: 4px 0;
  text-align: left;
}

.team-member p strong {
  color: #1f2937;
}

.team-member p i {
  color: #1e3a8a;
  margin-right: 6px;
}

/* Responsive tweaks for small screens */
@media (max-width: 480px) {
  .team-member {
    padding: 20px 16px;
  }

  .team-member img {
    width: 90px;
    height: 90px;
  }

  .team-member h4 {
    font-size: 16px;
  }

  .team-member p {
    font-size: 13px;
  }
}

.team-cta {
  text-align: center;
  margin-top: 50px;
}
.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  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;
}

.cta-button i {
  color: red;
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: -2px;
  background-color: #1e3a8a;
  border-radius: inherit;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.cta-button:hover::before {
  transform: scaleX(1);
}

.cta-button:hover {
  color: white;
}

.cta-button:hover i {
  transform: scale(1.15);
}



  /* FAQ Section CSS */
.faq-section {
    padding:20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }

.faq-section h2 {
  font-size: clamp(1.5rem, 2.5vw + 1rem, 2rem); /* responsive font size */
  margin-bottom: 40px;
  color: black;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: block; /* ensures text-align works */
  padding-bottom: 12px; /* space for underline */
}

.faq-section h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  background-color: #1e3a8a; /* or var(--deep-blue) if using CSS vars */
  border-radius: 2px;
   margin: 8px auto 0;
}


  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }

  .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
  }

.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 0;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .faq-text {
  flex-grow: 1;
  padding-right: 10px;
}


  .toggle-icon {
    color: #1e3a8a;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
  }

  .faq-question[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding-left: 0;
    color: #333;
  }

  .faq-answer.open {
    padding-top: 10px;
    max-height: 300px;
  }

  .faq-answer p {
    margin-top: 10px;
    line-height: 1.6;
  }

  .faq-answer a {
    color: #1e3a8a;
    text-decoration: underline;
  }

  @media (max-width: 600px) {
   
    .faq-question {
      font-size: 1rem;
    }
  }




  /* Testament Section CSS */
  .testimonials-section {

  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
  color: #222;
  text-align: left;
}
.testimonials-section h2 {
  color: black;
   font-size: clamp(1.5rem, 2.5vw + 1rem, 2rem);
   font-family: 'Poppins';
  margin-bottom: 8px;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.testimonials-section h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  background-color: #1e3a8a; /* Same blue as section-title */
  margin: 8px auto 0;
  border-radius: 2px;
}

.testimonials-section .subheading {
  color: #555;
  font-size: 1.15rem;
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
}

/* Container for horizontal layout */
.testimonials-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* Wrap on small screens */
   gap: 20px; /* add this to create space between cards */
}

.testimonial-card {
  background-color: #fff;
  border: 1px solid #e5e7eb; /* light gray border */
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.05);
  display: flex;
  flex-direction: column;
  width: 32%; /* 3 in a row */
  box-sizing: border-box;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #1e3a8a; /* blue border */
  object-fit: cover;
   margin-bottom: 10px; /* no centering margins */
  flex-shrink: 0;
}

.testimonial-content {
  width: 100%;
}

.quote-icon {
  color: #1e3a8a;
  font-size: 2rem;
  margin-bottom: 10px;
  user-select: none;
  text-align: left;
  display: block;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0 0 12px 0;
  padding-left: 0;
  text-align: left;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1e3a8a;
  text-align: left;
}

/* Responsive for smaller screens */
@media (max-width: 900px) {
  .testimonial-card {
    width: 48%; /* 2 in a row */
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    width: 100%; /* 1 in a row */
    text-align: center;
  }

  .testimonial-content {
    text-align: center;
  }

 
}




.cta-box {
  width: 100%;
  max-width: 100%;
  padding: 40px 30px;
  background: #f9f9f9;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.cta-box h3 {
  font-size: clamp(1.5rem, 2.5vw + 1rem, 2rem);
  margin-bottom: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;          /* needed for ::after positioning */
  padding-bottom: 12px;        /* space for underline */
}

.cta-box h3::after {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  background-color: var(--deep-blue);
  border-radius: 2px;
  margin: 0 auto;              /* center underline */
  position: absolute;
  bottom: 0;                   /* position underline just below the text */
  left: 50%;
  transform: translateX(-50%);
}


.cta-box h3 i {
 
  color: #1e3a8a;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: #000000;
  line-height: 1.5;
}

/* Custom button with left-to-right fill animation */
.custom-cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  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);
}







    
        /* Timeline */
        .timeline {
            position: relative;
            margin: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #2c5aa0;
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 2rem;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            width: 45%;
            position: relative;
        }

        .timeline-year {
            background: #2c5aa0;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }
 @media (max-width: 768px) {

   .timeline::before {
                left: 20px;
            }

            .timeline-content {
                width: calc(100% - 60px);
                margin-left: 60px;
            }

            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 60px;
            }

            .timeline-year {
                left: 20px;
                transform: translateX(-50%);
            }
 }

 .timeline-container{
  padding: 0 20px;
 }




 .wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.advisory-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  color: black;
}



.advisory-header h2 {
  font-size: clamp(1.5rem, 2.5vw + 1rem, 2rem);
  font-weight: 700;
  margin: 0;
  text-align: center;
  color: black;
}

.advisory-header h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  background-color: #1e3a8a; /* Same blue as section-title */
  margin: 8px auto 0;
  border-radius: 2px;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.advisory-card {
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advisory-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.role-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1e3a8a;
}

.role-location {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.role-description {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}


