header{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px;
    background-color: #fff;
}
.h-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 10px 100px;
}

.h-top .logo img{
    height: 80px;
}

.h-top .contact-info{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    color: black;
}

.h-top .mail,.phone,.location{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.h-top .mail i,.phone i,.location i{
    color: var(--secondary);
}

.h-top button{
    border-radius: 30px;
    transition:0.5s;
}
.h-top button:hover{
    background-color:var(--secondary);
}


.h-bottom{
    padding:0px 100px;
    background-color: var(--primary);
    color: #fff !important;
}

.h-bottom .navbar{
    background-color: var(--primary) !important;
    color: var(--secondary) !important;
    --bs-navbar-color:#ffff;
    --bs-navbar-active-color:#89a358;
    --bs-navbar-hover-color:#89a358;
}

.h-bottom .navbar .h-social{
    width: 20%;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.h-bottom .navbar .h-social a{
    color: #fff;
}

.h-bottom .navbar .h-social a:hover{
    color: var(--secondary);
}


/*--------------------- sec1 -----------------*/

.sec1{
    padding: 0px 100px;
    margin-bottom:50px ;
}
.sec1-container{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.sec1-container .right{
    display: flex;
    flex-direction: column;
    width: 30%;
    align-items: center;
}
.sec1-container .right .num-1 ,.num-2{
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    color: #fff;
}
.sec1-container .right .num-1{
    background-color: #89a35891;
}
.sec1-container .right .num-2{
    background-color: #007c8bd1;
}
.sec1-container .right .num-1 h2 ,.num-2 h2{
    margin-top: 20px;
    margin-bottom: 0px;
}
.sec1-container .carousel img{
    height: 500px;
}
.sec1-container .carousel{
    flex: 1;
}



/*--------------------- sec2 -----------------*/
.sec2{
    padding: 40px 100px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.sec2 hr{
    width: 20%;
    border: solid 3px var(--secondary);
    opacity: 0.55;
    margin-bottom: 100px;
}

.sec2 h1{
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary);
}
.sec2 .sec2-cards{
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.sec2 .sec2-cards img{
    height: 80px;

}

.sec2 .sec2-cards .card{
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: larger;
    border-radius: 0px;
    border: none;
    border-bottom: solid 6px var(--primary);
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.075);
}

.sec2 .sec2-cards .card h5{
    color: var(--primary);
    font-size: 1.5em;
    font-weight: 600;
}

/*--------------------- sec3 -----------------*/
.sec3{
    padding: 20px 100px;
    background-color: #007c8bd1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.sec3 hr{
    width: 20%;
    border: solid 3px #fff;
    opacity: 0.55;
    margin-bottom: 40px;
}
.sec3 h1{
    text-align: center;
    margin: 10px;
    font-weight: 600;
    color: #fff;
}

.sec3 .sec3-cards{
    padding: 20px;
    margin-bottom: 20px;
}

.sec3 .sec3-cards .card{
    transition: 0.5s;
}
.sec3 .sec3-cards .card:hover{
    border-radius: 0px;
    border: dashed 2px #89a358;
    scale: 1.1;
}

.sec3 button{
    border-radius: 30px;
    background-color: #fff;
    color: #89a358;
    transition: 0.4s;
}

.sec3 button:hover{
    scale: 1.1;
    background-color: #89a358;
    color: #fff;
}

.sec3 .sec3-cards .card h5{
    color: var(--primary);
    font-size: 1.5em;
    font-weight: 600;
}






@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* نهايه سليدر شركاء النجاح*/



.footer {
    background-color: #e6f7f7;
    color: #034e6e;
    padding: 50px 0 20px;
    font-family: 'Arial', sans-serif;
    text-align: right;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    flex-direction: row-reverse;
    padding: 10px;
}

.footer-logo img {
    height: 250px;
    width: 250px;
}

.footer-about, .footer-form {
flex: 1;
min-width: 250px;
}

.footer-about h3, .footer-form h3 {
margin-bottom: 15px;
}

.footer-about p {
margin-bottom: 20px;
line-height: 1.6;
}

.contact-cards {
display: flex;
flex-direction: column;
gap: 15px;
}

.contact-card {
border: dashed 2px var(--primary);
background-color:#f7f8e6;
color: var(--secondary);
padding: 15px;
border-radius: 10px;
display: flex;
align-items: center;
    justify-content: center;
gap: 10px;
transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-card i {
font-size: 20px;
color: #012e41;
}

.contact-card:hover {
transform: translateY(-5px) scale(1.02);
background-color: var(--primary);
color: #fff;
}

.contact-card:hover i {
color: var(--secondary);
}

.footer-form form {
display: flex;
flex-direction: column;
gap: 15px;
}

.footer-form input, .footer-form textarea {
padding: 10px;
border: none;
border-radius: 5px;
width: 100%;
font-size: 16px;
    text-align: right;
}

.footer-form textarea {
min-height: 100px;
resize: vertical;
}

.footer-form button {
padding: 12px;
background-color: var(--primary);
color: var(--thaird);
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
transition: background-color 0.3s ease;
}

.footer-form button:hover {
background-color: #12d9ef;
}

.footer-social {
margin-top: 40px;
text-align: center;
}

.social-links a {
color: #012e41;
margin: 0 10px;
font-size: 20px;
transition: color 0.3s ease;
}

.social-links a:hover {
color: #f4b400;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #ffffff33;
    font-size: 0.9em;
    color: #ccc;
}

.footer-bottom a{
    text-decoration: none;
    color: #cccccc;
}


/* موبايل صغير (أقل من 576px) */
@media (max-width: 750px) {
body {
    font-size: 14px;
}
.sec1, .sec3, .sec2{
    padding: 20px 20px !important;
}

.h-top{
    flex-direction: column;
    padding: 5px !important;
}
.h-top .contact-info {
    font-size: 10px;
    gap: 5px;
    flex-direction: column;
    width: 100%;
    justify-content: space-around;
}
.h-top .mail, .phone, .location {
    gap: 5px;
}
.container-fluid{
    gap: 50%;
}
.container {
    padding: 0 10px;
}
.sec2 .sec2-cards{
    flex-direction: column;
}
.sec2 .sec2-cards .card{
    width: 100%;
}
.logo-group img {
width: 150px;
height: 100px;
}
button {
    padding: 8px 16px;
    font-size: 14px;
}

.partners-track {

    animation: scrollLoop 80s linear infinite;
}
iframe{
    width: 300px;
}
}