body {
    background-color: #000000; 
    color: #ffffff; 
    font-style: 'Ancizar Sans';
}

.navbar {
    background-color: rgba(0, 0, 0, 0.9); 
    padding: 4px;
}

.navbar-brand img {
    width: 120px; 
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.1); 
}

.navbar-nav .nav-link {
    color: #ffffff; 
    font-weight: bold;
    margin-right: 20px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #1cb613; 
}

.navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #1cb613; 
    transition: width 0.3s ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-donate {
    background-color: #1cb613; 
    color: #000000; 
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-donate:hover {
    background-color: #f68712; 
    color: #ffffff; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff; 
    text-transform: uppercase;
    animation: fadeIn 2.5s ease-in-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f68712; 
    margin-top: 10px;
    animation: fadeIn 3s ease-in-out;
}

.hero-buttons {
    margin-top: 20px;
}

.btn-primary {
    background-color: #1cb613; 
    color: #ffffff;
    padding: 12px 24px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #f68712; 
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: 15px;
    transition: all 0.3s ease-in-out;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
#about {
    padding: 100px 0;
    background-color: #ffffff; 
    color: #000000; 
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #41b93c; 
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.about-img {
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.about-img:hover {
    transform: scale(1.05);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#about .col-lg-6 {
    animation: fadeInUp 1.5s ease-in-out;
}

#initiatives {
    padding: 100px 0;
    background-color: #f7f7f7; 
}

.section-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
}

.initiative-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 20px;
    height: 250px;
}

.initiative-card:hover {
    transform: scale(1.03);
}

.initiative-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.initiative-card h3 {
    font-size: 1.5rem;
    color: #41b93c; 
    margin-bottom: 10px;
}

.initiative-card p {
    font-size: 1rem;
    color: #333;
}

.initiative-card .btn-secondary {
    background: #f68712; 
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.initiative-card .btn-secondary:hover {
    background: #1cb613; 
}

#impact {
    padding: 100px 0;
    background-color: #ffffff;
}

.impact-card {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    height: 230px;
}

.impact-card:hover {
    transform: scale(1.05);
}

.impact-card i {
    font-size: 3rem;
    color: #41b93c; 
    margin-bottom: 10px;
}

.impact-card h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
}

.impact-card p {
    font-size: 1.1rem;
    color: #333;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.counter {
    font-size: 2rem;
    font-weight: bold;
    animation: fadeIn 1.5s ease-in-out;
}

.hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: bottom left; 
}
.hover-effect:hover {
    transform: 
        perspective(500px)  
        rotateX(5deg)       
        rotateY(5deg)       
        translateY(-10px);  
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.partner-logos {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 0; 
    justify-content: center;
    
}
.partner-logos img {
    height: 80px;
    filter: grayscale(100%);
    transition: filter 0.2s;
    flex-shrink: 0; 
}
.partner-logos img:hover {
    filter: grayscale(0%);
}
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hover-success:hover {
    color: #1cb613 !important;
    transition: color 0.3s ease;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}