/* Style for hero section */
.hero-about {
    width: 100vw; /* Set width to 100% of the viewport */
    position: relative;
    left: 50%; /* Center the section */
    right: 50%;
    margin-left: -50vw; /* Offset to left */
    margin-right: -50vw; /* Offset to right */
    
    color: #fff;
    display: flex;
    align-items: center;
}


/* .hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: aliceblue;
} */


.features i {
    color: #17a2b8;
    margin-bottom: 20px;
}
/* .features {
    padding-left: 0 !important; 
    padding-right: 0 !important;
    margin-left: 0; 
    margin-right: 0; 
    width: 100%; 
} */

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align the images and text */
    text-align: center;  /* Center text */
}

/* Optional: Add responsive adjustments if needed */
@media (max-width: 768px) {
    .team-member {
        margin-bottom: 20px; /* Spacing on smaller screens */
    }
}
.team-member img {
    width: 200px; /* Set the desired width */
    height: 200px; /* Set the desired height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}


/* .cta {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
}

.cta h2 {
    font-size: 2.5rem;
}

.cta .btn {
    padding: 15px 30px;
    font-size: 1.2rem;
} */

/* .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition for fade-in */
} */

/* Once the visible class is added, animate the element */
/* .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
} */

