.fixed-size {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* تنسيق الصور */
.image-container {
    height: 200px;
    /* حدد الارتفاع الثابت الذي تريده */
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* يحافظ على نسبة العرض إلى الارتفاع */
}

/* تنسيق الأزرار */
.custom-btn {
    box-shadow: 0 0 0 0.3pt rgb(11 105 64 / 25%);
    border-radius: 10px;
    color: #198754;
    background-color: #ecf2f763;
    transition: all 0.3s ease;
    height: 30px;
    /* زيادة الارتفاع علشان يظهر بشكل أفضل */
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    /* مسافة بين النص والزر */
    margin: auto;
    font-size: 13px;
}

/* تنسيق النص علشان مايتقطعش */
.text-truncate {
    white-space: normal;
    /* علشان النص يظهر كله */
    text-align: right;
    /* علشان النص يبدأ من اليمين */
}

.custom-btn:hover {
    background-color: #198754;
    color: #fff;
    border-color: #198754;
}

/* Contact Button with Arrow */
.contact-btn {
    border: 2px solid rgb(6 106 36 / 62%);
    color: hsl(154, 100%, 30%);
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    background-color: rgb(6 106 36 / 62%);
    color: white !important;
    transform: scale(1.1);
}

.contact-btn .arrow-icon {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover .arrow-icon {
    opacity: 0;
    /* إخفاء السهم عند الـ Hover */
    transform: translateX(10px);
    /* تحريك السهم لليمين */
}

/* Animation for "اتصل بنا" Text */
@keyframes moveText {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

.contact-btn span {
    display: inline-block;
    animation: moveText 2s infinite;
}

/* Animation for Icons */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animated-icons i {
    display: inline-block;
    animation: bounce 1.5s infinite;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
    /* تكبير اللوجو عند الـ Hover */
}

/* WhatsApp Dropdown */
.btn-light {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 11px;
    backdrop-filter: blur(5px);
}
.btn-light.dropdown-item a{
    font-size: 12px !important;
}
.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Social Links Dropdown */
.social-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #333;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.social-dropdown .dropdown-item:hover {
    background-color: rgba(6, 106, 36, 0.1);
}

.social-dropdown .dropdown-item i {
    font-size: 1rem;
}

.social-dropdown .dropdown-item.whatsapp {
    color: #25d366;
}

.social-dropdown .dropdown-item.facebook {
    color: #1877f2;
}

.social-dropdown .dropdown-item.messenger {
    color: #006aff;
}

.social-dropdown .dropdown-item.telegram {
    color: #0088cc;
}
.read-more {
    display: inline-block;
    position: relative;
    background-color: #f8f9fa;
    width: 85px;
    height: 40px;
    border-radius: 0 10px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}
a.read-more {
color: #0b6940;
}
.read-more:hover {
    width: 140px;
    background-color: #0b6940;
    border-radius: 25px;
}

.read-more::after {
    content: '\2192'; /* Unicode for right arrow */
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more:hover::after {
    content: ' اقرأ المزيد ';
    color: #fff;
}
/* vision-mission */
.vision-mission {
    background: #f8f9fa;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.content-wrapper .bg-white {
    transition: transform 0.3s ease-in-out;
}

.content-wrapper .bg-white:hover {
    transform: translateY(-5px);
}



footer{
    background-color: #060606;
    color: #fff;
    padding: 10px 0 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    font-size: 16px;
}
footer p{
    text-align: justify;
}
.footer-title{
    text-align:center;
    font-weight: normal;
}
.footer-title:after{
    content: "";
    background-color: #F9575C;
    width: 130px;
    height: 2px;
    display: block;
    margin: 10px auto 30px;
}
footer video {
    position: absolute;
    z-index: 0;
    width: 100% ;
    height: 100% ;
    top: 0;
    right: 0;
    object-fit: cover;
    opacity: 50%;
}
footer .container{
    z-index: 1;
    position: relative;
}
footer .custom-logo-link {
    margin-bottom: 20px;
    display: inline-block;
}
.footer-con {
    margin: 20px auto;
    border-bottom: 1px solid #ffffff;
    padding: 80px 0;
}
.footer-logo-link {
    margin-bottom: 30px;
    display: inline-block;
}
.footer-logo-link img{
    filter: brightness(0) invert(1);
    width: 260px;
    height: auto;
}
.red-link-rounded {
    font-weight: bold;
    text-align: center;
    display: block;
    background-color: #FF0000;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    border: 2px solid #F9575C;
}
.red-link-rounded:hover {
    background-color: #990000;
    color: #fff;
}
.social-footer {
    display: flex;
    list-style: none;
    padding: 0;
}
.social-footer li a {
    display: inline-block;
    line-height: 24px;
    text-align: center;
    margin: 0 5px;
    background-color: #FF0000;
    height: 28px;
    width: 28px;
    border-radius: 50%;
}
.social-footer li a img{
    filter: brightness(0) invert(1);
    height: 12px;
    width: auto;
    margin: 0 5px;
}
.social-footer li a:hover {
    background-color: #990000;
    color: #fff;
}
.copyrights {
    color: #ffffff;
    background-color: #111111;
    padding: 10px 0 5px;
}
.copyrights .row{
    justify-content: space-between;
}
.copyrights-ul{
    display: flex;
    list-style: none;
    padding: 0;
}
.copyrights-con {
    display: flex;
    justify-content: space-between;
}
.copyrights-ul a {
    color: #ffffff;
    padding: 0 10px;
    display: inline-block;
}
.copyrights-ul a:hover {
    color: #FF0000;
}
.footer-con h5{
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
}
.footer-con h5:after{
    width: 70px;
    height: 4px;
    border-radius: 10px;
    content: "";
    display: block;
    background-color:#FF0000;
    margin-top: 10px;
}
.footer-ul {
    padding: 0;
    list-style-position: inside;
    list-style-type: none;
    line-height: 2em;
}
.footer-ul a{
    color: #ffffff;
    line-height: 20px;
}
.footer-ul a:before {
    content: '>';
    color: #FF0000;
    font-weight: bold;
    font-size: 22px;
    padding: 2px 5px 0 0;
    font-family: 'Poppins', sans-serif;
}
.footer-ul a:hover{
    color: #FF0000;
}
.footer-ul-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}