@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Almarai:wght@300;400;700;800&family=Cairo:wght@200..1000&family=El+Messiri:wght@400..700&family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&family=Noto+Kufi+Arabic:wght@100..900&family=Noto+Sans+Arabic:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Readex+Pro:wght@160..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');
:root {
--wpforms-field-border-radius: 3px;
--wpforms-field-border-style: solid;
--wpforms-field-border-size: 1px;
--wpforms-field-background-color: #ffffff;
--wpforms-field-border-color: rgba( 0, 0, 0, 0.25 );
--wpforms-field-border-color-spare: rgba( 0, 0, 0, 0.25 );
--wpforms-field-text-color: rgba( 0, 0, 0, 0.7 );
--wpforms-field-menu-color: #ffffff;
--wpforms-label-color: rgba( 0, 0, 0, 0.85 );
--wpforms-label-sublabel-color: rgba( 0, 0, 0, 0.55 );
--wpforms-label-error-color: #d63637;
--wpforms-button-border-radius: 3px;
--wpforms-button-border-style: none;
--wpforms-button-border-size: 1px;
--wpforms-button-background-color: #005148;
--wpforms-button-border-color: #005148;
--wpforms-button-text-color: #ffffff;
--wpforms-page-break-color: #005148;
--wpforms-background-image: none;
--wpforms-background-position: center center;
--wpforms-background-repeat: no-repeat;
--wpforms-background-size: cover;
--wpforms-background-width: 100px;
--wpforms-background-height: 100px;
--wpforms-background-color: rgba( 0, 0, 0, 0 );
--wpforms-background-url: none;
--wpforms-container-padding: 0px;
--wpforms-container-border-style: none;
--wpforms-container-border-width: 1px;
--wpforms-container-border-color: #000000;
--wpforms-container-border-radius: 3px;
--wpforms-field-size-input-height: 43px;
--wpforms-field-size-input-spacing: 15px;
--wpforms-field-size-font-size: 16px;
--wpforms-field-size-line-height: 19px;
--wpforms-field-size-padding-h: 14px;
--wpforms-field-size-checkbox-size: 16px;
--wpforms-field-size-sublabel-spacing: 5px;
--wpforms-field-size-icon-size: 1;
--wpforms-label-size-font-size: 16px;
--wpforms-label-size-line-height: 19px;
--wpforms-label-size-sublabel-font-size: 14px;
--wpforms-label-size-sublabel-line-height: 17px;
--wpforms-button-size-font-size: 17px;
--wpforms-button-size-height: 41px;
--wpforms-button-size-padding-h: 15px;
--wpforms-button-size-margin-top: 10px;
--wpforms-container-shadow-size-box-shadow: none;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    scroll-behavior: smooth;
}
body{
    background-color: #f8f9fa;
}
.btn{
    border-radius: 3px;
    padding: 10px 10px;
    border: none;
}
.elementor-widget-container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.green{
    color: #fff;
    background-color: #0c8072;
    margin: 35px auto;
    padding: 15px 10px;
    
}
.white{
    background-color: #f8f9fa;
    color: #343a40;
}
.green i{
    color: #fff;
}
a{
    text-decoration: none;
    color: #343a40;
    font-size: 15px;
    /* font-weight: bold; */
}
.cssbuttons-io-button {
    margin: 30px 0;
  display: flex;
  align-items: center;
  font-family: inherit;
  cursor: pointer;
  font-weight: 500;
  font-size: 17px;
  padding: 0.8em 1.5em 0.8em 1.2em;
  color: white;
  background: #ad5389;
  background: linear-gradient(
    0deg,
    #148477 0%,
    #2d9588 100%
  );
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em #005148;
  letter-spacing: 0.05em;
  border-radius: 20em;
}

.cssbuttons-io-button svg {
  margin-right: 8px;
}

.cssbuttons-io-button:hover {
  box-shadow: 0 0.5em 1.5em -0.5em #08725f;
 background: linear-gradient(
    0deg,
    #1d7167 0%,
    #25867b 100%
  );
}

.cssbuttons-io-button:active {
  box-shadow: 0 0.3em 1em -0.5em #13736a;
}

/* Home */
.Home{
    background-image: url(../images/ba.jpg);
    background-size: cover;
    /* background-position: center; */
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Overlay */
.Home::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0000007f;
    z-index: 1;
}

/* Header */
header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4vw;
    transition: all 0.3s ease;
    background: transparent; 
}

header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    padding: 1rem 4vw; 
}

/* Logo */
.Home header .logo img{
    width: 100px;
    max-width: 100%;
    z-index: 3;
}
header.scrolled .logo img{
    width: 70px;
}

/* Navbar */
.Home header .navbar nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.Home header .navbar nav ul a {
    color: var(--wpforms-field-background-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    position: relative; 
    padding-bottom: 5px; 
}
header.scrolled .navbar nav ul a{
    color: #1f1e1e;
}
.Home header .navbar nav ul a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: white;
    transition: width 0.3s ease; 
}

.Home header .navbar nav ul a:hover::after {
    width: 100%; 
}

/* =========================
   Responsive
========================= */

/* Tablet */
@media (max-width: 992px){
    .Home header{
        padding: 1.5rem 2rem;
    }

    .Home header .logo img{
        width: 130px;
    }
}

.menu-toggle{
    display: none;
}
.menu-toggle i{
    color: #fff;
    font-size: 30px;
}
header.scrolled .menu-toggle i{
    color: #6c6e6e;
}
@media (max-width: 768px){
header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    padding: 0.5rem 4vw; 
}
    .menu-toggle{
        display: block;
    }

    .Home header{
        flex-direction: row;
        justify-content: space-between;
    }

    .Home header .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        padding: 1.5rem 0;
    }

    .Home header .navbar.active{
        display: block;
    }

    .Home header .navbar nav ul{
        flex-direction: column;
        gap: 20px;
    }

    .Home header .navbar nav ul a{
        color: #1f1e1e;
        font-size: 1.2rem;
    }

    .Home header button{
        display: none;
    }
   .Home header .logo img{
    width: 70px;
}
}
.Home .title h1{
    padding: 0 4vw;
    position: absolute;
    bottom: 50px;
    font-size: 2.5rem;
    color: var(--wpforms-field-menu-color);
    z-index: 2;
    text-align: right !important;
}

/* About */
.About{
    background-color: var(--wpforms-field-menu-color);
    text-align: center;
    padding:  3.5rem 4vw ;
    margin:  1.5rem 0 ;
}
.About h2{
    color: #495057;
    font-size: 2rem;
}
.About p{
    margin-top: 20px;
    color: #9e9fa0;
    font-size: 17px;
}
/* Services */
.Services{
    /* background-color: var(--wpforms-field-menu-color); */
    text-align: center;
    padding:  3.5rem 0 ;
    margin:  4.5rem 0 ;
}
.Services h2{
    color: #495057;
    font-size: 2rem;
    margin-bottom: 25px;
}

.boxes{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* direction: ltr; */
}
.boxes .box{
    background-color:#ffffff;
    box-shadow: 0 0 5px 10px #efefef5b;
    width:700px;
    height: 250px;
    padding: 20px 13px;
    border-radius: 10px;
    margin: 10px 5px;
}
.boxes .box h2{
    font-size:1.5rem;
}
.boxes .box p{
    padding-top: 10px;
    color: #9e9fa0;
    font-size: 17px;
    width: 50%;
    margin: auto;
}
h3{
  position: relative;
  display: inline-block; 
  font-size: 55px;     
  font-family: sans-serif;
  color: #2d9588;       
  margin: 0;
  padding: 0 20px;      
  z-index: 1;
}

h3::before {
  content: "";
  position: absolute;
  bottom: 10px;        
  left: 50%;            
  transform: translateX(-50%); 
  width: 90px;        
  height: 20px;       
  background-color: #d1e9e5; 
  border-radius: 50px;  
  z-index: -1;         
}

/* projcet */
.projcet h2{
   color: #495057;
    font-size: 2rem;
    text-align: center;
}
/* Clients */
.Clients {
    text-align: center;
    padding: 3.5rem 4vw;
    margin: 1.5rem 0;
    background: #ffffff  !important;
}

.Clients h2 {
    color: #495057;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.img-clients {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.img-clients .box {
    border: 1px solid #eeeeee;
    border-radius: 12px; 
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    transition: transform 0.3s ease;
}

.img-clients .box:hover {
    transform: translateY(-5px); 
}

.img-clients .box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.num {
    background-color: #13736a;
}
.num h2 {
    background-color: #148477;
    font-size: 1.7rem;
    color: white;
    padding: 20px 20px;
}

.num-container {
    display: flex;
    justify-content: center;
    gap: 20px;
        padding: 60px 4vw;
    flex-wrap: wrap;
    padding: 20px;
}

.num-box {
    background-color: #157d71; 
    background-image: url('../images/pattern.png'); 
    background-blend-mode: overlay; 
    background-size: cover;
    margin: 50px 0;
    width: 270px;
    height: 140px;
    border-radius: 20px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.1); 
    border: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px){
    .num-box {
        margin: 10px 0;
    }
}

.num-box .number {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}
.num-box .sp {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.num-box p {
    font-size: 1.2rem;
    margin-top: 5px;
    font-weight: 500;
}
.stats-box {
    font-size: 4rem;
    font-weight: bold;
}
.stats-box p {
    font-size: 1.2rem;
    font-weight: normal;
    opacity: 0.8;
}


.main-footer {
    background-color: #fff;
    direction: rtl;
}

.footer-top {
    background-color: #108b7d;
    padding: 20px 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.footer-top:hover{
    color: #333;
}
.download-profile a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}
.download-profile a:hover{
    color: #e1e2e3;
}
.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 60px 4vw;
    gap: 50px;
}

.footer-brand .footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #777;
    line-height: 1.8;
    max-width: 500px;
}

.footer-links h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    background: none; 
    padding: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #777;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #38b6b6;
    padding-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.9rem;
}


.scroll-up {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #eee;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.scroll-up.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p {
        margin: auto;
    }
}


.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; 
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; 
    border-top: 5px solid #08725f; 
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.loader-hidden {
    opacity: 0;
    visibility: hidden;
}