/*==============================
      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;
}

}
/*==================================
      BEKO FINAL BLUE STYLE
==================================*/

:root{
    --main:#0096db;
    --dark:#004f8f;
    --light:#eef9ff;
}

/* الألوان الأساسية */

body{
    background:#f7fbff;
}

/* الهيرو */

.hero{
    background:linear-gradient(135deg,#004f8f,#0096db) !important;
}

.shape{
    background:linear-gradient(135deg,#0096db,#00b8ff)!important;
}

.badge{
    color:var(--main)!important;
}

.hero-content h1 span{
    color:#7fd8ff!important;
}

/* الأزرار */

.call-btn,
.red,
.device-card a,
.footer-contact a{
    background:var(--main)!important;
}

.call-btn:hover,
.red:hover,
.device-card a:hover,
.footer-contact a:hover{
    background:var(--dark)!important;
}

/* روابط المنيو */

.navbar ul li a:hover{
    color:var(--main)!important;
}

/* الكروت */

.device-card{
    border-top:5px solid var(--main);
}

.device-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,150,219,.20);
}

.article-card{
    border-right:6px solid var(--main);
    border-top:none;
}

.article-card h3{
    color:var(--dark);
}

.article-card h3 i{
    color:var(--main);
}

/* قسم لماذا نحن */

.feature i{
    background:var(--main);
}

.feature:hover{
    box-shadow:0 20px 45px rgba(0,150,219,.18);
}

/* الإحصائيات */

.counter{
    background:linear-gradient(135deg,#004f8f,#0096db)!important;
}

.counter-box h2{
    color:var(--main);
}

/* الفوتر */

footer{
    background:#003861!important;
}

footer a:hover{
    color:#53c7ff!important;
}

/* تحديد النص */

::selection{
    background:#0096db;
    color:#fff;
}

/* Scroll */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:#0096db;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#eef8ff;
}
/* ===== HERO FINAL ===== */

.shape,
.hero-image{
    display:none !important;
}

.hero{
    background:url(hero.jpg) center center/cover no-repeat !important;
    min-height:100vh;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-flex{
    position:relative;
    z-index:5;
    display:flex;
    justify-content:flex-end;
    width:100%;
}

.hero-content{
    width:650px;
    margin-right:0;
    margin-left:auto;
    text-align:right;
    color:#fff;
}

.hero-content h1,
.hero-content p,
.badge{
    text-align:right;
}

.hero-btns{
    justify-content:flex-end;
}

@media(max-width:768px){

.hero-content{
    width:100%;
    text-align:center;
}

.hero-content h1,
.hero-content p,
.badge{
    text-align:center;
}

.hero-btns{
    justify-content:center;
}

}
/* ===== Center Footer ===== */

footer{
    text-align:center !important;
}

footer .container,
.footer-grid{
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
    align-items:center !important;
    gap:25px !important;
    text-align:center !important;
}

.footer-grid > div{
    width:100% !important;
    max-width:700px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
}

.footer-grid a,
.footer-grid p,
.footer-grid h3{
    text-align:center !important;
}

.footer-logo{
    margin:0 auto 20px !important;
}

.copyright{
    width:100% !important;
    text-align:center !important;
    margin-top:30px !important;
}
@media (max-width:768px){

header{
    position:fixed;
}

.navbar{
    height:auto;
    padding:15px;
    flex-direction:column;
    gap:15px;
}

.logo img{
    height:50px;
}

.navbar ul{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.navbar ul li a{
    font-size:18px;
}

.call-btn{
    width:280px;
    text-align:center;
}

.hero{
    min-height:100vh;
    padding:200px 20px 80px;
}

.hero-content{
    width:100%;
    text-align:center;
}

.hero-content h1{
    font-size:54px;
    line-height:1.2;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
}

.badge{
    margin:auto auto 25px;
}

.hero-btns,
.hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
}

.hero-btns a,
.hero-buttons a{
    width:100%;
    max-width:320px;
}

}
/* ===== HERO MOBILE FINAL ===== */

@media (max-width:768px){

.hero{
    min-height:100vh !important;
    height:auto !important;
    padding:180px 20px 70px !important;

    display:flex !important;
    align-items:center !important;
}

.hero-flex,
.hero .container{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
}

.hero-content{
    width:100% !important;
    max-width:100% !important;

    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;

    text-align:center !important;
}

.hero-content h1{
    font-size:52px !important;
    line-height:1.2 !important;
    margin-bottom:20px !important;
}

.hero-content p{
    font-size:20px !important;
    line-height:1.8 !important;
    margin-bottom:25px !important;
}

.badge{
    margin:0 auto 20px !important;
}

.hero-btns,
.hero-buttons{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    width:100% !important;
    gap:16px !important;
    margin-top:25px !important;
}

.hero-btns .btn,
.hero-buttons .btn,
.hero-btns a,
.hero-buttons a{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;

    width:100% !important;
    max-width:320px !important;
    height:60px !important;
}
}
.hero-content .badge{
    display:inline-flex !important;
    align-items:center;
    gap:10px;
    padding:12px 28px;
    background:#1e90ff;
    color:#fff;
    border-radius:40px;
    font-size:18px;
    font-weight:700;
    margin:0 auto 25px;
}

.hero-content .badge i{
    color:#fff;
}
/*==================================
      UNIVERSAL PREMIUM NAVBAR
==================================*/

header{

position:fixed !important;

top:0 !important;
left:0 !important;
right:0 !important;

width:100% !important;

background:rgba(255,255,255,.92) !important;

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

box-shadow:0 8px 30px rgba(0,0,0,.12);

z-index:999999;

transition:.35s;

}

.navbar{

max-width:1400px;

margin:auto;

height:82px;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 25px;

}

.logo img{

height:58px;

}

.navbar ul{

display:flex;

align-items:center;

gap:35px;

list-style:none;

margin:0;

padding:0;

}

.navbar ul a{

font-size:18px;

font-weight:700;

color:#222;

transition:.3s;

}

.navbar ul a:hover{

color:#d71920;

}

.call-btn{

background:#d71920;

color:#fff;

padding:14px 28px;

border-radius:50px;

font-size:17px;

font-weight:700;

box-shadow:0 12px 25px rgba(0,123,255,.35);

transition:.3s;

}

.call-btn:hover{

transform:translateY(-3px);

background:#b60000;

}

/*==========================
        MOBILE
==========================*/

@media(max-width:768px){

header{

border-radius:0 0 25px 25px;

}

.navbar{

height:auto;

padding:14px 15px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

gap:12px;

}

.logo img{

height:42px;

}

.navbar ul{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:16px;

}

.navbar ul a{

font-size:15px;

}

.call-btn{

width:90%;

display:flex;

justify-content:center;

align-items:center;

padding:14px;

font-size:18px;

}

.hero{

padding-top:180px !important;

}

}
/*==================================
      UNIVERSAL PREMIUM NAVBAR
==================================*/

header{

position:fixed !important;

top:0 !important;
left:0 !important;
right:0 !important;

width:100% !important;

background:rgba(255,255,255,.92) !important;

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

box-shadow:0 8px 30px rgba(0,0,0,.12);

z-index:999999;

transition:.35s;

}

.navbar{

max-width:1400px;

margin:auto;

height:82px;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 25px;

}

.logo img{

height:58px;

}

.navbar ul{

display:flex;

align-items:center;

gap:35px;

list-style:none;

margin:0;

padding:0;

}

.navbar ul a{

font-size:18px;

font-weight:700;

color:#222;

transition:.3s;

}

.navbar ul a:hover{

color:#d71920;

}

.call-btn{

background:#d71920;

color:#fff;

padding:14px 28px;

border-radius:50px;

font-size:17px;

font-weight:700;

box-shadow:0 12px 25px rgba(0,123,255,.35);
transition:.3s;

}

.call-btn:hover{

transform:translateY(-3px);

background:#b60000;

}

/*==========================
        MOBILE
==========================*/

@media(max-width:768px){

header{

border-radius:0 0 25px 25px;

}

.navbar{

height:auto;

padding:14px 15px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

gap:12px;

}

.logo img{

height:42px;

}

.navbar ul{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:16px;

}

.navbar ul a{

font-size:15px;

}

.call-btn{

width:90%;

display:flex;

justify-content:center;

align-items:center;

padding:14px;

font-size:18px;

}

.hero{

padding-top:180px !important;

}

}
/* ===== تحويل جميع الأزرار للأحمر ===== */

.btn,
.hero .btn,
.hero-buttons .btn,
a.btn,
button,
.call-btn{
    background:#e30613 !important;
    border:2px solid #e30613 !important;
    color:#fff !important;
    box-shadow:0 10px 25px rgba(227,6,19,.35) !important;
    transition:.3s;
}

.btn:hover,
.hero .btn:hover,
.hero-buttons .btn:hover,
a.btn:hover,
button:hover,
.call-btn:hover{
    background:#b80010 !important;
    border-color:#b80010 !important;
    color:#fff !important;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(184,0,16,.45) !important;
}

/* الزر الأبيض يتحول للأحمر أيضاً */
.btn.white{
    background:#e30613 !important;
    border-color:#e30613 !important;
    color:#fff !important;
}
/* ===========================
   RED THEME - FULL WEBSITE
=========================== */

:root{
    --main:#e30613;
    --main-dark:#b80010;
    --main-light:#ff3a47;
}

/* النصوص والعناوين */
.hero h1 span,
.section-title span,
.logo span,
.counter h2,
.devices h3,
.services h3,
.about h2{
    color:var(--main)!important;
}

/* الأزرار */
.btn,
button,
.call-btn,
.hero-buttons .btn{
    background:var(--main)!important;
    border:2px solid var(--main)!important;
    color:#fff!important;
    box-shadow:0 12px 30px rgba(227,6,19,.35)!important;
}

.btn:hover,
button:hover,
.call-btn:hover{
    background:var(--main-dark)!important;
    border-color:var(--main-dark)!important;
    transform:translateY(-4px);
}

/* البادج */
.hero-badge{
    background:var(--main)!important;
    color:#fff!important;
}

/* الأيقونات */
i,
svg{
    color:var(--main)!important;
}

/* الخطوط والزخارف */
.line,
.divider,
.title-line{
    background:var(--main)!important;
}

/* الكروت */
.card:hover,
.service-card:hover,
.device-card:hover{
    border-color:var(--main)!important;
    box-shadow:0 15px 40px rgba(227,6,19,.2)!important;
}

/* الأرقام */
.counter-number{
    color:var(--main)!important;
}

/* الفوتر */
footer{
    background:#9f000d!important;
}

footer .btn{
    background:var(--main)!important;
}

/* الناف بار */
header{
    border-bottom:3px solid var(--main)!important;
}

/* روابط الناف */
nav a:hover,
nav a.active{
    color:var(--main)!important;
}

/* Scroll Bar */
::-webkit-scrollbar-thumb{
    background:var(--main)!important;
}

::selection{
    background:var(--main);
    color:#fff;
}
/* تحويل أي قسم أزرق للأحمر */

.counter,
.stats,
.statistics,
.numbers,
.counter-section{
    background:#e30613 !important;
}

/* لو فيه before أو after */
.counter::before,
.counter::after,
.stats::before,
.stats::after{
    background:#e30613 !important;
}

/* الكروت البيضاء داخل القسم */
.counter .box,
.counter-card,
.stats .card{
    background:#fff !important;
}

/* الأرقام */
.counter h2,
.counter .number{
    color:#e30613 !important;
}
/* ===== Hero Badge Mobile Fix ===== */
@media (max-width:768px){

.hero-content{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.hero-badge{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#e30613 !important;
    color:#fff !important;
    padding:12px 24px !important;
    border-radius:40px !important;
    font-size:15px !important;
    font-weight:700 !important;
    margin:0 auto 22px !important;
    position:relative !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    transform:none !important;
    z-index:999 !important;
    box-shadow:0 10px 25px rgba(227,6,19,.35);
}

.hero-badge i{
    color:#fff !important;
}

}
/* إخفاء الناف بار بالكامل */
header,
.navbar,
nav {
    display: none !important;
}

/* إزالة أي مسافة أعلى الصفحة */
.hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
    min-height: 100vh;
}

body {
    margin: 0;
    padding: 0;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero {
    width: 100%;
    max-width: 100%;
}

.hero::before,
.hero::after {
    display: none;
}
/* ===== FIX WHITE STRIP ===== */

html,
body{
    margin:0 !important;
    padding:0 !important;
    overflow-x:hidden !important;
}

.hero{
    width:100vw !important;
    min-height:100vh !important;
    margin:0 !important;
    padding:0 !important;
    overflow:hidden !important;
    position:relative !important;
}

.hero .container,
.hero-flex,
.hero-content{
    width:100% !important;
    max-width:100% !important;
}

.hero img,
.hero-bg{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
}

.shape,
.hero-image{
    display:none !important;
}
/* إخفاء الناف بار بالكامل */
header,
.navbar,
nav {
    display: none !important;
}

/* إزالة أي مسافة أعلى الصفحة */
.hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
    min-height: 100vh;
}

body {
    margin: 0;
    padding: 0;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero {
    width: 100%;
    max-width: 100%;
}

.hero::before,
.hero::after {
    display: none;
}
/* ===== FIX WHITE STRIP ===== */

html,
body{
    margin:0 !important;
    padding:0 !important;
    overflow-x:hidden !important;
}

.hero{
    width:100vw !important;
    min-height:100vh !important;
    margin:0 !important;
    padding:0 !important;
    overflow:hidden !important;
    position:relative !important;
}

.hero .container,
.hero-flex,
.hero-content{
    width:100% !important;
    max-width:100% !important;
}

.hero img,
.hero-bg{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
}

.shape,
.hero-image{
    display:none !important;
}
/* ===== FIX WHITE STRIP ===== */

html,
body{
    margin:0 !important;
    padding:0 !important;
    overflow-x:hidden !important;
}

.hero{
    width:100vw !important;
    min-height:100vh !important;
    margin:0 !important;
    padding:0 !important;
    overflow:hidden !important;
    position:relative !important;
}

.hero .container,
.hero-flex,
.hero-content{
    width:100% !important;
    max-width:100% !important;
}

.hero img,
.hero-bg{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
}

.shape,
.hero-image{
    display:none !important;
}
.call-btn{
    position:fixed;
    right:20px;
    bottom:100px;

    width:65px;
    height:65px;

    background:#16a34a;   /* أخضر */
    color:#fff;

    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;
    font-size:28px;

    box-shadow:0 10px 25px rgba(22,163,74,.35);
    z-index:999999;

    animation:phonePulse 1.5s infinite;
    transition:.3s;
}

.call-btn:hover{
    background:#15803d;
    transform:scale(1.1);
}

@keyframes phonePulse{
    0%{
        box-shadow:0 0 0 0 rgba(22,163,74,.7);
    }
    70%{
        box-shadow:0 0 0 18px rgba(22,163,74,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(22,163,74,0);
    }
}
.call-btn{
    background:#16a34a !important;
    box-shadow:0 10px 25px rgba(22,163,74,.35) !important;
}

.call-btn:hover{
    background:#15803d !important;
}

@keyframes phonePulse{
    0%{box-shadow:0 0 0 0 rgba(22,163,74,.7);}
    70%{box-shadow:0 0 0 18px rgba(22,163,74,0);}
    100%{box-shadow:0 0 0 0 rgba(22,163,74,0);}
}