
        :root {
            --primary-color: #0d383d;
            --secondary-color: #f8f9fa;
            --accent-color: #e67e22;
        }
        
        body {
            font-family: 'Tahoma', Arial, sans-serif;
            padding-top: 70px;
            background-color: #f5f5f5;
        }
        
        .navbar {
            background-color: #f2fffe;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand, .nav-link, .navbar-nav .dropdown-menu {
            color: #1a7145 !important;
        }
        
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #61b98d !important;
        }
        
        .navbar-toggler {
            border-color: rgba(255,255,255,0.5);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .btn-volunteer {
            background-color: var(--accent-color);
            color: white;
            transition: all 0.3s ease;
        }
        
        .btn-volunteer:hover {
            background-color: #d35400;
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-login {
            border: 1px solid white;
            color: white;
            transition: all 0.3s ease;
        }
        
        .btn-login:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }
        
        footer {
            background: linear-gradient(rgba(13, 56, 61, 0.8), rgba(13, 56, 61));
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        .bg-green {
            background-color: #f6fffe;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .hero-section {
            background: linear-gradient(rgba(13, 56, 61, 0.8), rgba(13, 56, 61, 0.8)), url(''); /* WILL BE SET LATER WITH PROPER IMG */
            background-size: cover;
            background-position: center;
            color: white;
            padding: 5rem 0;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
        }
        
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        
        .section-title {
            position: relative;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .initiative-card {
            border-left: 5px solid #1a5359a3;
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .stat-label {
            color: var(--accent-color);
            font-weight: bold;
        }
        
        /* Slider Styles */
        .slider-container {
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            height: 500px;
        }
        
        .slider {
            display: flex;
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slider-caption {
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            background: linear-gradient(to top, rgba(13, 56, 61, 0.85), rgba(13, 56, 61, 0));
            color: white;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.5s ease-in-out;
            z-index: 2;
        }

        .slider-caption h3 {
            font-size: 1.8rem;
            margin: 0 0 0.5rem;
            font-weight: bold;
        }

        .slider-caption p {
            font-size: 1.1rem;
            margin: 0;
            line-height: 1.6;
        }
        
        .join-section {
            background-color: var(--primary-color);
            color: white;
            padding: 4rem 0;
            margin-top: 3rem;
            text-align: center;
        }
        
        .join-btn {
            font-size: 1.2rem;
            padding: 0.8rem 2.5rem;
            margin-top: 1.5rem;
        }
        @media (max-width: 768px) {
    .slider-caption h3 {
        font-size: 1.2rem;
    }

    .slider-caption p {
        font-size: 0.95rem;
    }
}

.nav-link.active {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}




        .sign-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
            margin-bottom: 50px;
        }
        
        .sign-header {
            background-color: var(--primary-color);
            color: white;
            border-radius: 10px 10px 0 0;
            padding: 20px;
            text-align: center;
            position: relative;
        }
        
        .sign-header .logo-container {
            position: absolute;
            top: -40px;
            right: 50%;
            transform: translateX(50%);
            background: white;
            padding: 5px;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        
        .sign-header .logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0px;padding: 4px;
            background-color: var(--primary-color);
            }
        
        .sign-body {
            padding: 30px;
        }
        
        .sign-body .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.25);
        }
        
        .sign-body .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .sign-body .btn-primary:hover {
            background-color: #0a2c30;
            border-color: #0a2c30;
        }
        
        .text-accent {
            color: var(--accent-color);
        }
        
        .required-field::after {
            content: " *";
            color: red;
        }
        
        .sign-header .volunteer-title {
            margin-top: 15px;
            font-weight: bold;
            color: var(--secondary-color);
        }
        
        .sign-header .volunteer-subtitle {
            font-size: 0.9rem;
            opacity: 0.8;
        }

    

/* Dropdown container */
.dropdown-menu {
    background-color: #e9fbf9; /* slightly darker than page */
    border: 1px solid #cdeeee;
    border-radius: 10px;
    padding: 6px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Dropdown links */
.dropdown-menu .dropdown-item {
    color: #134e4a; /* dark teal for readability */
    padding: 8px 30px;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: right; /* since content is Arabic */
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #d2f3f0;
    color: #0f3d3a;
}

.dropdown-menu .dropdown-item.active {
    background-color: #bdebea;
    color: #0f3d3a;
}

/* Divider */
.dropdown-divider {
    border-color: #bfe7e5;
}

.dropdown-menu .dropdown-item.text-danger {
    color: #c0392b;
}

.dropdown-menu .dropdown-item.text-danger:hover {
    background-color: #fcebea;
    color: #922b21;
}


.accordion-button:not(.collapsed) {
    color: #304d51;
    background-color: #d4ebed;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #3c6064;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(60, 96, 100, 0.25);
}