/* Hero Banner Section */
.about-hero {
    margin-top: -20px;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 78, 58, 0.85) 0%, rgba(45, 110, 79, 0.85) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.about-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.about-hero-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    font-size: 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.about-hero-breadcrumb li {
    display: flex;
    align-items: center;
}

.about-hero-breadcrumb li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-hero-breadcrumb li a:hover {
    color: var(--accent-green);
}

.about-hero-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Section Padding */
.section-padding {
    padding: 50px 0;
}

/* About Content Styles */
.about-content-wrapper {
    margin-bottom: 80px;
}

.about-content-wrapper:last-child {
    margin-bottom: 0;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.about-image-container:hover {
    transform: translateY(-10px);
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-green), #22c55e);
    color: var(--dark-text);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.about-text-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.about-text-content p,
.about-text-content div {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
}

.about-text-content ul,
.about-text-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.about-text-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(236, 253, 245, 0.5) 100%);
}

.mission-vision-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-green), #22c55e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-green);
}

.mission-vision-card:hover::before {
    transform: scaleX(1);
}

.mission-vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green), #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
}

.mission-vision-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission-vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
    text-align: center;
}

/* No Data Alert */
.no-data-alert {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(34, 197, 94, 0.1));
    border: 2px solid var(--accent-green);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
}

.no-data-alert i {
    font-size: 4rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.no-data-alert p {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin: 0;
}

/* Team Card Styles */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 78, 58, 0.95) 0%, rgba(45, 110, 79, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.social-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-green);
    color: white;
    transform: translateY(-5px);
}

.team-info {
    padding: 1.5rem 1rem;
    text-align: center;
}

.team-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.team-position {
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-content-wrapper {
        margin-bottom: 50px;
    }

    .about-text-content h3 {
        font-size: 1.75rem;
    }

    .mission-vision-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .team-card {
        margin-bottom: 2rem;
    }

    .team-name {
        font-size: 1.2rem;
    }

    .team-position {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
