:root {
    /* Updated Brand Colors */
    --primary-color: #1a3e72; /* Deep blue for primary elements */
    --secondary-color: #e67e22; /* Warm orange for accents (buttons) */
    --accent-color: #2ecc71; /* Fresh green for positive actions */
    --light-color: #f9f9f9; /* Very light background */
    --dark-color: #2c3e50; /* Dark blue-gray for text */
    --text-color: #333333; /* Main text color */
    --light-text: #ffffff; /* Text on dark backgrounds */
    /* Spacing and Sizing */
    --section-padding: 80px;
    --card-border-radius: 8px;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    padding: 8px 15px !important;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--secondary-color) !important;
    }

/* Hero Sections */
.hero-section {
    position: relative;
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    color: var(--light-text);
    margin-bottom: var(--section-padding);
}

.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), var(--bg-image);
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    margin-bottom: var(--section-padding);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.carousel-item img {
    height: 80vh;
    object-fit: cover;
}

/* Cards */
.mission-card {
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s ease;
    border-radius: var(--card-border-radius);
    height: 100%;
}

    .mission-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

/* Impact Stats */
.impact-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Team Section */
.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--light-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

    .btn-primary:hover {
        background-color: #d35400;
        border-color: #d35400;
        transform: translateY(-2px);
    }

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

    .btn-outline-primary:hover {
        background-color: var(--secondary-color);
        color: var(--light-text);
    }

/* Timeline */
.history-timeline {
    position: relative;
    padding-left: 30px;
}

    .history-timeline::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: var(--secondary-color);
    }

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -30px;
        top: 5px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: var(--secondary-color);
    }

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: var(--section-padding) 0;
}

.quick-links a {
    color: var(--light-text);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

    .quick-links a:hover {
        color: var(--secondary-color);
        padding-left: 5px;
    }

.social-icons a {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-right: 15px;
}

    .social-icons a:hover {
        color: var(--secondary-color);
        transform: translateY(-3px);
    }

/* Utility Classes */
.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

    .section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 3px;
        background-color: var(--secondary-color);
    }

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .carousel-item img {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}
.contact-header {
    background: linear-gradient(rgba(26, 62, 114, 0.8), rgba(26, 62, 114, 0.8)), url('https://images.unsplash.com/photo-1521791055366-0d553872125f');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    margin-bottom: 50px;
}

.contact-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
    margin-bottom: 30px;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.contact-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.25);
}

.submit-btn {
    background-color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
}

    .submit-btn:hover {
        background-color: #d35400;
    }

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.1);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

    .social-links a:hover {
        background-color: var(--secondary-color);
        transform: translateY(-3px);
    }

/* Hero Section */
.involved-hero {
    padding: 100px 0;
    background-color: var(--light-color);
}

/* Opportunity Cards */
.opportunity-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

    .opportunity-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.opportunity-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}

    .benefits-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
    }

    .benefits-list i {
        color: var(--secondary-color);
        margin-right: 10px;
        margin-top: 3px;
        font-size: 1.2rem;
    }

/* Form Container */
.form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .involved-hero {
        padding: 60px 0;
        text-align: center;
    }

    .form-container {
        padding: 25px;
    }
}

.tag-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ffc107;
    color: #000;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.read-more-btn {
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

    .read-more-btn:hover {
        background-color: #e9ecef;
    }
.badge-category {
    background-color: #ffe066;
    color: #000;
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
    border-radius: 0.5rem;
}

.article-meta i {
    margin-right: 0.25rem;
}

.share-btn {
    border: 1px solid #ccc;
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

    .share-btn:hover {
        background-color: #e9ecef;
    }

.resources-hero {
    padding: 100px 0;
    background-color: var(--light-color);
}

.search-box {
    max-width: 500px;
}
.work-hero {
    padding: 100px 0;
    background-color: var(--light-color);
}

    .work-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

.hero-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Program Cards */
.program-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

    .program-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.program-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

    .program-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-content {
    padding: 25px;
}

    .program-content h3 {
        color: var(--primary-color);
        margin-bottom: 15px;
    }

.program-stats {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--dark-color);
}

    .program-stats i {
        margin-right: 5px;
        color: var(--secondary-color);
    }

/* Impact Cards */
.impact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .impact-card:hover {
        transform: translateY(-5px);
    }

.impact-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.impact-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Story Cards */
.story-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .story-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.story-image {
    height: 250px;
    overflow: hidden;
}

    .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.story-content {
    padding: 25px;
}

    .story-content h3 {
        color: var(--primary-color);
        margin-bottom: 15px;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .work-hero {
        padding: 60px 0;
        text-align: center;
    }

        .work-hero h1 {
            font-size: 2.2rem;
        }

    .hero-image {
        margin-top: 30px;
    }

    .program-image, .story-image {
        height: 180px;
    }
}
/* Category Cards */
.category-card {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    display: block;
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        color: var(--primary-color);
    }

.category-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Resource Cards */
.resource-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .resource-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.resource-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

/* Newsletter Box */
.newsletter-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .resources-hero {
        padding: 60px 0;
        text-align: center;
    }

    .search-box {
        margin: 0 auto;
    }
}
.icon-inside-input {
    width: 100%; /* or set specific width */
    max-width: 300px; /* optional */
}

    .icon-inside-input i {
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #6c757d; /* Bootstrap's secondary color */
        pointer-events: none; /* allows clicks to pass through to input */
    }

    .icon-inside-input input {
        padding-left: 35px !important; /* make room for icon */
    }
