/* ==========================
   MULTI COLOR NGO HERO SLIDER
========================== */

:root{
    --primary: #6C3916;
    --secondary: #F4B066;
    --accent: #7A1B16;
    --warning: #FF9800;
    --purple: #8c4c1f;
    --dark: #0f172a;
    --light: #ffffff;

    --gradient-1: linear-gradient(135deg,#6C3916,#F4B066);
    --gradient-2: linear-gradient(135deg,#F4B066,#FF8E53);
    --gradient-3: linear-gradient(135deg,#7A1B16,#6C3916);

    --shadow: 0 15px 40px rgba(0,0,0,0.15);
    --radius: 25px;
}

.hero-slider{
    position:relative;
    overflow:hidden;
    padding:80px 5%;
    background:
    linear-gradient(rgba(15,23,42,.85),rgba(15,23,42,.85)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f");
    background-size:cover;
    background-position:center;
}

.hero-slider::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(0,201,167,.25);
    border-radius:50%;
    top:-120px;
    left:-100px;
    filter:blur(100px);
}

.hero-slider::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,107,107,.25);
    border-radius:50%;
    bottom:-100px;
    right:-100px;
    filter:blur(100px);
}

.slider-wrapper{
    position:relative;
    z-index:2;
}

.hero-slide{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    min-height:650px;
}

/* ==========================
   CONTENT
========================== */

.hero-content{
    flex:1;
    color:#fff;
}

.tagline{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    color:#FF9800;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:20px;
    border:1px solid rgba(255,255,255,.15);
}

.hero-content h1{
    font-size:65px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
    background:linear-gradient(
    90deg,
    #6C3916,
    #F4B066,
    #7A1B16,
    #FF9800
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#e5e7eb;
    max-width:650px;
    margin-bottom:35px;
}

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

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.donate-btn,
.campaign-btn{
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:700;
    transition:.4s ease;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.donate-btn{
    background:var(--gradient-1);
    color:#fff;
    box-shadow:0 10px 30px rgba(108,57,22,.35);
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow:0 15px 35px rgba(108,57,22,.5);
}

.campaign-btn{
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    backdrop-filter:blur(10px);
}

.campaign-btn:hover {
    background:rgba(255,255,255,.2);
    transform: translateY(-3px);
}

.donate-btn:hover,
.campaign-btn:hover{
    transform:translateY(-6px);
}

/* ==========================
   STATS
========================== */

.hero-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.stat{
    min-width:140px;
    padding:20px;
    border-radius:20px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.1);
    transition:.4s;
}

.stat:nth-child(1){
    border-top:4px solid #6C3916;
}

.stat:nth-child(2){
    border-top:4px solid #FF9800;
}

.stat:nth-child(3){
    border-top:4px solid #7A1B16;
}

.stat:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.15);
}

.stat h3{
    color:#fff;
    font-size:32px;
    font-weight:800;
    margin-bottom:8px;
}

.stat p{
    color:#d1d5db;
    margin:0;
    font-size:14px;
}

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

.hero-image{
    flex:1;
    position:relative;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:600px;
    border-radius:35px;
    box-shadow:var(--shadow);
    border:5px solid rgba(255,255,255,.15);
    transition:.5s ease;
    animation:floatImage 4s ease-in-out infinite;
}

.hero-image img:hover{
    transform:scale(1.03);
}

@keyframes floatImage{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

/* ==========================
   VERIFIED BOX
========================== */

.verified{
    position:absolute;
    bottom:30px;
    left:0;
    background:#fff;
    padding:15px 20px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.verified i{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:22px;
    color:#fff;
    background:var(--gradient-1);
}

.verified strong{
    color:#111827;
    display:block;
}

.verified p{
    margin:0;
    color:#6b7280;
    font-size:14px;
}

/* ==========================
   ARROWS
========================== */

.slider-arrows{
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    transform:translateY(-50%);
    display:flex;
    justify-content:space-between;
    padding:0 25px;
    z-index:5;
}

.slider-arrows button{
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    color:#fff;
    cursor:pointer;
    font-size:18px;
    background:var(--gradient-3);
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.4s;
}

.slider-arrows button:hover{
    transform:scale(1.1);
}

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

@media(max-width:1200px){

    .hero-content h1{
        font-size:52px;
    }
}

@media(max-width:992px){

    .hero-slide{
        flex-direction:column-reverse;
        text-align:center;
        min-height:auto;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        margin:auto auto 30px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
    }

    .verified{
        position:relative;
        margin-top:20px;
        left:auto;
        bottom:auto;
        display:inline-flex;
    }
}

@media(max-width:768px){

    .hero-slider{
        padding:60px 20px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:16px;
    }

    .stat{
        width:100%;
    }

    .slider-arrows button{
        width:50px;
        height:50px;
    }
}

@media(max-width:480px){

    .hero-content h1{
        font-size:28px;
    }

    .tagline{
        font-size:13px;
    }

    .donate-btn,
    .campaign-btn{
        width:100%;
        justify-content:center;
    }

    .verified{
        flex-direction:column;
        text-align:center;
    }
}
/* =========================================
   ABOUT US SECTION STYLES
   ========================================= */
/*==================================
   MODERN NGO ABOUT SECTION
===================================*/

:root{
    --primary:#6C3916;
    --secondary:#F4B066;
    --accent:#7A1B16;
    --gold:#FF9800;
    --purple:#8C4C1F;
    --dark:#0F172A;
    --light:#ffffff;

    --gradient-1:linear-gradient(135deg,#6C3916,#F4B066);
    --gradient-2:linear-gradient(135deg,#7A1B16,#FF8E53);
    --gradient-3:linear-gradient(135deg,#8C4C1F,#F4B066);

    --shadow:0 15px 40px rgba(0,0,0,0.12);
    --radius:25px;
}

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

.about-page{
    position:relative;
    padding:100px 5%;
    overflow:hidden;
    background:
    linear-gradient(135deg,#f8fbff,#eef7ff,#ffffff);
}

.about-page::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(0,201,167,0.15);
    border-radius:50%;
    top:-120px;
    left:-120px;
    filter:blur(80px);
}

.about-page::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,107,107,0.15);
    border-radius:50%;
    bottom:-100px;
    right:-100px;
    filter:blur(80px);
}

.about-container{
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    position:relative;
    z-index:2;
}

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

.about-img{
    flex:1;
    position:relative;
}

.about-img img{
    width:100%;
    border-radius:30px;
    box-shadow:var(--shadow);
    transition:.5s ease;
    border:6px solid rgba(255,255,255,0.8);
}

.about-img img:hover{
    transform:scale(1.03);
}

/* Floating Effect */

.about-img{
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

/* Decorative Badge */

.about-img::after{
    content:"NGO Since 2020";
    position:absolute;
    bottom:20px;
    right:-20px;
    background:var(--gradient-1);
    color:#fff;
    font-weight:700;
    padding:15px 25px;
    border-radius:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/*=========================
 CONTENT
==========================*/

.about-content{
    flex:1;
}

.about-content h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:25px;
    line-height:1.2;

    background:linear-gradient(
    90deg,
    #6C3916,
    #F4B066,
    #8C4C1F,
    #7A1B16
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.about-content p{
    font-size:17px;
    line-height:1.9;
    color:#64748B;
    margin-bottom:35px;
}

/*=========================
 FEATURES
==========================*/

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:40px;
}

.feature-box{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:22px;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s ease;
    border-top:4px solid transparent;
}

.feature-box:nth-child(1){
    border-color:#6C3916;
}

.feature-box:nth-child(2){
    border-color:#F4B066;
}

.feature-box:nth-child(3){
    border-color:#7A1B16;
}

.feature-box:nth-child(4){
    border-color:#FF9800;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(0,0,0,.12);
}

.feature-box i{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.feature-box:nth-child(1) i{
    background:linear-gradient(135deg,#6C3916,#00E6B8);
}

.feature-box:nth-child(2) i{
    background:linear-gradient(135deg,#F4B066,#6CB4FF);
}

.feature-box:nth-child(3) i{
    background:linear-gradient(135deg,#7A1B16,#FF8A8A);
}

.feature-box:nth-child(4) i{
    background:linear-gradient(135deg,#FF9800,#FFB703);
}

.feature-box h4{
    font-size:18px;
    margin-bottom:8px;
    color:#0F172A;
    font-weight:700;
}

.feature-box p{
    margin:0;
    font-size:14px;
    color:#64748B;
    line-height:1.6;
}

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

.read-more-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    padding:16px 35px;
    color:#fff;
    font-weight:700;
    border-radius:50px;
    background:var(--gradient-2);
    box-shadow:0 12px 30px rgba(255,107,107,.35);
    transition:.4s ease;
}

.read-more-btn:hover{
    transform:translateY(-5px);
    color:#fff;
}

.read-more-btn i{
    transition:.4s;
}

.read-more-btn:hover i{
    transform:translateX(6px);
}

/*=========================
 TABLET
==========================*/

@media(max-width:992px){

    .about-container{
        flex-direction:column;
        gap:50px;
        text-align:center;
    }

    .about-content h2{
        font-size:40px;
    }

    .feature-box{
        text-align:left;
    }

    .about-img::after{
        right:10px;
    }
}

/*=========================
 MOBILE
==========================*/

@media(max-width:768px){

    .about-page{
        padding:70px 20px;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-content p{
        font-size:15px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .feature-box{
        padding:18px;
    }

    .feature-box i{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:20px;
    }

    .read-more-btn{
        width:100%;
        justify-content:center;
    }
}

/*=========================
 SMALL MOBILE
==========================*/

@media(max-width:480px){

    .about-content h2{
        font-size:28px;
    }

    .feature-box{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .about-img::after{
        font-size:13px;
        padding:12px 18px;
    }
}
/* =========================================
   IMPACT SECTION STYLES
   ========================================= */
/* ====================================
   IMPACT + OBJECTIVES SECTION CSS
   Modern NGO Multi Color Theme
==================================== */

:root{
    --primary:#6C3916;
    --secondary:#F4B066;
    --accent:#7A1B16;
    --warning:#FF9800;
    --purple:#8C4C1F;
    --dark:#0F172A;
    --light:#ffffff;

    --gradient1:linear-gradient(135deg,#6C3916,#F4B066);
    --gradient2:linear-gradient(135deg,#7A1B16,#FF9671);
    --gradient3:linear-gradient(135deg,#8C4C1F,#F4B066);
    --gradient4:linear-gradient(135deg,#FF9800,#FF9F1C);

    --shadow:0 15px 35px rgba(0,0,0,.08);
}

/* ====================================
   IMPACT SECTION
==================================== */

.impact-section{
    padding:100px 5%;
    background:linear-gradient(135deg,#f5f9ff,#ffffff);
    position:relative;
    overflow:hidden;
}

.impact-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(0,201,167,.12);
    border-radius:50%;
    top:-150px;
    left:-120px;
    filter:blur(100px);
}

.impact-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,107,107,.12);
    border-radius:50%;
    right:-100px;
    bottom:-100px;
    filter:blur(100px);
}

.impact-title{
    text-align:center;
    margin-bottom:60px;
    position:relative;
    z-index:2;
}

.impact-title h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;

    background:linear-gradient(
    90deg,
    #6C3916,
    #F4B066,
    #8C4C1F,
    #7A1B16);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.impact-title p{
    color:#64748B;
    font-size:18px;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

.impact-card{
    background:#fff;
    border-radius:25px;
    padding:40px 25px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.impact-card::before{
    content:"";
    position:absolute;
    width:100%;
    height:5px;
    top:0;
    left:0;
}

.impact-card:nth-child(1)::before{
    background:var(--gradient1);
}

.impact-card:nth-child(2)::before{
    background:var(--gradient2);
}

.impact-card:nth-child(3)::before{
    background:var(--gradient3);
}

.impact-card:nth-child(4)::before{
    background:var(--gradient4);
}

.impact-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 40px rgba(0,0,0,.12);
}

.impact-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    font-size:30px;
    color:#fff;
    margin-bottom:20px;
}

.impact-card:nth-child(1) i{
    background:var(--gradient1);
}

.impact-card:nth-child(2) i{
    background:var(--gradient2);
}

.impact-card:nth-child(3) i{
    background:var(--gradient3);
}

.impact-card:nth-child(4) i{
    background:var(--gradient4);
}

.impact-card h3{
    font-size:38px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:10px;
}

.impact-card p{
    color:#64748B;
    font-size:16px;
}

/* ====================================
   OBJECTIVES SECTION
==================================== */

.objectives-section{
    padding:100px 5%;
    background:#ffffff;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:auto auto 70px;
}

.sub-title{
    display:inline-block;
    background:rgba(77,150,255,.12);
    color:#F4B066;
    padding:10px 25px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:15px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
    color:#0F172A;
}

.highlight{
    background:linear-gradient(
    90deg,
    #6C3916,
    #F4B066,
    #8C4C1F);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-title p{
    color:#64748B;
    font-size:17px;
}

.objectives-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.objective-card{
    position:relative;
    background:#fff;
    padding:45px 30px;
    border-radius:30px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s ease;
    overflow:hidden;
}

.objective-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
}

.objective-card:nth-child(1)::before{
    background:var(--gradient1);
}

.objective-card:nth-child(2)::before{
    background:var(--gradient2);
}

.objective-card:nth-child(3)::before{
    background:var(--gradient3);
}

.objective-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,.12);
}

.obj-icon{
    width:90px;
    height:90px;
    margin:auto auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:35px;
}

.objective-card:nth-child(1) .obj-icon{
    background:var(--gradient1);
}

.objective-card:nth-child(2) .obj-icon{
    background:var(--gradient2);
}

.objective-card:nth-child(3) .obj-icon{
    background:var(--gradient3);
}

.objective-card h3{
    font-size:24px;
    font-weight:700;
    color:#0F172A;
    margin-bottom:15px;
}

.objective-card p{
    color:#64748B;
    line-height:1.8;
    font-size:15px;
}

.obj-number{
    position:absolute;
    top:20px;
    right:20px;
    font-size:55px;
    font-weight:800;
    color:rgba(0,0,0,.05);
    user-select:none;
}

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

@media(max-width:1024px){

    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .objectives-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .objective-card:last-child{
        grid-column:span 2;
    }
}

@media(max-width:768px){

    .impact-section,
    .objectives-section{
        padding:70px 20px;
    }

    .impact-title h2,
    .section-title h2{
        font-size:34px;
    }

    .impact-grid,
    .objectives-grid{
        grid-template-columns:1fr;
    }

    .objective-card:last-child{
        grid-column:auto;
    }

    .impact-card{
        padding:35px 20px;
    }

    .objective-card{
        padding:35px 25px;
    }
}

@media(max-width:480px){

    .impact-title h2,
    .section-title h2{
        font-size:28px;
    }

    .impact-card i{
        width:70px;
        height:70px;
        line-height:70px;
        font-size:26px;
    }

    .impact-card h3{
        font-size:30px;
    }

    .obj-icon{
        width:75px;
        height:75px;
        font-size:28px;
    }

    .objective-card h3{
        font-size:21px;
    }
}
/* =========================================
   KEY OBJECTIVES SECTION STYLES
   ========================================= */
/*=========================================
     EDUCATION GOALS SECTION CSS
     Modern NGO Multi-Color Design
==========================================*/

:root{
    --primary:#6C3916;
    --secondary:#F4B066;
    --accent:#7A1B16;
    --warning:#FF9800;
    --purple:#8C4C1F;
    --dark:#0F172A;
    --text:#64748B;
    --white:#ffffff;

    --gradient-1:linear-gradient(135deg,#6C3916,#F4B066);
    --gradient-2:linear-gradient(135deg,#7A1B16,#FF8E53);
    --gradient-3:linear-gradient(135deg,#8C4C1F,#F4B066);
    --gradient-4:linear-gradient(135deg,#FF9800,#FF9F1C);

    --shadow:0 15px 40px rgba(0,0,0,0.08);
}

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

.edu-goals-section{
    padding:100px 5%;
    background:linear-gradient(135deg,#f8fbff,#eef8ff,#ffffff);
    position:relative;
    overflow:hidden;
}

.edu-goals-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(0,201,167,.12);
    border-radius:50%;
    top:-120px;
    left:-120px;
    filter:blur(100px);
}

.edu-goals-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,107,107,.12);
    border-radius:50%;
    right:-100px;
    bottom:-100px;
    filter:blur(100px);
}

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

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
    position:relative;
    z-index:2;
}

.sub-title{
    display:inline-block;
    padding:10px 25px;
    background:rgba(77,150,255,.12);
    color:#F4B066;
    border-radius:50px;
    font-weight:700;
    margin-bottom:15px;
}

.section-title h2{
    font-size:50px;
    font-weight:800;
    margin-bottom:18px;
    color:var(--dark);
}

.highlight{
    background:linear-gradient(
    90deg,
    #6C3916,
    #F4B066,
    #8C4C1F,
    #7A1B16
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-title p{
    font-size:17px;
    color:var(--text);
    line-height:1.8;
}

/*=========================================
        GOALS GRID
==========================================*/

.edu-goals-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

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

.edu-goal-card{
    background:rgba(255,255,255,0.95);
    border-radius:25px;
    padding:40px 25px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
}

.edu-goal-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
}

.edu-goal-card:nth-child(1)::before{
    background:var(--gradient-1);
}

.edu-goal-card:nth-child(2)::before{
    background:var(--gradient-2);
}

.edu-goal-card:nth-child(3)::before{
    background:var(--gradient-3);
}

.edu-goal-card:nth-child(4)::before{
    background:var(--gradient-4);
}

.edu-goal-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

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

.goal-icon{
    width:90px;
    height:90px;
    margin:auto auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    transition:.4s;
}

.edu-goal-card:nth-child(1) .goal-icon{
    background:var(--gradient-1);
}

.edu-goal-card:nth-child(2) .goal-icon{
    background:var(--gradient-2);
}

.edu-goal-card:nth-child(3) .goal-icon{
    background:var(--gradient-3);
}

.edu-goal-card:nth-child(4) .goal-icon{
    background:var(--gradient-4);
}

.edu-goal-card:hover .goal-icon{
    transform:rotateY(180deg);
}

/*=========================================
        CONTENT
==========================================*/

.edu-goal-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:var(--dark);
}

.edu-goal-card p{
    font-size:15px;
    line-height:1.8;
    color:var(--text);
    margin:0;
}

/*=========================================
        CARD GLOW EFFECT
==========================================*/

.edu-goal-card::after{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    border-radius:50%;
    background:rgba(255,255,255,.3);
    top:-80px;
    right:-80px;
}

/*=========================================
        TABLET
==========================================*/

@media (max-width:991px){

    .edu-goals-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:40px;
    }

}

/*=========================================
        MOBILE
==========================================*/

@media (max-width:768px){

    .edu-goals-section{
        padding:70px 20px;
    }

    .edu-goals-grid{
        grid-template-columns:1fr;
    }

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:32px;
    }

    .section-title p{
        font-size:15px;
    }

    .edu-goal-card{
        padding:35px 20px;
    }

}

/*=========================================
        SMALL MOBILE
==========================================*/

@media (max-width:480px){

    .section-title h2{
        font-size:28px;
    }

    .goal-icon{
        width:75px;
        height:75px;
        font-size:28px;
    }

    .edu-goal-card h3{
        font-size:21px;
    }

    .edu-goal-card p{
        font-size:14px;
    }

}
/* =========================================
   EDUCATION GOALS SECTION STYLES
   ========================================= */
.edu-goals-section {
    padding: 80px 0;
    background-color: white;
}

.edu-goals-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.edu-goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.edu-goal-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Hover line animation at top */
.edu-goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.edu-goal-card:hover::before {
    width: 100%;
}

.edu-goal-card:hover {
    background: white;
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.goal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(249, 168, 38, 0.15);
    color: var(--accent-yellow);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.edu-goal-card:hover .goal-icon {
    background: var(--accent-yellow);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(249, 168, 38, 0.3);
}

.edu-goal-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 12px;
}

.edu-goal-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   RESPONSIVE DESIGN FOR EDUCATION GOALS
   ========================================= */
@media (max-width: 1024px) {
    .edu-goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .edu-goals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .edu-goal-card {
        padding: 30px 20px;
    }
}

/* =========================================
   GALLERY SECTION STYLES
   ========================================= */
/*=====================================
      GALLERY SECTION
=====================================*/

.gallery-section{
    padding:100px 5%;
    background:linear-gradient(135deg,#f8fbff,#ffffff,#eef8ff);
    position:relative;
    overflow:hidden;
}

.gallery-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(0,201,167,.12);
    border-radius:50%;
    top:-120px;
    left:-120px;
    filter:blur(100px);
}

.gallery-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,107,107,.12);
    border-radius:50%;
    right:-100px;
    bottom:-100px;
    filter:blur(100px);
}

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

.gallery-title{
    text-align:center;
    margin-bottom:60px;
    position:relative;
    z-index:2;
}

.gallery-title h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;

    background:linear-gradient(
        90deg,
        #6C3916,
        #F4B066,
        #8C4C1F,
        #7A1B16
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.gallery-title p{
    color:#64748B;
    font-size:17px;
}

/*=====================================
      GALLERY GRID
=====================================*/

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.gallery-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s ease;
    display:block;
}

/* Hover Zoom */

.gallery-card:hover img{
    transform:scale(1.12);
}

/* Overlay */

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(15,23,42,.95),
        rgba(15,23,42,.20)
    );

    display:flex;
    align-items:flex-end;
    padding:25px;
    opacity:0;
    transition:.5s;
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay h3{
    color:#fff;
    font-size:20px;
    font-weight:700;
    transform:translateY(20px);
    transition:.5s;
}

.gallery-card:hover .gallery-overlay h3{
    transform:translateY(0);
}

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

.gallery-btn-area{
    text-align:center;
    margin-top:60px;
    position:relative;
    z-index:2;
}

.gallery-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    padding:16px 38px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    color:#fff;

    background:linear-gradient(
        135deg,
        #6C3916,
        #F4B066,
        #8C4C1F
    );

    box-shadow:0 15px 35px rgba(77,150,255,.30);
    transition:.4s;
}

.gallery-btn:hover{
    color:#fff;
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(77,150,255,.40);
}

.gallery-btn i{
    transition:.4s;
}

.gallery-btn:hover i{
    transform:translateX(8px);
}

/*=====================================
      TABLET
=====================================*/

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-title h2{
        font-size:38px;
    }

}

/*=====================================
      MOBILE
=====================================*/

@media(max-width:768px){

    .gallery-section{
        padding:70px 20px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .gallery-title h2{
        font-size:32px;
    }

    .gallery-card img{
        height:260px;
    }

    .gallery-btn{
        width:100%;
        justify-content:center;
    }

}

/*=====================================
      SMALL MOBILE
=====================================*/

@media(max-width:480px){

    .gallery-title h2{
        font-size:28px;
    }

    .gallery-title p{
        font-size:15px;
    }

    .gallery-overlay h3{
        font-size:17px;
    }

}
/* =========================================
   EVENTS SECTION STYLES
   ========================================= */
/*=========================================
        NGO EVENTS SECTION
        Premium Multi-Color Design
==========================================*/

:root{
    --primary:#6C3916;
    --secondary:#F4B066;
    --accent:#7A1B16;
    --warning:#FF9800;
    --purple:#8C4C1F;
    --orange:#FF9F1C;
    --dark:#0F172A;
    --text:#64748B;
    --white:#ffffff;

    --gradient-1:linear-gradient(135deg,#6C3916,#F4B066);
    --gradient-2:linear-gradient(135deg,#7A1B16,#FF9671);
    --gradient-3:linear-gradient(135deg,#8C4C1F,#F4B066);
    --gradient-4:linear-gradient(135deg,#FF9800,#FF9F1C);

    --shadow:0 15px 40px rgba(0,0,0,.10);
}

/*=========================================
        EVENTS SECTION
==========================================*/

.events-section{
    padding:100px 5%;
    background:linear-gradient(
        135deg,
        #f8fbff,
        #ffffff,
        #eef8ff
    );
    position:relative;
    overflow:hidden;
}

.events-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(0,201,167,.12);
    border-radius:50%;
    top:-150px;
    left:-120px;
    filter:blur(100px);
}

.events-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,107,107,.12);
    border-radius:50%;
    bottom:-120px;
    right:-100px;
    filter:blur(100px);
}

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

.section-header{
    text-align:center;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.sub-title{
    display:inline-block;
    padding:10px 25px;
    border-radius:50px;
    background:rgba(77,150,255,.12);
    color:#F4B066;
    font-weight:700;
    margin-bottom:15px;
}

.main-title{
    font-size:52px;
    font-weight:800;
    color:var(--dark);
    margin:0;
}

.highlight{
    background:linear-gradient(
        90deg,
        #6C3916,
        #F4B066,
        #8C4C1F,
        #7A1B16
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/*=========================================
        EVENTS GRID
==========================================*/

.events-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    position:relative;
    z-index:2;
}

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

.event-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    position:relative;
    box-shadow:var(--shadow);
    transition:.5s ease;
}

.event-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

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

.event-img{
    position:relative;
    overflow:hidden;
}

.event-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.7s ease;
}

.event-card:hover .event-img img{
    transform:scale(1.12);
}

/*=========================================
        DATE BOX
==========================================*/

.event-date{
    position:absolute;
    top:20px;
    right:20px;
    width:75px;
    height:85px;
    background:linear-gradient(
        135deg,
        #7A1B16,
        #FF9F1C
    );
    color:#fff;
    border-radius:18px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(255,107,107,.30);
    z-index:3;
}

.day{
    font-size:28px;
    font-weight:800;
    line-height:1;
}

.month{
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-top:5px;
}

/*=========================================
        EVENT INFO
==========================================*/

.event-info{
    padding:30px;
}

.location{
    font-size:14px;
    color:#64748B;
    margin-bottom:15px;
}

.location i{
    color:#7A1B16;
    margin-right:8px;
}

.event-info h3{
    font-size:24px;
    font-weight:700;
    color:#0F172A;
    margin-bottom:10px;
    line-height:1.4;
}

.event-info h2{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,159,28,.12);
    font-size:15px;
    font-weight:700;
    margin-bottom:15px !important;
}

.desc{
    color:#64748B;
    line-height:1.8;
    font-size:15px;
    margin-bottom:25px;
}

/*=========================================
        READ MORE BUTTON
==========================================*/

.read-more{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#fff;
    font-weight:700;
    padding:14px 30px;
    border-radius:50px;

    background:linear-gradient(
        135deg,
        #6C3916,
        #F4B066
    );

    transition:.4s;
}

.read-more::after{
    content:"→";
    transition:.4s;
}

.read-more:hover{
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(77,150,255,.30);
}

.read-more:hover::after{
    transform:translateX(5px);
}

/*=========================================
        CARD TOP BORDER COLORS
==========================================*/

.event-card:nth-child(1){
    border-top:5px solid #6C3916;
}

.event-card:nth-child(2){
    border-top:5px solid #F4B066;
}

.event-card:nth-child(3){
    border-top:5px solid #7A1B16;
}

/*=========================================
        TABLET
==========================================*/

@media(max-width:1024px){

    .events-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .main-title{
        font-size:42px;
    }

}

/*=========================================
        MOBILE
==========================================*/

@media(max-width:768px){

    .events-section{
        padding:70px 20px;
    }

    .events-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .main-title{
        font-size:32px;
    }

    .event-img img{
        height:230px;
    }

    .event-info{
        padding:25px;
    }

    .event-info h3{
        font-size:20px;
    }

}

/*=========================================
        SMALL MOBILE
==========================================*/

@media(max-width:480px){

    .main-title{
        font-size:28px;
    }

    .sub-title{
        font-size:13px;
    }

    .event-date{
        width:65px;
        height:75px;
    }

    .day{
        font-size:22px;
    }

    .month{
        font-size:12px;
    }

    .event-info{
        padding:20px;
    }

    .read-more{
        width:100%;
        justify-content:center;
    }

}
/* =========================================
   MEMBERSHIP SECTION STYLES
   ========================================= */
/*=========================================
      MEMBERSHIP SECTION
      Premium NGO Multi-Color Design
=========================================*/

:root{
    --primary:#6C3916;
    --secondary:#F4B066;
    --accent:#7A1B16;
    --warning:#FF9800;
    --purple:#8C4C1F;
    --orange:#FF9F1C;

    --dark:#0F172A;
    --text:#64748B;
    --white:#ffffff;

    --gradient-1:linear-gradient(135deg,#6C3916,#F4B066);
    --gradient-2:linear-gradient(135deg,#7A1B16,#FF9671);
    --gradient-3:linear-gradient(135deg,#8C4C1F,#F4B066);
    --gradient-4:linear-gradient(135deg,#FF9800,#FF9F1C);

    --shadow:0 15px 40px rgba(0,0,0,.10);
}

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

.membership-section{
    padding:100px 5%;
    background:linear-gradient(
        135deg,
        #f8fbff,
        #ffffff,
        #eef8ff
    );
    position:relative;
    overflow:hidden;
}

.membership-section::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(0,201,167,.12);
    border-radius:50%;
    top:-180px;
    left:-150px;
    filter:blur(120px);
}

.membership-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,107,107,.12);
    border-radius:50%;
    right:-150px;
    bottom:-150px;
    filter:blur(120px);
}

.membership-container{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

/*=========================================
      MAIN BOX
=========================================*/

.membership-main{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    background:#fff;
    padding:60px;
    border-radius:35px;
    box-shadow:var(--shadow);
    margin-bottom:80px;
    position:relative;
    overflow:hidden;
}

.membership-main::before{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(77,150,255,.08);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

/*=========================================
      CONTENT
=========================================*/

.membership-content{
    flex:1;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(77,150,255,.12);
    color:#F4B066;
    padding:12px 22px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}

.badge i{
    color:#7A1B16;
}

.main-title{
    font-size:52px;
    font-weight:800;
    margin-bottom:20px;

    background:linear-gradient(
        90deg,
        #6C3916,
        #F4B066,
        #8C4C1F,
        #7A1B16
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.description{
    font-size:18px;
    line-height:1.9;
    color:var(--text);
    margin-bottom:30px;
}

.description span{
    color:#7A1B16;
    font-weight:600;
}

/*=========================================
      BENEFIT LIST
=========================================*/

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

.benefit-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
    font-size:17px;
    font-weight:600;
    color:var(--dark);
}

.benefit-list i{
    color:#6C3916;
    font-size:20px;
}

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

.membership-card{
    width:380px;
    text-align:center;
    padding:40px 30px;
    border-radius:30px;
    background:linear-gradient(
        135deg,
        #6C3916,
        #F4B066,
        #8C4C1F
    );
    color:#fff;
    box-shadow:0 20px 50px rgba(77,150,255,.25);
    transition:.4s;
}

.membership-card:hover{
    transform:translateY(-10px);
}

.membership-card h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.price-tag{
    font-size:20px;
    margin-bottom:25px;
}

.price-tag span{
    font-size:42px;
    font-weight:800;
    display:block;
    margin-top:8px;
}

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

.join-now-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#fff;
    color:#0F172A;
    text-decoration:none;
    padding:18px 30px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
    transition:.4s;
}

.join-now-btn:hover{
    background:#FF9800;
    color:#000;
    transform:translateY(-5px);
}

.small-text{
    font-size:14px;
    opacity:.9;
}

/*=========================================
      BENEFITS SECTION
=========================================*/

.bottom-benefits{
    text-align:center;
}

.benefits-title{
    font-size:42px;
    font-weight:800;
    color:var(--dark);
    margin-bottom:50px;
}

.benefits-title span{
    background:linear-gradient(
        90deg,
        #6C3916,
        #F4B066,
        #8C4C1F
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

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

.benefit-item{
    background:#fff;
    padding:35px 25px;
    border-radius:25px;
    box-shadow:var(--shadow);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.benefit-item:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.benefit-item:nth-child(1){
    border-top:5px solid #6C3916;
}

.benefit-item:nth-child(2){
    border-top:5px solid #7A1B16;
}

.benefit-item:nth-child(3){
    border-top:5px solid #8C4C1F;
}

.benefit-item:nth-child(4){
    border-top:5px solid #FF9800;
}

.icon-box{
    width:80px;
    height:80px;
    margin:auto auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
}

.benefit-item:nth-child(1) .icon-box{
    background:var(--gradient-1);
}

.benefit-item:nth-child(2) .icon-box{
    background:var(--gradient-2);
}

.benefit-item:nth-child(3) .icon-box{
    background:var(--gradient-3);
}

.benefit-item:nth-child(4) .icon-box{
    background:var(--gradient-4);
}

.benefit-item h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:var(--dark);
}

.benefit-item p{
    color:var(--text);
    line-height:1.8;
    margin:0;
}

/*=========================================
      TABLET
=========================================*/

@media(max-width:1024px){

    .membership-main{
        flex-direction:column;
        text-align:center;
    }

    .membership-card{
        width:100%;
        max-width:450px;
    }

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .main-title{
        font-size:42px;
    }
}

/*=========================================
      MOBILE
=========================================*/

@media(max-width:768px){

    .membership-section{
        padding:70px 20px;
    }

    .membership-main{
        padding:35px 25px;
    }

    .main-title{
        font-size:32px;
    }

    .description{
        font-size:16px;
    }

    .benefits-title{
        font-size:30px;
    }

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

    .join-now-btn{
        width:100%;
    }
}

/*=========================================
      SMALL MOBILE
=========================================*/

@media(max-width:480px){

    .main-title{
        font-size:28px;
    }

    .badge{
        font-size:13px;
        padding:10px 18px;
    }

    .price-tag span{
        font-size:34px;
    }

    .benefit-item{
        padding:30px 20px;
    }

    .icon-box{
        width:70px;
        height:70px;
        font-size:26px;
    }
}
/* =========================================
   AWARDS SECTION STYLES
   ========================================= */
/*=========================================
      AWARDS & RECOGNITION SECTION
      Premium NGO Multi-Color Design
=========================================*/

:root{
    --primary:#6C3916;
    --secondary:#F4B066;
    --accent:#7A1B16;
    --purple:#8C4C1F;
    --gold:#FF9800;
    --orange:#FF9F1C;

    --dark:#0F172A;
    --text:#64748B;
    --white:#ffffff;

    --gradient-1:linear-gradient(135deg,#6C3916,#F4B066);
    --gradient-2:linear-gradient(135deg,#7A1B16,#FF9671);
    --gradient-3:linear-gradient(135deg,#8C4C1F,#F4B066);
    --gradient-4:linear-gradient(135deg,#FF9800,#FF9F1C);

    --shadow:0 15px 40px rgba(0,0,0,.08);
}

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

.awards-section{
    padding:100px 5%;
    background:linear-gradient(
        135deg,
        #f8fbff,
        #ffffff,
        #eef8ff
    );
    position:relative;
    overflow:hidden;
}

.awards-section::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(0,201,167,.10);
    top:-180px;
    left:-150px;
    filter:blur(120px);
}

.awards-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,107,107,.10);
    right:-150px;
    bottom:-150px;
    filter:blur(120px);
}

.awards-container{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

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

.awards-header{
    text-align:center;
    margin-bottom:70px;
}

.sub-title{
    display:inline-block;
    padding:10px 25px;
    border-radius:50px;
    background:rgba(77,150,255,.12);
    color:#F4B066;
    font-weight:700;
    letter-spacing:.5px;
}

.main-title{
    font-size:52px;
    font-weight:800;
    margin:20px 0;

    background:linear-gradient(
        90deg,
        #6C3916,
        #F4B066,
        #8C4C1F,
        #7A1B16
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.title-line{
    width:120px;
    height:5px;
    margin:auto;
    border-radius:50px;
    background:linear-gradient(
        90deg,
        #6C3916,
        #F4B066,
        #7A1B16
    );
}

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

.awards-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

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

.award-card{
    background:#fff;
    border-radius:30px;
    padding:35px 25px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.5s ease;
    position:relative;
    overflow:hidden;
}

.award-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
}

.award-card:nth-child(1n)::before{
    background:var(--gradient-1);
}

.award-card:nth-child(2n)::before{
    background:var(--gradient-2);
}

.award-card:nth-child(3n)::before{
    background:var(--gradient-3);
}

.award-card:nth-child(4n)::before{
    background:var(--gradient-4);
}

.award-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

/*=========================================
      AWARD IMAGE
=========================================*/

.award-icon{
    width:120px;
    height:120px;
    margin:0 auto 25px;
    border-radius:50%;
    overflow:hidden;
    padding:8px;
    background:linear-gradient(
        135deg,
        #6C3916,
        #F4B066,
        #8C4C1F
    );
    transition:.5s;
}

.award-card:hover .award-icon{
    transform:rotate(8deg) scale(1.08);
}

.award-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    background:#fff;
}

/*=========================================
      INFO
=========================================*/

.award-year{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,159,28,.12);
    color:#FF9F1C;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.award-info h3{
    font-size:22px;
    font-weight:700;
    color:#0F172A;
    line-height:1.5;
    margin:0;
}

/*=========================================
      HOVER GLOW
=========================================*/

.award-card::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(77,150,255,.08);
    top:-90px;
    right:-90px;
    transition:.5s;
}

.award-card:hover::after{
    transform:scale(1.3);
}

/*=========================================
      TABLET
=========================================*/

@media(max-width:1024px){

    .awards-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .main-title{
        font-size:42px;
    }

}

/*=========================================
      MOBILE
=========================================*/

@media(max-width:768px){

    .awards-section{
        padding:70px 20px;
    }

    .awards-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .main-title{
        font-size:32px;
    }

    .award-card{
        padding:30px 20px;
    }

    .award-icon{
        width:100px;
        height:100px;
    }

}

/*=========================================
      SMALL MOBILE
=========================================*/

@media(max-width:480px){

    .main-title{
        font-size:28px;
    }

    .sub-title{
        font-size:13px;
        padding:8px 18px;
    }

    .award-info h3{
        font-size:19px;
    }

    .award-year{
        font-size:13px;
    }

    .award-icon{
        width:90px;
        height:90px;
    }

}
/* =========================================
   PRESIDENT SECTION STYLES
   ========================================= */

/*=========================================
    PRESIDENT MESSAGE SECTION
    Premium NGO Multi-Color Design
=========================================*/

:root{
    --primary:#6C3916;
    --secondary:#F4B066;
    --accent:#7A1B16;
    --purple:#8C4C1F;
    --gold:#FF9800;
    --orange:#FF9F1C;

    --dark:#0F172A;
    --text:#64748B;
    --white:#ffffff;

    --gradient-1:linear-gradient(135deg,#6C3916,#F4B066);
    --gradient-2:linear-gradient(135deg,#7A1B16,#FF9671);
    --gradient-3:linear-gradient(135deg,#8C4C1F,#F4B066);

    --shadow:0 20px 50px rgba(0,0,0,.10);
}

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

.president-section{
    padding:100px 5%;
    background:linear-gradient(
        135deg,
        #f8fbff,
        #ffffff,
        #eef8ff
    );
    position:relative;
    overflow:hidden;
}

.president-section::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(0,201,167,.10);
    border-radius:50%;
    top:-180px;
    left:-150px;
    filter:blur(120px);
}

.president-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,107,107,.10);
    border-radius:50%;
    right:-150px;
    bottom:-150px;
    filter:blur(120px);
}

/*=========================================
      WRAPPER
=========================================*/

.president-wrapper{
    display:flex;
    align-items:center;
    gap:70px;
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

/*=========================================
      IMAGE AREA
=========================================*/

.president-image-area{
    flex:1;
}

.image-box{
    position:relative;
    overflow:hidden;
    border-radius:35px;
    box-shadow:var(--shadow);
}

.image-box::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.35),
        transparent
    );
    z-index:1;
}

.image-box img{
    width:100%;
    height:600px;
    object-fit:cover;
    display:block;
    transition:.7s;
}

.image-box:hover img{
    transform:scale(1.08);
}

/*=========================================
      BADGE
=========================================*/

.experience-badge{
    position:absolute;
    bottom:25px;
    left:25px;
    z-index:2;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);
    padding:15px 25px;
    border-radius:50px;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
}

.experience-badge span{
    font-size:15px;
    font-weight:700;
    background:linear-gradient(
        90deg,
        #6C3916,
        #F4B066,
        #8C4C1F
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/*=========================================
      CONTENT
=========================================*/

.president-content{
    flex:1;
}

.sub-title{
    display:inline-block;
    padding:10px 22px;
    background:rgba(77,150,255,.12);
    color:#F4B066;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}

.president-name{
    font-size:52px;
    font-weight:800;
    margin-bottom:10px;

    background:linear-gradient(
        90deg,
        #6C3916,
        #F4B066,
        #8C4C1F,
        #7A1B16
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.president-role{
    font-size:22px;
    color:#7A1B16;
    font-weight:700;
    margin-bottom:30px;
}

/*=========================================
      MESSAGE BOX
=========================================*/

.message-quote{
    position:relative;
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:var(--shadow);
    border-left:6px solid #6C3916;
    margin-bottom:30px;
    transition:.4s;
}

.message-quote:hover{
    transform:translateY(-8px);
}

.message-quote i{
    font-size:45px;
    color:#6C3916;
    margin-bottom:15px;
}

.message-quote p{
    font-size:17px;
    line-height:1.9;
    color:var(--text);
    margin:0;
}

/*=========================================
      SIGNATURE
=========================================*/

.signature{
    padding-left:20px;
    border-left:4px solid #F4B066;
}

.signature p{
    color:#64748B;
    margin-bottom:8px;
    font-size:16px;
}

.signature strong{
    font-size:24px;
    font-weight:800;
    color:#0F172A;
}

/*=========================================
      FLOATING EFFECT
=========================================*/

.image-box{
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

/*=========================================
      TABLET
=========================================*/

@media(max-width:1024px){

    .president-wrapper{
        flex-direction:column;
        text-align:center;
        gap:50px;
    }

    .president-name{
        font-size:42px;
    }

    .signature{
        border-left:none;
        padding-left:0;
    }

    .image-box img{
        height:500px;
    }
}

/*=========================================
      MOBILE
=========================================*/

@media(max-width:768px){

    .president-section{
        padding:70px 20px;
    }

    .president-name{
        font-size:32px;
    }

    .president-role{
        font-size:18px;
    }

    .message-quote{
        padding:25px;
    }

    .message-quote p{
        font-size:15px;
    }

    .image-box img{
        height:400px;
    }

    .experience-badge{
        left:15px;
        right:15px;
        bottom:15px;
        text-align:center;
        padding:12px 15px;
    }
}

/*=========================================
      SMALL MOBILE
=========================================*/

@media(max-width:480px){

    .president-name{
        font-size:28px;
    }

    .sub-title{
        font-size:12px;
        padding:8px 15px;
    }

    .president-role{
        font-size:16px;
    }

    .image-box img{
        height:320px;
    }

    .message-quote{
        padding:20px;
    }

    .message-quote i{
        font-size:35px;
    }

    .signature strong{
        font-size:20px;
    }
}


/* =========================================
   ABOUT US / MISSION HERO STYLES
   ========================================= */
.about-hero {
    background: linear-gradient(rgba(15, 76, 117, 0.7), rgba(15, 76, 117, 0.9)), url('Admin/images/ngo4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   MISSION & VISION CARDS
   ========================================= */
.mv-section {
    padding: 0 0 80px 0;
    background-color: var(--bg-light);
}

.mv-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(15, 76, 117, 0.15);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 5px solid var(--accent-yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-teal);
}

.mv-card i {
    font-size: 3.5rem;
    color: var(--primary-teal);
    margin-bottom: 25px;
    background: rgba(15, 76, 117, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.mv-card:hover i {
    background: var(--primary-teal);
    color: white;
    transform: rotateY(180deg);
}

.mv-card h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

.mv-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* =========================================
   OUR JOURNEY TIMELINE STYLES
   ========================================= */
.journey-section {
    padding: 100px 0;
    background-color: white;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--gradient-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: white;
    border: 5px solid var(--accent-yellow);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(249, 168, 38, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover::after {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 8px rgba(50, 130, 184, 0.2);
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even)::after {
    left: -12px;
}

.timeline-content {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-content:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    background: white;
    border-color: var(--accent-yellow);
}

.timeline-content h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
}

/* --- Responsive for Mission/Timeline --- */
@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .timeline::after {
        left: 40px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 90px;
        padding-right: 20px;
        text-align: left !important;
    }

    .timeline-item::after {
        left: 28px;
        right: auto;
    }

    .timeline-item:nth-child(even) {
        left: 0%;
    }
}

/* =========================================
   CORE VALUES SECTION STYLES
   ========================================= */
.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.values-header {
    margin-bottom: 50px;
}

.values-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.values-header p {
    color: #666;
    max-width: 600px;
    margin: 10px auto 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-yellow);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* =========================================
   VOLUNTEER CTA SECTION STYLES
   ========================================= */
.volunteer-cta {
    background: var(--gradient-primary);
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.volunteer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 10%, transparent 10%), radial-gradient(circle, rgba(255, 255, 255, 0.1) 10%, transparent 10%);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.5;
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-blue) !important;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(249, 168, 38, 0.3);
}

.cta-btn:hover {
    transform: scale(1.05);
    background: white;
    color: var(--primary-teal) !important;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
}

/* --- Responsive for Values & CTA --- */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

/* =========================================
   ACTIVITY HERO STYLES
   ========================================= */
.activity-hero {
    background: linear-gradient(rgba(15, 76, 117, 0.8), rgba(15, 76, 117, 0.9)), url('Admin/images/activity-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.activity-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.activity-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
   ACTIVITY SECTION & CARDS
   ========================================= */
.activity-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.activity-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(15, 76, 117, 0.2);
}

.activity-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.1);
}

.activity-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.activity-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.activity-content h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.activity-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.donate-btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.donate-btn-outline:hover {
    background: var(--primary-teal);
    color: white;
    box-shadow: 0 5px 15px rgba(50, 130, 184, 0.3);
}

/* =========================================
   SOCIAL ICON CARDS
   ========================================= */
.social-activities {
    padding: 80px 0;
    background: white;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-card {
    background: white;
    padding: 40px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.social-card:hover::before {
    transform: scaleX(1);
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(15, 76, 117, 0.1);
    color: var(--primary-teal);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.social-card:hover .social-icon {
    background: var(--primary-teal);
    color: white;
    transform: rotateY(180deg);
}

.social-card h5 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.social-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .activity-grid { grid-template-columns: repeat(2, 1fr); }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .activity-hero h1 { font-size: 2.5rem; }
    .activity-grid { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: 1fr; }
}


/* =========================================
   UMANG SOCIAL FOUNDATION: INTERACTIVE UI
========================================= */
a, button, .btn, .card, img {
    transition: all 0.3s ease-in-out;
}

.card:hover, .service-item:hover, .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(108, 57, 22, 0.15) !important;
}

.btn:hover, button:hover, .donate-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(244, 176, 102, 0.4) !important;
    filter: brightness(1.1);
}

img:hover {
    filter: brightness(1.05);
}

/* Glassmorphism effects */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    .hero-content p {
        font-size: 1rem !important;
    }
    .card {
        margin-bottom: 20px;
    }
}
/* =========================================
   UMANG SOCIAL FOUNDATION: INTERACTIVE UI
========================================= */
a, button, .btn, .card, img {
    transition: all 0.3s ease-in-out;
}

.card:hover, .service-item:hover, .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(108, 57, 22, 0.15) !important;
}

.btn:hover, button:hover, .donate-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(244, 176, 102, 0.4) !important;
    filter: brightness(1.1);
}

img:hover {
    filter: brightness(1.05);
}

/* Glassmorphism effects */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    .hero-content p {
        font-size: 1rem !important;
    }
    .card {
        margin-bottom: 20px;
    }
}