/* Gallery Grid */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 6px;
    cursor: pointer;
    background: #f0f0f0;
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 111, 115, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__image {
    transform: scale(1.08);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 6px;
        max-width: 19rem;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery__item {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .gallery__item {
        border-radius: 4px;
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }

    .gallery__item {
        border-radius: 3px;
    }
}

/* About Hero */
.blog-details-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
}

.blog__details__hero__text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2fb9c4;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.blog__details__hero__text ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.blog__details__hero__text ul li {
    color: #2fb9c4;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.blog__details__hero__text ul li i {
    color: #2fb9c4;
}

/* About Facts */
.about__facts {
    space-y: 15px;
}

.fact__item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fact__item i {
    font-size: 24px;
    color: #2fb9c4;
    width: 40px;
    text-align: center;
}

.fact__content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #016f73;
    margin-bottom: 2px;
}

.fact__content span {
    font-size: 12px;
    color: #016f73;
}

/* About Values */
.about__values {
    space-y: 10px;
}

.value__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.value__item i {
    color: #2fb9c4;
    width: 20px;
    text-align: center;
}

.value__item span {
    font-size: 14px;
    color: #016f73;
    font-weight: 500;
}

/* About Contact */
.about__contact {
    space-y: 15px;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.contact__item i {
    color: #2fb9c4;
    margin-top: 2px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact__item span {
    font-size: 12px;
    color: #016f73;
    display: block;
    margin-bottom: 2px;
}

.contact__item p {
    font-size: 14px;
    color: #016f73;
    font-weight: 500;
    margin: 0;
}

/* Main Content */
.about__intro h3 {
    font-size: 28px;
    font-weight: 600;
    color: #016f73;
    margin-bottom: 20px;
    border-bottom: 2px solid #abe10c;
    padding-bottom: 10px;
}

.about__main__image {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Story Milestones */
.about__story {
    margin: 40px 0;
}

.about__story h3 {
    font-size: 24px;
    font-weight: 600;
    color: #016f73;
    margin-bottom: 20px;
}

.story__milestones {
    position: relative;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 3px solid #2fb9c4;
}

.milestone {
    position: relative;
    margin-bottom: 30px;
}

.milestone__year {
    position: absolute;
    left: -43px;
    top: 0;
    background: #2fb9c4;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.milestone__content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #abe10c;
}

.milestone__content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #016f73;
    margin-bottom: 8px;
}

.milestone__content p {
    color: #016f73;
    margin: 0;
    line-height: 1.6;
}

/* Mission Cards */
.about__mission {
    margin: 40px 0;
}

.mission__card {
    /* background: linear-gradient(135deg, #2fb9c4, #016f73); */
    background-color: #2fb9c4;
    color: white;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.mission__card h4 {
    color: white;
}

.mission__card p {
    color: white;
}

.mission__card i {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.mission__card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mission__card p {
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us */
.about__why {
    margin: 40px auto;
    max-width: 1000px;
    width: 100%;
}

.about__why h3 {
    font-size: 24px;
    font-weight: 600;
    color: #016f73;
    margin-bottom: 30px;
    text-align: center;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.why__item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.why__icon {
    width: 60px;
    height: 60px;
    background: #abe10c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.why__icon i {
    color: white;
    font-size: 24px;
}

.why__item h5 {
    font-size: 18px;
    font-weight: 600;
    color: #016f73;
    margin-bottom: 10px;
}

.why__item p {
    color: #016f73;
    line-height: 1.6;
    margin: 0;
}

/* Process Steps */
.about__process {
    margin: 40px auto;
    max-width: 1000px;
    width: 100%;
}

.about__process h3 {
    font-size: 24px;
    font-weight: 600;
    color: #016f73;
    margin-bottom: 30px;
    text-align: center;
}

.process__steps {
    space-y: 20px;
}

.process__step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step__number {
    width: 40px;
    height: 40px;
    background: #2fb9c4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step__content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #016f73;
    margin-bottom: 5px;
}

.step__content p {
    color: #016f73;
    margin: 0;
    line-height: 1.6;
}

/* Team Section */
.about__team {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.about__team h4 {
    font-size: 24px;
    font-weight: 600;
    color: #016f73;
    margin-bottom: 30px;
    text-align: center;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team__member {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.member__photo {
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #2fb9c4;
}

.member__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member__info h5 {
    font-size: 18px;
    font-weight: 600;
    color: #016f73;
    margin-bottom: 5px;
}

.member__info span {
    color: #2fb9c4;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.member__info p {
    color: #016f73;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .blog__details__hero__text h2 {
        font-size: 28px;
    }

    .blog__details__hero__text ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .why__grid {
        grid-template-columns: 1fr;
    }

    .team__grid {
        grid-template-columns: 1fr;
    }

    .cta__buttons {
        /* flex-direction: column; */
        align-items: center;
    }

    .story__milestones {
        margin-left: 20px;
        padding-left: 20px;
    }

    .milestone__year {
        left: -33px;
    }
}
