@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#08111f;
    color:white;
    overflow-x:hidden;
}

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    backdrop-filter:blur(14px);
    background:rgba(8,17,31,.65);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 8%;
}

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

.logo img{
    width:45px;
    height:45px;
    border-radius:12px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    overflow:hidden;
    padding:20px;
    background:linear-gradient(135deg,#08111f,#0d1f35);
}

.glow{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
}

.glow1{
    width:300px;
    height:300px;
    background:#00ff88;
    top:10%;
    left:10%;
    opacity:.15;
}

.glow2{
    width:350px;
    height:350px;
    background:#0077ff;
    bottom:10%;
    right:10%;
    opacity:.15;
}

.hero-content h1{
    font-size:70px;
}

.hero-content h2{
    color:#00ff88;
    margin:10px 0;
}

.hero-content p{
    margin-bottom:30px;
    opacity:.9;
}

.hero-buttons{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn{
    padding:14px 28px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
}

.primary{
    background:#00ff88;
    color:black;
}

.secondary{
    border:1px solid rgba(255,255,255,.2);
    color:white;
}

.services,.contact{
    padding:100px 8%;
    text-align:center;
}

.services {
    padding: 100px 8%;
    text-align: center;
}

.services h2 {
    font-size: 40px;
    margin-bottom: 50px;
}

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

.card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 35px 25px;
    border-radius: 22px;
    transition: .4s;
    backdrop-filter: blur(12px);
}

.card:hover {
    transform: translateY(-8px);
    border-color: #00ff88;
}

.card i {
    font-size: 35px;
    margin-bottom: 18px;
    color: #00ff88;
}
.contact-box{
    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-btn{
    text-decoration:none;
    color:white;
    padding:16px;
    border-radius:14px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.contact-btn:hover{
    transform:translateY(-4px);
    border-color:#00ff88;
}

.special{
    background:#00ff88;
    color:black;
    font-weight:600;
}

footer{
    text-align:center;
    padding:30px;
    opacity:.7;
}

.floating-wa{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(37,211,102,.35);
    z-index:999;
    animation:float 2s infinite ease-in-out;
}

@keyframes float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-8px);}
}