@charset "UTF-8"; 
﻿

.container-xxl {
    width: 100%;
    max-width: 100% !important;
    margin: 0;
}
.home-banner-container, .dda-home-banner {
    height: 100vh;
    min-height: calc(100vw * (9 / 16) - 164px);
    position: relative;
} 
.home-main-container {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3xl);
    margin: 0 auto;
    padding: var(--padding-3xl) 0;
}




dda-home-banner.home-slider button:hover {
    background-color: var(--dda-color-primary-40);
    border: solid 1px var(--dda-color-primary-40);
    color: var(--dda-on-primary-100);
}


@media (min-height:1040px) {
    .home-banner-container, .dda-home-banner {
        min-height: calc(100vh + (16 / 9));
    }
}

@media (min-height:600px) and (max-height:1000px) {
    .home-banner-container, .dda-home-banner {
        min-height: calc(100vh + (16 / 9) * 64px);
    }
}


@media (min-height:300px) and (max-height:599px) and (orientation:landscape) {

    .home-banner-container, .dda-home-banner {
        min-height: calc(100vh + (16 / 9) * 164px);
    }

        .dda-home-banner .dda-slide-contant-wrap {
            display: inherit;
            height: auto;
            top: 33px;
            position: relative;
        }

    .dda-home-banner-slide {
        position: absolute;
        display: inherit;
        height: auto;
        bottom: initial;
    }
}
.budget-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--padding-3xl) var(--padding-xxl);
    gap: var(--gap-3xl);
}

.budget-header h2 {
    font-size: var(--font-h2);
    line-height: var(--line-height-h2);
    font-weight: 400;
    text-align: center;
}

.budget-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap-xxl);
    width: 100%;
}

.budget-card {
    flex: 1 1 calc(50% - var(--gap-xxl));
    min-width: 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.surplus-deficit-card{
    display:none;
}

.en .budget-card {
    border-left: 1px solid var(--dda-outline, #e4e2e6);
    padding-left:var(--padding-xxl);
}

.ae .budget-card {
    border-right: 1px solid var(--dda-outline, #e4e2e6);
    padding-right: var(--padding-xxl);
}

.en .budget-card:first-child {
    border-left: 1px solid var(--dda-surface, #ffffff);
}

.ae .budget-card:first-child {
    border-right: 1px solid var(--dda-surface, #ffffff);
}

.budget-value {
    font-size: var(--font-h1);
    color: var(--dda-primary, #00677d);
    line-height: 1.2em;
    font-weight: 400;
}

img.currency-icon {
    width: auto;
    height: 0.7em;
    vertical-align: inherit;
    margin: auto 3px;
}

.budget-label {
    font-size: var(--font-body);
    color: var(--dda-on-surface-variant, #40484f);
    line-height: 1.5rem;
    font-weight: 400;
}
/* Tablet styles */
@media (max-width: 1280px) {

   /* .budget-value {
        max-width: 136px;
    }*/

    .budget-card {
        gap: 0.25rem;
    }
}

/* Mobile styles */
@media (max-width: 767px) {
    .budget-card {
        border-left: none;
        border-radius: 6px;
        background-color: var(--dda-surface, #ffffff);
        /*box-shadow: 0 0 0 1px var(--dda-outline, #e4e2e6);*/
    }

    .en .budget-card {
        border-left: none;
    }

    .ar .budget-card {
        border-right: none;
    }
    .en .budget-card:first-child {
        border-left: none;
    }

    .ar .budget-card:first-child {
        border-right: none;
    }

    .budget-value {
        max-width: 100%;
    }
}
.news-highlights {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--padding-3xl) 0;
    gap: var(--gap-3xl);
}


/* Header styles */
.news-highlights-header {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    text-align: center;
}

.news-highlights-title {
    font-weight: 400;
    font-size: var(--font-h2);
    line-height: var(--line-height-h2);
    color: var(--dda-on-surface);
}

.news-highlights-subtitle {
    font-size: var(--font-h5);
    line-height: var(--line-height-h5);
    color: var(--dda-on-surface-variant);
}

/* Cards layout */
.news-highlights-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
}

/* Individual news card */
.news-card {
    /*background-color: #ffffff;*/

    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
    /*box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);*/
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    max-width: 416px;
}

    .news-card:hover {
        /*transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);*/
    }

    .news-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
        border-radius: 25px;
    }

    .news-card .news-title {
        margin: 0;
        font-size: var(--font-h4);
        font-weight: 400;
        line-height: var(--line-height-h4);
        color: var(--dda-on-surface);
    }

    .news-card .news-date {
        display: none;
    }
/*Tablet Design*/
@media (max-width:1280px) {
    .news-card {
        max-width: 336px;
    }


    .news-highlights article:last-child {
        display: none;
    }
}


/*Mobile Design*/
@media (max-width:767px) {


    .news-highlights-cards {
        flex-direction: column;
        align-items: center;
    }

    .news-card {
        max-width: 343px;
        gap: 12px;
    }




        .news-card .news-date {
            display: block;
            text-align: end;
            color: var(--dda-surface-variant);
        }
}
.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--gap-3xl) 0;
    gap: var(--gap-3xl); 
}

.gallery-header {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}
.gallery-title {
    font-weight: 400;
    font-size: var(--font-h2);
    line-height: var(--line-height-h2); 
}

.gallery-subtitle {

    color: var(--dda-on-surface-variant);
    font-size: var(--font-h5);
    line-height: 1.2em;
    margin-top: 0px;
}

.gallery-items {
    display: flex;
    justify-content: center;
    gap: 32px;
    /*flex-wrap: wrap;*/
    margin: 0 auto;
}

.gallery-item {
    flex: 1 1 100px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 416px;
}

    .gallery-item img {
        width: 100%;
        height: 300px;
        display:block;
        object-fit:cover;
        border-radius: 25px;
    }

.gallery-item-title {
    font-weight: 400;
    text-align: center;
    font-size: var(--font-h4);
    line-height: 1.2em;
    color: var(--dda-on-surface);
} 

/*Tablet Design*/
@media (max-width:1280px) {

    .gallery-item {
        max-width: 336px;
    }
     
    .gallery-items article:last-child {
        display: none;
    }

}

 
 
/*Mobile Design*/
@media (max-width:767px) {

    .gallery-items {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item {
        max-width: 343px;
    } 

}
 