
.hero-section-about {
    background-image: linear-gradient(129.1deg, rgba(243, 199, 83, 1) 26.8%, rgba(18, 235, 207, 1) 114.1%);
    min-height: 15vh;
    position: relative;
    height: 100%; /* Consider changing to a min-height for better flexibility */
    display: flex; /* Enables flexbox for child alignment */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    text-align: center; /* Center text */
}

.home-page-hero-section-about {
    background-image: url('../images/hero-about-us.jpg'); /* Adjust path as necessary */
    background-size: cover;
    background-position: center;
    position: relative;
    height: 20vh; /* Maintain full height */
    display: flex; /* Enables flexbox for child alignment */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section-about {
        min-height: 25vh; /* Increase height for smaller screens */
    }

    .home-page-hero-section-about {
        height: 35vh; /* Adjust the height for mobile */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.0rem; /* Smaller title size for smaller devices */
    }

    .hero-subtitle {
        font-size: 1.0rem; /* Smaller subtitle size for smaller devices */
    }
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    color: #f8f9fa;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Our Story Section */
.our-story {
    padding: 60px 0;
}

.our-story h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: #f0f8ff; /* Light blue background */
}

.team-section h2 {
    font-size: 2.5rem; /* Heading size */
    margin-bottom: 20px; /* Space below the heading */
    font-weight: bold; /* Make the heading bold */
    color: #333; /* Darker color for contrast */
    text-align: center; /* Center align the heading */
}

.team-member {
    margin-bottom: 20px; /* Space between team members */
}

.team-member h5 {

    font-size: 1.25rem; /* Size for member names */
    font-weight: 700; /* Bold weight for names */
    color: #007bff; /* Blue color for names */
}

.team-member p {
    font-size: 0.9rem; /* Slightly smaller text for descriptions */
    color: #555; /* Dark grey for text for readability */
}

.team-member .card {
    border: none; /* Remove default card border */
    transition: transform 0.3s; /* Smooth hover effect */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Slightly deeper shadow for depth */
}

.team-member .card:hover {
    transform: translateY(-10px); /* Lift effect on hover */
}

.team-img {
    width: 150px; /* Fixed size for images */
    height: 150px; /* Fixed size for images */
    object-fit: cover; /* Maintain aspect ratio */
    border: 3px solid #007bff; /* Blue border around images */
    border-radius: 50%; /* Make images circular */
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .team-section h2 {
        font-size: 2rem; /* Smaller heading size for mobile */
    }

    .team-member h5 {
        font-size: 1.1rem; /* Smaller name size for mobile */
    }

    .team-member p {
        font-size: 0.85rem; /* Smaller description size for mobile */
    }
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
}

.partners-section h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.partners-section p {
    font-size: 1.1rem;
}

/* Keywords Styling */
.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.keyword-item {
    background-color: #ffffff;
    color: #1a73e8;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.keyword-item:hover {
    background-color: #fbbc05;
    color: #ffffff;
    transform: scale(1.05);
}
