/* =======================================================
   DONATE PAGE
======================================================= */

*{

margin:0;

padding:0;

box-sizing:border-box;

scroll-behavior:smooth;

font-family:'Poppins',sans-serif;

}

body{

background:#fff;

color:#222;

overflow-x:hidden;

}

.container{

width:90%;

max-width:1300px;

margin:auto;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}



/* =======================================================
   HEADER
======================================================= */

#header{

position:fixed;

top:0;

left:0;

width:100%;

background:#fff;

box-shadow:0 8px 25px rgba(0,0,0,.08);

z-index:9999;

transition:.35s;

}

.navbar{

width:90%;

max-width:1300px;

margin:auto;

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

}

.logo img{

height:60px;

}



/* ==========================================
NAVIGATION
========================================== */

.nav-links{

display:flex;

align-items:center;

gap:35px;

}

.nav-links li a{

font-size:16px;

font-weight:600;

color:#222;

position:relative;

transition:.35s;

}

.nav-links li a:hover,

.nav-links li a.active{

color:#C8102E;

}

.nav-links li a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#C8102E;

transition:.35s;

}

.nav-links li a:hover::after,

.nav-links li a.active::after{

width:100%;

}



/* ==========================================
DONATE BUTTON
========================================== */

.donate-btn{

padding:14px 30px;

background:#C8102E;

color:#fff;

border-radius:50px;

font-weight:600;

transition:.35s;

}

.donate-btn:hover{

background:#a40d26;

transform:translateY(-4px);

}



/* ==========================================
MENU
========================================== */

.menu-btn{

display:none;

font-size:30px;

cursor:pointer;

color:#222;

}



/* =======================================================
   HERO SECTION
======================================================= */

.donate-hero{

position:relative;

width:100%;

height:100vh;

display:flex;

justify-content:center;

align-items:center;

overflow:hidden;

}

.donate-hero img{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

object-fit:cover;

animation:heroZoom 18s linear infinite;

}

.hero-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:linear-gradient(

90deg,

rgba(0,0,0,.75),

rgba(0,0,0,.45)

);

z-index:1;

}

.hero-content{

position:relative;

z-index:2;

max-width:900px;

text-align:center;

padding:20px;

color:#fff;

}

.hero-content span{

display:inline-block;

padding:12px 28px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(10px);

border:1px solid rgba(255,255,255,.2);

border-radius:50px;

font-size:14px;

font-weight:600;

letter-spacing:2px;

margin-bottom:25px;

text-transform:uppercase;

}

.hero-content h1{

font-size:72px;

font-weight:800;

line-height:1.15;

margin-bottom:25px;

text-shadow:0 10px 25px rgba(0,0,0,.3);

}

.hero-content p{

font-size:18px;

line-height:2;

max-width:760px;

margin:auto auto 45px;

color:#f5f5f5;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}



/* ==========================================
BUTTONS
========================================== */

.btn-primary{

padding:18px 38px;

background:#C8102E;

color:#fff;

border-radius:50px;

font-weight:600;

transition:.35s;

}

.btn-primary:hover{

background:#a40d26;

transform:translateY(-5px);

}

.btn-secondary{

padding:18px 38px;

border:2px solid #fff;

color:#fff;

border-radius:50px;

font-weight:600;

transition:.35s;

}

.btn-secondary:hover{

background:#fff;

color:#C8102E;

transform:translateY(-5px);

}



/* ==========================================
HERO ANIMATION
========================================== */

@keyframes heroZoom{

0%{

transform:scale(1);

}

100%{

transform:scale(1.08);

}

}

/* =======================================================
   DONATION OPTIONS
======================================================= */

.donation-section{

padding:120px 0;

background:#f8f9fb;

position:relative;

overflow:hidden;

}

.donation-section::before{

content:"";

position:absolute;

top:-180px;

right:-180px;

width:420px;

height:420px;

border-radius:50%;

background:rgba(200,16,46,.05);

}

.donation-section::after{

content:"";

position:absolute;

bottom:-150px;

left:-150px;

width:350px;

height:350px;

border-radius:50%;

background:rgba(200,16,46,.05);

}



/* ==========================================
SECTION TITLE
========================================== */

.section-title{

text-align:center;

max-width:760px;

margin:auto;

position:relative;

z-index:2;

}

.section-title span{

display:inline-block;

padding:12px 28px;

background:#ffe7ec;

color:#C8102E;

border-radius:50px;

font-size:14px;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:20px;

}

.section-title h2{

font-size:52px;

font-weight:800;

color:#111;

margin-bottom:20px;

line-height:1.2;

}

.section-title p{

font-size:17px;

line-height:1.9;

color:#666;

}



/* ==========================================
GRID
========================================== */

.donation-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

position:relative;

z-index:2;

}



/* ==========================================
CARD
========================================== */

.donation-card{

background:#fff;

padding:45px 35px;

border-radius:25px;

text-align:center;

box-shadow:0 18px 45px rgba(0,0,0,.08);

transition:.45s;

position:relative;

overflow:hidden;

}

.donation-card:hover{

transform:translateY(-12px);

box-shadow:0 28px 60px rgba(0,0,0,.15);

}

.donation-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:#C8102E;

transform:scaleX(0);

transform-origin:left;

transition:.45s;

}

.donation-card:hover::before{

transform:scaleX(1);

}



/* ==========================================
ICON
========================================== */

.donation-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:30px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#ffe7ec;

color:#C8102E;

font-size:34px;

transition:.45s;

}

.donation-card:hover .donation-icon{

background:#C8102E;

color:#fff;

transform:rotateY(180deg);

}



/* ==========================================
TEXT
========================================== */

.donation-card h3{

font-size:28px;

font-weight:700;

margin-bottom:18px;

color:#111;

}

.donation-card p{

font-size:16px;

line-height:1.9;

color:#666;

margin-bottom:30px;

}



/* ==========================================
BUTTON
========================================== */

.donation-card a{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 35px;

border-radius:50px;

background:#C8102E;

color:#fff;

font-weight:600;

transition:.35s;

}

.donation-card a:hover{

background:#111;

transform:translateY(-4px);

}



/* ==========================================
FEATURED CARD
========================================== */

.featured-card{

background:linear-gradient(135deg,#C8102E,#8B0C21);

color:#fff;

}

.featured-card h3,

.featured-card p{

color:#fff;

}

.featured-card .donation-icon{

background:#fff;

color:#C8102E;

}

.featured-card a{

background:#fff;

color:#C8102E;

}

.featured-card a:hover{

background:#111;

color:#fff;

}

/* =======================================================
   DONATION FORM
======================================================= */

.donate-form-section{

padding:120px 0;

background:#ffffff;

position:relative;

overflow:hidden;

}

.donate-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}



/* ==========================================
LEFT CONTENT
========================================== */

.donate-left span{

display:inline-block;

padding:12px 26px;

background:#ffe7ec;

color:#C8102E;

border-radius:40px;

font-size:14px;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:20px;

}

.donate-left h2{

font-size:50px;

font-weight:800;

line-height:1.2;

color:#111;

margin-bottom:25px;

}

.donate-left p{

font-size:17px;

line-height:2;

color:#666;

margin-bottom:35px;

}

.donate-left ul{

display:flex;

flex-direction:column;

gap:18px;

}

.donate-left ul li{

display:flex;

align-items:center;

gap:15px;

font-size:17px;

font-weight:500;

color:#333;

}

.donate-left ul li i{

color:#C8102E;

font-size:20px;

}



/* ==========================================
FORM BOX
========================================== */

.donate-form-box{

background:#fff;

padding:45px;

border-radius:25px;

box-shadow:0 18px 50px rgba(0,0,0,.08);

position:relative;

}

.donate-form-box form{

display:flex;

flex-direction:column;

gap:25px;

}



/* ==========================================
INPUT GROUP
========================================== */

.input-group{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.input-box{

display:flex;

flex-direction:column;

}

.input-box label{

font-size:15px;

font-weight:600;

margin-bottom:10px;

color:#222;

}



/* ==========================================
INPUTS
========================================== */

.input-box input,

.input-box select,

.input-box textarea{

width:100%;

padding:16px 18px;

border:1px solid #ddd;

border-radius:12px;

font-size:15px;

background:#fafafa;

outline:none;

transition:.35s;

}

.input-box textarea{

height:150px;

resize:none;

}

.input-box input:focus,

.input-box select:focus,

.input-box textarea:focus{

border-color:#C8102E;

background:#fff;

box-shadow:0 0 0 4px rgba(200,16,46,.08);

}

.full{

grid-column:1/-1;

}

/* =======================================================
   DONATION AMOUNT
======================================================= */

.amount-title{

display:block;

font-size:16px;

font-weight:700;

color:#222;

margin-bottom:15px;

}

.amount-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:15px;

margin-bottom:25px;

}

.amount-grid button{

padding:18px;

border:none;

border-radius:15px;

background:#f5f5f5;

font-size:17px;

font-weight:700;

color:#333;

cursor:pointer;

transition:.35s;

border:2px solid transparent;

}

.amount-grid button:hover{

background:#C8102E;

color:#fff;

transform:translateY(-5px);

box-shadow:0 12px 30px rgba(200,16,46,.25);

}

.amount-grid button.active{

background:#C8102E;

color:#fff;

border-color:#C8102E;

box-shadow:0 12px 30px rgba(200,16,46,.30);

}



/* ==========================================
CUSTOM AMOUNT
========================================== */

.input-box input[type="number"]{

font-weight:600;

font-size:17px;

}



/* ==========================================
DONATE BUTTON
========================================== */

.donate-submit{

width:100%;

display:flex;

justify-content:center;

align-items:center;

gap:12px;

padding:18px;

border:none;

border-radius:50px;

background:#C8102E;

color:#fff;

font-size:18px;

font-weight:700;

cursor:pointer;

transition:.35s;

margin-top:10px;

}

.donate-submit i{

font-size:18px;

}

.donate-submit:hover{

background:#111;

transform:translateY(-5px);

box-shadow:0 18px 35px rgba(0,0,0,.20);

}



/* ==========================================
FORM ANIMATION
========================================== */

.donate-form-box{

animation:fadeUp .8s ease;

}

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

/* =======================================================
   PAYMENT METHODS
======================================================= */

.payment-section{

padding:120px 0;

background:#f8f9fb;

position:relative;

overflow:hidden;

}

.payment-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:70px;

}



/* ==========================================
PAYMENT CARD
========================================== */

.payment-card{

background:#fff;

padding:40px 35px;

border-radius:25px;

text-align:center;

box-shadow:0 15px 45px rgba(0,0,0,.08);

transition:.4s;

position:relative;

overflow:hidden;

}

.payment-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.payment-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:#C8102E;

transform:scaleX(0);

transition:.4s;

transform-origin:left;

}

.payment-card:hover::before{

transform:scaleX(1);

}



/* ==========================================
ICON
========================================== */

.payment-icon{

width:85px;

height:85px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:#ffe7ec;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

color:#C8102E;

transition:.4s;

}

.payment-card:hover .payment-icon{

background:#C8102E;

color:#fff;

transform:rotateY(180deg);

}



/* ==========================================
TEXT
========================================== */

.payment-card h3{

font-size:28px;

font-weight:700;

margin-bottom:20px;

color:#111;

}

.payment-card p{

font-size:16px;

line-height:1.8;

color:#666;

margin-bottom:15px;

}

.payment-card ul{

text-align:left;

margin:25px 0;

display:flex;

flex-direction:column;

gap:12px;

}

.payment-card ul li{

font-size:15px;

color:#555;

line-height:1.7;

}

.payment-card h4{

font-size:22px;

font-weight:700;

color:#C8102E;

margin:15px 0;

word-break:break-word;

}



/* ==========================================
CARD ICONS
========================================== */

.card-icons{

display:flex;

justify-content:center;

gap:15px;

margin:25px 0;

}

.card-icons i{

font-size:38px;

color:#444;

transition:.3s;

}

.card-icons i:hover{

color:#C8102E;

transform:translateY(-5px);

}

/* =======================================================
   PAYMENT BUTTON
======================================================= */

.payment-btn{

display:inline-flex;

align-items:center;

justify-content:center;

margin-top:20px;

padding:15px 35px;

border-radius:50px;

background:#C8102E;

color:#fff;

font-size:15px;

font-weight:600;

transition:.35s;

}

.payment-btn:hover{

background:#111;

color:#fff;

transform:translateY(-5px);

box-shadow:0 18px 35px rgba(0,0,0,.18);

}



/* ==========================================
FEATURED PAYMENT CARD
========================================== */

.featured-payment{

background:linear-gradient(135deg,#C8102E,#8B0C21);

color:#fff;

position:relative;

overflow:hidden;

}

.featured-payment::after{

content:"";

position:absolute;

top:-120px;

right:-120px;

width:260px;

height:260px;

border-radius:50%;

background:rgba(255,255,255,.08);

}

.featured-payment h3,

.featured-payment p,

.featured-payment h4{

color:#fff;

}

.featured-payment .payment-icon{

background:#fff;

color:#C8102E;

}

.featured-payment .payment-btn{

background:#fff;

color:#C8102E;

font-weight:700;

}

.featured-payment .payment-btn:hover{

background:#111;

color:#fff;

}



/* ==========================================
PAYMENT CARD HOVER EFFECT
========================================== */

.payment-card:hover h3{

color:#C8102E;

transition:.35s;

}

.featured-payment:hover h3{

color:#fff;

}



/* ==========================================
PAYMENT GRID ANIMATION
========================================== */

.payment-card{

animation:fadePayment .8s ease;

}

@keyframes fadePayment{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}



/* ==========================================
PAYMENT RESPONSIVE IMAGE (OPTIONAL)
========================================== */

.payment-card img{

width:100%;

border-radius:15px;

margin-bottom:20px;

}

/* =======================================================
   IMPACT SECTION
======================================================= */

.impact-section{

padding:120px 0;

background:#ffffff;

position:relative;

overflow:hidden;

}

.impact-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:70px;

}



/* ==========================================
IMPACT CARD
========================================== */

.impact-card{

background:#fff;

padding:45px 30px;

border-radius:25px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

position:relative;

overflow:hidden;

}

.impact-card:hover{

transform:translateY(-12px);

box-shadow:0 28px 60px rgba(0,0,0,.15);

}

.impact-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:#C8102E;

transform:scaleX(0);

transform-origin:left;

transition:.4s;

}

.impact-card:hover::before{

transform:scaleX(1);

}



/* ==========================================
ICON
========================================== */

.impact-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:#ffe7ec;

color:#C8102E;

font-size:34px;

transition:.4s;

}

.impact-card:hover .impact-icon{

background:#C8102E;

color:#fff;

transform:rotateY(180deg);

}



/* ==========================================
COUNTER
========================================== */

.impact-card h2{

font-size:48px;

font-weight:800;

color:#C8102E;

margin-bottom:12px;

line-height:1;

}

.impact-card h3{

font-size:24px;

font-weight:700;

color:#111;

margin-bottom:15px;

}

.impact-card p{

font-size:16px;

line-height:1.9;

color:#666;

}

/* =======================================================
   WHY DONATE SECTION
======================================================= */

.why-donate-section{

padding:120px 0;

background:#f8f9fb;

position:relative;

overflow:hidden;

}

.why-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}



/* ==========================================
LEFT IMAGE
========================================== */

.why-image{

position:relative;

}

.why-image img{

width:100%;

border-radius:30px;

display:block;

box-shadow:0 20px 50px rgba(0,0,0,.15);

}



/* ==========================================
EXPERIENCE BOX
========================================== */

.experience-box{

position:absolute;

bottom:30px;

left:30px;

background:#C8102E;

color:#fff;

padding:25px 35px;

border-radius:20px;

box-shadow:0 20px 45px rgba(0,0,0,.18);

text-align:center;

}

.experience-box h2{

font-size:48px;

font-weight:800;

line-height:1;

margin-bottom:10px;

}

.experience-box p{

font-size:15px;

line-height:1.6;

}



/* ==========================================
RIGHT CONTENT
========================================== */

.why-content span{

display:inline-block;

padding:12px 28px;

background:#ffe7ec;

color:#C8102E;

border-radius:40px;

font-size:14px;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:20px;

}

.why-content h2{

font-size:52px;

font-weight:800;

color:#111;

line-height:1.2;

margin-bottom:25px;

}

.why-content>p{

font-size:17px;

line-height:2;

color:#666;

margin-bottom:35px;

}



/* ==========================================
FEATURE LIST
========================================== */

.why-list{

display:flex;

flex-direction:column;

gap:25px;

margin-bottom:40px;

}

.why-item{

display:flex;

align-items:flex-start;

gap:20px;

padding:22px;

background:#fff;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:.35s;

}

.why-item:hover{

transform:translateX(10px);

box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.why-icon{

width:70px;

height:70px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#ffe7ec;

color:#C8102E;

font-size:26px;

flex-shrink:0;

transition:.35s;

}

.why-item:hover .why-icon{

background:#C8102E;

color:#fff;

transform:rotateY(180deg);

}

.why-item h3{

font-size:22px;

font-weight:700;

margin-bottom:8px;

color:#111;

}

.why-item p{

font-size:15px;

line-height:1.8;

color:#666;

}



/* ==========================================
BUTTON
========================================== */

.why-content .btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 40px;

border-radius:50px;

background:#C8102E;

color:#fff;

font-weight:600;

transition:.35s;

}

.why-content .btn-primary:hover{

background:#111;

transform:translateY(-5px);

box-shadow:0 18px 40px rgba(0,0,0,.18);

}

/* =======================================================
   DONATION FAQ
======================================================= */

.donate-faq-section{

padding:120px 0;

background:#ffffff;

position:relative;

overflow:hidden;

}

.faq-container{

max-width:950px;

margin:70px auto 0;

display:flex;

flex-direction:column;

gap:22px;

}



/* ==========================================
FAQ ITEM
========================================== */

.faq-item{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.35s;

border-left:5px solid transparent;

}

.faq-item:hover{

transform:translateY(-5px);

box-shadow:0 20px 45px rgba(0,0,0,.12);

border-left:5px solid #C8102E;

}



/* ==========================================
QUESTION
========================================== */

.faq-question{

display:flex;

justify-content:space-between;

align-items:center;

padding:28px 35px;

cursor:pointer;

transition:.35s;

}

.faq-question h3{

font-size:22px;

font-weight:700;

color:#111;

transition:.35s;

}

.faq-question i{

font-size:22px;

color:#C8102E;

transition:.4s;

}



/* ==========================================
ANSWER
========================================== */

.faq-answer{

max-height:0;

overflow:hidden;

transition:max-height .45s ease;

padding:0 35px;

}

.faq-answer p{

font-size:16px;

line-height:1.9;

color:#666;

padding-bottom:28px;

}



/* ==========================================
ACTIVE FAQ
========================================== */

.faq-item.active{

border-left:5px solid #C8102E;

}

.faq-item.active .faq-question{

background:#fff7f8;

}

.faq-item.active .faq-question h3{

color:#C8102E;

}

.faq-item.active .faq-question i{

transform:rotate(45deg);

}

.faq-item.active .faq-answer{

max-height:350px;

}

/* =======================================================
   DONATION FAQ
======================================================= */

.donate-faq-section{

padding:120px 0;

background:#ffffff;

position:relative;

overflow:hidden;

}

.faq-container{

max-width:950px;

margin:70px auto 0;

display:flex;

flex-direction:column;

gap:22px;

}



/* ==========================================
FAQ ITEM
========================================== */

.faq-item{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.35s;

border-left:5px solid transparent;

}

.faq-item:hover{

transform:translateY(-5px);

box-shadow:0 20px 45px rgba(0,0,0,.12);

border-left:5px solid #C8102E;

}



/* ==========================================
QUESTION
========================================== */

.faq-question{

display:flex;

justify-content:space-between;

align-items:center;

padding:28px 35px;

cursor:pointer;

transition:.35s;

}

.faq-question h3{

font-size:22px;

font-weight:700;

color:#111;

transition:.35s;

}

.faq-question i{

font-size:22px;

color:#C8102E;

transition:.4s;

}



/* ==========================================
ANSWER
========================================== */

.faq-answer{

max-height:0;

overflow:hidden;

transition:max-height .45s ease;

padding:0 35px;

}

.faq-answer p{

font-size:16px;

line-height:1.9;

color:#666;

padding-bottom:28px;

}



/* ==========================================
ACTIVE FAQ
========================================== */

.faq-item.active{

border-left:5px solid #C8102E;

}

.faq-item.active .faq-question{

background:#fff7f8;

}

.faq-item.active .faq-question h3{

color:#C8102E;

}

.faq-item.active .faq-question i{

transform:rotate(45deg);

}

.faq-item.active .faq-answer{

max-height:350px;

}

/* =======================================================
   DONATE CTA
======================================================= */

.donate-cta{

position:relative;

padding:140px 0;

background:url("why.png") center center/cover no-repeat;

overflow:hidden;

}

.cta-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.70);

}

.cta-content{

position:relative;

z-index:2;

max-width:850px;

margin:auto;

text-align:center;

color:#fff;

}

.cta-content span{

display:inline-block;

padding:12px 28px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.18);

backdrop-filter:blur(10px);

border-radius:50px;

font-size:14px;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:25px;

}

.cta-content h2{

font-size:60px;

font-weight:800;

line-height:1.2;

margin-bottom:25px;

}

.cta-content p{

font-size:18px;

line-height:2;

max-width:720px;

margin:auto auto 45px;

color:#f3f3f3;

}



/* =======================================================
   FOOTER
======================================================= */

footer{

background:#111;

color:#ddd;

padding:90px 0 0;

}

.footer-container{

width:90%;

max-width:1300px;

margin:auto;

display:grid;

grid-template-columns:2fr 1fr 1fr 1.5fr;

gap:50px;

}

.footer-logo{

height:70px;

margin-bottom:25px;

}

.footer-col p{

font-size:15px;

line-height:1.9;

color:#bbb;

margin-bottom:30px;

}

.footer-col h3{

font-size:24px;

font-weight:700;

margin-bottom:25px;

color:#fff;

}



/* ==========================================
FOOTER LINKS
========================================== */

.footer-col ul{

display:flex;

flex-direction:column;

gap:16px;

}

.footer-col ul li a{

color:#bbb;

transition:.35s;

font-size:15px;

}

.footer-col ul li a:hover{

color:#C8102E;

padding-left:8px;

}



/* ==========================================
SOCIAL
========================================== */

.social-links{

display:flex;

gap:15px;

}

.social-links a{

width:45px;

height:45px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:#222;

color:#fff;

transition:.35s;

}

.social-links a:hover{

background:#C8102E;

transform:translateY(-5px);

}



/* ==========================================
NEWSLETTER
========================================== */

.footer-col form{

display:flex;

flex-direction:column;

gap:15px;

}

.footer-col input{

padding:16px 18px;

border:none;

border-radius:12px;

font-size:15px;

outline:none;

}

.footer-col button{

padding:16px;

border:none;

border-radius:12px;

background:#C8102E;

color:#fff;

font-size:16px;

font-weight:600;

cursor:pointer;

transition:.35s;

}

.footer-col button:hover{

background:#a40d26;

}



/* ==========================================
COPYRIGHT
========================================== */

.copyright{

margin-top:70px;

padding:25px;

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

font-size:15px;

color:#aaa;

}

.copyright strong{

color:#fff;

}

.web{
    color: red;
}

/* =======================================================
   RESPONSIVE DESIGN
======================================================= */

/* Tablet */
@media (max-width:992px){

.container{
    width:95%;
}

.navbar{
    padding:15px 0;
}

.nav-links{
    gap:20px;
}

.hero-content h1{
    font-size:50px;
}

.hero-content p{
    font-size:17px;
}

.donation-grid,
.payment-grid{
    grid-template-columns:repeat(2,1fr);
}

.impact-grid{
    grid-template-columns:repeat(2,1fr);
}

.donate-wrapper,
.why-wrapper{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:42px;
}

.why-content h2,
.donate-left h2{
    font-size:42px;
}

.footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

}



/* Mobile */
@media (max-width:768px){

.logo img{
    height:50px;
}

.menu-btn{
    display:block;
}

.nav-links{
    position:fixed;
    top:90px;
    left:-100%;
    width:100%;
    background:#fff;
    flex-direction:column;
    gap:20px;
    padding:35px 0;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.nav-links.active{
    left:0;
}

.donate-btn{
    display:none;
}

.hero-content span{
    font-size:12px;
    padding:10px 20px;
}

.hero-content h1{
    font-size:36px;
}

.hero-content p{
    font-size:15px;
    line-height:1.8;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.btn-primary,
.btn-secondary{
    width:100%;
    max-width:280px;
    text-align:center;
}

.section-title h2{
    font-size:34px;
}

.section-title p{
    font-size:15px;
}

.donation-grid,
.payment-grid,
.impact-grid{
    grid-template-columns:1fr;
}

.donate-wrapper,
.why-wrapper{
    grid-template-columns:1fr;
    gap:50px;
}

.input-group{
    grid-template-columns:1fr;
}

.amount-grid{
    grid-template-columns:repeat(2,1fr);
}

.experience-box{
    position:relative;
    left:0;
    bottom:0;
    margin-top:20px;
}

.experience-box h2{
    font-size:36px;
}

.why-content h2,
.donate-left h2{
    font-size:34px;
}

.why-item{
    flex-direction:column;
    text-align:center;
}

.faq-question{
    padding:22px;
}

.faq-question h3{
    font-size:18px;
}

.faq-answer{
    padding:0 22px;
}

.cta-content h2{
    font-size:36px;
}

.cta-content p{
    font-size:15px;
}

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.social-links{
    justify-content:center;
}

.footer-col ul{
    align-items:center;
}

}



/* Small Mobile */
@media (max-width:480px){

.hero-content h1{
    font-size:30px;
}

.section-title h2{
    font-size:28px;
}

.donate-left h2,
.why-content h2{
    font-size:28px;
}

.amount-grid{
    grid-template-columns:1fr;
}

.donate-form-box{
    padding:25px;
}

.payment-card,
.donation-card,
.impact-card{
    padding:30px 20px;
}

.cta-content h2{
    font-size:30px;
}

.footer-logo{
    height:60px;
}

}