/* General Body and Font Styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

/* Reusable Container */
.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 3rem;
}

/* Hero Section Styles */
.hero-section {
    margin-top: 50px;
    color: white;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)), url(/images/about/aboutHero.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 8rem;
    padding-bottom: 8rem;
    border-radius: 15px;
    margin: auto;
    width: 90%;
}

.hero-content {
    max-width: 60%;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.text-brand-green {
    color: #00f5a0;
}

.hero-button {
    margin-top: 2rem;
    background-color: white;
    color: black;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #e2e8f0;
}

.hero-button-icon {
    height: 1.25rem;
    width: 1.25rem;
}

/* Vision Section Styles */
.vision-section {
    background-color: white;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.vision-card {
    background-color: #f1f5f9;
    padding: 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-icon {
    height: 1.25rem;
    width: 1.25rem;
    color: #4b5563;
}

.card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.vision-card p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.card-image-container {
    margin-top: 2rem;
    text-align: center;
}

.card-image {
    height: 10rem;
    object-fit: contain;
}


/* Mission Section Styles */
.mission-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f8f9fa;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-image-box {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
}

.mission-image {
    width: 100%;
    display: block;
}

.mission-overlay {
        position: unset;
    bottom: 14px;
    left: 0;
    right: 0;
    background-color: #00c880;
    color: white;
    padding: 1.5rem;
    top: 100%;
    height: 170px;
        display: flex;
    align-items: center;
}

.mission-overlay p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.mission-text-box {
    text-align: center;
}

.mission-text-graphic {
    width: 290px;
    margin-bottom: 1.5rem;
}

.mission-text-box h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
}


/* Team Section Styles */
.team-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
    background-color: #f8f9fa; /* Same as mission for seamless transition */
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-intro-card, .team-member-card {
    background-color: #3c3f58; /* Dark blue from design */
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
}

.team-intro-card h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
}

.team-intro-card p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.team-member-card {
    background-color: #3c3f58; /* Light gray for member cards */
    color: #ffffff;
    text-align: center;
    position: relative;
}


.team-member-card img {
    max-width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.team-member-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.team-member-card p {
    margin: 0;
    color: #ffffff;
}



.linkedin-link {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.linkedin-link svg {
    width: 20px;
    height: 20px;
    fill: #0a66c2; /* Official LinkedIn blue */
}


/* Responsive Design - Media Queries */

/* For Tablets */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 80%;
    }
    .hero-section h1 {
        font-size: 3rem;
    }
    .vision-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-content {
        grid-template-columns: 1fr;
    }
}

/* For Mobile Phones */
@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .vision-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2rem;
    }
}


.hero-content span a{
    text-decoration: none;
    color: black;
}
