.elementor-6463 .elementor-element.elementor-element-0806655{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9c5540d */:root{
    --primary:#00E5FF;
    --secondary:#7C3AED;
    --dark:#0F172A;
    --card:rgba(255,255,255,.07);
    --border:rgba(255,255,255,.12);
    --text:#ffffff;
    --muted:#000000;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Cairo',sans-serif;
    background:#6ec1e4;
    color:var(--text);
    overflow-x:hidden;
    position:relative;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#09111f;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        var(--primary),
        var(--secondary)
    );
    border-radius:20px;
}

/* Glow Background */

.bg-glow{
    position:fixed;
    border-radius:50%;
    filter:blur(140px);
    z-index:-1;
}

.glow-1{
    width:450px;
    height:450px;
    background:#00e5ff30;
    top:-100px;
    right:-100px;
}

.glow-2{
    width:500px;
    height:500px;
    background:#7c3aed35;
    bottom:-200px;
    left:-150px;
}

/* Header */

.header{
    width:100%;
    padding:5px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    backdrop-filter:blur(20px);
    background:rgba(10,15,30,.5);
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
    font-size:28px;
    font-weight:800;
    color:var(--primary);
    display:flex;
    gap:10px;
    align-items:center;
}

.header nav{
    display:flex;
    gap:25px;
}

.header nav a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.header nav a:hover{
    color:var(--primary);
}

/* Hero */

.hero{
    min-height:10vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0px 0px;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at center,
    rgba(0,229,255,.12),
    transparent 60%);
}

.hero-content{
    max-width:900px;
    z-index:2;
}

.badge{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border:1px solid var(--border);
    margin-bottom:25px;
}

.hero h1{
    font-size:64px;
    line-height:1.3;
    margin-bottom:25px;
}

.hero p{
    color:var(--muted);
    font-size:20px;
    line-height:1.9;
    max-width:750px;
    margin:auto;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    padding:15px 35px;
    border-radius:15px;
    font-weight:700;
    transition:.35s;
}

.primary{
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );
    color:white;
}

.primary:hover{
    transform:translateY(-5px);
    box-shadow:
    0 0 30px #00e5ff80;
}

.secondary{
    background:rgba(255,255,255,.08);
    border:1px solid var(--border);
    color:white;
    backdrop-filter:blur(15px);
}

.secondary:hover{
    border-color:var(--primary);
}

/* Sections */

section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    font-size:42px;
    font-weight:800;
    margin-bottom:60px;
    position:relative;
}

.section-title::after{
    content:'';
    width:100px;
    height:4px;
    background:linear-gradient(
    to left,
    var(--primary),
    var(--secondary)
    );
    position:absolute;
    bottom:-15px;
    right:50%;
    transform:translateX(50%);
}

/* Features */

.features-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(150px,1fr));
    gap:20px;
}

.feature-card{
    background:var(--card);
    backdrop-filter:blur(18px);
    border:1px solid var(--border);
    border-radius:25px;
    padding:15px;
    text-align:center;
    transition:.4s;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
    box-shadow:0 0 40px #00e5ff25;
}

.feature-card i{
    font-size:42px;
    color:var(--primary);
    margin-bottom:20px;
}

.feature-card h3{
    margin-bottom:12px;
}

.feature-card p{
    color:var(--muted);
}

/* About */

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    margin-top: -50px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:30px;
}

.about-content span{
    color:var(--primary);
    font-weight:700;
}

.about-content h2{
    font-size:50px;
    margin:15px 0;
}

.about-content p{
    color:var(--muted);
    line-height:2;
}

/* Services */

.services-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.service-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:25px;
    overflow:hidden;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 40px #7c3aed40;
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-card h3{
    padding:20px;
}

.service-card a{
    display:block;
    margin:0 20px 20px;
    text-align:center;
    padding:12px;
    border-radius:12px;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );
}

/* Guarantee */

.guarantee-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    background:linear-gradient(
    135deg,
    rgba(0,229,255,.1),
    rgba(124,58,237,.15)
    );
    border:1px solid var(--border);
    padding:60px;
    border-radius:35px;
    backdrop-filter:blur(20px);
}

.guarantee-badge{
    display:inline-block;
    padding:12px 25px;
    border-radius:50px;
    background:var(--primary);
    color:#000;
    font-weight:800;
    margin-bottom:25px;
}

.guarantee-box h2{
    font-size:42px;
    margin-bottom:20px;
}

.guarantee-box p{
    color:var(--muted);
    line-height:2;
}

/* Reviews */

.review-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:25px;
    padding:35px;
    text-align:center;
    backdrop-filter:blur(20px);
}

.review-card h3{
    margin-bottom:10px;
}

/* Returns */

.return-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.return-card{
    background:var(--card);
    border:1px solid var(--border);
    padding:30px;
    border-radius:20px;
    text-align:center;
    font-size:20px;
}

/* FAQ */

.faq{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:var(--card);
    margin-bottom:15px;
    border-radius:18px;
    overflow:hidden;
    border:1px solid var(--border);
}

.faq-item button{
    width:100%;
    background:none;
    border:none;
    color:white;
    text-align:right;
    padding:25px;
    cursor:pointer;
    font-size:18px;
}

.faq-content{
    display:none;
    padding:0 25px 25px;
    color:var(--muted);
    line-height:1.8;
}

/* CTA */

.cta{
    text-align:center;
}

.cta h2{
    font-size:55px;
    margin-bottom:35px;
}



/* Responsive */

@media(max-width:992px){

    .about{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:42px;
    }

    .section-title{
        font-size:34px;
    }

    .cta h2{
        font-size:38px;
    }

}

@media(max-width:768px){

    .header{
        flex-direction:column;
        gap:20px;
    }

    .header nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:16px;
    }

    .guarantee-box{
        padding:35px;
    }

}/* End custom CSS */