@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');
*{
    font-family: 'Tajawal', sans-serif;
}
*{
   font-family: 'IBM Plex Sans Arabic', sans-serif;
*{
margin:0;
padding:0;
box-sizing:border-box;

scroll-behavior:smooth;
}
body{
background:#030b18;
color:#fff;
overflow-x:hidden;
}
/* NAVBAR */
.navbar{
position:fixed;
top:0;
left:0;
width:100%;
height:80px;
padding:0 50px;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.45);
backdrop-filter:blur(12px);
z-index:999;
border-bottom:1px solid rgba(0,174,255,.15);
}
.nav-logo{
height:60px;
}
.nav-links{
display:flex;
gap:30px;
list-style:none;
}
.nav-links a{
color:white;
text-decoration:none;
font-size:15px;
transition:.3s;
}
.nav-links a:hover{
color:#00b7ff;
}
/* HERO */
.hero{
height:100vh;
background:
linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.75)
),
url("images/hero.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}
.hero-content{
max-width:1100px;
padding:20px;
}
.hero-logo{
width: 500px;
display:block;
margin:auto;
margin-top: 100px;
margin-bottom:25px;
filter:
drop-shadow(0 0 20px rgba(0,174,255,.45));
animation:float 5s ease-in-out infinite;
}
.hero h1{
font-size:62px;
font-weight:700;
margin-bottom:20px;
}
.hero p{
font-size:24px;
line-height:2;
max-width:900px;
margin:auto;
color:#dce8ff;
}
.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:35px;
}
.btn-primary,
.btn-secondary{
padding:16px 40px;
border-radius:40px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}
.btn-primary{
background:#00b7ff;
color:white;
}
.btn-secondary{
border:2px solid #00b7ff;
color:white;
}
.btn-primary:hover,
.btn-secondary:hover{
transform:translateY(-5px);
}
/* SECTION */
.section{
padding:100px 8%;
text-align:center;
}
.section h2{
font-size:42px;
margin-bottom:40px;
color:#00c3ff;
}
.section p{
max-width:1100px;
margin:auto;
line-height:2.1;
font-size:18px;
color:#dce8ff;
}
/* SOLUTIONS */
.solutions-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:50px;
}
.solution-card{
background:#071428;
padding:30px;
border-radius:20px;
border:1px solid rgba(0,174,255,.2);
}
.solution-card i{
font-size:42px;
color:#00c3ff;
margin-bottom:15px;
}
.solution-card h3{
font-size:24px;
margin-bottom:15px;
}
/* ROBOTS */
.robots-wrapper{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
}
.robot-arrow{
width:60px;
height:60px;
border:none;
border-radius:50%;
background:#00c3ff;
color:white;
font-size:28px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
flex-shrink:0;
}
.robot-list{
display:flex;
gap:25px;
overflow:hidden;
width:600px;
margin:auto;
scroll-behavior:smooth;
}
.robot-card{
min-width:170px;
text-align:center;
}
.robot-card img{
width:140px;
height:140px;
object-fit:contain;
background:none;
filter:
drop-shadow(0 0 15px rgba(0,174,255,.25));
}
.robot-card h3{
margin-top:15px;
font-size:28px;
color:#00c3ff;
}
/* PARTNER */
.partner-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
margin-top:40px;
}
.partner-logo{
width: 250px;
max-width: 90%;
 margin-bottom:20px;
}
.stats-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}
.stat-box{
background:#071428;
padding:30px;
border-radius:18px;
border:1px solid rgba(0,174,2f5,.2);
}
.stat-box h3{
font-size:46px;
color:#00c3ff;
margin-bottom:10px;
}
/* TRUST */
.trust-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}
.trust-card{
background:#071428;
padding:25px;
border-radius:15px;
border:1px solid rgba(0,174,255,.2);
}
.trust-card i{
font-size:40px;
color:#00c3ff;
margin-bottom:15px;
}
/* CONTACT */
.contact-row{
display:flex;
justify-content:center;
gap:20px;
margin-top:25px;
flex-wrap:wrap;
}
.contact-box{
background:#071428;
padding:18px 25px;
border-radius:15px;
}
.social-icons{
display:flex;
justify-content:center;
gap:15px;
margin-top:30px;
}
.social-icons a{
width:55px;
height:55px;
background:#071428;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
color:white;
text-decoration:none;
font-size:22px;
}
/* FOOTER */
footer{
padding:30px;
text-align:center;
border-top:1px solid rgba(0,174,255,.15);
}
/* WHATSAPP */
.whatsapp{
position:fixed;
left:25px;
bottom:25px;
width:70px;
height:70px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:35px;
color:white;
text-decoration:none;
z-index:999;
}
/* ANIMATION */
@keyframes float{
0%{
transform:translateY(0);
}
50%{
transform:translateY(-10px);
}
100%{
transform:translateY(0);
}
}
/* MOBILE */
@media(max-width:900px){
.nav-links{
display:none;
}
.hero-logo{
width:220px;
}
.hero h1{
font-size:34px;
}
.hero p{
font-size:17px;
}
.solutions-grid,
.trust-grid,
.partner-container{
grid-template-columns:1fr;
}
.robot-list{
flex-wrap:wrap;
}
}.contact-row{
display:flex;
flex-direction:column;
align-items:center;
gap:15px;
margin-top:25px;
}
.page-content{
    max-width: 1200px;
    margin: auto;
    padding: 120px 40px;
    line-height: 2.2;
}

.page-content h1{
    font-size: 48px;
    color: #00c3ff;
    margin-bottom: 40px;
    text-align: center;
}

.page-content h2{
    font-size: 32px;
    color: #00c3ff;
    margin-top: 50px;
    margin-bottom: 20px;
}

.page-content p{
    font-size: 20px;
    color: #d8e6f3;
}

.page-content ul{
    padding-right: 25px;
}

.page-content li{
    color: #d8e6f3;
    font-size: 19px;
    margin-bottom: 12px;
}

nav{
    position: fixed;
    top:0;
    width:100%;
    z-index:1000;
}
.page-content{
    max-width: 1100px;
    margin: 120px auto;
    padding: 40px;
    color: #fff;
    line-height: 2.2;
    font-size: 18px;
}

.page-content h1{
    color: #00cfff;
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
}

.page-content h2{
    color: #00cfff;
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.page-content p{
    margin-bottom: 20px;
    color: #d9e7f5;
}

.page-content ul{
    padding-right: 25px;
}

.page-content li{
    margin-bottom: 15px;
}
    .robot-page-image{
    display:block;
    margin:30px auto;
    width:70%;
    max-width:700px;
    border-radius:0;
    box-shadow:none;
}
}robot-page-image
.page-content{
    max-width:1100px;
    margin:auto;
    text-align:center;
    padding:120px 30px;
}

.page-content p{
    text-align:right;
    line-height:2;
} 
.robot-card{
    text-decoration:none;
    color:#fff;
    cursor:pointer;
}

.robot-card img{
    width:100%;
    border-radius:18px;
}

.robot-card h3{
    margin-top:15px;
    text-align:center;
}
.robot-gallery{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}

.robot-page-image{
    display:block;
    margin:30px auto;
    width:70%;
    max-width:700px;
}.partner-logo{
    width: 280px;
    max-width: 100%;
    margin-bottom: 25px;
}
.read-more-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 30px;
    background:#00c3ff;
    color:white;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    transition:0.3s;
}

.read-more-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(0,195,255,.5);
}
.partner-logo{
    width: 500px !important;
    max-width: 500px !important;
}.robot-gallery{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    margin:30px 0;
}

.robot-page-image{
    width:250px;
    height:250px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 0 20px rgba(0,174,255,.3);
}.robot-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0,174,255,.4);
    transition: 0.3s;
}.robot-page-image{
    transition: 0.3s;
}

.robot-page-image:hover{
    transform: scale(1.05);
}

.contact-info a,
.contact-info a:visited,
.contact-info a:hover{
    color: #00c3ff;
    text-decoration: none;
}.robot-page{
    max-width:1200px;
    margin:auto;
    padding:120px 20px;
    text-align:center;
}

.slider-container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.slider{
    width:600px;
    max-width:100%;
}

.slide{
    display:none;
    width:100%;
    border-radius:20px;
}

.slide.active{
    display:block;
}

.slider-btn{
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:#00c3ff;
    color:white;
    font-size:28px;
    cursor:pointer;
}

.robot-page h1{
    margin-top:40px;
    color:#00c3ff;
    font-size:42px;
}

.robot-description{
    margin-top:30px;
    line-height:2;
    font-size:22px;
    color:white;
}

.back-btn{
    display:inline-block;
    margin-top:40px;
    padding:15px 35px;
    background:#00c3ff;
    color:white;
    text-decoration:none;
    border-radius:12px;
}.single-robot-image{
    width:600px;
    max-width:100%;
    border-radius:20px;
}.certificates{
    text-align:center;
    padding:60px 20px;
}

.certificates h2{
    color:#00c3ff;
    font-size:38px;
    margin-bottom:30px;
}

.certificates-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.certificates-grid img{
    width:350px;
    border-radius:15px;
    box-shadow:0 0 20px rgba(0,195,255,.3);
    transition:.3s;
}

.certificates-grid img:hover{
 .robot-page-image{
    display:block;
    margin:30px auto;
    width:100%;
    max-width:1000px;
    border-radius:0;
    box-shadow:none !important;
    border:none !important;
    background:none !important;
    outline:none !important;
}

.partner-logo-big{
    width:180px !important;
    max-width:180px !important;
    display:block;
    margin:20px auto;
    border:none;
    box-shadow:none;
    background:none;
}
.company-info{
    text-align:center;
    margin-bottom:15px;
}

.info-box{
    background:none;
    padding:0;
    color:#d9e7f5;
    font-size:12px;
    margin:3px 0;
}
}
.robot-page{
    max-width: 1100px;
    margin: auto;
    padding: 120px 40px;
}

.robot-description{
    max-width: 900px;
    margin: 30px auto;
    line-height: 2.2;
    text-align: center;
}

.robot-list-info{
    max-width: 900px;
    margin: 20px auto;
    text-align: right;
    display: block;
}

.robot-list-info li{
    display: list-item;
    margin-bottom: 15px;
    line-height: 2;
}

.spec-box{
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255,255,255,.05);
    border-radius: 15px;
    text-align: right;
}

h1,h2{
    text-align:center;
}.slide{
    width: 100%;
    height: 500px;
    object-fit: cover;
}