/*
=====================================================
MIR RABBY OFFICIAL
Version 2026 Edition

About Section
Human Rights • Social Service • Public Affairs
=====================================================
*/


/* =========================================
   ABOUT SECTION
========================================= */

.about {
    padding: 60px 0;
    background: var(--white-color);
}


/* =========================================
   ABOUT CONTAINER
========================================= */

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}


/* =========================================
   ABOUT IMAGE
========================================= */

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}


/* =========================================
   EXPERIENCE CARD
========================================= */

.experience-card {
    position: absolute;
    bottom: 25px;
    right: -20px;
    padding: 15px 20px;
    min-width: 180px;
    text-align: center;
    background: var(--glass-background);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.experience-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.experience-card span {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}


/* =========================================
   ABOUT CONTENT & QUOTES
========================================= */

.about-content h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.quote-box {
    background: var(--glass-background);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    border-radius: 0 15px 15px 0;
    line-height: 1.7;
}

.belief-box {
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 18px;
    margin-top: 25px;
}

.belief-box h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.belief-box p {
    font-weight: 600;
    margin-bottom: 8px;
}

.belief-box small {
    color: var(--text-light);
    display: block;
    line-height: 1.6;
}


/* =========================================
   ORGANIZATIONAL GRID
========================================= */

.org-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.org-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--glass-background);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.org-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.org-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: #ffffff;
    padding: 4px;
}

.org-info h3 {
    font-size: 1.05rem;
    margin: 4px 0;
    color: var(--text-color);
}

.org-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
}

.id-tag {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    margin: 3px 0;
}

.org-name {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}


/* =========================================
   CONTACT SECTION GRID & BUTTONS
========================================= */

.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.social-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
}

.btn-fb {
    background: #1877f2;
}

.btn-wa {
    background: #25d366;
}

.btn-social:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


/* =========================================
   ABOUT BUTTONS
========================================= */

.about-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}


/* =========================================
   RESPONSIVE DESIGN
========================================= */

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .org-grid {
        grid-template-columns: 1fr;
    }

    .contact-section-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 40px 0;
    }

    .experience-card {
        position: static;
        margin-top: 15px;
        width: 100%;
    }

    .org-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-buttons {
        flex-direction: column;
    }

    .about-buttons .btn {
        width: 100%;
        text-align: center;
    }
}
