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

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


/* =========================================
   HUMAN RIGHTS SECTION
========================================= */

.human-rights{

    padding:100px 0;

    background:linear-gradient(
        180deg,
        #F8FAFC 0%,
        #EEF7F2 100%
    );

}


/* =========================================
   SECTION HEADER
========================================= */

.human-rights-header{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.human-rights-header p{

    margin-top:15px;

}


/* =========================================
   CARD GRID
========================================= */

.rights-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


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

.right-card{

    position:relative;

    padding:35px 28px;

    background:var(--glass-background);

    border:1px solid var(--glass-border);

    border-radius:24px;

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    box-shadow:var(--shadow-sm);

    transition:var(--transition-normal);

    overflow:hidden;

}

.right-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}


/* =========================================
   TOP BORDER EFFECT
========================================= */

.right-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color)
    );

}


/* =========================================
   ICON
========================================= */

.right-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:rgba(11,93,59,.10);

    color:var(--primary-color);

    font-size:2rem;

    margin-bottom:22px;

}


/* =========================================
   TITLE
========================================= */

.right-card h3{

    margin-bottom:15px;

    color:var(--primary-color);

}


/* =========================================
   DESCRIPTION
========================================= */

.right-card p{

    margin-bottom:22px;

}


/* =========================================
   BUTTON
========================================= */

.right-card a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--primary-color);

    font-weight:600;

    transition:var(--transition-normal);

}

.right-card a:hover{

    gap:14px;

}


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

@media (max-width:992px){

    .rights-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


@media (max-width:768px){

    .human-rights{

        padding:80px 0;

    }

    .rights-grid{

        grid-template-columns:1fr;

    }

}
