:root{

--primary:#7B4DFF;
--secondary:#A855F7;

--dark:#070B2B;
--dark2:#0D123D;

--white:#ffffff;

--orange:#FF7A3D;
--green:#00C46A;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    overflow-x:hidden;
}

section{
    padding:90px 0;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.section-subtitle{
    color:#6b7280;
    max-width:700px;
    margin:auto;
}

.btn-primary-custom{
    background:var(--primary);
    color:#fff;
    padding:14px 30px;
    border:none;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.btn-primary-custom:hover{
    background:#004bd6;
    color:#fff;
}

.btn-outline-custom{
    border:2px solid var(--primary);
    color:var(--primary);
    padding:12px 30px;
    border-radius:10px;
    text-decoration:none;
}

img{
    max-width:100%;
}
.hero-section{

position:relative;
overflow:hidden;

background:
linear-gradient(
135deg,
#070B2B 0%,
#0B0E3B 50%,
#1A1459 100%
);

min-height:100vh;

}
.hero-section::before{

content:'';

position:absolute;

width:600px;
height:600px;

background:#7B4DFF;

filter:blur(200px);

opacity:.25;

top:-150px;
left:-100px;

}
.btn-gradient{

background:
linear-gradient(
90deg,
#7B4DFF,
#A855F7
);

padding:16px 35px;

border:none;

border-radius:50px;

font-weight:600;

color:white;

transition:.4s;

}

.btn-gradient:hover{

transform:translateY(-3px);

box-shadow:
0 15px 35px
rgba(123,77,255,.4);

}
.service-tag{

display:inline-block;

padding:12px 22px;

border:1px solid rgba(255,255,255,.2);

border-radius:40px;

margin-right:10px;

background:
rgba(255,255,255,.05);

backdrop-filter:blur(10px);

color:white;

}
.quote-card{

background:white;

padding:35px;

border-radius:35px;

box-shadow:
0 30px 60px
rgba(0,0,0,.2);

}
.call-btn{

background:#FF7A3D;

color:white;

padding:18px;

border-radius:50px;

font-size:20px;

font-weight:600;

display:flex;
align-items:center;
justify-content:center;

}
.whatsapp-btn{

background:#00C46A;

color:white;

padding:18px;

border-radius:50px;

font-size:20px;

font-weight:600;

display:flex;
align-items:center;
justify-content:center;

}
.callback-btn{

background:white;

color:#222;

padding:18px;

border-radius:50px;

font-size:20px;

font-weight:600;

display:flex;
align-items:center;
justify-content:center;

}
/* ==========================
   TRUST SECTION
========================== */

.trust-section{

    position:relative;
    padding:120px 0;
    background:#070B2B;
    overflow:hidden;

}

/* Glow Effects */

.trust-section::before{

    content:'';

    position:absolute;

    width:450px;
    height:450px;

    background:#7B4DFF;

    filter:blur(180px);

    opacity:.18;

    top:-150px;
    left:-100px;

}

.trust-section::after{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    background:#A855F7;

    filter:blur(180px);

    opacity:.15;

    bottom:-150px;
    right:-100px;

}

.trust-badge{

    display:inline-block;

    padding:12px 25px;

    border-radius:50px;

    background:
    rgba(123,77,255,.15);

    color:#B794F4;

    font-size:14px;
    font-weight:600;
    letter-spacing:1px;

}

.trust-title{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin-bottom:20px;
}

.trust-subtitle{

    color:#BFC7D8;

    max-width:750px;

    margin:auto;

    font-size:18px;

    line-height:1.8;
}

/* ==========================
   STAT CARD
========================== */

.stat-card{

    position:relative;

    background:
    rgba(255,255,255,.04);

    backdrop-filter:blur(20px);

    border:1px solid
    rgba(255,255,255,.08);

    border-radius:30px;

    padding:45px 30px;

    text-align:center;

    transition:.4s ease;

    height:100%;
}

.stat-card:hover{

    transform:
    translateY(-12px);

    border-color:#7B4DFF;

    box-shadow:
    0 20px 50px
    rgba(123,77,255,.25);

}

.stat-icon{

    width:90px;
    height:90px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:40px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #7B4DFF,
    #A855F7
    );

    margin-bottom:25px;

    box-shadow:
    0 0 35px
    rgba(123,77,255,.45);
}

.stat-card h3{

    font-size:52px;

    color:white;

    font-weight:800;

    margin-bottom:10px;
}

.stat-card p{

    color:#BFC7D8;

    font-size:16px;

    margin:0;

    line-height:1.6;
}
.trust-bg-image{

    position:absolute;

    right:0;

    top:50%;

    transform:translateY(-50%);

    width:500px;

    opacity:.15;

    pointer-events:none;

}