:root {
    --gold: #c5a059;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --accent-blue: #2c3e50;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #fff;
    scroll-behavior: smooth;
}

/* Helpers */
.py-100 { padding: 100px 0; }
.text-gold { color: var(--gold) !important; }

/* Navbar Glassmorphism */
.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo { 
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; 
    font-weight: 700; 
    color: var(--dark); 
    text-decoration: none; 
}
.logo span { color: var(--gold); }

.nav-link { 
    font-weight: 600; 
    color: var(--dark) !important; 
    margin: 0 10px; 
    transition: 0.3s;
}
.nav-link:hover { color: var(--gold) !important; }

.btn-top {
    background: var(--dark);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-top:hover { background: var(--gold); color: #fff; }

/* Hero Section */
.hero-clean { background: radial-gradient(circle at top right, #fffdf8, #fff); }

.badge-top {
    background: #fff8e1;
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.hero-img-stack { position: relative; }
.img-main { width: 100%; border-radius: 20px; }
.experience-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}
.experience-card h3 { font-size: 2.5rem; color: var(--gold); margin-bottom: 0; font-weight: 800; }

/* Service Cards */
.s-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: 0.4s;
    height: 100%;
}
.s-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--gold);
}
.s-icon { font-size: 3rem; color: var(--gold); margin-bottom: 20px; }
.s-list { list-style: none; padding: 0; margin-top: 20px; }
.s-list li { margin-bottom: 10px; font-size: 0.9rem; }

/* Process Section Steps */
.step-box { display: flex; align-items: flex-start; gap: 20px; }
.step-num {
    background: var(--gold);
    color: #fff;
    font-weight: 800;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* NGO Marquee */
.ngo-track { display: flex; gap: 30px; overflow: hidden; white-space: nowrap; }
.ngo-badge {
    padding: 15px 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-blue);
}

/* Footer Styles */
.footer { background: #fcfcfc; border-top: 1px solid #eee; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { text-decoration: none; color: #777; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.social-links a {
    width: 40px; height: 40px; display: inline-flex;
    align-items: center; justify-content: center;
    background: #eee; color: var(--dark); border-radius: 50%;
    margin-right: 10px; transition: 0.3s;
}
.social-links a:hover { background: var(--gold); color: #fff; transform: translateY(-5px); }

.footer-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #eee;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 3px;
    margin-right: 5px;
    color: #555;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .display-3 { font-size: 2.5rem; }
    .experience-card { position: static; margin-top: 20px; }
}