

        /* Footer Styles */
        .hover-green {
            transition: color 0.3s ease;
        }
        .hover-green:hover {
            color: var(--success) !important;
        }
        
        .social-links a {
            transition: color 0.3s ease, transform 0.3s ease;
            display: inline-block;
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 8px;
        }
        
        .social-links a:hover {
            color: var(--success) !important;
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            text-decoration: none;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('../images/2.jpg') no-repeat center center/cover;
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            margin-bottom: 60px;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .page-header h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        
        .breadcrumb {
            background: transparent;
            justify-content: center;
            padding: 0.5rem 0;
            margin-top: 20px;
        }
        
        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .breadcrumb-item a:hover {
            color: var(--secondary-color);
        }
        
        .breadcrumb-item.active {
            color: white;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.6);
            content: "\f104";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            padding: 0 10px;
        }
        
        /* About Content */
        .about-section {
            padding: 80px 0;
        }
        
        .about-section h2 {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .about-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .about-section p {
            color: #555;
            line-height: 1.9;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        
       
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .card:hover {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .card-body {
            padding: 30px;
        }
        
        .card i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .card h3 {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .objectives-list {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        
        /* New Objectives Style */
        .objective-item {
            background: #fff;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
            border-right: 4px solid var(--secondary-color);
            transition: all 0.3s ease;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        
        .objective-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 0;
            background: var(--primary-color);
            transition: all 0.4s ease;
        }
        
        .objective-item:hover {
            transform: translateX(-5px);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        }
        
        .objective-item:hover::before {
            height: 100%;
        }
        
        .objective-item h3 {
            color: var(--dark-color);
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            padding-right: 15px;
        }
        
        .objective-item h3::before {
            content: '✓';
            color: var(--secondary-color);
            margin-left: 10px;
            font-weight: bold;
        }
        
        .objective-item p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 0;
            padding-right: 10px;
        }
        
        /* Mission & Vision Section */
        .mission-vision-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .mission-vision-item {
            background: #fff;
            border-radius: 10px;
            padding: 40px;
            height: 100%;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 3px solid var(--primary-color);
        }
        
        .mission-vision-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .mission-vision-item h3 {
            color: var(--primary-color);
            font-size: 1.6rem;
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }
        
        .mission-vision-item h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .mission-vision-item p {
            color: #444;
            line-height: 1.9;
            font-size: 1.05rem;
        }
        
        .methods-list {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .method-item {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: flex-start;
        }
        
        .method-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .method-icon {
            background: rgba(39, 174, 96, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            flex-shrink: 0;
        }
        
        .method-icon i {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        
        .method-content h4 {
            color: var(--dark-color);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .method-content p {
            margin: 0;
            font-size: 0.95rem;
            color: #666;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .methods-list {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 767px) {
            .page-header {
                padding: 100px 0 60px;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .about-section h2 {
                font-size: 1.5rem;
            }
        }
         /* Navbar Styles */
         .navbar {
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.95) !important;
        }
        
        /* Custom Toggler Styles */
        .custom-toggler {
            display: block;
            width: 25px;
            height: 20px;
            position: relative;
            cursor: pointer;
        }
        
        .custom-toggler span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--primary-color);
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        
        .custom-toggler span:nth-child(1) { top: 0px; }
        .custom-toggler span:nth-child(2) { top: 8px; }
        .custom-toggler span:nth-child(3) { top: 16px; }
        
        .custom-toggler.open span:nth-child(1) {
            top: 8px;
            transform: rotate(135deg);
        }
        
        .custom-toggler.open span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }
        
        .custom-toggler.open span:nth-child(3) {
            top: 8px;
            transform: rotate(-135deg);
        }
        
        /* Responsive Design */
        @media (max-width: 991px) {
            .navbar-nav {
                margin-top: 1rem;
                background: white;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }
            
            .nav-link {
                padding: 0.75rem 1rem !important;
                margin: 0.25rem 0;
            }
        }
/* Footer Styles */
.footer-link {
    color: #fff !important;
    text-decoration: none;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: #198754;
    transition: width 0.3s ease;
}

.footer-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.footer-link:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #198754;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
}

.contact-item {
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 4px;
}

.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.contact-item i {
    transition: all 0.3s ease;
    width: 24px;
    text-align: center;
}

.contact-item:hover i {
    transform: scale(1.2);
    color: #198754 !important;
}

.btn-donate {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s;
}

.btn-donate::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background-color: #198754;
    transition: all 0.4s;
    z-index: -1;
}

.btn-donate:hover {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
}

.btn-donate:hover::before {
    width: 100%;
}

.developer-link {
    position: relative;
    padding-bottom: 2px;
}

.developer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    right: 0;
    background-color: #198754;
    transition: width 0.3s ease;
}

.developer-link:hover::after {
    width: 100%;
}
