.about-hero{
    background-image: url('../img/about/about-hero.jpg') !important;
    background-size: cover;
    background-position: center !important;
    padding: 60px 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    /* border: 2px red solid !important; */
}

/* .text-theme2 span{
    background-color: white;
    /* height: 60px; 
    padding: 5px;
    width: auto;
    
}
.text-theme2 span i{
    margin-left: 100px;
    border: 2px red solid;
} */

.impact-circle {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.mission-card{
    width: 100%;
    max-width: 700px;
    /* aspect-ratio: 3/2; */
    border-radius: 10px;
    background-color: #2d3f53bd;
    color: white;
    padding: 40px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
@media (max-width: 768px) {
    .mission-card{
        padding: 25px 30px !important;
    }
}

.values-card{
    width: 100%;
    max-width: 500px;
     padding: 40px 60px;
}

.leader-div {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    padding-top: 100px; /* reserve space for the image */
}

.leader-img, .vol-img{
    width: 60%; /* fixed size for consistency */
    height: 120px;
    object-fit: cover;
    object-position: top;
    
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.leader-card {
    width: 100%;
    background-color: #fff;
     padding: 150px 20px 20px; /* padding-top matches image height + spacing */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leader-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0;
}
/* @media (max-width: 400px) {
    .leader-img {
        width: 90px;
        height: 90px;
    }

    .leader-card {
        padding-top: 60px;
    }
} */

.vol-img{
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 7px #F8F4F4 solid;
   
    aspect-ratio: 3/3;
}

.process-circle {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 3;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.small-text {
  font-size: 0.75rem;
  line-height: 1.3;
}

/* Optional scaling down for extra small devices */
/* @media (max-width: 576px) {
  .process-circle {
    max-width: 220px;
    padding: 1rem;
  }
} */

.carousel-indicators button {
    width: 12px;
    height: 12px !important;
    border-radius: 50%;
    margin: 0 6px;
    background-color: #ccc;
    border: none;
    transition: all 0.3s ease-in-out;
}

.carousel-indicators .active {
    width: 30px !important; 
    background-color: #1AC0A2;
}
/* .carousel-indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    margin: 0 5px;
    background-color: #ccc;
    border: none;
    transition: all 0.3s ease-in-out;
}

.carousel-indicator-dot.active {
    width: 30px; /* Make active indicator longer 
    background-color: #1AC0A2;
}
.carousel-indicator-dot.active,
.carousel-indicator-dot:hover {
  background-color: #1AC0A2;
} */

.test-card{
    min-height: 300px;
}

.test-card i {
    position: absolute;
    top: 0;
    left: 40px; /* increased from 20px to move right */
    transform: translateY(-50%);
    background: var(--theme-color);
    color: white;
    padding: 10px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}