/*====================================================
 ABOUT FOUNDATION
====================================================*/

.about-foundation{
    padding:100px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.about-foundation::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:400px;
    height:400px;
    background:rgba(0,87,184,.04);
    border-radius:50%;
}

.about-foundation::after{
    content:"";
    position:absolute;
    bottom:-200px;
    left:-200px;
    width:450px;
    height:450px;
    background:rgba(0,123,255,.03);
    border-radius:50%;
}

/*=====================================
 Layout
======================================*/

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
    position:relative;
    z-index:2;
}

/*=====================================
 Image
======================================*/

.about-image{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.about-image img{
    width:100%;
    height:560px;
    object-fit:cover;
    transition:.5s ease;
}

.about-image:hover img{
    transform:scale(1.08);
}

.about-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,40,90,.30),
        rgba(0,0,0,0)
    );
}

/*=====================================
 Content
======================================*/

.about-content{
    position:relative;
}

.section-label{
    display:inline-block;
    background:#EAF4FF;
    color:var(--primary);
    padding:8px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.about-content h2{
    font-size:42px;
    line-height:1.3;
    color:#102A43;
    margin-bottom:25px;
}

.about-content p{
    color:#667085;
    font-size:17px;
    line-height:1.9;
    margin-bottom:22px;
}

/*=====================================
 Features
======================================*/

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0 40px;
}

.about-features div{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 18px;
    background:#F8FAFC;
    border:1px solid #E8EEF5;
    border-radius:12px;
    font-weight:600;
    color:#16324F;
    transition:.35s ease;
}

.about-features div:hover{
    background:#0057B8;
    color:#ffffff;
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,87,184,.20);
}

.about-features i{
    color:#0A84FF;
    font-size:18px;
    transition:.35s ease;
}

.about-features div:hover i{
    color:#ffffff;
}

/*=====================================
 Button
======================================*/

.about-content .btn-primary{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
}

.about-content .btn-primary::after{
    content:"→";
    transition:.3s ease;
}

.about-content .btn-primary:hover::after{
    transform:translateX(6px);
}

/*=====================================
 Responsive
======================================*/

@media(max-width:1100px){

    .about-grid{
        gap:50px;
    }

    .about-content h2{
        font-size:36px;
    }

}

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-image{
        order:1;
    }

    .about-content{
        order:2;
    }

}

@media(max-width:768px){

    .about-foundation{
        padding:70px 0;
    }

    .about-image img{
        height:350px;
    }

    .about-content h2{
        font-size:30px;
    }

    .about-content p{
        font-size:16px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .about-features div{
        font-size:15px;
        padding:12px 15px;
    }

}
/*====================================================
 FOUNDATION HIGHLIGHTS
====================================================*/

.foundation-highlights{
    padding:100px 0;
    background:#F8FAFC;
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.foundation-highlights::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    top:-220px;
    right:-220px;
    background:rgba(0,87,184,.05);
    border-radius:50%;
}

.foundation-highlights::after{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    bottom:-180px;
    left:-180px;
    background:rgba(0,123,255,.04);
    border-radius:50%;
}

/*=====================================
 Grid
======================================*/

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

/*=====================================
 Card
======================================*/

.highlight-card{
    background:#ffffff;
    border-radius:20px;
    padding:45px 30px;
    text-align:center;
    border:1px solid #E7EDF5;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    position:relative;
    overflow:hidden;
    transition:all .4s ease;
}

/* Top Border */

.highlight-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:5px;
    background:linear-gradient(90deg,#0057B8,#008CFF);
    transition:.4s ease;
}

.highlight-card:hover::before{
    width:100%;
}

/* Decorative Circle */

.highlight-card::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(0,87,184,.04);
    top:-90px;
    right:-90px;
    transition:.4s;
}

.highlight-card:hover::after{
    transform:scale(1.5);
}

/* Hover */

.highlight-card:hover{
    transform:translateY(-12px);
    box-shadow:0 22px 45px rgba(0,0,0,.12);
}

/*=====================================
 Icon
======================================*/

.highlight-card i{
    width:90px;
    height:90px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#0057B8,#0A84FF);
    color:#ffffff;
    font-size:40px;
    transition:.4s;
}

.highlight-card:hover i{
    transform:rotateY(180deg) scale(1.08);
    box-shadow:0 15px 35px rgba(0,87,184,.30);
}

/*=====================================
 Heading
======================================*/

.highlight-card h3{
    font-size:24px;
    margin-bottom:18px;
    color:#102A43;
    transition:.3s;
}

.highlight-card:hover h3{
    color:var(--primary);
}

/*=====================================
 Paragraph
======================================*/

.highlight-card p{
    color:#667085;
    font-size:16px;
    line-height:1.8;
}

/*=====================================
 Responsive
======================================*/

@media(max-width:1200px){

    .highlight-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .foundation-highlights{
        padding:70px 0;
    }

    .highlight-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .highlight-card{
        padding:35px 25px;
    }

    .highlight-card i{
        width:80px;
        height:80px;
        font-size:34px;
    }

    .highlight-card h3{
        font-size:22px;
    }

}
/* =====================================
   Page Hero Section
===================================== */

.page-hero {

    position:relative;

    min-height:520px;

    display:flex;

    align-items:center;

    background-image:url("../images/about/about-banner.jpg");

    background-size:cover;

    background-position:center;

    overflow:hidden;

}


/* Overlay */

.page-hero .overlay {

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        90deg,

        rgba(0,30,70,0.85),

        rgba(0,70,140,0.65)

    );

}



/* Container */

.page-hero .container {

    width:90%;

    max-width:1200px;

    margin:auto;

}


.hero-inner {

    position:relative;

    z-index:2;

    max-width:750px;

    color:#ffffff;

    padding:80px 0;

}



/* Small Label */

.hero-inner span {

    display:inline-block;

    color:#dbeafe;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

    position:relative;

    padding-left:45px;

}



/* Label Line */

.hero-inner span::before {

    content:"";

    position:absolute;

    left:0;

    top:50%;

    width:35px;

    height:2px;

    background:#ffffff;

}



/* Heading */

.hero-inner h1 {

    font-size:52px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:25px;

    color:#ffffff;

}



/* Paragraph */

.hero-inner p {

    max-width:680px;

    font-size:18px;

    line-height:1.8;

    color:#e0f2fe;

    margin:0;

}



/* =====================================
   Animation
===================================== */


.hero-inner span {

    animation:fadeDown .8s ease;

}


.hero-inner h1 {

    animation:fadeUp 1s ease;

}


.hero-inner p {

    animation:fadeUp 1.2s ease;

}



@keyframes fadeUp {

    from {

        opacity:0;

        transform:translateY(30px);

    }

    to {

        opacity:1;

        transform:translateY(0);

    }

}


@keyframes fadeDown {

    from {

        opacity:0;

        transform:translateY(-20px);

    }

    to {

        opacity:1;

        transform:translateY(0);

    }

}



/* =====================================
   Responsive Design
===================================== */


@media(max-width:992px){


    .page-hero {

        min-height:450px;

    }


    .hero-inner h1 {

        font-size:42px;

    }


    .hero-inner p {

        font-size:16px;

    }

}



@media(max-width:576px){


    .page-hero {

        min-height:420px;

    }


    .hero-inner {

        padding:60px 0;

    }


    .hero-inner h1 {

        font-size:32px;

    }


    .hero-inner p {

        font-size:15px;

    }


    .hero-inner span {

        font-size:12px;

    }

}
/* =====================================
   Breadcrumb Section
===================================== */

.breadcrumb-area {

    padding:20px 0;

    background:#f8fafc;

    border-bottom:1px solid #e2e8f0;

}


.breadcrumb-area .container {

    width:90%;

    max-width:1200px;

    margin:auto;

    display:flex;

    align-items:center;

    gap:12px;

}



/* Home Link */

.breadcrumb-area a {

    color:#0d6efd;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:.3s ease;

}



.breadcrumb-area a:hover {

    color:#084298;

}



/* Icon */

.breadcrumb-area i {

    color:#94a3b8;

    font-size:14px;

}



/* Current Page */

.breadcrumb-area span {

    color:#475569;

    font-size:15px;

    font-weight:500;

}



/* =====================================
   Responsive Design
===================================== */


@media(max-width:576px){


    .breadcrumb-area {

        padding:15px 0;

    }


    .breadcrumb-area .container {

        gap:8px;

    }


    .breadcrumb-area a,
    .breadcrumb-area span {

        font-size:14px;

    }


}

/* =====================================
   NGO Documents Section
===================================== */

.ngo-documents{

    padding:90px 0;

    background:#ffffff;

}

.documents-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.document-card{

    background:#fff;

    padding:35px 25px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border:1px solid #e2e8f0;

    transition:.35s;

}

.document-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.document-icon{

    width:75px;

    height:75px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#eaf3ff;

    color:#0d6efd;

    font-size:32px;

    transition:.3s;

}

.document-card:hover .document-icon{

    background:#0d6efd;

    color:#fff;

}

.document-card h3{

    font-size:22px;

    color:#1e293b;

    margin-bottom:15px;

}

.document-card p{

    color:#64748b;

    font-size:15px;

    line-height:1.7;

    margin-bottom:20px;

}

.document-card a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#0d6efd;

    font-weight:600;

    text-decoration:none;

}

.document-card a:hover{

    text-decoration:underline;

}

/* Responsive */

@media(max-width:992px){

.documents-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.ngo-documents{

padding:60px 0;

}

.documents-grid{

grid-template-columns:1fr;

}

}