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

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#0b1020;
color:#fff;
overflow-x:hidden;
}

.glass-nav{
background:rgba(0,0,0,.35);
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar-brand{
font-weight:700;
font-size:22px;
}

.navbar-brand img{
width:45px;
}

.nav-link{
color:#fff !important;
margin-left:15px;
transition:.3s;
}

.nav-link:hover{
color:#ff2f5b !important;
}

.hero-section{
position:relative;
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(135deg,rgba(5,10,25,.93),rgba(10,20,45,.88));
z-index:1;
}

.hero-content{
position:relative;
z-index:2;
}

.hero-text{
max-width:900px;
margin:auto;
}

.hero-logo{
width:140px;
margin-bottom:30px;
filter:drop-shadow(0 0 18px rgba(255,0,70,.35));
animation:floatLogo 4s ease-in-out infinite;
}

.hero-section h1{
font-size:70px;
font-weight:700;
line-height:1.1;
margin-bottom:25px;
}

.hero-section p{
font-size:22px;
color:#e4e4e4;
margin-bottom:35px;
}

.btn-danger{
background:#ff1744;
border:none;
padding:14px 30px;
border-radius:12px;
font-weight:600;
transition:.3s;
}

.btn-danger:hover{
background:#ff335d;
transform:translateY(-4px);
}

.btn-outline-light{
padding:14px 30px;
border-radius:12px;
font-weight:600;
}

.services{
padding:110px 0;
background:#0f172d;
}

.section-title{
text-align:center;
margin-bottom:70px;
}

.section-title h2{
font-size:48px;
font-weight:700;
margin-bottom:15px;
}

.section-title p{
color:#cfcfcf;
font-size:18px;
}

.service-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:24px;
padding:35px;
height:100%;
transition:.4s;
backdrop-filter:blur(10px);
}

.service-card:hover{
transform:translateY(-12px);
border-color:rgba(255,50,90,.5);
}

.service-icon{
width:70px;
height:70px;
display:flex;
align-items:center;
justify-content:center;
border-radius:18px;
background:linear-gradient(135deg,#ff1744,#1a237e);
font-size:28px;
margin-bottom:25px;
}

.banner{
padding:100px 20px;
background:linear-gradient(135deg,#ff1744,#1a237e);
text-align:center;
}

.contact{
padding:110px 0;
background:#0b1020;
}

.contact-box{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:28px;
padding:50px;
backdrop-filter:blur(10px);
}

.contact-items{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-top:40px;
}

.contact-item{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:24px;
padding:35px;
width:320px;
transition:.4s;
backdrop-filter:blur(10px);
}

.contact-item:hover{
transform:translateY(-10px);
border-color:rgba(255,50,90,.4);
}

.contact-icon{
width:75px;
height:75px;
margin:auto;
display:flex;
align-items:center;
justify-content:center;
border-radius:20px;
font-size:32px;
margin-bottom:20px;
background:linear-gradient(135deg,#ff1744,#1a237e);
}

footer{
background:#060b15;
padding:25px;
text-align:center;
color:#9f9f9f;
}

.whatsapp-btn{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25d366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:30px;
text-decoration:none;
z-index:999;
}

@keyframes floatLogo{
0%{transform:translateY(0);}
50%{transform:translateY(-12px);}
100%{transform:translateY(0);}
}

@media(max-width:768px){

.hero-section h1{
font-size:42px;
}

.hero-section p{
font-size:18px;
}

.hero-logo{
width:100px;
}

.contact-item{
width:100%;
}

.dropdown-menu{
    background: rgba(15,15,25,0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px;
}

.dropdown-item{
    color: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    transition: 0.3s;
}

.dropdown-item:hover{
    background: #dc3545;
    color: #fff;
}
}


