
/* hero-slider container */
/* hero-slider container */
/* hero-slider container */
.hero-slider .slide {
    position: relative;
    text-align: center;
    overflow: hidden; /* Ensures the overlay stays inside */
}

.hero-slider img {
    width: 100%;
    /*height: 80vh;*/
    object-fit: cover;
    height: 700px;
}

.hero-slider .slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1;
}

.slider-caption {
    position: absolute;
    bottom: 45%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    max-width: 540px;
    z-index: 2;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    /*padding: 10px 20px;*/
    /*border-radius: 5px;*/
}

.slick-prev, .slick-next {    
    bottom: 42%;
    top: unset;
    width: auto;
    height: auto;    
    z-index: 1;
}
.slick-prev {
    left: 17%;            
}
.slick-next {
    right: 17%;         
}
.slick-prev:before {
    content: url('../../assets/img/chevron-down.svg');
}
.slick-next:before {
    content: url('../../assets/img/chevron-up.svg');
}
.slick-prev:before, .slick-next:before {    
     opacity: 1;     
}
.slick-dots {    
    bottom: 20%;    
}
.slick-dots li {
    width: 36px;    
    margin: 0 3px;    
}
.slick-dots li button:before {
    content: url('../../assets/img/Rectangle-dots.svg');
    opacity: .25;
    color: #ffffff!important;   
}

.hero-description {
    font-size: 22px;
    font-weight: bold;
    direction: rtl; /* RTL for Arabic text */
}

@media (max-width: 768px) {  
    .slick-prev {
        /*left: 17px;*/            
        display: none!important;
    }
    .slick-next {
        /*right: 17px;*/         
        display: none!important;
    }
    .slider-caption {        
        width: 90%;
    }
}


/* about-us container */
/* about-us container */
/* about-us container */
#about-us {
    background-color: #031882;
    color: #ffffff;
    padding-bottom: 160px!important;
    position: relative;
}
.about-us h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}
.about-us p{
    color: #D6D6D6;
    font-size: 16px;

}
.about-us .illustration{
    max-width: 280px;
    max-height: 400px;
    object-fit: contain;
    object-position: bottom;
    position: relative;
}
.about-us .gif{
    object-fit: contain;
    max-height: 190px;
    margin-left: -110px;
    margin-bottom: -20px;
}
.impact-numbers{
    border-radius: 24px;
}
.impact-numbers h2{
    font-size: 24px;
    font-weight: bold;
}
.impact-numbers .numbers{
    font-size: 42px;
    font-weight: bold;
    color: #031882;
    padding: 0px 16px;
}
.impact-numbers h5 {
    font-size: 18px;
    margin-top: 10px;            
}
.impact-numbers-containers{
    position: relative;
}
.pattern-bottom-blue{
    position: absolute;
    left: 0;
    bottom: 0;
    object-fit: cover;
    object-position: top;
    height: 52px;
    width: 100%;
}
@media (min-width: 768px) {
    .impact-numbers-containers:after {
        content: '';            
        height: 43px; 
        width: 1px;
        top: 18%;            
        position: absolute;
        right: 0;                        
        background-color: #E5E5E5;
    }
    .impact-numbers-containers:last-child:before{
        content: '';            
        height: 43px; 
        width: 1px;
        top: 18%;            
        position: absolute;
        left: 0;                        
        background-color: #E5E5E5;
    }
    
}


/* partners-section container */
/* partners-section container */
/* partners-section container */
#partners-section {                                    
    position: relative;
}
#partners-section h2{        
    font-size: 32px;
    margin-bottom: 26px;
    font-weight: bold;
}
.partners-section{
    padding: 20px;
    border-radius: 20px;
    background-image: linear-gradient(to left, #F5F5F5, #ffffff);
}
.partners-section .sub-title{
    font-size: 18px;
    font-weight: bold;
}
.partners-section .partners-logo-card{
    border: none;
    border-radius: 10px;
    background-color: #ffffff;
    height: 100px;
    border: 1px solid #dee2e680!important
}
.partners-section .partners-logo-card a{
    height: 76px;
    display: flex;
    margin: auto;
    width: 100%;
    height: 100%;
}
.partners-section .partners-logo-card img{        
    height: 76px;
    object-fit: contain;
    display: block;
    margin: auto;
}

.pattern-bg-grey{
    position: absolute;
    left: 0;

    object-fit: cover;
    /*height: 52px;*/
    width: 100%;
}
