:root {
    --primary-blue: #04421f;
	/*  --primary-blue: #2c3e50; */
    --secondary-orange: #e67e22;
    --accent-green: #27ae60;
}

.bg-blue { background-color: var(--primary-blue); }
.text-orange { color: var(--secondary-orange); }

.navbar-brand img { transition: transform 0.3s; }
.navbar-brand img:hover { transform: scale(1.1); }

.nav-link {
    color: white!important;
    position: relative;
    margin: 0 15px;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-orange);
    transition: width 0.3s;
}

.nav-link:hover::after { width: 100%; }

.banner-slider .carousel-caption {
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
}

.btn-donate {
    background: var(--accent-green);
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-donate:hover {
    background: #219a52;
    transform: translateY(-2px);
}

.gallery-item {
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .navbar-nav { text-align: center; padding: 10px 0; }
    .carousel-caption h2 { font-size: 1.5rem; }
}

.hero-section { padding: 100px 0; }

.btn-orange {
    background: var(--secondary-orange);
    color: white;
    transition: all 0.3s;
}

.btn-green {
    background: var(--accent-green);
    color: white;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.counter { font-weight: 700; }

.testimonials .carousel-item {
    padding: 30px;
    text-align: center;
}

.partners-section img {
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partners-section img:hover {
    filter: grayscale(0);
}

.cta-section {
    background: linear-gradient(to right, var(--secondary-orange), #e67e22dd);
}

/* About Page Styles */
.about-hero { padding: 100px 0; }

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--secondary-orange);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 8px;
    width: 15px;
    height: 15px;
    background: var(--accent-green);
    border-radius: 50%;
    border: 3px solid var(--secondary-orange);
}

.achievement-box li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.team-card {
    transition: transform 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-info .social-links {
    opacity: 0;
    transition: opacity 0.3s;
}

.team-card:hover .social-links {
    opacity: 1;
}

.cta-about {
    background: linear-gradient(to right, var(--accent-green), #27ae60dd);
}



/* New Styles */
.list-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.list-check li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.registration-box li {
    padding-left: 30px;
    position: relative;
}

.registration-box li i {
    position: absolute;
    left: 0;
    top: 3px;
}

.services-section .card {
    transition: transform 0.3s;
    border: 2px solid var(--primary-blue);
}

.services-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.scholarship-section {
    background: linear-gradient(to right, #f8f9fa 50%, white 50%);
}