body {
    background-color: #37384e;
    color: white;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.2rem;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
.hero {
    position: relative;
    color: white;
    text-align: center;
    padding: 60px 20px;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity for better readability */
}
.hero * {
    position: relative;
    z-index: 1;
}
.btn-donate {
    background-color: #37384e;
    color: white;
}
.btn-donate:hover {
    background-color: white;
    color: #37384e;
}
.donation-icons i {
    font-size: 2rem;
    margin: 10px;
}
.text-lacivert{
    color: #37384e !important;
}
.language-selector {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    direction: ltr;
}
.dropdown-toggle::after {
    display: none;
}
.banner-section{
    position: relative;
    background-color: #37384e;
    height: 250px;
}
.banner-section::after {
    content: ' ';
    background-image: url("/images/hero.jpeg");
    background-size: cover;
    background-position: bottom;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0.2;
    z-index: 0;
}
.banner-section .container{
    height: 100%;

}
.banner-section .row{
    align-items: center;
    height: 100%;
}
.banner-section .content{
}
.banner-section .content .title{
    text-align: center;
}
.banner-section .content .title h3{
    font-weight: 700;
    font-size: 32px;
}
.banner-section .content .tree-links{
    margin-bottom: 0;
}
.banner-section .content .tree-links ul{
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
.banner-section .content .tree-links ul li{
    margin-right: 24px;
    position: relative;
}
.banner-section .content .tree-links ul li::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: 2px;
    width: 11px;
    display: block;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    color: white;
    font-size: 10px;
}
.banner-section .content .tree-links ul li:last-child:after{
    display: none;
}
.banner-section .content .tree-links ul li:last-child{
    margin: 0;
}
.banner-section .content .tree-links ul li a{
    color: white;
    font-size: 13px;
    font-weight: 500;
    display: block;
    transition: all 0.3s;
}
.banner-section .content .tree-links ul li a:hover{
    color: white;
}
.banner-section .content .tree-links ul li .icon{
    color: white;
}
.banner-section .content .tree-links ul li .icon img{
    width: 13px;
    margin-top: -2px;
}
section {
    /*padding: 60px 0;*/
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image-container img:hover {
    transform: scale(1.05);
}

.content-container {
    display: flex;
    align-items: center;
}

.text-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
}
.navbar-toggler-icon {
    filter: invert(1); /* Makes the icon white */
}
footer{
    margin-top: auto;
}
.error-div{
    left: 50%; transform: translate(-50%, -50%);
}


.footer {
    background: #1a1a1a;
    color: white;
}
.footer h5 {
    color: #f8f9fa;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
}
.footer-menu li {
    margin-bottom: 8px;
}
.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}
.footer-link:hover {
    color: #f8f9fa;
    text-decoration: underline;
}
.social-icon {
    font-size: 20px;
    transition: 0.3s;
}
.social-icon:hover {
    color: #ccc;
}
#loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translateX(-50%);
}

.footer-menu li a.footer-link {
    color: #ffffffcc;
    transition: color 0.3s ease;
}
.footer-menu li a.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

