/* ==========================
   RESET
========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,Helvetica,sans-serif;
background:#f5f7fb;
color:#222;
line-height:1.7;
}

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

a{
text-decoration:none;
color:inherit;
}

ul{
list-style:none;
}

/* ==========================
   CONTAINER
========================== */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

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

.header{
position:sticky;
top:0;
z-index:999;
background:#fff;
box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 0;
}

.logo-container{
display:flex;
align-items:center;
gap:12px;
}

.logo{
width:60px;
height:60px;
object-fit:contain;
}

.logo-text h2{
font-size:24px;
color:#0077b6;
margin-bottom:2px;
}

.logo-text span{
font-size:14px;
color:#666;
}

/* ==========================
   MENU
========================== */

.nav-menu ul{
display:flex;
align-items:center;
gap:30px;
}

.nav-menu a{
font-size:16px;
font-weight:600;
transition:.3s;
}

.nav-menu a:hover{
color:#0077b6;
}

/* ==========================
   HERO
========================== */

.hero{
padding:80px 0;
background:linear-gradient(135deg,#0077b6,#00b4d8);
color:#fff;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 420px;
gap:50px;
align-items:center;
}

.badge{
display:inline-block;
padding:10px 18px;
background:#fff;
color:#0077b6;
border-radius:40px;
font-size:14px;
font-weight:bold;
margin-bottom:25px;
}

.hero-content h1{
font-size:50px;
line-height:1.2;
margin-bottom:25px;
}

.hero-content p{
font-size:19px;
opacity:.95;
margin-bottom:35px;
}
/* ==========================
   HERO BUTTONS
========================== */

.hero-buttons{
display:flex;
flex-wrap:wrap;
gap:15px;
margin-top:25px;
}

.btn-primary,
.btn-secondary{
display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 28px;
border-radius:10px;
font-size:16px;
font-weight:700;
cursor:pointer;
transition:all .3s ease;
border:none;
}

.btn-primary{
background:#ffffff;
color:#0077b6;
}

.btn-primary:hover{
background:#f2f2f2;
transform:translateY(-2px);
}

.btn-secondary{
background:transparent;
border:2px solid #ffffff;
color:#ffffff;
}

.btn-secondary:hover{
background:#ffffff;
color:#0077b6;
}

/* ==========================
   HERO CARD
========================== */

.hero-card{
background:#ffffff;
color:#222;
padding:35px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.hero-card h3{
font-size:26px;
margin-bottom:20px;
color:#0077b6;
}

.hero-card ul li{
padding:12px 0;
border-bottom:1px solid #eeeeee;
font-size:16px;
}

.hero-card ul li:last-child{
border-bottom:none;
}

/* ==========================
   SECTIONS
========================== */

.awareness-section{
padding:80px 0;
background:#f8fafc;
}

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

.section-title span{
display:inline-block;
padding:8px 18px;
background:#0077b6;
color:#ffffff;
border-radius:30px;
font-size:14px;
font-weight:700;
margin-bottom:18px;
}

.section-title h2{
font-size:38px;
color:#222;
margin-bottom:18px;
}

.section-title p{
max-width:750px;
margin:auto;
font-size:18px;
color:#666;
}

/* ==========================
   SEARCH BOX
========================== */

.donation-card{
background:#ffffff;
padding:40px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
}

#loading{
font-size:18px;
font-weight:bold;
color:#0077b6;
margin-top:20px;
}

#results{
margin-top:35px;
display:grid;
gap:25px;
}

/* ==========================
   RESULT CARD
========================== */

.awareness-card{
background:#ffffff;
border-radius:15px;
padding:25px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
text-align:left;
transition:.3s;
}

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

.awareness-card h3{
font-size:24px;
color:#0077b6;
margin-bottom:15px;
}

.awareness-card p{
font-size:16px;
color:#555;
margin-bottom:15px;
}

.awareness-card .hero-buttons{
margin-top:15px;
}
/* ==========================
   ABOUT SECTION
========================== */

#about{
padding:80px 0;
background:#ffffff;
}

.content-box{
background:#f8fafc;
padding:45px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.content-box h2{
font-size:36px;
color:#0077b6;
margin-bottom:25px;
}

.content-box p{
font-size:17px;
color:#555;
margin-bottom:18px;
line-height:1.8;
}

/* ==========================
   FOOTER
========================== */

.footer{
background:#0f172a;
color:#ffffff;
padding:70px 0 25px;
margin-top:80px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:35px;
}

.footer-column h3{
font-size:22px;
margin-bottom:20px;
color:#ffffff;
}

.footer-column p{
color:#cbd5e1;
line-height:1.8;
margin-bottom:10px;
}

.footer-column ul{
padding:0;
margin:0;
}

.footer-column ul li{
margin-bottom:12px;
}

.footer-column ul li a{
color:#cbd5e1;
transition:.3s;
}

.footer-column ul li a:hover{
color:#38bdf8;
}

.footer-bottom{
margin-top:45px;
padding-top:25px;
border-top:1px solid rgba(255,255,255,.15);
text-align:center;
}

.footer-bottom p{
color:#94a3b8;
font-size:15px;
}

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

@media(max-width:992px){

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

.hero-content{
text-align:center;
}

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

.hero-card{
margin-top:30px;
}

.navbar{
flex-direction:column;
gap:20px;
}

.nav-menu ul{
justify-content:center;
flex-wrap:wrap;
gap:18px;
}

}

@media(max-width:768px){

.hero{
padding:60px 0;
}

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

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

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

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

.hero-card,
.donation-card,
.awareness-card,
.content-box{
padding:25px;
}

.btn-primary,
.btn-secondary{
width:100%;
}

.hero-buttons{
flex-direction:column;
}

.logo{
width:50px;
height:50px;
}

.logo-text h2{
font-size:20px;
}

.logo-text span{
font-size:13px;
}

}

@media(max-width:480px){

.container{
width:94%;
}

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

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

.hero-card h3,
.awareness-card h3{
font-size:22px;
}

.content-box h2{
font-size:24px;
}

.footer{
padding:50px 0 20px;
}

.footer-grid{
gap:25px;
}

}