/*==============================
      Global Style
==============================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Cairo',sans-serif;
scroll-behavior:smooth;
}

body{
background:#fff;
color:#222;
overflow-x:hidden;
line-height:1.8;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

/*==============================
         Navbar
==============================*/

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
z-index:9999;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.navbar{

height:90px;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo img{

height:65px;

}

.navbar ul{

display:flex;

gap:35px;

}

.navbar ul li a{

color:#222;

font-size:18px;

font-weight:700;

transition:.3s;

}

.navbar ul li a:hover{

color:#00AEEF;

}

.call-btn{

background:#00AEEF;

color:#fff;

padding:15px 30px;

border-radius:50px;

font-size:17px;

font-weight:700;

transition:.3s;

}

.call-btn:hover{

background:#003B73;

}

/*==============================
          Hero
==============================*/

.hero{

min-height:100vh;

background:linear-gradient(135deg,#003B73,#00AEEF);

display:flex;

align-items:center;

padding-top:120px;

position:relative;

overflow:hidden;

}

.overlay{

position:absolute;

width:100%;

height:100%;

background:rgba(0,0,0,.15);

}

.hero .container{

position:relative;

z-index:2;

}

.hero-content{

max-width:700px;

color:#fff;

}

.hero-content span{

display:inline-block;

background:#fff;

color:#00AEEF;

padding:12px 25px;

border-radius:50px;

font-weight:700;

margin-bottom:25px;

}

.hero-content h1{

font-size:72px;

line-height:1.2;

margin-bottom:20px;

font-weight:900;

}

.hero-content h1 span{

background:none;

padding:0;

color:#fff;

}

.hero-content p{

font-size:21px;

line-height:2;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:20px;

}

.btn{

padding:18px 38px;

border-radius:50px;

font-size:18px;

font-weight:bold;

transition:.3s;

}

.red{

background:#fff;

color:#00AEEF;

}

.red:hover{

transform:translateY(-5px);

}

.white{

border:2px solid #fff;

color:#fff;

}

.white:hover{

background:#fff;

color:#00AEEF;

}
/*==============================
        Devices Section
==============================*/

.devices{
    padding:100px 0;
    background:#f7f9fc;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:45px;
    color:#003B73;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.devices-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.device-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    text-align:center;
}

.device-card:hover{
    transform:translateY(-10px);
}

.device-card img{
    width:100%;
    height:250px;
    object-fit:contain;
    padding:20px;
    background:#fff;
}

.device-card h3{
    color:#003B73;
    font-size:28px;
    margin:20px 0 10px;
}

.device-card p{
    color:#666;
    padding:0 20px;
    min-height:70px;
}

.device-card a{
    display:inline-block;
    margin:25px 0 30px;
    background:#00AEEF;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.device-card a:hover{
    background:#003B73;
}

/*==============================
      Articles Section
==============================*/

.articles-section{
    padding:90px 0;
    background:#fff;
}

.articles-grid{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.article-card{
    background:#fff;
    border:3px solid #00AEEF;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.article-card:hover{
    transform:translateY(-8px);
}

.article-card h3{
    color:#003B73;
    font-size:32px;
    margin-bottom:20px;
}

.article-card h3 i{
    color:#00AEEF;
    margin-left:10px;
}

.article-card p{
    color:#555;
    line-height:2.1;
    font-size:19px;
}

/*==============================
        About
==============================*/

.about{
    padding:100px 0;
    background:#f7f9fc;
}

.about .container{
    display:flex;
    align-items:center;
    gap:70px;
}

.about-img img{
    width:500px;
    border-radius:25px;
}

.about-text h2{
    color:#003B73;
    font-size:45px;
    margin-bottom:30px;
}

.about-text ul li{
    margin:18px 0;
    font-size:22px;
    color:#444;
}
/*==============================
          Counter
==============================*/

.counter{
    background:linear-gradient(135deg,#003B73,#00AEEF);
    padding:90px 0;
}

.counter .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.counter-box{
    background:#fff;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.35s;
}

.counter-box:hover{
    transform:translateY(-10px);
}

.counter-box h2{
    font-size:52px;
    color:#00AEEF;
    margin-bottom:15px;
    font-weight:900;
}

.counter-box span{
    font-size:22px;
    color:#444;
    font-weight:700;
}

/*==============================
             Footer
==============================*/

footer{
    background:#052c4f;
    color:#fff;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

footer h3{
    font-size:28px;
    margin-bottom:25px;
}

footer p{
    color:#ddd;
    line-height:2;
}

footer a{
    display:block;
    color:#ddd;
    margin:12px 0;
    transition:.3s;
}

footer a:hover{
    color:#00AEEF;
}

.footer-contact a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#00AEEF;
    color:#fff;
    padding:15px 25px;
    border-radius:40px;
    margin-top:20px;
}

.footer-contact a:hover{
    background:#fff;
    color:#003B73;
}

.copyright{
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
    padding-top:25px;
    color:#bbb;
}

/*==============================
          Animations
==============================*/

.device-card,
.article-card,
.counter-box{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

/*==============================
        Responsive
==============================*/

@media(max-width:992px){

.devices-grid{
grid-template-columns:repeat(2,1fr);
}

.counter .container{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.about .container{
flex-direction:column;
}

.hero-content h1{
font-size:50px;
}

}

@media(max-width:768px){

.navbar{
height:75px;
}

.navbar ul{
display:none;
}

.logo img{
height:50px;
}

.call-btn{
padding:12px 18px;
font-size:15px;
}

.hero{
padding:120px 20px 70px;
text-align:center;
}

.hero-content{
max-width:100%;
}

.hero-content h1{
font-size:40px;
}

.hero-content p{
font-size:18px;
}

.hero-buttons{
flex-direction:column;
gap:15px;
}

.hero-buttons .btn{
width:100%;
}

.devices-grid{
grid-template-columns:1fr;
}

.counter .container{
grid-template-columns:1fr;
}

.counter-box{
padding:30px;
}

.article-card{
padding:25px;
}

.article-card h3{
font-size:24px;
}

.article-card p{
font-size:17px;
}

.footer-grid{
gap:35px;
}

}
.hero{

position:relative;

height:100vh;

overflow:hidden;

display:flex;

align-items:center;

}

.hero-bg{

position:absolute;

width:100%;

height:100%;

object-fit:cover;

}

.overlay{

position:absolute;

width:100%;

height:100%;

background:rgba(0,0,0,.55);

}

.shape{

position:absolute;

right:-120px;

top:0;

width:900px;

height:100%;

background:linear-gradient(135deg,#00AEEF,#0076C0);

clip-path:polygon(30% 0,100% 0,100% 100%,0 100%);

opacity:.9;

}

.hero-flex{

position:relative;

z-index:10;

display:flex;

align-items:center;

justify-content:space-between;

gap:80px;

}

.hero-image{

flex:1;

text-align:center;

}

.hero-image img{

width:480px;

filter:drop-shadow(0 20px 35px rgba(0,0,0,.35));

animation:float 3s ease infinite;

}

.hero-content{

flex:1;

color:#fff;

}

.badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:14px 28px;

background:#fff;

color:#00AEEF;

border-radius:40px;

font-weight:700;

margin-bottom:25px;

}

.hero-content h1{

font-size:75px;

line-height:1.2;

font-weight:900;

margin-bottom:20px;

}

.hero-content h1 span{

color:#00AEEF;

}

.hero-content p{

font-size:22px;

line-height:2;

margin-bottom:40px;

}

.hero-btns{

display:flex;

gap:20px;

}

.btn{

padding:18px 45px;

border-radius:50px;

font-size:18px;

font-weight:bold;

transition:.3s;

}

.red{

background:#00AEEF;

color:#fff;

}

.red:hover{

transform:translateY(-5px);

}

.white{

border:2px solid #fff;

color:#fff;

}

.white:hover{

background:#fff;

color:#00AEEF;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

}
/*========== Why Choose Us ==========*/

.why-us{
    padding:100px 0;
    background:#f8fafc;
}

.why-us .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.why-image img{
    width:100%;
    max-width:520px;
    display:block;
    margin:auto;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.why-content h5{
    color:#00AEEF;
    font-size:18px;
    margin-bottom:10px;
}

.why-content h2{
    font-size:42px;
    color:#111;
    margin-bottom:25px;
    line-height:1.4;
}

.why-content p{
    color:#666;
    line-height:2;
    margin-bottom:35px;
    font-size:18px;
}

.features{
    display:grid;
    gap:22px;
}

.feature{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    padding:20px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.feature:hover{
    transform:translateY(-6px);
}

.feature i{
    width:60px;
    height:60px;
    background:#00AEEF;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.feature h3{
    font-size:24px;
    margin-bottom:8px;
    color:#111;
}

.feature p{
    margin:0;
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){

.why-us .container{
grid-template-columns:1fr;
}

.why-image{
order:2;
}

.why-content{
order:1;
}

}