/* FINAL COMPLETE STYLE.CSS
   Replace full assets/css/style.css with this file */

/* GLOBAL */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins','Segoe UI',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#222;
    line-height:1.6;
}

img{
    max-width:100%;
    /* display:block; */
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* COMMON */
.section-title,
.services h2,
.causes h2,
.gallery h2,
.testimonials h2,
.help h2{
    font-size:36px;
    font-weight:700;
    color:#222;
    margin-bottom:45px;
    text-align:center;
}

.subtitle{
    color:#666;
    font-size:16px;
    margin-bottom:30px;
}

.no-data{
    text-align:center;
    font-size:18px;
    color:#777;
    margin-top:40px;
}

/* HEADER */
header{
    position:sticky;
    top:0;
    z-index:999;
    background:linear-gradient(90deg,#ffffff,#fff7ef);
    box-shadow:0 6px 25px rgba(0,0,0,0.08);
}

.container,
.navbar{
    width:92%;
    max-width:1250px;
    margin:auto;
    padding:10px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:78px;
    width:auto;
    object-fit:contain;
}

nav ul{
    display:flex;
    align-items:center;
    gap:24px;
}

nav ul li{
    margin:0;
}

nav ul li a{
    position:relative;
    color:#222;
    font-size:15px;
    font-weight:700;
    transition:0.3s;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:3px;
    background:#ff6600;
    border-radius:10px;
    transition:0.3s;
}

nav ul li a:hover{
    color:#ff6600;
}

nav ul li a:hover::after{
    width:100%;
}
/* 
.btn-nav{
    background:linear-gradient(45deg,#ff6600,#ff944d);
    color:white !important;
    padding:11px 24px;
    border-radius:35px;
    box-shadow:0 8px 20px rgba(255,102,0,0.35);
} */

.btn-nav::after,
.admin-login::after{
    display:none;
}

.admin-login{
    background:#1f1f1f;
    color:white !important;
    padding:11px 22px;
    border-radius:35px;
    box-shadow:0 8px 18px rgba(0,0,0,0.18);
}

.admin-login:hover{
    background:#ff6600;
}

/* BUTTONS */
.btn,
.submit-btn,
.card-btn,
.apply-btn,
.pay-btn,
.popup-btn{
    display:inline-block;
    border:none;
    cursor:pointer;
    background:linear-gradient(45deg,#ff6600,#ff944d);
    color:#ffffff;
    padding:13px 28px;
    border-radius:30px;
    font-size:16px;
    font-weight:600;
    text-align:center;
    transition:all 0.3s ease;
}

.btn:hover,
.submit-btn:hover,
.card-btn:hover,
.apply-btn:hover,
.pay-btn:hover,
.popup-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(255,102,0,0.35);
}

/* HOME HERO */
.hero{
    min-height:650px;
    background:
        linear-gradient(90deg,rgba(0,0,0,0.78),rgba(0,0,0,0.45)),
        url('../images/banner.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    padding:80px 20px;
}

.hero-text{
    max-width:850px;
}

.hero h1{
    font-size:56px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:18px;
}

.hero p{
    font-size:22px;
    margin-bottom:18px;
    color:#f1f1f1;
}

/* SERVICES */
.services{
    padding:90px 20px;
    background:#f8fafc;
    text-align:center;
}

.services-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-box{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.card,
.service-card{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card{
    width:300px;
    padding:30px;
}

.card:hover,
.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

.service-card{
    display:flex;
    flex-direction:column;
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-card-content{
    padding:24px;
    text-align:center;
}

.service-card h3,
.service-card-content h3,
.card h3{
    font-size:22px;
    color:#ff6600;
    margin-bottom:10px;
}

.service-card p,
.service-card-content p,
.card p{
    font-size:15px;
    color:#555;
    line-height:1.7;
}

/* CAUSES */
.causes{
    padding:90px 20px;
    background:#ffffff;
    text-align:center;
}

.causes-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.cause-card{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
    transition:0.3s;
}

.cause-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.14);
}

.cause-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.cause-card h3{
    font-size:24px;
    color:#222;
    margin:22px 20px 8px;
}

.cause-card p{
    color:#666;
    font-size:15px;
    padding:0 25px;
}

.cause-card .btn{
    margin:22px 0 28px;
}

/* ABOUT HOME */
.about-home{
    padding:90px 20px;
    background:linear-gradient(135deg,#fff7ef,#ffffff);
    text-align:center;
}

.about-home h2{
    font-size:36px;
    color:#222;
    margin-bottom:20px;
}

.about-home p{
    max-width:900px;
    margin:auto;
    font-size:18px;
    color:#555;
    line-height:1.9;
}

/* HELP */
.help{
    padding:90px 20px;
    background:#f8fafc;
    text-align:center;
}

.help-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.help-box{
    background:white;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
    transition:0.3s;
}

.help-box:hover{
    transform:translateY(-8px);
}

.help-icon{
    font-size:42px;
    color:#ff6600;
    margin-bottom:15px;
}

.help-box h3{
    font-size:22px;
    margin-bottom:10px;
}

.help-box p{
    color:#666;
}

/* STATS */
.stats{
    background:linear-gradient(45deg,#ff6600,#ff944d);
    padding:85px 20px;
    color:white;
}

.stats-container{
    max-width:1150px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
    text-align:center;
}

.stat-box{
    padding:25px 15px;
}

.stat-icon{
    font-size:42px;
    margin-bottom:12px;
}

.stat-box h2{
    font-size:48px;
    font-weight:800;
}

.stat-box p{
    font-size:17px;
}

/* GALLERY */
.gallery{
    padding:90px 20px;
    background:#ffffff;
    text-align:center;
}

.gallery-container{
    max-width:1150px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-item{
    height:240px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 22px rgba(0,0,0,0.08);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* TESTIMONIALS */
.testimonials{
    padding:90px 20px;
    background:#f8fafc;
    text-align:center;
}

.testimonial-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.testimonial-card{
    background:white;
    padding:35px 28px;
    border-radius:20px;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
}

.testimonial-card p{
    color:#555;
    font-size:16px;
    font-style:italic;
}

.testimonial-card h4{
    margin-top:20px;
    color:#ff6600;
}

/* CTA */
.cta{
    background:linear-gradient(90deg,rgba(255,102,0,0.95),rgba(255,148,77,0.95));
    color:white;
    padding:90px 20px;
    text-align:center;
}

.cta h2{
    font-size:40px;
    margin-bottom:12px;
}

.cta p{
    font-size:18px;
    margin-bottom:15px;
}

/* PAGE HEROES */
.about-hero,
.contact-hero,
.donate-hero{
    background:linear-gradient(45deg,#ff6600,#ff944d);
    color:white;
    text-align:center;
    padding:80px 20px;
}

.about-hero h1,
.contact-hero h1,
.donate-hero h1{
    font-size:42px;
    margin-bottom:10px;
}

.about-hero p,
.contact-hero p,
.donate-hero p{
    max-width:850px;
    margin:auto;
    font-size:18px;
}

/* ABOUT PAGE */
.about-section,
.values,
.founder,
.team{
    padding:80px 20px;
    text-align:center;
}

.about-container,
.founder-container{
    max-width:900px;
    margin:auto;
}

.about-container p,
.founder p{
    font-size:18px;
    color:#555;
    line-height:1.8;
    margin-top:15px;
}

.mission-vision{
    padding:80px 20px;
    background:#f8fafc;
}

.mv-container,
.values-container,
.team-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
}

.mv-box,
.value-box,
.team-card{
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
}

.team-card img{
    height:230px;
    width:100%;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:15px;
}

/* DONATE PAGE */
.donate-section{
    padding:80px 20px;
    background:#f8fafc;
}

.donate-container{
    max-width:650px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,0.1);
}

.donate-container form{
    display:flex;
    flex-direction:column;
}

.donate-container label{
    margin-top:15px;
    font-weight:600;
}

.donate-container input{
    width:100%;
    padding:13px;
    margin-top:6px;
    margin-bottom:12px;
    border:1px solid #ddd;
    border-radius:10px;
}

/* MODERN DONATE PAGE */
.donate-modern{
    min-height:85vh;
    padding:80px 20px;
    background:linear-gradient(135deg,#fff7ef,#f5f7fa);
    display:flex;
    align-items:center;
    justify-content:center;
}

.donate-card{
    width:100%;
    max-width:1150px;
    background:white;
    border-radius:25px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1fr;
    box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

.donate-left{
    background:linear-gradient(135deg,#ff6600,#ff944d);
    color:white;
    padding:60px 45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.donate-left h1{
    font-size:42px;
    margin-bottom:18px;
}

.donate-left p{
    font-size:18px;
    line-height:1.8;
}

.donate-points{
    margin:25px 0;
}

.donate-points p{
    margin:10px 0;
    font-weight:600;
}

.donate-right{
    padding:45px;
    text-align:center;
}

.qr-box{
    width:230px;
    height:230px;
    margin:20px auto 15px;
    border:2px dashed #ff6600;
    border-radius:18px;
    padding:12px;
    background:#fff8f2;
}

.qr-box img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.upi-id{
    margin-bottom:28px;
}

.donate-right form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.donate-right input{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:12px;
}

.upload-label{
    text-align:left;
    font-weight:600;
}

/* CONTACT */
.contact-section{
    padding:80px 20px;
    background:#f8fafc;
}

.contact-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.contact-info,
.contact-form{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.contact-info p{
    margin-top:12px;
    font-size:16px;
}

.contact-form label{
    margin-top:10px;
    font-weight:600;
    display:block;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:13px;
    margin-top:6px;
    margin-bottom:15px;
    border-radius:10px;
    border:1px solid #ddd;
}

.contact-form textarea{
    height:130px;
    resize:none;
}

/* MEMBERSHIP */
.membership-section{
    padding:80px 20px;
    background:#f8fafc;
}

.membership-container{
    max-width:1000px;
    margin:auto;
    background:white;
    padding:45px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,0.1);
}

.membership-container h1{
    font-size:36px;
    margin-bottom:10px;
}

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

.full-width{
    grid-column:span 2;
}

.form-group{
    display:flex;
    flex-direction:column;
    margin-bottom:18px;
}

.form-group label{
    font-weight:600;
    margin-bottom:7px;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:13px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:#ff6600;
    box-shadow:0 0 0 3px rgba(255,102,0,0.12);
}

.otp-row{
    display:flex;
    gap:10px;
}

.otp-row input{
    flex:1;
}

.otp-btn{
    background:#ff9800;
    color:white;
    border:none;
    padding:12px 18px;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
}

.membership-fee{
    margin-top:25px;
    font-size:18px;
    font-weight:700;
}


.voucher-section{
    padding:80px 20px;
    background:linear-gradient(135deg,#fff4e6,#ffe6d6);
    min-height:70vh;
}

.voucher-container{
    max-width:1100px;
    margin:auto;
    background:white;
    padding:45px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,0.1);
    text-align:center;
}

.voucher-container h1{
    font-size:36px;
    color:#222;
    margin-bottom:10px;
}

.card-grid,
.voucher-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
    margin-top:30px;
}

.voucher-card{
    background:#ffffff;
    border:1px solid #ffe0c5;
    border-radius:20px;
    padding:28px;
    text-align:center;
    color:#333;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
    transition:0.3s;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:250px;
}

.voucher-card:hover{
    transform:translateY(-8px);
    border-color:#ff6600;
    box-shadow:0 18px 35px rgba(0,0,0,0.14);
}

.voucher-card img,
.voucher-img{
    width:100%;
    height:190px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:15px;
}

.card-icon{
    font-size:48px;
    margin-bottom:15px;
}

.voucher-card h3{
    font-size:22px;
    color:#222;
    margin-bottom:10px;
}

.voucher-card p{
    font-size:15px;
    color:#555;
    margin:7px 0;
}

.voucher-types,
.plan-options{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:30px;
}

.voucher-types .voucher-card,
.plan-card{
    min-height:auto;
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px;
    border:2px solid #eee;
    border-radius:14px;
    cursor:pointer;
    transition:0.3s;
    font-weight:600;
    background:white;
    text-align:left;
}

.voucher-types .voucher-card:hover,
.plan-card:hover{
    border-color:#ff6600;
    background:#fff3eb;
    transform:translateY(-3px);
}

.voucher-types .voucher-card input,
.plan-card input{
    transform:scale(1.25);
} 

/* TABLE */
.table-container{
    margin-top:30px;
    overflow-x:auto;
}

.voucher-table{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 22px rgba(0,0,0,0.08);
}

.voucher-table thead{
    background:#ff6600;
    color:white;
}

.voucher-table th,
.voucher-table td{
    padding:15px;
    text-align:left;
    border-bottom:1px solid #eee;
}

.voucher-table tr:hover{
    background:#fff6ef;
}

.edit-btn,
.delete-btn{
    color:white;
    padding:7px 13px;
    border-radius:8px;
    font-size:13px;
    margin-right:5px;
}

.edit-btn{
    background:#4CAF50;
}

.delete-btn{
    background:#f44336;
}

/* APPLY / PAYMENT / SUCCESS */
.apply-section,
.payment-section,
.payment-success{
    padding:80px 20px;
    background:#f8fafc;
    display:flex;
    justify-content:center;
}

.apply-container,
.payment-container,
.payment-box,
.voucher-success-box{
    background:#fff;
    padding:38px;
    width:100%;
    max-width:520px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,0.1);
}

.apply-container h2,
.payment-container h2,
.payment-box h2{
    text-align:center;
    margin-bottom:22px;
}

.apply-container label{
    display:block;
    margin-top:12px;
    font-weight:600;
}

.apply-container input,
.apply-container select{
    width:100%;
    padding:13px;
    margin-top:6px;
    border:1px solid #ddd;
    border-radius:10px;
}

.payment-container{
    text-align:center;
}

.payment-container p,
.payment-details p{
    margin:10px 0;
    font-size:16px;
}

.amount{
    font-size:24px;
    font-weight:800;
    color:#ff6600;
}

.paid-badge{
    background:#22c55e;
    color:white;
    padding:5px 12px;
    border-radius:20px;
    font-size:13px;
}

.success-buttons{
    margin-top:25px;
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
}

.print-btn,
.success-btn{
    padding:11px 18px;
    border-radius:10px;
    border:none;
    color:white;
    cursor:pointer;
}

.print-btn{
    background:#007bff;
}

.success-btn{
    background:#28a745;
}

/* POPUP */
.popup-overlay{
    display:none;
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-box{
    width:370px;
    max-width:90%;
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.3);
    animation:popupFade 0.4s ease;
    position:relative;
}

.popup-header{
    background:linear-gradient(45deg,#ff6600,#ff944d);
    color:white;
    padding:18px;
    font-size:20px;
    font-weight:700;
    text-align:center;
}

.popup-body{
    padding:28px;
    text-align:center;
}

.close-btn{
    position:absolute;
    top:10px;
    right:15px;
    font-size:25px;
    color:white;
    background:rgba(0,0,0,0.45);
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    cursor:pointer;
    z-index:10000;
}

.offer-list{
    margin:15px 0;
    color:#333;
}

.popup-note{
    color:#ff6600;
    font-weight:700;
}

@keyframes popupFade{
    from{
        transform:scale(0.75);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* FOOTER */
footer{
    background:#222;
    color:white;
    text-align:center;
    padding:20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:30px;
    background:#222;
    color:white;
    padding:55px 8%;
}

.footer-box h3{
    margin-bottom:16px;
}

.footer-box p{
    margin:7px 0;
    font-size:15px;
    color:#ddd;
}

.footer-box ul li{
    margin:9px 0;
}

.footer-box ul li a{
    color:#ddd;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#ff944d;
}

.footer-bottom{
    background:#111;
    color:white;
    text-align:center;
    padding:16px;
}

/* WHATSAPP */
.whatsapp{
    position:fixed;
    bottom:22px;
    right:22px;
    background:#25D366;
    color:white;
    padding:14px 22px;
    border-radius:50px;
    font-weight:700;
    box-shadow:0 8px 22px rgba(0,0,0,0.25);
    z-index:999;
    transition:0.3s;
}

.whatsapp:hover{
    background:#1ebe5d;
    transform:translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:992px){
    .hero h1{
        font-size:44px;
    }

    .hero p{
        font-size:19px;
    }

    nav ul{
        gap:15px;
    }

    nav ul li a{
        font-size:14px;
    }

    .logo img{
        height:68px;
    }
}

@media(max-width:768px){

    header{
        position:relative;
    }

    .container,
    .navbar{
        flex-direction:column;
        gap:15px;
        padding:15px 0;
    }

    nav ul{
        flex-direction:column;
        gap:12px;
        text-align:center;
    }

    .logo img{
        height:65px;
    }

    .hero{
        min-height:560px;
        padding:70px 18px;
    }

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

    .hero p{
        font-size:17px;
    }

    .section-title,
    .services h2,
    .causes h2,
    .gallery h2,
    .testimonials h2,
    .help h2,
    .about-home h2,
    .cta h2{
        font-size:30px;
    }

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

    .full-width{
        grid-column:span 1;
    }

    .otp-row{
        flex-direction:column;
    }

    .voucher-types,
    .plan-options{
        grid-template-columns:1fr;
    }

    .donate-card{
        grid-template-columns:1fr;
    }

    .donate-left,
    .donate-right{
        padding:35px 25px;
    }

    .membership-container,
    .voucher-container,
    .donate-container,
    .contact-info,
    .contact-form,
    .apply-container,
    .payment-container,
    .payment-box,
    .voucher-success-box{
        padding:28px;
    }

    .submit-btn,
    .apply-btn,
    .pay-btn{
        width:100%;
    }

    .footer-box{
        text-align:center;
    }
}

@media(max-width:480px){

    .hero h1{
        font-size:30px;
    }

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

    .btn{
        width:100%;
        margin-top:12px;
    }

    .gallery-item{
        height:210px;
    }

    .whatsapp{
        right:15px;
        bottom:15px;
        padding:12px 16px;
        font-size:14px;
    }
}

/* ========================= */
/* VOUCHER CARD SECTION */
/* ========================= */

.card-grid{
display:flex;
flex-wrap:wrap;
gap:20px;
justify-content:center;
}

/* CARD */
.voucher-card{
width:300px;   /* ↓ reduced from large size */
background:#fff;
border-radius:12px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
overflow:hidden;
transition:0.3s;
text-align:center;
padding-bottom:15px;
}

.voucher-card:hover{
transform:translateY(-5px);
}

/* IMAGE */
.voucher-image{
width:100%;
height:160px;   /* ↓ reduced height */
object-fit:cover;
}

/* TITLE */
.voucher-card h3{
font-size:18px;
margin:10px 0 5px;
color:#ff6600;
}

/* TEXT */
.voucher-card p{
font-size:13px;
margin:4px 0;
color:#444;
}

/* APPLY BUTTON */
.voucher-card .btn{
display:inline-block;
margin-top:10px;
padding:8px 18px;
background:#ff6600;
color:#fff;
border-radius:20px;
text-decoration:none;
font-size:13px;
}

/* RESPONSIVE */
@media(max-width:768px){
.voucher-card{
width:90%;
}
}


.category-filter{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin:25px 0;
}

.category-filter label{
background:#fff;
padding:12px 22px;
border-radius:30px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
font-weight:600;
cursor:pointer;
}

.category-filter input{
margin-right:8px;
}

.selected-title{
text-align:center;
margin-bottom:20px;
color:#222;
}

.table-wrapper{
overflow-x:auto;
background:#fff;
padding:20px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.voucher-table{
width:100%;
border-collapse:collapse;
margin-bottom: 50px;
}

.voucher-table th{
background:#ff6600;
color:#fff;
padding:14px;
text-align:center;
}

.voucher-table td{
padding:12px;
border-bottom:1px solid #eee;
text-align:center;
vertical-align:middle;
}

.table-img{
width:80px;
height:60px;
object-fit:cover;
border-radius:8px;
}

.no-data{
font-weight:bold;
color:red;
padding:25px;
}

.apply-btn{
background:#ff6600;
color:#fff;
padding:8px 16px;
border-radius:25px;
text-decoration:none;
font-weight:600;
display:inline-block;
}

.apply-btn:hover{
background:#e65c00;
}

.search-box{
width:100%;
display:flex;
justify-content:center;
gap:10px;
margin-top:22px;
flex-wrap:wrap;
}

.search-box input{
width:360px;
max-width:100%;
padding:12px 15px;
border:1px solid #ddd;
border-radius:30px;
outline:none;
}

.search-box button,
.reset-btn{
border:none;
background:#ff6600;
color:#fff;
padding:12px 22px;
border-radius:30px;
font-weight:600;
text-decoration:none;
cursor:pointer;
}

.reset-btn{
background:#222;
}

.apply-page{
background:#f5f7fb;
padding:60px 20px;
}

.apply-layout{
max-width:1150px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:35px;
align-items:start;
}

.apply-info{
display:flex;
flex-direction:column;
gap:20px;
}

.info-card{
background:#fff;
padding:28px;
border-radius:16px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
border-left:5px solid #ff6600;
}

.info-card h3{
color:#ff6600;
margin-bottom:10px;
font-size:22px;
}

.info-card h2{
margin-bottom:15px;
font-size:26px;
color:#111;
}

.info-card p{
line-height:1.7;
color:#333;
margin-bottom:8px;
}

.apply-form-box{
background:#fff;
padding:35px;
border-radius:16px;
box-shadow:0 8px 30px rgba(0,0,0,0.1);
border:1px solid #ffd2b8;
}

.apply-form-box h2{
text-align:center;
margin-bottom:25px;
font-size:26px;
color:#111;
}

.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.form-group{
margin-bottom:20px;
}

.form-group label{
display:block;
font-weight:600;
margin-bottom:8px;
color:#111;
}

.form-group input,
.form-group select{
width:100%;
border:none;
border-bottom:1px solid #ccc;
padding:12px 5px;
font-size:15px;
outline:none;
background:transparent;
}

.form-group input:focus,
.form-group select:focus{
border-bottom:2px solid #ff6600;
}

.full{
width:100%;
}

.proceed-btn{
background:#ff6600;
color:#fff;
border:none;
padding:13px 26px;
border-radius:30px;
font-weight:700;
cursor:pointer;
font-size:15px;
box-shadow:0 6px 18px rgba(255,102,0,0.35);
}

.proceed-btn:hover{
background:#e65c00;
}

.error-msg{
background:#ffe6e6;
color:red;
padding:12px;
border-radius:8px;
text-align:center;
font-weight:700;
margin-bottom:20px;
}

@media(max-width:900px){
.apply-layout{
grid-template-columns:1fr;
}

.form-row{
grid-template-columns:1fr;
}
}


.apply-cry-page{
background:#fffdf8;
padding:55px 20px;
}

.apply-cry-container{
max-width:1180px;
margin:auto;
display:grid;
grid-template-columns:1.1fr 0.9fr;
gap:45px;
align-items:start;
}

.apply-left h1{
font-size:34px;
margin-bottom:18px;
color:#111;
}

.apply-left p{
font-size:16px;
line-height:1.7;
color:#333;
}

.yellow-line{
width:120px;
height:4px;
background:#ffcc00;
border-radius:20px;
margin:22px 0;
}

.benefit-card{
background:#fff;
padding:24px;
border-radius:14px;
box-shadow:0 6px 22px rgba(0,0,0,0.08);
margin-bottom:18px;
}

.benefit-card h2{
color:#ff6600;
margin-bottom:12px;
font-size:24px;
}

.apply-form-panel{
background:#fff;
border:2px solid #ffcc00;
border-radius:12px;
padding:30px;
box-shadow:0 8px 30px rgba(0,0,0,0.08);
}

.apply-form-panel h2{
text-align:center;
margin-bottom:25px;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:22px 28px;
}

.line-group label{
display:block;
font-weight:600;
font-size:14px;
margin-bottom:6px;
}

.line-group input{
width:100%;
border:none;
border-bottom:1px solid #bbb;
padding:10px 2px;
outline:none;
background:transparent;
}

.line-group input:focus{
border-bottom:2px solid #ff6600;
}

.plan-box{
margin-top:28px;
}

.plan-box h3{
font-size:16px;
margin-bottom:15px;
}

.plan-option{
display:flex;
align-items:center;
gap:10px;
padding:13px;
border:1px solid #ddd;
border-radius:8px;
margin-bottom:12px;
cursor:pointer;
}

.plan-option:hover{
border-color:#ff6600;
background:#fff6ef;
}

.full-line{
margin-top:15px;
}

.proceed-btn{
width:100%;
background:#ffcc00;
color:#111;
border:none;
padding:14px;
border-radius:8px;
font-weight:700;
font-size:16px;
margin-top:20px;
cursor:pointer;
}

.proceed-btn:hover{
background:#ffb800;
}

.error-msg{
background:#ffe6e6;
color:red;
padding:12px;
border-radius:8px;
text-align:center;
font-weight:700;
margin-bottom:20px;
}

@media(max-width:900px){
.apply-cry-container{
grid-template-columns:1fr;
}

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


/* MAIN SECTION */

.apply-section{
padding:50px 20px;
background:#f8f8f8;
}

.apply-container{
max-width:1200px;
margin:auto;
display:flex;
gap:40px;
}

/* LEFT SIDE */

.apply-left{
flex:1;
}

.apply-left h1{
font-size:32px;
margin-bottom:10px;
}

.subtitle{
color:#666;
margin-bottom:20px;
}

.info-box{
background:white;
padding:20px;
border-radius:10px;
margin-bottom:20px;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.info-box h3{
color:#ff6600;
margin-bottom:10px;
}

/* RIGHT SIDE */

.apply-right{
flex:1;
background:white;
padding:30px;
border-radius:12px;
border:2px solid #ffcc00;
}

.apply-right h2{
text-align:center;
margin-bottom:20px;
}

/* FORM */

.form-row{
display:flex;
gap:15px;
margin-bottom:15px;
}

.form-group{
flex:1;
display:flex;
flex-direction:column;
}

.form-group label{
font-size:14px;
margin-bottom:5px;
}

.form-group input{
padding:10px;
border:none;
border-bottom:1px solid #ccc;
outline:none;
}

/* BUTTON */

.submit-btn{
width:100%;
padding:12px;
background:#ff6600;
color:white;
border:none;
border-radius:25px;
cursor:pointer;
margin-top:10px;
}

/* QR */

.qr-box{
text-align:center;
margin-top:25px;
}

.qr-box img{
width:150px;
margin:10px 0;
}

/* ONLINE BUTTON */

.online-btn{
text-align:center;
margin-top:15px;
}

.online-btn a{
display:inline-block;
padding:10px 20px;
background:#000;
color:white;
border-radius:25px;
text-decoration:none;
}

/* RESPONSIVE */

@media(max-width:768px){

.apply-container{
flex-direction:column;
}

.form-row{
flex-direction:column;
}

}

.cry-donate-section{
background:#fff;
padding:60px 20px;
}

.cry-donate-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1.2fr 0.8fr;
gap:40px;
align-items:flex-start;
}

.cry-donate-left h1{
font-size:34px;
margin-bottom:20px;
color:#111;
}

.cry-donate-left h2{
font-size:30px;
margin:30px 0 15px;
color:#222;
}

.cry-donate-left p{
font-size:16px;
line-height:1.8;
color:#333;
margin-bottom:18px;
}

.cry-donate-left ul{
padding-left:20px;
}

.cry-donate-left ul li{
margin-bottom:12px;
font-size:16px;
}

.yellow-line{
width:140px;
height:4px;
background:#ffd21f;
border-radius:10px;
margin:25px 0;
}

.cry-donate-right{
position:sticky;
top:110px;
}

.donation-card{
background:#fff;
border:2px solid #ffd21f;
border-radius:4px;
padding:30px;
box-shadow:0 10px 35px rgba(0,0,0,0.12);
}

.donation-card h3{
font-size:24px;
margin-bottom:20px;
text-align:center;
color:#111;
}

.donation-card label{
display:block;
font-size:14px;
font-weight:600;
margin:15px 0 6px;
color:#111;
}

.donation-card input{
width:100%;
height:45px;
border:1px solid #ddd;
border-radius:6px;
padding:0 12px;
font-size:14px;
outline:none;
}

.donation-card input:focus{
border-color:#ffd21f;
}

.donation-lock{
margin:22px 0 15px;
font-size:15px;
font-weight:600;
color:#333;
}

.amount-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
margin-bottom:15px;
}

.amount-btn{
height:45px;
border:1px solid #ddd;
background:#fff;
border-radius:7px;
font-size:15px;
font-weight:700;
cursor:pointer;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.amount-btn.active,
.amount-btn:hover{
background:#ffd21f;
border-color:#ffd21f;
}

.donation-msg{
font-size:14px;
text-align:center;
color:#555;
margin:18px 0;
line-height:1.6;
}

.donate-pay-btn{
width:100%;
height:48px;
background:#ffd21f;
border:none;
border-radius:30px;
font-size:16px;
font-weight:700;
cursor:pointer;
box-shadow:0 6px 18px rgba(255,210,31,0.45);
}

.donate-pay-btn:hover{
background:#ffcc00;
}

@media(max-width:900px){

.cry-donate-container{
grid-template-columns:1fr;
}

.cry-donate-right{
position:static;
}

}

@media(max-width:480px){

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

.donation-card{
padding:22px;
}

.cry-donate-left h1{
font-size:28px;
}

}


.tc-btn{
background:#111;
color:#fff;
border:none;
padding:8px 14px;
border-radius:20px;
cursor:pointer;
font-size:13px;
font-weight:600;
}

.tc-btn:hover{
background:#ff6600;
}

.tc-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
justify-content:center;
align-items:center;
z-index:9999;
}

.tc-box{
background:#fff;
width:420px;
max-width:90%;
padding:28px;
border-radius:14px;
position:relative;
box-shadow:0 10px 35px rgba(0,0,0,0.25);
}

.tc-box h3{
color:#ff6600;
margin-bottom:15px;
font-size:22px;
}

.tc-box p{
font-size:15px;
line-height:1.7;
color:#333;
}

.tc-close{
position:absolute;
top:12px;
right:18px;
font-size:26px;
font-weight:bold;
cursor:pointer;
color:#111;
}

.tc-close:hover{
color:#ff6600;
}

/* =========================================================
   PREMIUM FINAL UI OVERRIDES
   Keep this section at the END of style.css
   This fixes duplicate styles and gives consistent premium UI
========================================================= */

:root{
    --primary:#ff6600;
    --primary-dark:#e85d00;
    --primary-light:#fff3e8;
    --yellow:#ffcc00;
    --dark:#121212;
    --text:#222;
    --muted:#666;
    --light:#f8fafc;
    --white:#ffffff;
    --border:#e9e9e9;
    --shadow-soft:0 10px 30px rgba(0,0,0,0.08);
    --shadow-hover:0 18px 45px rgba(0,0,0,0.14);
    --radius-sm:10px;
    --radius-md:16px;
    --radius-lg:24px;
}

/* GLOBAL PREMIUM RESET */
body{
    background:#fffdf9;
    color:var(--text);
    font-family:'Poppins','Segoe UI',Arial,sans-serif;
}

section{
    padding-top:80px;
    padding-bottom:80px;
}

h1,h2,h3,h4{
    letter-spacing:-0.4px;
}

p{
    color:var(--muted);
}

img{
    max-width:100%;
}

/* HEADER PREMIUM */
header{
    position:sticky;
    top:0;
    z-index:9999;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,102,0,0.08);
    box-shadow:0 8px 28px rgba(0,0,0,0.06);
}

.container,
.navbar{
    max-width:1280px;
    width:92%;
    padding:10px 0;
}

.logo img{
    height:72px;
}

nav ul{
    gap:22px;
}

nav ul li a{
    color:#202020;
    font-size:14.5px;
    font-weight:700;
    letter-spacing:0.2px;
}

nav ul li a:hover{
    color:var(--primary);
}

.admin-login{
    background:linear-gradient(135deg,#1d1d1d,#343434);
    color:#fff !important;
    padding:10px 20px;
    border-radius:999px;
}

.admin-login:hover{
    background:linear-gradient(135deg,var(--primary),#ff944d);
}

/* COMMON PREMIUM BUTTONS */
.btn,
.submit-btn,
.card-btn,
.apply-btn,
.pay-btn,
.popup-btn,
.proceed-btn,
.donate-pay-btn,
.search-box button,
.reset-btn,
.otp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:none;
    cursor:pointer;
    background:linear-gradient(135deg,var(--primary),#ff8a3d);
    color:#fff;
    padding:13px 26px;
    border-radius:999px;
    font-size:15px;
    font-weight:700;
    text-align:center;
    letter-spacing:0.2px;
    box-shadow:0 10px 24px rgba(255,102,0,0.24);
    transition:all 0.25s ease;
}

.btn:hover,
.submit-btn:hover,
.card-btn:hover,
.apply-btn:hover,
.pay-btn:hover,
.popup-btn:hover,
.proceed-btn:hover,
.donate-pay-btn:hover,
.search-box button:hover,
.reset-btn:hover,
.otp-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 34px rgba(255,102,0,0.34);
    background:linear-gradient(135deg,var(--primary-dark),#ff7c24);
}

.reset-btn{
    background:linear-gradient(135deg,#202020,#3b3b3b);
    box-shadow:0 10px 24px rgba(0,0,0,0.18);
}

.reset-btn:hover{
    background:linear-gradient(135deg,#111,#333);
}

/* INPUTS PREMIUM */
input,
select,
textarea{
    width:100%;
    padding:14px 15px;
    border-radius:12px;
    border:1px solid var(--border);
    background:#fbfbfb;
    color:#222;
    font-size:15px;
    outline:none;
    transition:all 0.25s ease;
}

input:focus,
select:focus,
textarea:focus{
    border-color:var(--primary);
    background:#fff;
    box-shadow:0 0 0 4px rgba(255,102,0,0.11);
}

label{
    color:#222;
}

/* HERO PREMIUM */
.hero{
    min-height:680px;
    background:
        radial-gradient(circle at top left,rgba(255,102,0,0.25),transparent 35%),
        linear-gradient(90deg,rgba(0,0,0,0.78),rgba(0,0,0,0.44)),
        url('../images/banner.jpg');
    background-size:cover;
    background-position:center;
}

.hero h1{
    font-size:58px;
    font-weight:900;
}

.hero p{
    color:#f4f4f4;
}

/* SECTION TITLES */
.section-title,
.services h2,
.causes h2,
.gallery h2,
.testimonials h2,
.help h2,
.about-home h2,
.cta h2{
    font-size:38px;
    font-weight:850;
    color:#151515;
    margin-bottom:40px;
}

.subtitle{
    color:#666;
    font-size:16px;
}

/* CARDS PREMIUM */
.card,
.service-card,
.cause-card,
.help-box,
.testimonial-card,
.value-box,
.mv-box,
.team-card,
.info-card,
.benefit-card,
.donate-container,
.contact-info,
.contact-form,
.membership-container,
.voucher-container,
.apply-container,
.payment-container,
.payment-box,
.voucher-success-box,
.apply-form-box,
.apply-form-panel,
.donation-card,
.popup-box,
.tc-box{
    background:#fff;
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-soft);
    border:1px solid rgba(255,102,0,0.07);
}

.card:hover,
.service-card:hover,
.cause-card:hover,
.help-box:hover,
.voucher-card:hover,
.testimonial-card:hover,
.info-card:hover,
.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

/* SERVICES / CAUSES */
.services,
.help,
.testimonials,
.membership-section,
.contact-section,
.apply-section,
.payment-section{
    background:linear-gradient(135deg,#fff7ef,#f8fafc);
}

.service-card,
.cause-card,
.voucher-card{
    overflow:hidden;
}

.service-card img,
.cause-card img,
.voucher-image,
.voucher-img{
    object-fit:cover;
}

.service-card h3,
.service-card-content h3,
.card h3,
.benefit-card h2,
.info-card h3{
    color:var(--primary);
}

/* VOUCHER LISTING PREMIUM */
.voucher-section{
    background:linear-gradient(135deg,#fff7ed,#fffdf9);
}

.voucher-container{
    max-width:1180px;
    padding:44px;
}

.card-grid,
.voucher-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:26px;
    justify-content:center;
}

.voucher-card{
    width:auto;
    min-height:260px;
    padding:22px;
    border:1px solid #ffe2c7;
    border-radius:20px;
    background:#fff;
    box-shadow:var(--shadow-soft);
}

.voucher-card h3{
    font-size:20px;
    color:#181818;
}

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

.voucher-card .btn,
.voucher-card .apply-btn{
    margin-top:14px;
}

/* CATEGORY FILTER PREMIUM */
.category-filter{
    gap:14px;
}

.category-filter label{
    border:1px solid #ffe0c5;
    background:#fff;
    padding:11px 20px;
    border-radius:999px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:0.25s;
}

.category-filter label:hover{
    border-color:var(--primary);
    background:var(--primary-light);
    transform:translateY(-2px);
}

/* TABLE PREMIUM */
.table-wrapper,
.table-container{
    border-radius:20px;
}

.voucher-table{
    border-radius:18px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
}

.voucher-table th{
    background:linear-gradient(135deg,var(--primary),#ff8a3d);
    color:#fff;
    font-size:14px;
    letter-spacing:0.2px;
}

.voucher-table td{
    color:#333;
}

.voucher-table tr:hover{
    background:#fff6ef;
}

/* APPLY VOUCHER PAGE PREMIUM */
.apply-cry-page{
    background:
        radial-gradient(circle at top right,rgba(255,204,0,0.18),transparent 32%),
        linear-gradient(135deg,#fffdf8,#fff7ef);
}

.apply-cry-container{
    max-width:1200px;
    grid-template-columns:1.05fr 0.95fr;
    gap:42px;
}

.apply-left h1{
    font-size:38px;
    font-weight:850;
    color:#111;
}

.apply-left p{
    color:#4d4d4d;
}

.yellow-line{
    background:linear-gradient(135deg,var(--yellow),var(--primary));
}

.benefit-card{
    padding:26px;
    border-left:5px solid var(--yellow);
    transition:0.25s;
}

.apply-form-panel{
    border:2px solid var(--yellow);
    border-radius:22px;
    padding:34px;
    position:relative;
    overflow:visible;
}

.apply-form-panel h2{
    font-size:28px;
    font-weight:800;
}

.form-grid{
    gap:22px;
}

.line-group label{
    font-weight:700;
    color:#222;
}

.line-group input{
    border:1px solid var(--border);
    border-radius:12px;
    padding:13px 14px;
    background:#fbfbfb;
}

.line-group input:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(255,102,0,0.1);
}

/* PLAN OPTIONS PREMIUM */
.plan-box{
    margin-top:30px;
}

.plan-box h3{
    font-size:18px;
    font-weight:800;
    margin-bottom:16px;
}

.plan-option{
    display:flex;
    align-items:center;
    gap:12px;
    padding:0;
    border:0;
    background:transparent;
    margin-bottom:13px;
    cursor:pointer;
    position:relative;
}

.plan-option input{
    margin-left:2px;
    transform:scale(1.22);
    accent-color:var(--primary);
}

.plan-text{
    position:relative;
    display:block;
    width:100%;
    padding:15px 16px;
    border:1px solid #e8e8e8;
    border-radius:14px;
    background:#fff;
    font-weight:700;
    color:#222;
    box-shadow:0 6px 18px rgba(0,0,0,0.04);
    transition:all 0.25s ease;
}

.plan-option:hover .plan-text,
.plan-option input:checked + .plan-text{
    border-color:var(--primary);
    background:#fff6ef;
    box-shadow:0 10px 24px rgba(255,102,0,0.14);
}

.plan-tooltip{
    visibility:hidden;
    opacity:0;
    position:absolute;
    left:0;
    top:58px;
    width:275px;
    background:#111;
    color:#fff;
    padding:13px 15px;
    border-radius:14px;
    font-size:13px;
    line-height:1.65;
    z-index:99999;
    box-shadow:0 12px 28px rgba(0,0,0,0.28);
    transition:0.22s ease;
    pointer-events:none;
}

.plan-tooltip:before{
    content:"";
    position:absolute;
    top:-7px;
    left:26px;
    border-left:7px solid transparent;
    border-right:7px solid transparent;
    border-bottom:7px solid #111;
}

.plan-text:hover .plan-tooltip{
    visibility:visible;
    opacity:1;
}

.proceed-btn{
    width:100%;
    margin-top:22px;
    border-radius:14px;
    padding:15px;
}

/* DONATION PREMIUM */
.cry-donate-section,
.donate-modern{
    background:linear-gradient(135deg,#fffdf8,#fff4e8);
}

.donation-card{
    border:2px solid var(--yellow);
    border-radius:24px;
}

.amount-btn{
    border-radius:12px;
    transition:0.25s;
}

.amount-btn.active,
.amount-btn:hover{
    background:linear-gradient(135deg,var(--yellow),#ffe173);
    border-color:var(--yellow);
    transform:translateY(-2px);
}

/* PAYMENT PREMIUM */
.payment-container,
.payment-box{
    max-width:560px;
    text-align:center;
}

.amount{
    color:var(--primary);
}

.paid-badge{
    background:linear-gradient(135deg,#16a34a,#22c55e);
}

/* SUCCESS PREMIUM */
.voucher-success-box{
    text-align:center;
}

.success-btn{
    background:#28a745;
}

.print-btn{
    background:#2563eb;
}

/* WHATSAPP FLOAT */
.whatsapp{
    background:#25D366;
    color:#fff;
    border-radius:999px;
    box-shadow:0 10px 28px rgba(37,211,102,0.35);
}

/* FOOTER PREMIUM */
footer,
.footer-container{
    background:#171717;
}

.footer-bottom{
    background:#0c0c0c;
}

/* ADMIN ACTION BUTTONS */
.edit-btn,
.delete-btn{
    display:inline-block;
    border-radius:999px;
    padding:8px 14px;
    font-weight:700;
}

.edit-btn{
    background:#16a34a;
}

.delete-btn{
    background:#dc2626;
}

/* RESPONSIVE PREMIUM */
@media(max-width:992px){
    .hero h1{
        font-size:44px;
    }

    .apply-cry-container,
    .cry-donate-container{
        grid-template-columns:1fr;
    }

    .cry-donate-right{
        position:static;
    }
}

@media(max-width:768px){
    header{
        position:relative;
    }

    .container,
    .navbar{
        flex-direction:column;
        gap:14px;
    }

    nav ul{
        flex-direction:column;
        gap:12px;
    }

    .logo img{
        height:64px;
    }

    .hero{
        min-height:560px;
    }

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

    .section-title,
    .services h2,
    .causes h2,
    .gallery h2,
    .testimonials h2,
    .help h2,
    .about-home h2,
    .cta h2{
        font-size:30px;
    }

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

    .apply-form-panel,
    .voucher-container,
    .membership-container,
    .donate-container,
    .contact-info,
    .contact-form{
        padding:26px;
    }

    .plan-tooltip{
        width:230px;
    }

    .btn,
    .submit-btn,
    .apply-btn,
    .pay-btn,
    .proceed-btn{
        width:100%;
    }
}

@media(max-width:480px){
    section{
        padding-top:60px;
        padding-bottom:60px;
    }

    .hero h1{
        font-size:30px;
    }

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

    .voucher-card{
        width:100%;
    }

    .apply-left h1{
        font-size:30px;
    }

    .apply-form-panel{
        padding:22px;
    }

    .whatsapp{
        right:14px;
        bottom:14px;
        padding:12px 16px;
        font-size:14px;
    }
}

