/* =========================
   بيت الصيانة - style.css
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Cairo",sans-serif;
    background:#f7f9fc;
    color:#222;
    line-height:1.7;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Top Bar */

.top-bar{
    background:#082a63;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.top-right,
.top-left{
    display:flex;
    gap:20px;
    align-items:center;
}

.top-left a{
    color:#fff;
    transition:.3s;
}

.top-left a:hover{
    color:#0d5be1;
}

/* Navbar */

header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.navbar{
    height:85px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo h2{
    color:#0d5be1;
    font-size:30px;
}

.logo p{
    color:#777;
    font-size:14px;
}

nav ul{
    display:flex;
    gap:28px;
}

nav a{
    font-weight:700;
    transition:.3s;
}

nav a:hover{
    color:#0d5be1;
}

.call-btn{
    background:#0d5be1;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.call-btn:hover{
    background:#082a63;
}

/* Hero */
.hero{

    background:#fff;
    padding:80px 0;

}

.hero-content{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

}

.hero-text{

    flex:1;

}

.hero-text h1{

    font-size:60px;
    line-height:1.3;
    font-weight:800;
    color:#222;

}

.hero-text h1 span{

    color:#0d5be1;
    display:block;

}

.hero-text p{

    margin:30px 0;
    color:#666;
    font-size:19px;

}

.hero-features{

    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:35px;

}

.hero-features div{

    background:#f5f7fb;
    padding:15px 20px;
    border-radius:10px;
    font-weight:600;

}

.hero-features i{

    color:#0d5be1;
    margin-left:8px;

}

.main-btn{

    background:#0d5be1;
    color:#fff;
    padding:16px 38px;
    border-radius:10px;
    display:inline-block;
    transition:.3s;

}

.main-btn:hover{

    background:#082a63;
    transform:translateY(-3px);

}

.hero-image{

    flex:1;
    text-align:center;

}

.hero-image img{

    width:100%;
    max-width:650px;

}

/* Sections */

section{
    padding:70px 0;
}

section h2{
    text-align:center;
    margin-bottom:40px;
    color:#082a63;
}

/* Features */

.features .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.feature-card{
    background:#fff;
    border-radius:15px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

/* Services */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.service-card{
    height:300px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

/* CTA */

.cta{
    background:#0d5be1;
    color:#fff;
    text-align:center;
}

.cta a{
    display:inline-block;
    margin-top:25px;
    background:#fff;
    color:#0d5be1;
    padding:14px 32px;
    border-radius:8px;
    font-weight:bold;
}

/* Footer */

footer{
    background:#082a63;
    color:#fff;
    text-align:center;
    padding:40px 0;
}

/* ===============================
   Responsive
================================ */

@media (max-width:992px){

.top-bar{
display:none;
}

.navbar{

flex-direction:column;
height:auto;
padding:20px 0;
gap:15px;

}

nav{

display:none;

}

.call-btn{

width:220px;
text-align:center;

}

/* Hero */

.hero{

padding:70px 0;

}

.hero-content{

flex-direction:column-reverse;
text-align:center;
gap:40px;

}

.hero-text{

width:100%;

}

.hero-text h1{

font-size:42px;

}

.hero-text p{

font-size:18px;

}

.hero-features{

justify-content:center;

}

.hero-image{

width:100%;

}

.hero-image img{

width:100%;
max-width:450px;
margin:auto;

}

.main-btn{

width:220px;

}

}


@media (max-width:576px){

.hero{

padding:50px 0;

}

.hero-text h1{

font-size:30px;
line-height:1.4;

}

.hero-text p{

font-size:16px;

}

.hero-features{

flex-direction:column;
align-items:center;

}

.hero-features div{

width:100%;
max-width:260px;

}

.main-btn{

width:100%;
max-width:260px;

}

.logo h2{

font-size:28px;

}

.logo p{

font-size:13px;

}

}
.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.05);
}
@media (max-width:768px){

.logo img{
    height:55px;
}

}
.service-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:140px;
    height:140px;
    object-fit:contain;
    margin:0 auto 20px;
}

.service-card h3{
    font-size:22px;
    margin-bottom:20px;
}

.service-btn{
    display:inline-block;
    background:#0d5be1;
    color:#fff;
    padding:12px 28px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.service-btn:hover{
    background:#082a63;
}
/* ===============================
   Services Layout
================================ */

.services{
    padding:80px 0;
}

.services h2{
    font-size:38px;
    margin-bottom:45px;
}

.service-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:22px;

    margin-top:40px;

}

.service-card{

    background:#fff;

    border-radius:18px;

    padding:25px 15px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid #eef2f8;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.service-card img{

    width:110px;

    height:110px;

    object-fit:contain;

    margin:0 auto 20px;

    transition:.3s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-card h3{

    font-size:22px;

    margin-bottom:18px;

    color:#222;

    min-height:60px;

}

.service-btn{

    display:inline-block;

    background:#0d5be1;

    color:#fff;

    padding:12px 26px;

    border-radius:8px;

    font-weight:700;

    transition:.3s;

}

.service-btn:hover{

    background:#082a63;

}


/* ===============================
   Responsive
================================ */

@media (max-width:1200px){

.service-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media (max-width:768px){

.service-grid{

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.service-card img{

width:90px;

height:90px;

}

.service-card h3{

font-size:18px;

}

}

@media (max-width:500px){

.service-grid{

grid-template-columns:1fr;

}

}
/*=========================
        Brands
=========================*/

.brands{

padding:80px 0;

background:#fff;

}

.brands h2{

font-size:38px;

text-align:center;

margin-bottom:45px;

color:#082a63;

}

.brands-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:20px;

}

.brand-card{

height:110px;

background:#fff;

border-radius:15px;

display:flex;

align-items:center;

justify-content:center;

border:1px solid #e9eef5;

box-shadow:0 8px 25px rgba(0,0,0,.06);

transition:.3s;

}

.brand-card:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.brand-card img{

width:120px;

max-height:60px;

object-fit:contain;

filter:grayscale(100%);

opacity:.8;

transition:.3s;

}

.brand-card:hover img{

filter:none;

opacity:1;

transform:scale(1.08);

}

/* Responsive */

@media(max-width:992px){

.brands-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:600px){

.brands-grid{

grid-template-columns:repeat(2,1fr);

}

}
/*=========================
      Premium Brands
=========================*/

.brands{
    position: relative;
    padding:90px 0;
    background:linear-gradient(180deg,#ffffff,#f5f9ff);
    overflow:hidden;
}

.brands::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:#0d5be10d;
    top:-180px;
    left:-150px;
    filter:blur(20px);
}

.brands::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#0d5be108;
    bottom:-250px;
    right:-150px;
    filter:blur(30px);
}

.brands h2{

    font-size:48px;
    color:#082a63;
    margin-bottom:15px;
    position:relative;

}

.brands h2::after{

    content:"";
    width:90px;
    height:5px;
    background:#0d5be1;
    position:absolute;
    bottom:-18px;
    left:50%;
    transform:translateX(-50%);
    border-radius:20px;

}

.brands-grid{

display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
margin-top:60px;

}

.brand-card{

position:relative;

background:#fff;

height:170px;

border-radius:22px;

display:flex;

align-items:center;

justify-content:center;

overflow:hidden;

border:1px solid #edf2fb;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.4s;

cursor:pointer;

}

.brand-card::before{

content:"";

position:absolute;

top:-120%;

left:-120%;

width:250%;

height:250%;

background:linear-gradient(
45deg,
transparent,
rgba(255,255,255,.75),
transparent
);

transform:rotate(25deg);

transition:.7s;

}

.brand-card:hover::before{

left:100%;

top:100%;

}

.brand-card:hover{

transform:translateY(-12px) scale(1.03);

box-shadow:0 25px 45px rgba(13,91,225,.22);

border-color:#0d5be1;

}

.brand-card img{

width:130px;

max-height:65px;

object-fit:contain;

transition:.4s;

filter:grayscale(100%);

opacity:.8;

}

.brand-card:hover img{

transform:scale(1.12);

filter:none;

opacity:1;

}

/* نبضة خفيفة */

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.03);
}

100%{
transform:scale(1);
}

}

.brand-card:nth-child(odd){

animation:pulse 5s infinite;

}

/* Responsive */

@media(max-width:1200px){

.brands-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.brands-grid{

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.brand-card{

height:140px;

}

.brand-card img{

width:90px;

}

}

@media(max-width:480px){

.brands-grid{

grid-template-columns:1fr;

}

}
/*==================================
      PREMIUM BRANDS SECTION
==================================*/

.brands{

    position:relative;

    padding:100px 0;

    background:linear-gradient(180deg,#ffffff,#f5f9ff);

    overflow:hidden;

}

.brands::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(13,91,225,.06);

    top:-220px;
    left:-180px;

    filter:blur(30px);

}

.brands::after{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

    border-radius:50%;

    background:rgba(13,91,225,.05);

    bottom:-250px;
    right:-180px;

    filter:blur(40px);

}

.brands h2{

    text-align:center;

    font-size:46px;

    color:#082a63;

    margin-bottom:15px;

    position:relative;

}

.brands h2::after{

    content:"";

    width:90px;

    height:5px;

    background:#0d5be1;

    border-radius:20px;

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:-18px;

}

/*==========================*/

.brands-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:70px;

}

/*==========================*/

.brand-card{

    position:relative;

    height:170px;

    background:#fff;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

    border:1px solid #edf2fb;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.4s;

    opacity:0;

    transform:translateY(60px);

    animation:brandReveal .8s forwards;

}

.brand-card:nth-child(1){animation-delay:.1s;}
.brand-card:nth-child(2){animation-delay:.2s;}
.brand-card:nth-child(3){animation-delay:.3s;}
.brand-card:nth-child(4){animation-delay:.4s;}
.brand-card:nth-child(5){animation-delay:.5s;}
.brand-card:nth-child(6){animation-delay:.6s;}
.brand-card:nth-child(7){animation-delay:.7s;}
.brand-card:nth-child(8){animation-delay:.8s;}
.brand-card:nth-child(9){animation-delay:.9s;}
.brand-card:nth-child(10){animation-delay:1s;}

@keyframes brandReveal{

from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*==========================*/

.brand-card::before{

content:"";

position:absolute;

top:-140%;

left:-140%;

width:280%;

height:280%;

background:linear-gradient(

45deg,

transparent,

rgba(255,255,255,.8),

transparent

);

transform:rotate(25deg);

transition:.8s;

}

.brand-card:hover::before{

top:100%;

left:100%;

}

/*==========================*/

.brand-card::after{

content:"";

position:absolute;

width:250px;

height:250px;

background:radial-gradient(circle,#0d5be130,transparent);

top:-150px;

left:-150px;

transition:.5s;

}

.brand-card:hover::after{

top:-40px;

left:-40px;

}

/*==========================*/

.brand-card:hover{

transform:translateY(-12px) scale(1.05);

box-shadow:

0 18px 40px rgba(13,91,225,.22),

0 0 30px rgba(13,91,225,.18);

border-color:#0d5be1;

}

/*==========================*/

.brand-card img{

width:125px;

max-height:65px;

object-fit:contain;

filter:grayscale(100%);

opacity:.8;

transition:.4s;

}

.brand-card:hover img{

filter:none;

opacity:1;

transform:scale(1.12);

}

/*==========================*/

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.03);

}

100%{

transform:scale(1);

}

}

.brand-card:nth-child(odd){

animation:

brandReveal .8s forwards,

pulse 5s infinite;

}

/*==========================
      Responsive
==========================*/

@media(max-width:1200px){

.brands-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.brands-grid{

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.brand-card{

height:145px;

}

.brand-card img{

width:95px;

}

}

@media(max-width:480px){

.brands-grid{

grid-template-columns:1fr;

}

}
/*==================================
          Why Us
==================================*/

.why-us{

padding:90px 0;

background:#f7f9fc;

}

.why-us h2{

text-align:center;

font-size:46px;

color:#082a63;

margin-bottom:15px;

}

.why-desc{

text-align:center;

color:#777;

font-size:20px;

margin-bottom:60px;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.why-card{

background:#fff;

padding:35px 25px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

border:1px solid #eef2f8;

}

.why-card:hover{

transform:translateY(-12px);

box-shadow:0 20px 45px rgba(13,91,225,.18);

}

.why-icon{

width:80px;

height:80px;

margin:auto;

border-radius:50%;

background:#0d5be1;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

margin-bottom:25px;

transition:.3s;

}

.why-card:hover .why-icon{

transform:rotate(360deg);

background:#082a63;

}

.why-card h3{

font-size:24px;

margin-bottom:15px;

color:#082a63;

}

.why-card p{

color:#666;

line-height:1.8;

}

@media(max-width:992px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.why-grid{

grid-template-columns:1fr;

}

}
/*==========================
      Testimonials
==========================*/

.testimonials{

padding:100px 0;

background:#fff;

}

.testimonials h2{

text-align:center;

font-size:46px;

color:#082a63;

margin-bottom:15px;

}

.section-desc{

text-align:center;

color:#777;

margin-bottom:60px;

font-size:20px;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.testimonial-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

border:1px solid #edf2fb;

}

.testimonial-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(13,91,225,.15);

}

.stars{

color:#ffc107;

font-size:24px;

margin-bottom:20px;

}

.testimonial-card p{

color:#666;

line-height:2;

margin-bottom:25px;

}

.client{

display:flex;

align-items:center;

gap:15px;

}

.client img{

width:60px;

height:60px;

border-radius:50%;

}

.client h4{

margin:0;

font-size:20px;

}

.client span{

color:#777;

font-size:14px;

}

@media(max-width:992px){

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.testimonial-grid{

grid-template-columns:1fr;

}

}
/*==========================
      WhatsApp Button
===========================*/

.whatsapp{

position:fixed;

bottom:25px;

left:25px;

z-index:9999;

}

.whatsapp-btn{

width:65px;

height:65px;

border:none;

border-radius:50%;

background:#25D366;

color:#fff;

font-size:34px;

cursor:pointer;

box-shadow:0 12px 25px rgba(0,0,0,.25);

transition:.3s;

}

.whatsapp-btn:hover{

transform:scale(1.1);

}

.whatsapp-menu{

position:absolute;

bottom:80px;

left:0;

display:none;

flex-direction:column;

gap:12px;

}
.whatsapp-menu{
    position:absolute;
    bottom:80px;
    left:0;
    display:none;
    flex-direction:column;
    gap:12px;
}

.whatsapp-menu.show{
    display:flex;
}

.whatsapp-menu a{

background:#fff;

padding:12px 20px;

border-radius:12px;

color:#222;

font-weight:bold;

white-space:nowrap;

box-shadow:0 10px 25px rgba(0,0,0,.15);

transition:.3s;

}

.whatsapp-menu a:hover{

background:#25D366;

color:#fff;

transform:translateX(-5px);

}
/*==========================================
        PREMIUM WEBSITE EFFECTS
==========================================*/

/* Smooth Scroll */
html{
    scroll-behavior:smooth;
}

/* خلفية */
body{
    background:linear-gradient(to bottom,#f8fbff,#eef4ff);
}

/* Header Glass Effect */
header{
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    background:rgba(255,255,255,.95);
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.35s;
}

/* Sections */

section{

    animation:fadeUp 1s ease both;

}

/* كروت */

.service-card,
.feature-card,
.why-card,
.brand-card,
.testimonial-card{

    transition:.35s ease;

    border:1px solid rgba(13,91,225,.06);

}

.service-card:hover,
.feature-card:hover,
.why-card:hover,
.brand-card:hover,
.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(13,91,225,.12);

}

/* الصور */

.service-card img,
.brand-card img{

transition:.35s;

}

.service-card:hover img,
.brand-card:hover img{

transform:scale(1.08);

}

/* الأزرار */

.main-btn,
.call-btn,
.service-btn{

position:relative;

overflow:hidden;

transition:.35s;

}

.main-btn:hover,
.call-btn:hover,
.service-btn:hover{

transform:translateY(-4px);

box-shadow:0 18px 35px rgba(13,91,225,.35);

}

.main-btn::before,
.call-btn::before,
.service-btn::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:60%;

height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.55),
transparent
);

transform:skewX(-20deg);

transition:.8s;

}

.main-btn:hover::before,
.call-btn:hover::before,
.service-btn:hover::before{

left:150%;

}

/* Titles */

section h2{

position:relative;

display:inline-block;

left:50%;

transform:translateX(-50%);

}

section h2::after{

content:"";

position:absolute;

bottom:-12px;

left:50%;

transform:translateX(-50%);

width:80px;

height:4px;

background:#0d5be1;

border-radius:20px;

}

/* Scrollbar */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:#0d5be1;

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#edf2fb;

}

/* Animation */

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(60px);

}

100%{

opacity:1;

transform:translateY(0);

}

}
.hidden{
    opacity:0;
    transform:translateY(70px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}
/*==========================
        CTA NEW
===========================*/

.cta{

padding:90px 0;

background:linear-gradient(135deg,#0d5be1,#082a63);

position:relative;

overflow:hidden;

}

.cta::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:rgba(255,255,255,.05);

border-radius:50%;

top:-180px;

left:-180px;

}

.cta::after{

content:"";

position:absolute;

width:320px;

height:320px;

background:rgba(255,255,255,.04);

border-radius:50%;

bottom:-120px;

right:-120px;

}

.cta-content{

display:flex;

justify-content:space-between;

align-items:center;

gap:60px;

position:relative;

z-index:2;

}

.cta-text{

color:#fff;

flex:1;

}

.cta-text h2{

font-size:48px;

margin-bottom:20px;

font-weight:800;

}

.cta-text p{

font-size:20px;

opacity:.95;

line-height:1.9;

max-width:600px;

}

.cta-buttons{

display:flex;

flex-direction:column;

gap:18px;

}

.call-now,
.whats-now{

padding:18px 35px;

border-radius:14px;

font-size:20px;

font-weight:bold;

text-align:center;

transition:.35s;

}

.call-now{

background:#fff;

color:#0d5be1;

}

.whats-now{

background:#25D366;

color:#fff;

}

.call-now:hover,
.whats-now:hover{

transform:translateY(-5px);

box-shadow:0 18px 35px rgba(0,0,0,.25);

}

@media(max-width:768px){

.cta-content{

flex-direction:column;

text-align:center;

}

.cta-text h2{

font-size:34px;

}

.cta-buttons{

width:100%;

}

.call-now,
.whats-now{

width:100%;

}

}
section h2{

text-align:center;

font-size:52px;

font-weight:800;

color:#082a63;

margin-bottom:20px;

letter-spacing:.5px;

position:relative;

}

section h2::after{

content:"";

position:absolute;

bottom:-15px;

left:50%;

transform:translateX(-50%);

width:90px;

height:5px;

background:linear-gradient(90deg,#0d5be1,#4d8fff);

border-radius:50px;

}
section h2{

display:block;

width:100%;

text-align:center;

font-size:48px;

color:#082a63;

margin-bottom:15px;

position:relative;

left:auto;

transform:none;

}
/*==========================
    PREMIUM BUTTON EFFECT
==========================*/

.main-btn,
.call-btn{

position:relative;

overflow:hidden;

transition:all .35s ease;

animation:neonPulse 3s infinite;

}

/* لمعان يمر على الزر */

.main-btn::before,
.call-btn::before{

content:"";

position:absolute;

top:0;

left:-130%;

width:50%;

height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.65),
transparent
);

transform:skewX(-25deg);

transition:.8s;

}

.main-btn:hover::before,
.call-btn:hover::before{

left:160%;

}

/* Hover */

.main-btn:hover,
.call-btn:hover{

transform:translateY(-6px) scale(1.03);

box-shadow:
0 12px 30px rgba(13,91,225,.35),
0 0 18px rgba(13,91,225,.25);

}

/* Click */

.main-btn:active,
.call-btn:active{

transform:scale(.96);

}

/* نبضة نيون */

@keyframes neonPulse{

0%{

box-shadow:
0 0 0 rgba(13,91,225,0);

}

50%{

box-shadow:
0 0 18px rgba(13,91,225,.30),
0 0 35px rgba(13,91,225,.18);

}

100%{

box-shadow:
0 0 0 rgba(13,91,225,0);

}

}
/* Dropdown */

.dropdown{
    position:relative;
}

.dropdown>a{
    display:flex;
    align-items:center;
    gap:8px;
}

.dropdown-menu{

    position:absolute;

    top:100%;

    right:0;

    width:240px;

    background:#fff;

    border-radius:12px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.3s;

    z-index:999;

    overflow:hidden;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu li{

    border-bottom:1px solid #eee;

}

.dropdown-menu li:last-child{

    border-bottom:none;

}

.dropdown-menu a{

    display:block;

    padding:15px 20px;

    color:#222;

    font-weight:600;

    transition:.3s;

}

.dropdown-menu a:hover{

    background:#0d6efd;

    color:#fff;

}