*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#08111f;
color:#fff;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#07101d;
border-bottom:1px solid #1e293b;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo-icon{
width:55px;
height:55px;
border-radius:12px;
background:linear-gradient(135deg,#00d4ff,#2563eb);
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
font-weight:bold;
}

.logo h2{
font-size:24px;
}

.logo p{
font-size:11px;
color:#94a3b8;
}

.nav ul{
display:flex;
list-style:none;
gap:20px;
}

.nav a{
color:white;
text-decoration:none;
}

.hero{
padding:120px 0;
text-align:center;
background:linear-gradient(to right,#08111f,#0f172a);
}

.hero h1{
font-size:55px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

.btn{
background:#00d4ff;
padding:15px 30px;
text-decoration:none;
color:#08111f;
font-weight:bold;
border-radius:30px;
}

.title{
text-align:center;
margin-bottom:40px;
font-size:40px;
}

section{
padding:80px 0;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:#0f172a;
padding:25px;
border-radius:15px;
border:1px solid #1e293b;
}

.card:hover{
transform:translateY(-5px);
transition:.3s;
}

.about-text{
max-width:900px;
margin:auto;
text-align:center;
font-size:18px;
line-height:1.8;
}

.contact-box{
max-width:600px;
margin:auto;
background:#0f172a;
padding:30px;
border-radius:15px;
line-height:2;
}

footer{
text-align:center;
padding:25px;
border-top:1px solid #1e293b;
}

@media(max-width:1024px){

.nav{
flex-direction:column;
}

.hero h1{
font-size:48px;
}

.hero p{
font-size:18px;
}

.whatsapp-btn{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:12px 18px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
z-index:1000;}
}
.hero img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile ke liye extra control */
@media (max-width: 768px) {
  .hero img {
    max-height: 250px;
    object-fit: cover;
  }
}