/*
* Swabhiman ki awaj - NGO Website
* Dynamic CSS - Generated by PHP
*/

/* General Styles */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --dark-color: #1A2332;
    --light-color: #F8F9FA;
    --white-color: #FFFFFF;
    --gray-color: #636E72;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1A2332;
}

/* Hindi Font Override */
html[lang="hi"] body {
    font-family: 'Hind', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

section {
    padding: 70px 0;
}

/* Header Styles */
.main-header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    max-height: 60px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-weight: normal;
    line-height: 1.2;
    display: inline-block;
    vertical-align: middle;
    padding: 0.5rem 0;
    letter-spacing: 2px;
    transform: scale(1, 1.05);
}

.navbar-brand:hover .site-title {
    color: var(--secondary-color);
    transform: scale(1.05, 1.1);
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--dark-color);
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    color: var(--white-color);
    padding: 120px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-divider {
    height: 4px;
    width: 70px;
    background-color: var(--primary-color);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.about-content .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-feature {
    background-color: var(--white-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

.about-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
}

.about-counter {
    background-color: var(--white-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-counter h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.about-counter p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Chairman Message */
.chairman-message {
    font-style: italic;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    background-color: rgba(233, 64, 87, 0.05);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.chairman-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 4px solid var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.chairman-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.chairman-message img {
    width: 100%;
    max-width: 120px;
    border: 3px solid var(--white-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Programs Section */
.programs-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.program-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.3rem;
}

.program-card p {
    padding: 0 1rem;
    color: var(--gray-color);
}

.program-card .btn {
    margin: 0.5rem 1rem 1rem;
    display: inline-block;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    text-align: center;
}

.impact-section h2 {
    margin-bottom: 2rem;
}

.impact-stat {
    padding: 2rem;
}

.impact-stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-color);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--gray-color);
    font-style: normal;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('