 *{
    margin: 0;
    padding: 0;
}

    .about-header {
      text-align: center;
      padding-top: 30px;
      font-size: 2rem;
      font-weight: bold;
    }

    .breadcrumb {
      justify-content: center;
      margin-bottom: 30px;
    }

    .highlight-text {
      color: rgb(31, 31, 156);
      font-weight: bold;
    }

    .section-text {
      font-size: 1rem;
      line-height: 1.6;
    }

    .feature-icon {
      font-size: 1.5rem;
      margin-right: 8px;
      color: navy;
    }

    .feature-list li {
      margin-bottom: 10px;
    }

    .btn-discover {
      background-color: navy;
      color: #fff;
      padding: 10px 20px;
      text-transform: uppercase;
      font-weight: bold;
      border: none;
      margin-top: 20px;
    }

    .btn-discover:hover {
      background-color: #00004d;
    }

    .section-title {
      font-weight: bold;
      font-size: 1.2rem;
      margin-bottom: 5px;
    }

    .icon-text {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .image-box {
      margin-bottom: 15px;
    }

    .image-box img {
      max-width: 100%;
      border-radius: 10px;
    }
    .image-box-1 img {
  height: 500px;           /* Adjust height as needed */
  width: 50%;
  object-fit: cover;       /* Ensures it fills the box without distortion */
  border-radius: 10px;     /* Optional rounded corners */
}

.image-box-2 img {
  height: 200px;           /* Adjust height as needed */
  width: 50%;
  object-fit: cover;       /* Ensures it fills the box without distortion */
  border-radius: 10px;     /* Optional rounded corners */
}

.breadcrumb-item a {
  text-decoration: none;
  color: white;
  font-family:'poppins';
}

.breadcrumb-item.active {
  color: #6302e2;
  text-decoration: underline;
}


.container-1 {
    display: flex;
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
}

.image-section {
    flex: 1;
    /* padding: 20px; */
    /* background-color: #e6f7ff; Lighter blue for the image section */
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.features-section {
    flex: 1;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    gap: 10px;
}

.feature-item img {
    width: 30px;
    height: 30px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.feature-item p {
  margin: 0;
    padding: 0;
    font-size: 16px;
    color: #555;
}

.discover-button {
    background-color: #003366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
}

.discover-button:hover {
    background-color: #00264d;
}


/* <!-- our team section --> */

.team-heading {
    width: 300px;
    color: #fff;
    text-align: center;
    margin:auto;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: -40px;
    background-color: #001659;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Proper shadow */
}

.mission-vision-container{
  padding-top: 20px;
  background-color: #022a42;
}


.team-section {
  max-width: 1200px;
  margin:auto;
  margin-top: 40px;
  margin-bottom: 150px;
  text-align: center;
}

.team-header {
  margin-bottom: 40px;
  position: relative;
}

.team-subtitle {
  color: #e26a2c;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.team-header h2 {
  font-size: 2.5rem;
  font-weight: 400;
}

.team-header .highlight {
  font-weight: 700;
}

.view-all-btn {
  margin-top: 20px;
  background-color: #003a2b;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.view-all-btn:hover {
  background-color: #025c3e;
}

.team-cards {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Add a media query for smaller screens */
@media (max-width: 768px) {
  .team-cards {
    flex-direction: column; /* Stack cards vertically */
    flex-wrap: wrap;
    align-items: center;    /* Center cards horizontally */
  }

  .card {
    width: 90%; /* Make cards take more width on mobile */
    max-width: 400px;
  }
}


.img-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit :fill;
  display: block;
}

.text-overlay {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: white;
}

.member-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 8px;
  color: #001659;
}

.designation-glass {
  display: inline-block;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: black;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 650;
  box-shadow: 0 5px 10px rgba(17, 17, 17, 0.226);
}



.img-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
}

/* Hover overlay setup */
.hover-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: bottom 0.5s ease;
  z-index: 2;
}

/* Slide overlay up on hover */
.img-container:hover .hover-overlay {
  bottom: 0;
}

/* Social Icons container */
.social-icons {
  display: flex;
  gap: 15px;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease 0.1s;
}

/* Animate icons in sync with overlay */
.img-container:hover .social-icons {
  transform: translateY(0);
  opacity: 1;
}

/* Individual Icon styling */
.social-icons .icons {
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icons .icons:hover {
  transform: scale(1.3);
  color: #00bcd4;
  text-shadow: 0 0 10px rgba(0, 188, 212, 0.8);
  fill: #00bcd4;
}

/* Text Overlay: name + designation */
.text-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: white;
  z-index: 3;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.member-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #fff; /* switch to white for better contrast */
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
}





/* why choose us section */

.why-choose-us-section{
  margin: 40px;
  margin-bottom: 100px;
}

.step-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
}

/* Circle style */
.step-circle {
  background-color: #f3f3f3;
  color: #555;
  font-weight: 600;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  margin: 20px;
}

/* Card style */
.card-step {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.03);
  background: white;
  height: 100%;
}

.card-step img {
  width: 30%;
  height: auto;
  margin-bottom: 15px;
}

.card-step h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Hover effect linking both elements */
.step-group:hover .step-circle {
  background-color: #fcd34d;
  color: black;
  border-color: #00695c;
  transform: scale(1.1);
}

.step-group:hover .card-step {
  border: 2px solid #00695c;
  box-shadow: 0 12px 18px rgba(0, 105, 92, 0.2);
  transform: translateY(-5px);
}


/* Responsive margin */
@media (max-width: 768px) {
  .step-circle {
    margin: 0 auto;
  }
}


/* our mission and vision */
.mission-vision-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  margin-top: 70px;
}

.mv-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 30px 30px;
  text-align: center;
  max-width: 500px;
  flex: 1 1 300px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 188, 212, 0.3);
}

.mv-circle {
  width: 80px;
  height: 80px;
  background-color: #00bcd4;
  border-radius: 50%;
  margin: 0 auto;
  margin-top: -80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover .mv-circle {
  transform: scale(1.1);
  box-shadow: 0 0 0 5px rgba(0, 188, 212, 0.2), 0 0 15px rgba(0, 188, 212, 0.5);
}

.mv-circle img {
  width: 40px;
  height: 40px;
}

.mv-card h3 {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #002b45;
}

.mv-card p {
  margin-top: 15px;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .mv-card {
    margin: 0 auto;
  }
}


/* number of investors and all  */

.stats-section {
  text-align: center;
  background-color: #f7a93c;
  padding: 20px;
  /* padding: 40px 0px; */
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* border-radius: 15px; */
  padding: 20px;
  /* max-width: 1000px; */
  width: 100%;
  margin: auto;
  gap: 20px;
}

.stat-box {
  background-color: #fff;
  padding: 40px 0px;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 220px;
  text-align: center;
  border-radius: 30px;
  border: 2px solid #e27b36;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 188, 212, 0.3);
  border-color: #00cfff;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 32px;
  background: linear-gradient(45deg, #00cfff, #f7a93c);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.stat-box:hover::before {
  opacity: 0.4;
}

/* Ensure content stays on top of ::before */
.stat-box * {
  position: relative;
  z-index: 1;
}

/* Icon zoom effect on hover */
.stat-box:hover .icons img {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .stat-box {
    flex: 1 1 90%;
    max-width: 300px; /* Optional, to avoid going too wide */
    margin: 0 auto;   /* Center the boxes */
  }
}


.title {
  font-weight: bold;
  margin-bottom: 30px;
}

.count {
  background-color: #00cfff;
  color: #000;
  font-weight: bold;
  padding: 5px 30px;
  border-radius: 20px;
  display: inline-block;
  min-width: 80px;
}

.cta-button {
  margin-top: 20px;
}

.cta-button a {
  background-color: #00cfff;
  color: #000;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.cta-button a:hover {
  background-color: #00b3e6;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.6);
}

/* Optional: glow ring animation */
.cta-button a::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 10%, transparent 10.01%);
  background-size: 10% 10%;
  animation: pulse 3s linear infinite;
  z-index: 0;
}

.cta-button a:hover::before {
  animation-play-state: paused;
}

@keyframes pulse {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50%, 50%);
  }
}


.icons img {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}


@media screen and (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
}