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

body{
font-family:'Poppins',sans-serif;
background:#071124;
color:white;
overflow-x:hidden;
}

.bg-animation{
position:fixed;
width:100%;
height:100%;
background:
radial-gradient(circle at top left, rgba(0,76,255,.25), transparent 30%),
radial-gradient(circle at bottom right, rgba(255,0,0,.2), transparent 30%);
z-index:-1;
}

header{
position:fixed;
width:100%;
top:0;
z-index:1000;
backdrop-filter:blur(12px);
background:rgba(0,0,0,.35);
}

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

.logo{
height:55px;
}

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

.menu a{
color:white;
text-decoration:none;
transition:.3s;
}

.menu a:hover{
color:#ff3131;
}
.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
margin-top:50px;
}

.about-image img{
width:100%;
border-radius:25px;
box-shadow:0 0 30px rgba(0,0,0,.4);
}

.about-text{
text-align:left;
}

.about-text p{
margin-top:20px;
line-height:1.8;
color:#ddd;
}

.stats{
display:flex;
gap:25px;
margin-top:35px;
flex-wrap:wrap;
}

.stat{
background:rgba(255,255,255,.08);
padding:25px;
border-radius:20px;
min-width:140px;
text-align:center;
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,.1);
}

.stat h3{
font-size:2rem;
color:#ff3131;
margin-bottom:10px;
}

.stat span{
color:#ccc;
}

@media(max-width:900px){

.about-container{
grid-template-columns:1fr;
}

.about-text{
text-align:center;
}

.stats{
justify-content:center;
}

}
.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.slider{
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
overflow:hidden;
z-index:-2;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:opacity 1s ease-in-out;
}

.slide.active{
opacity:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.45);
z-index:-1;
}

.hero-content h1{
font-size:4rem;
text-shadow:0 0 25px rgba(0,119,255,.7);
animation:fadeUp 1.2s ease;
}

.hero-content p{
margin-top:20px;
font-size:1.2rem;
color:#ddd;
}

.btn{
display:inline-block;
margin-top:30px;
padding:14px 35px;
border-radius:40px;
background:linear-gradient(45deg,#005eff,#ff3131);
color:white;
text-decoration:none;
transition:.4s;
}

.btn:hover{
transform:translateY(-5px) scale(1.03);
}

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

.section h2{
font-size:2.5rem;
margin-bottom:30px;
}

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

.card{
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.12);
backdrop-filter:blur(10px);
border-radius:20px;
overflow:hidden;
transition:.4s;
display:flex;
flex-direction:column;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 0 25px rgba(0,102,255,.5);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card-info{
padding:25px;
}

.card-info h3{
margin-bottom:15px;
font-size:1.4rem;
}

.card-info p{
color:#ddd;
margin-bottom:20px;
line-height:1.5;
}

.info{
margin-bottom:15px;
font-size:.95rem;
color:#ccc;
}

.card-btn{
display:inline-block;
margin-top:10px;
padding:12px 25px;
border-radius:30px;
background:linear-gradient(45deg,#005eff,#ff3131);
color:white;
text-decoration:none;
transition:.3s;
}

.card-btn:hover{
transform:scale(1.05);
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 0 25px rgba(0,102,255,.5);
}

.map iframe{
width:100%;
height:400px;
border:none;
border-radius:20px;
margin-top:30px;
}

.contact form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.contact input,
.contact textarea{
padding:15px;
border:none;
border-radius:12px;
background:rgba(255,255,255,.08);
color:white;
}

.contact textarea{
min-height:140px;
}

.contact button{
padding:15px;
border:none;
border-radius:12px;
background:linear-gradient(45deg,#005eff,#ff3131);
color:white;
cursor:pointer;
}

footer{
text-align:center;
padding:30px;
background:rgba(0,0,0,.4);
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:20px;
}

.menu{
flex-wrap:wrap;
justify-content:center;
}

.hero-content h1{
font-size:2.5rem;
}

}
