/* =======================================================
   UCANADA ABOUT PAGE CSS
   PART 1A
======================================================= */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =======================================================
   RESET
======================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


/* =======================================================
   COLORS
======================================================= */

:root{
    --primary:#C8102E;
    --dark:#222222;
    --text:#666666;
    --white:#ffffff;
    --light:#f8f9fb;
    --shadow:0 15px 40px rgba(0,0,0,.08);
}


/* =======================================================
   COMMON BUTTONS
======================================================= */

.btn-primary{
    display:inline-block;
    padding:16px 38px;
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.btn-primary:hover{
    background:#a20d25;
    transform:translateY(-4px);
}

.btn-secondary{
    display:inline-block;
    padding:16px 38px;
    border:2px solid #fff;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
    margin-left:15px;
}

.btn-secondary:hover{
    background:#fff;
    color:var(--primary);
}

.btn-outline{
    display:inline-block;
    padding:16px 38px;
    border:2px solid var(--primary);
    color:var(--primary);
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.btn-outline:hover{
    background:var(--primary);
    color:#fff;
}


/* =======================================================
   SECTION TITLE
======================================================= */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    display:inline-block;
    padding:10px 24px;
    background:#ffe7ec;
    color:var(--primary);
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-title h2{
    font-size:46px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:18px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    font-size:17px;
    color:var(--text);
}


/* =======================================================
   HEADER
======================================================= */

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    z-index:9999;
    transition:.3s;
}


/* =======================================================
   NAVBAR
======================================================= */

.navbar{
    width:100%;
    max-width:1300px;
    height:90px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 30px;
}

.logo img{
    height:60px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links li a{
    font-size:16px;
    font-weight:600;
    color:#222;
    position:relative;
    transition:.3s;
}

.nav-links li a:hover,
.nav-links li a.active{
    color:var(--primary);
}

.nav-links li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.35s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after{
    width:100%;
}

.donate-btn{
    padding:14px 28px;
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.donate-btn:hover{
    transform:translateY(-4px);
    background:#a20d25;
}

.menu-btn{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#fff;
}

#header.sticky .menu-btn{
    color:#222;
}


/* =======================================================
   ABOUT HERO
======================================================= */

.about-hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;
}

.about-hero img{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    animation:heroZoom 18s linear infinite;
    z-index:1;
}

@keyframes heroZoom{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.1);
    }

}

.about-overlay{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.75),
        rgba(0,0,0,.45)
    );

    z-index:2;
}

.about-hero-content{
    position:relative;
    z-index:3;

    max-width:900px;

    text-align:center;
    color:#fff;

    padding:20px;
}

.about-hero-content span{
    display:inline-block;

    padding:12px 28px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.2);

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;

    text-transform:uppercase;
}

.about-hero-content h1{
    font-size:68px;
    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

    text-shadow:0 10px 25px rgba(0,0,0,.35);
}

.about-hero-content p{
    max-width:760px;
    margin:auto;

    font-size:19px;
    line-height:2;

    color:#f3f3f3;

    margin-bottom:45px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}

.hero-buttons .btn-primary{
    min-width:190px;
    text-align:center;
}

.hero-buttons .btn-secondary{
    min-width:190px;
    text-align:center;
    margin-left:0;
}


/* =======================================================
   WHO WE ARE
======================================================= */

.about-company{
    padding:120px 0;
    background:#ffffff;
}

.about-company .container{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.about-image{
    position:relative;
    overflow:hidden;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s ease;
}

.about-image:hover img{
    transform:scale(1.08);
}

.about-image::after{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        to top,
        rgba(200,16,46,.15),
        transparent
    );

    opacity:0;

    transition:.5s;
}

.about-image:hover::after{
    opacity:1;
}


/* =======================================================
   ABOUT TEXT
======================================================= */

.about-text{
    display:flex;

    flex-direction:column;
    justify-content:center;

    padding-left:20px;

    animation:fadeUp 1s ease;
}

.about-text::before{
    content:"";

    display:block;

    width:80px;
    height:5px;

    background:#C8102E;

    border-radius:20px;

    margin-bottom:18px;
}

.about-text h2{
    font-size:48px;

    font-weight:800;

    line-height:1.25;

    color:#222;

    margin:20px 0 25px;
}

.about-text p{
    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:20px;

    text-align:justify;
}

.about-text p:first-of-type{
    font-size:18px;

    color:#444;

    font-weight:500;
}

.section-tag{
    display:inline-block;

    padding:10px 24px;

    background:#ffe8ec;

    color:#C8102E;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

    width:max-content;
}

.about-buttons{
    display:flex;

    align-items:center;

    gap:20px;

    margin-top:35px;

    flex-wrap:wrap;
}

.about-buttons .btn-primary{
    padding:16px 36px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    box-shadow:0 15px 35px rgba(200,16,46,.25);

    transition:.35s;
}

.about-buttons .btn-primary:hover{
    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(200,16,46,.35);
}

.about-buttons .btn-outline{
    padding:16px 36px;

    border:2px solid #C8102E;

    background:#fff;

    color:#C8102E;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:.35s;
}

.about-buttons .btn-outline:hover{
    background:#C8102E;

    color:#fff;

    transform:translateY(-6px);
}


/* =======================================================
   VISION & MISSION
======================================================= */

.vision-mission{
    padding:120px 0;

    background:#f7f8fc;

    position:relative;

    overflow:hidden;
}

.vision-mission::before{
    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:rgba(200,16,46,.05);

    border-radius:50%;

    top:-120px;
    left:-120px;
}

.vision-mission::after{
    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:rgba(200,16,46,.05);

    border-radius:50%;

    right:-80px;
    bottom:-80px;
}

.vision-mission .container{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    position:relative;

    z-index:2;
}

.vision-card,
.mission-card{
    background:#fff;

    padding:50px 40px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s ease;

    position:relative;

    overflow:hidden;
}

.vision-card::before,
.mission-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:#C8102E;
}

.vision-card:hover,
.mission-card:hover{
    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.icon{
    width:90px;
    height:90px;

    border-radius:50%;

    background:#ffe7ec;

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    transition:.4s;
}

.icon i{
    font-size:36px;

    color:#C8102E;

    transition:.4s;
}

.vision-card:hover .icon,
.mission-card:hover .icon{
    background:#C8102E;
}

.vision-card:hover .icon i,
.mission-card:hover .icon i{
    color:#fff;
}


/* =======================================================
   CORE VALUES
======================================================= */

.core-values{
    padding:120px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;
}

.core-values::before{
    content:"";

    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background:rgba(200,16,46,.04);

    top:-180px;
    right:-180px;
}

.core-values::after{
    content:"";

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(200,16,46,.04);

    bottom:-120px;
    left:-120px;
}

.values-grid{
    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;
}

.value-card{
    background:#fff;

    padding:45px 35px;

    border-radius:22px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.45s;

    position:relative;

    overflow:hidden;
}

.value-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#C8102E;

    transform:scaleX(0);

    transition:.45s;

    transform-origin:left;
}

.value-card:hover::before{
    transform:scaleX(1);
}

.value-card:hover{
    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    background:#C8102E;
}

.value-card i{
    width:90px;
    height:90px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#ffe7ec;

    color:#C8102E;

    font-size:38px;

    transition:.45s;
}

.value-card:hover i{
    background:#fff;

    color:#C8102E;

    transform:rotate(360deg);
}

.value-card h3{
    font-size:26px;

    font-weight:700;

    color:#222;

    margin-bottom:18px;

    transition:.4s;
}

.value-card p{
    font-size:15px;

    line-height:1.9;

    color:#666;

    transition:.4s;
}

.value-card:hover h3{
    color:#fff;
}

.value-card:hover p{
    color:#f4f4f4;
}


/* =======================================================
   OUR JOURNEY
======================================================= */

.journey-section{
    padding:120px 0;

    background:#f8f9fb;

    position:relative;

    overflow:hidden;
}

.journey-section::before{
    content:"";

    position:absolute;

    top:-150px;
    right:-120px;

    width:350px;
    height:350px;

    background:rgba(200,16,46,.05);

    border-radius:50%;
}

.journey-section::after{
    content:"";

    position:absolute;

    bottom:-120px;
    left:-120px;

    width:300px;
    height:300px;

    background:rgba(200,16,46,.05);

    border-radius:50%;
}

.timeline{
    position:relative;

    max-width:1100px;

    margin:70px auto 0;

    padding:20px 0;

    z-index:2;
}

.timeline::before{
    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:4px;

    height:100%;

    background:#C8102E;

    border-radius:10px;

    box-shadow:0 0 20px rgba(200,16,46,.25);
}

.timeline-item{
    position:relative;

    width:50%;

    padding:20px 50px;

    margin-bottom:60px;

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;
}

.timeline-item.show{
    opacity:1;

    transform:translateY(0);
}

.timeline-item:nth-child(odd){
    left:0;

    text-align:right;
}

.timeline-item:nth-child(even){
    left:50%;

    text-align:left;
}

.timeline-year{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:14px 28px;

    background:#C8102E;

    color:#fff;

    font-size:18px;

    font-weight:700;

    border-radius:50px;

    margin-bottom:22px;

    box-shadow:0 12px 30px rgba(200,16,46,.35);

    transition:.4s;
}

.timeline-item:hover .timeline-year{
    transform:translateY(-5px);
}

.timeline-content{
    background:#fff;

    padding:35px;

    border-radius:22px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.45s;

    position:relative;

    border-left:5px solid transparent;
}

.timeline-content:hover{
    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    border-left:5px solid #C8102E;

    background:linear-gradient(
        180deg,
        #ffffff,
        #fff8f9
    );
}

.timeline-content h3{
    font-size:26px;

    font-weight:700;

    color:#222;

    margin-bottom:15px;

    transition:.3s;
}

.timeline-content p{
    font-size:15px;

    line-height:1.9;

    color:#666;
}

.timeline-content:hover h3{
    color:#C8102E;
}

.timeline-item::before{
    content:"";

    position:absolute;

    top:42px;

    width:22px;
    height:22px;

    background:#fff;

    border:5px solid #C8102E;

    border-radius:50%;

    z-index:5;

    box-shadow:0 0 20px rgba(200,16,46,.35);
}

.timeline-item:nth-child(odd)::before{
    right:-11px;
}

.timeline-item:nth-child(even)::before{
    left:-11px;
}

.timeline-item::after{
    content:"";

    position:absolute;

    top:52px;

    width:40px;
    height:3px;

    background:#C8102E;
}

.timeline-item:nth-child(odd)::after{
    right:11px;
}

.timeline-item:nth-child(even)::after{
    left:11px;
}


/* =======================================================
   OUR IMPACT
======================================================= */

.impact-section{
    padding:120px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;
}

.impact-section::before{
    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(200,16,46,.05);

    top:-150px;
    left:-150px;
}

.impact-section::after{
    content:"";

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:rgba(200,16,46,.05);

    bottom:-100px;
    right:-100px;
}

.impact-grid{
    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;
}

.impact-card{
    background:#fff;

    padding:45px 30px;

    text-align:center;

    border-radius:22px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.45s;

    position:relative;

    overflow:hidden;
}

.impact-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#C8102E;

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;
}

.impact-card:hover::before{
    transform:scaleX(1);
}

.impact-card:hover{
    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    background:#C8102E;
}

.impact-card h2{
    font-size:58px;

    font-weight:800;

    color:#C8102E;

    line-height:1;

    margin-bottom:18px;

    transition:.4s;
}

.impact-card h4{
    font-size:20px;

    font-weight:700;

    color:#222;

    margin-bottom:12px;

    transition:.4s;
}

.impact-card p{
    font-size:15px;

    line-height:1.8;

    color:#666;

    transition:.4s;
}

.impact-icon{
    width:90px;
    height:90px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#ffe8ec;

    border-radius:50%;

    transition:.45s;
}

.impact-icon i{
    font-size:38px;

    color:#C8102E;

    transition:.45s;
}

.impact-card:hover .impact-icon{
    background:#fff;

    transform:rotate(360deg);
}

.impact-card:hover .impact-icon i{
    color:#C8102E;
}

.impact-card:hover h2,
.impact-card:hover h4{
    color:#fff;
}

.impact-card:hover p{
    color:#f4f4f4;
}

.counter{
    display:inline-block;

    min-width:100px;
}


/* =======================================================
   FOUNDER MESSAGE
======================================================= */

.founder-message{
    padding:120px 0;

    background:#f8f9fb;

    position:relative;

    overflow:hidden;
}

.founder-message::before{
    content:"";

    position:absolute;

    top:-140px;
    left:-140px;

    width:320px;
    height:320px;

    border-radius:50%;

    background:rgba(200,16,46,.05);
}

.founder-message::after{
    content:"";

    position:absolute;

    bottom:-120px;
    right:-120px;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(200,16,46,.05);
}

.founder-message .container{
    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.founder-image{
    position:relative;

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.founder-image img{
    width:100%;

    max-width:520px;

    height:550px;

    margin:0 auto;

    object-fit:cover;

    transition:.6s;
}

.founder-image:hover img{
    transform:scale(1.08);
}

.founder-image::after{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        to top,
        rgba(200,16,46,.18),
        transparent
    );

    opacity:0;

    transition:.4s;
}

.founder-image:hover::after{
    opacity:1;
}


/* =======================================================
   OUR TEAM SECTION
======================================================= */

.team-section{
    padding:120px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;
}

.team-section::before{
    content:"";

    position:absolute;

    top:-150px;
    right:-150px;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(200,16,46,.05);
}

.team-section::after{
    content:"";

    position:absolute;

    bottom:-120px;
    left:-120px;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(200,16,46,.05);
}


/* =======================================================
   TEAM GRID
======================================================= */

.team-grid{
    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:60px;
}


/* =======================================================
   TEAM CARD
======================================================= */

.team-card{
    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

    cursor:pointer;

    padding-bottom:5px;
}

.team-card:hover{
    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);
}


/* =======================================================
   TEAM IMAGE
   SMALL IMAGE + SEPARATE FRAME/CARD
======================================================= */

.team-card img{
    width:140px;
    height:175px;

    object-fit:cover;
    object-position:center;

    display:block;

    margin:25px auto 0;

    /* Image ke gird separate card/frame */
    padding:8px;

    background:#ffffff;

    border:1px solid #eeeeee;

    border-radius:12px;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

    transition:.5s ease;
}

.team-card:hover img{
    transform:scale(1.04);

    filter:brightness(.85);

    box-shadow:0 15px 35px rgba(200,16,46,.20);
}


/* =======================================================
   IMAGE OVERLAY
======================================================= */

.team-card::before{
    content:"";

    position:absolute;

    top:25px;
    left:50%;

    transform:translateX(-50%);

    width:140px;
    height:175px;

    border-radius:12px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.35),
        transparent
    );

    opacity:0;

    transition:.4s;

    z-index:1;

    pointer-events:none;
}

.team-card:hover::before{
    opacity:1;
}


/* =======================================================
   TEAM INFO
======================================================= */

.team-info{
    padding:25px 20px;

    text-align:center;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    min-height:105px;

    background:#fff;

    position:relative;

    z-index:5;

    transition:.35s;
}

.team-info h3{
    font-size:21px;

    font-weight:700;

    color:#222;

    margin-bottom:7px;

    line-height:1.4;

    width:100%;

    transition:.35s;
}

.team-info span{
    display:block;

    font-size:15px;

    color:#C8102E;

    font-weight:600;

    width:100%;

    line-height:1.5;

    transition:.35s;
}

.team-card:hover .team-info{
    background:#C8102E;
}

.team-card:hover .team-info h3,
.team-card:hover .team-info span{
    color:#fff;
}


/* =======================================================
   TEAM SOCIAL ICONS
======================================================= */

.team-social{
    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    display:flex;

    gap:15px;

    opacity:0;
    visibility:hidden;

    transition:.4s;

    z-index:3;
}

.team-card:hover .team-social{
    opacity:1;

    visibility:visible;
}

.team-social a{
    width:48px;
    height:48px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;
    align-items:center;

    font-size:18px;

    color:#C8102E;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.team-social a:hover{
    background:#C8102E;

    color:#fff;

    transform:translateY(-6px);
}


/* =======================================================
   TEAM BUTTON
======================================================= */

.team-section .btn-primary{
    padding:16px 40px;

    font-size:16px;

    border-radius:50px;

    box-shadow:0 15px 35px rgba(200,16,46,.25);

    transition:.35s;
}

.team-section .btn-primary:hover{
    transform:translateY(-6px);

    box-shadow:0 22px 45px rgba(200,16,46,.35);
}


/* =======================================================
   WHY CHOOSE US
======================================================= */

.why-section{
    padding:120px 0;

    background:#f8f9fb;

    position:relative;

    overflow:hidden;
}

.why-section::before{
    content:"";

    position:absolute;

    top:-150px;
    left:-150px;

    width:320px;
    height:320px;

    background:rgba(200,16,46,.05);

    border-radius:50%;
}

.why-section::after{
    content:"";

    position:absolute;

    bottom:-120px;
    right:-120px;

    width:260px;
    height:260px;

    background:rgba(200,16,46,.05);

    border-radius:50%;
}

.why-section .container{
    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;
}


/* =======================================================
   WHY IMAGE
======================================================= */

.why-image{
    position:relative;

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.why-image img{
    width:100%;

    height:650px;

    object-fit:cover;

    transition:.6s;

    display:block;
}

.why-image:hover img{
    transform:scale(1.08);
}

.why-image::after{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        to top,
        rgba(200,16,46,.15),
        transparent
    );

    opacity:0;

    transition:.4s;
}

.why-image:hover::after{
    opacity:1;
}


/* =======================================================
   WHY CONTENT
======================================================= */

.why-content{
    display:flex;

    flex-direction:column;

    justify-content:center;
}

.why-content h2{
    font-size:48px;

    font-weight:800;

    color:#222;

    line-height:1.25;

    margin:20px 0;
}

.why-content p{
    font-size:17px;

    line-height:2;

    color:#666;

    margin-bottom:35px;
}


/* =======================================================
   WHY LIST
======================================================= */

.why-list{
    display:grid;

    grid-template-columns:1fr;

    gap:22px;

    margin-top:20px;
}

.why-item{
    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:22px;

    background:#fff;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

    overflow:hidden;
}

.why-item::before{
    content:"";

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:#C8102E;

    transform:scaleY(0);

    transform-origin:top;

    transition:.4s;
}

.why-item:hover::before{
    transform:scaleY(1);
}

.why-item:hover{
    transform:translateX(10px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.why-item i{
    width:65px;
    height:65px;

    min-width:65px;

    display:flex;

    justify-content:center;
    align-items:center;

    background:#ffe8ec;

    border-radius:50%;

    font-size:26px;

    color:#C8102E;

    transition:.4s;
}

.why-item:hover i{
    background:#C8102E;

    color:#fff;

    transform:rotate(360deg);
}

.why-item h4{
    font-size:22px;

    font-weight:700;

    color:#222;

    margin-bottom:8px;

    transition:.3s;
}

.why-item p{
    font-size:15px;

    line-height:1.8;

    color:#666;

    margin:0;
}

.why-item:hover h4{
    color:#C8102E;
}


/* =======================================================
   CALL TO ACTION
======================================================= */

.about-cta{
    position:relative;

    padding:150px 0;

    background:url("why.png") center center/cover no-repeat;

    overflow:hidden;

    text-align:center;
}

.cta-overlay{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        135deg,
        rgba(200,16,46,.88),
        rgba(145,10,30,.82)
    );

    z-index:1;
}

.about-cta::before{
    content:"";

    position:absolute;

    top:-120px;
    left:-120px;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    z-index:2;
}

.about-cta::after{
    content:"";

    position:absolute;

    bottom:-100px;
    right:-100px;

    width:240px;
    height:240px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    z-index:2;
}

.cta-content{
    position:relative;

    z-index:3;

    max-width:900px;

    margin:auto;

    padding:0 20px;

    color:#fff;
}

.cta-content span{
    display:inline-block;

    padding:12px 28px;

    border-radius:40px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.25);

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:25px;
}

.cta-content h2{
    font-size:58px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

    text-shadow:0 8px 20px rgba(0,0,0,.25);
}

.cta-content p{
    font-size:18px;

    line-height:2;

    color:#f4f4f4;

    max-width:760px;

    margin:auto auto 45px;
}

.about-cta .hero-buttons{
    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;
}

.about-cta .btn-primary{
    display:inline-block;

    padding:18px 42px;

    background:#fff;

    color:#C8102E;

    font-size:17px;

    font-weight:700;

    border-radius:50px;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.18);
}

.about-cta .btn-primary:hover{
    background:#111;

    color:#fff;

    transform:translateY(-6px);

    box-shadow:0 20px 50px rgba(0,0,0,.28);
}

.about-cta .btn-secondary{
    display:inline-block;

    padding:18px 42px;

    background:transparent;

    border:2px solid #fff;

    color:#fff;

    font-size:17px;

    font-weight:700;

    border-radius:50px;

    transition:.35s;

    margin-left:0;
}

.about-cta .btn-secondary:hover{
    background:#fff;

    color:#C8102E;

    transform:translateY(-6px);
}


/* =======================================================
   CONTACT SECTION
======================================================= */

.about-contact{
    padding:120px 0;

    background:#f8f9fb;

    position:relative;

    overflow:hidden;
}

.about-contact::before{
    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(200,16,46,.05);
}

.about-contact::after{
    content:"";

    position:absolute;

    bottom:-100px;
    left:-100px;

    width:240px;
    height:240px;

    border-radius:50%;

    background:rgba(200,16,46,.05);
}

.about-contact .container{
    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;
}

.contact-card{
    background:#fff;

    padding:45px 30px;

    border-radius:22px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

    overflow:hidden;
}

.contact-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#C8102E;

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;
}

.contact-card:hover::before{
    transform:scaleX(1);
}

.contact-card:hover{
    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    background:#C8102E;
}

.contact-card i{
    width:90px;
    height:90px;

    margin:0 auto 25px;

    display:flex;

    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#ffe8ec;

    color:#C8102E;

    font-size:36px;

    transition:.45s;
}

.contact-card h3{
    font-size:26px;

    font-weight:700;

    color:#222;

    margin-bottom:15px;

    transition:.35s;
}

.contact-card p{
    font-size:16px;

    line-height:1.9;

    color:#666;

    transition:.35s;
}

.contact-card:hover i{
    background:#fff;

    color:#C8102E;

    transform:rotate(360deg);
}

.contact-card:hover h3{
    color:#fff;
}

.contact-card:hover p{
    color:#f5f5f5;
}


/* =======================================================
   FOOTER
======================================================= */

footer{
    background:#111;

    color:#fff;

    padding:90px 0 0;

    position:relative;

    overflow:hidden;
}

footer::before{
    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(200,16,46,.08);
}

footer::after{
    content:"";

    position:absolute;

    bottom:-150px;
    left:-150px;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(200,16,46,.08);
}

.footer-container{
    position:relative;

    z-index:2;

    width:90%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:50px;

    padding-bottom:60px;
}

.footer-logo{
    width:180px;

    margin-bottom:25px;
}

.footer-col p{
    font-size:15px;

    line-height:1.9;

    color:#cccccc;

    margin-bottom:25px;
}

.footer-col h3{
    font-size:24px;

    font-weight:700;

    margin-bottom:25px;

    position:relative;

    padding-bottom:12px;
}

.footer-col h3::after{
    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:60px;
    height:3px;

    background:#C8102E;

    border-radius:10px;
}

.footer-col ul{
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:15px;
}

.footer-col ul li a{
    color:#cccccc;

    font-size:15px;

    transition:.35s;

    display:inline-block;

    position:relative;
}

.footer-col ul li a::before{
    content:"›";

    color:#C8102E;

    margin-right:10px;

    opacity:0;

    transition:.3s;
}

.footer-col ul li a:hover{
    color:#fff;

    transform:translateX(8px);
}

.footer-col ul li a:hover::before{
    opacity:1;
}


/* =======================================================
   FOOTER SOCIAL
======================================================= */

.social-links{
    display:flex;

    gap:15px;

    margin-top:20px;
}

.social-links a{
    width:48px;
    height:48px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:18px;

    transition:.35s;
}

.social-links a:hover{
    background:#C8102E;

    transform:translateY(-6px) rotate(360deg);

    color:#fff;
}


/* =======================================================
   NEWSLETTER
======================================================= */

.footer-col form{
    display:flex;

    flex-direction:column;

    gap:15px;

    margin-top:20px;
}

.footer-col input{
    width:100%;

    padding:16px 20px;

    border:none;

    outline:none;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:15px;

    transition:.35s;
}

.footer-col input::placeholder{
    color:#bbbbbb;
}

.footer-col input:focus{
    background:#fff;

    color:#222;

    box-shadow:0 0 0 4px rgba(200,16,46,.25);
}

.footer-col button{
    padding:16px;

    border:none;

    outline:none;

    cursor:pointer;

    border-radius:50px;

    background:#C8102E;

    color:#fff;

    font-size:16px;

    font-weight:600;

    transition:.35s;
}

.footer-col button:hover{
    background:#ffffff;

    color:#C8102E;

    transform:translateY(-4px);
}


/* =======================================================
   COPYRIGHT
======================================================= */

.copyright{
    position:relative;

    z-index:2;

    padding:25px 15px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;
}

.copyright p{
    font-size:15px;

    color:#bdbdbd;

    line-height:1.8;
}

.copyright strong{
    color:#C8102E;

    font-weight:700;
}

.web{
    color:rgb(255,20,39);
}


/* =======================================================
   RESPONSIVE — 1100px
======================================================= */

@media(max-width:1100px){

    .footer-container{
        grid-template-columns:repeat(2,1fr);

        gap:40px;
    }

}


/* =======================================================
   RESPONSIVE — 992px
======================================================= */

@media(max-width:992px){

    .navbar{
        height:80px;

        padding:0 20px;
    }

    .nav-links{
        gap:18px;
    }

    .nav-links li a{
        font-size:15px;
    }

    .donate-btn{
        padding:12px 22px;

        font-size:14px;
    }

    .about-hero-content h1{
        font-size:46px;
    }

    .about-hero-content p{
        font-size:16px;

        line-height:1.8;
    }

    .section-title h2{
        font-size:36px;
    }

    .about-company .container,
    .founder-message .container,
    .why-section .container{
        grid-template-columns:1fr;
    }

    .vision-mission .container{
        grid-template-columns:1fr;
    }

    .values-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .team-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }

    .about-text{
        padding-left:0;
    }

    .about-text h2{
        font-size:38px;
    }

    .about-image img{
        height:500px;
    }

    .founder-image img{
        max-width:480px;

        height:520px;
    }

    .why-image img{
        height:500px;
    }

    .timeline{
        padding-left:35px;
    }

    .timeline::before{
        left:15px;

        transform:none;
    }

    .timeline-item{
        width:100%;

        left:0 !important;

        padding:0 0 40px 55px;

        text-align:left !important;
    }

    .timeline-item::before{
        left:5px !important;

        right:auto;
    }

    .timeline-item::after{
        left:20px !important;

        right:auto;

        width:28px;
    }

    .timeline-content{
        padding:28px;
    }

    .cta-content h2{
        font-size:46px;
    }

    .about-contact .container{
        grid-template-columns:repeat(2,1fr);

        gap:25px;
    }

}


/* =======================================================
   TABLET & MOBILE — 768px
======================================================= */

@media(max-width:768px){

    br{
        display:none;
    }

    body{
        overflow-x:hidden;
    }

    .navbar{
        flex-wrap:wrap;

        height:auto;

        padding:15px;

        justify-content:center;
    }

    .logo{
        width:100%;

        text-align:center;

        margin-bottom:15px;
    }

    .logo img{
        height:55px;

        margin:auto;
    }

    .nav-links{
        width:100%;

        justify-content:center;

        flex-wrap:wrap;

        gap:12px;

        margin-bottom:15px;
    }

    .nav-links li a{
        font-size:14px;
    }

    .donate-btn{
        width:220px;

        text-align:center;
    }

    .about-hero{
        height:85vh;
    }

    .about-hero-content span{
        font-size:12px;

        padding:8px 18px;
    }

    .about-hero-content h1{
        font-size:34px;
    }

    .about-hero-content p{
        font-size:15px;

        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;

        gap:15px;
    }

    .hero-buttons a{
        width:100%;

        max-width:260px;

        text-align:center;
    }

    .section-title{
        margin-bottom:45px;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:15px;
    }

    .about-text h2,
    .why-content h2{
        font-size:30px;
    }

    .about-text p,
    .why-content p{
        font-size:15px;
    }

    .about-image img,
    .founder-image img,
    .why-image img{
        height:auto;
    }

    .values-grid,
    .impact-grid,
    .team-grid{
        grid-template-columns:1fr;
    }

    .vision-card,
    .mission-card,
    .value-card,
    .impact-card,
    .contact-card{
        padding:30px 20px;
    }

    .timeline{
        margin-top:40px;
    }

    .timeline::before{
        left:20px;
    }

    .timeline-item{
        width:100%;

        left:0 !important;

        padding-left:60px;

        padding-right:0;

        text-align:left;
    }

    .timeline-item::before{
        left:10px !important;

        right:auto;
    }

    .timeline-item::after{
        left:20px !important;

        width:25px;
    }

    .timeline-content{
        padding:22px;
    }

    .timeline-content h3{
        font-size:22px;
    }

    .timeline-content p{
        font-size:14px;
    }

    .about-contact .container{
        grid-template-columns:1fr;
    }

    footer{
        padding:70px 0 0;
    }

    .footer-container{
        grid-template-columns:1fr;

        text-align:center;
    }

    .footer-logo{
        margin:0 auto 20px;
    }

    .footer-col h3::after{
        left:50%;

        transform:translateX(-50%);
    }

    .social-links{
        justify-content:center;
    }

    .footer-col ul li a:hover{
        transform:none;
    }

    .footer-col form{
        max-width:380px;

        margin:20px auto 0;
    }

    .copyright{
        padding:20px 15px;
    }

    .copyright p{
        font-size:14px;
    }

    .about-company{
        padding:80px 0;
    }

    .about-buttons{
        flex-direction:column;

        align-items:flex-start;

        width:100%;
    }

    .about-buttons .btn-primary,
    .about-buttons .btn-outline{
        width:100%;

        text-align:center;
    }

    .about-image img{
        height:380px;
    }

    .why-section{
        padding:80px 0;
    }

    .why-content h2{
        font-size:34px;
    }

    .why-content p{
        font-size:15px;
    }

    .why-image img{
        height:360px;
    }

    .why-item{
        padding:18px;
    }

    .why-item h4{
        font-size:19px;
    }

    .why-item i{
        width:55px;

        height:55px;

        min-width:55px;

        font-size:22px;
    }

    .about-cta{
        padding:90px 0;
    }

    .cta-content h2{
        font-size:34px;

        line-height:1.35;
    }

    .cta-content p{
        font-size:15px;

        line-height:1.8;

        margin-bottom:35px;
    }

    .about-cta .hero-buttons{
        flex-direction:column;

        gap:18px;
    }

    .about-cta .btn-primary,
    .about-cta .btn-secondary{
        width:100%;

        max-width:320px;

        text-align:center;
    }

    .contact-card{
        padding:35px 25px;
    }

    .contact-card i{
        width:75px;

        height:75px;

        font-size:30px;
    }

    .contact-card h3{
        font-size:22px;
    }

    .contact-card p{
        font-size:14px;
    }


    /* ================================================
       TEAM IMAGE — MOBILE
    ================================================= */

    .team-card img{
        width:140px;

        height:175px;

        margin:20px auto 0;

        padding:8px;

        border-radius:12px;
    }

    .team-card::before{
        top:20px;

        width:140px;

        height:175px;

        border-radius:12px;
    }

    .team-info{
        padding:22px 15px;

        min-height:auto;
    }

    .team-info h3{
        font-size:20px;
    }

    .team-info span{
        font-size:14px;
    }

}


/* =======================================================
   SMALL MOBILE — 480px
======================================================= */

@media(max-width:480px){

    .about-hero-content h1{
        font-size:28px;

        line-height:1.3;
    }

    .about-hero-content p{
        font-size:14px;
    }

    .section-title h2{
        font-size:26px;
    }

    .about-text h2,
    .why-content h2{
        font-size:26px;
    }

    .vision-card h2,
    .mission-card h2{
        font-size:24px;
    }

    .impact-card h2{
        font-size:40px;
    }


    /* ================================================
       SMALL TEAM IMAGE
    ================================================= */

    .team-card img{
        width:130px;

        height:165px;
    }

    .team-card::before{
        width:130px;

        height:165px;
    }

    .contact-card h3{
        font-size:20px;
    }

    .contact-card p{
        font-size:14px;
    }

    .copyright p{
        font-size:13px;
    }

}


/* =======================================================
   FOUNDER IMAGE RESPONSIVE
======================================================= */

@media(max-width:992px){

    .founder-image img{
        max-width:480px;

        height:520px;
    }

}

@media(max-width:768px){

    .founder-image img{
        max-width:100%;

        height:430px;
    }

}