.hero-slider{
background:#071c33;
padding:80px 6%;
color:white;
position:relative;
overflow:hidden;
}

.hero-slide{
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
flex-wrap:wrap;
}

/* LEFT CONTENT */

.hero-content{
max-width:550px;
}

.tagline{
background:rgba(255,180,0,0.15);
padding:6px 14px;
border-radius:20px;
color:#ffb400;
font-size:13px;
letter-spacing:1px;
}

.hero-content h1{
font-size:52px;
margin:20px 0;
line-height:1.2;
font-weight:700;
}

.hero-content p{
color:#c7d2e0;
margin-bottom:25px;
}

/* BUTTONS */

.hero-buttons{
display:flex;
gap:15px;
margin-bottom:30px;
}

.donate-btn{
background:#ffb400;
color:#000;
padding:14px 24px;
border-radius:10px;
font-weight:600;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,0.4);
transition:.3s;
}

.donate-btn:hover{
transform:translateY(-4px);
}

.campaign-btn{
border:1px solid rgba(255,255,255,0.3);
padding:14px 22px;
border-radius:10px;
text-decoration:none;
color:white;
transition:.3s;
}

.campaign-btn:hover{
background:rgba(255,255,255,0.1);
}

/* STATS */

.hero-stats{
display:flex;
gap:40px;
}

.stat h3{
color:#ffb400;
font-size:26px;
}

.stat p{
font-size:13px;
color:#9fb0c3;
}

/* IMAGE */

.hero-image{
position:relative;
}

.hero-image img{
width:380px;
border-radius:20px;
border:3px solid #ffb400;
box-shadow:0 20px 50px rgba(0,0,0,0.6);
}

/* VERIFIED BOX */

.verified{
position:absolute;
bottom:20px;
left:-30px;
background:white;
color:black;
padding:12px 18px;
border-radius:12px;
display:flex;
gap:10px;
align-items:center;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.verified i{
color:#ffb400;
font-size:20px;
}

/* RESPONSIVE */

@media(max-width:900px){

.hero-slide{
flex-direction:column;
text-align:center;
}

.hero-content h1{
font-size:34px;
}

.hero-stats{
justify-content:center;
}

.hero-image img{
width:100%;
max-width:350px;
}

.verified{
left:50%;
transform:translateX(-50%);
}

}

.slider-arrows{
position:absolute;
top:50%;
width:100%;
display:flex;
justify-content:space-between;
transform:translateY(-50%);
padding:0 20px;
pointer-events:none;
}

.slider-arrows button{
pointer-events:auto;
width:45px;
height:45px;
border-radius:50%;
border:none;
background:rgba(255,255,255,0.15);
color:white;
font-size:18px;
cursor:pointer;
backdrop-filter:blur(5px);
transition:.3s;
}

.slider-arrows button:hover{
background:#ffb400;
color:black;
}


/* Color Variables based on Logo */
:root {
    --primary-blue: #0A1133;
    --accent-orange: #F27121;
    --accent-green: #87C344;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Common Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 60px;
}

.section-header h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

/* Reports Section */
.reports-section {
    background-color: var(--white);
    padding-bottom: 80px;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.report-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 5px solid var(--accent-orange);
}

.report-card:hover {
    transform: translateY(-10px);
}

.report-image {
    height: 180px;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Placeholder for PDF icon or image */
    background: linear-gradient(45deg, var(--primary-blue), #1a2a6c);
}

.report-content {
    padding: 25px;
    text-align: center;
}

.report-content h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.report-date {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
}

.download-btn:hover {
    background-color: #d65d10;
}

/* Transparency Section */
.transparency-section {
    background-color: var(--bg-light);
    padding-bottom: 80px;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trans-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border-bottom: 5px solid var(--accent-green);
    transition: all 0.3s ease;
}

.trans-card:hover {
    background-color: var(--primary-blue);
}

.trans-card:hover h3, .trans-card:hover p {
    color: var(--white);
}

.trans-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trans-card h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.view-btn {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-green);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.trans-card:hover .view-btn {
    color: var(--accent-green);
    border-bottom-color: var(--accent-green);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .reports-grid, .transparency-grid {
        grid-template-columns: 1fr;
    }
  }