</style>

body{
margin:0;
font-family:'Inter',sans-serif;
background:#f4f7fb;
color:#1f2937;
scroll-behavior:smooth;
padding-bottom:80px;
}

/* HEADER */
header{
background:#0a1f44;
color:#fff;
padding:20px 60px;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 4px 15px rgba(0,0,0,0.15);
}
/* LOGO SIZE CONTROL */
.logo-container img{
height:90px;   /* logo size control */
width:auto;
}

.logo-container{
display:flex;
align-items:center;
gap:20px;
}

.brand-block{
display:flex;
flex-direction:column;
justify-content:center;
}

.brand-text{
font-size:36px;
font-weight:700;
letter-spacing:2px;
text-transform:uppercase;
}

.brand-tagline{
font-size:13px;
letter-spacing:3px;
color:#ffc107;
margin-top:4px;
font-weight:500;
text-transform:uppercase;
text-align:center;  
}
nav a{
color:#ffffff !important;
text-decoration:none;
margin-left:25px;
font-weight:500;
}

nav a:hover{
color:#ffc107 !important;
}


/* ELITE HERO */
.hero-elite{
height:100vh;
background:url('../images/hero-drone.png') center center / cover no-repeat;
position:relative;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(rgba(10,31,68,0.85), rgba(10,31,68,0.75));
}

.hero-content{
position:relative;
color:#fff;
max-width:900px;
animation:fadeUp 1.5s ease;
}

.hero-content h1{
font-size:48px;
font-weight:700;
margin-bottom:20px;
}

.hero-sub{
font-size:20px;
margin-bottom:15px;
}

.hero-marathi{
font-size:18px;
color:#ffd54f;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.btn-primary{
background:linear-gradient(135deg,#ffc107,#ffb300);
color:#000;
padding:14px 32px;
border-radius:8px;
text-decoration:none;
font-weight:700;
transition:0.3s;
}

.btn-primary:hover{
transform:scale(1.05);
}

.btn-secondary{
background:transparent;
border:2px solid #fff;
color:#fff;
padding:14px 32px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.btn-secondary:hover{
background:#fff;
color:#0a1f44;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}



/* BUTTON */
.btn{
display:inline-block;
margin-top:30px;
padding:14px 32px;
background:linear-gradient(135deg,#ffc107,#ffb300);
color:#000;
font-weight:700;
text-decoration:none;
border-radius:8px;
transition:0.3s;
}

.btn:hover{
transform:scale(1.05);
}

/* SECTION */
.section{
padding:80px 60px;
max-width:1200px;
margin:auto;
}

.section h2{
text-align:center;
margin-bottom:35px;
color:#0a1f44;
}

/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
}

/* CARD */
.card{
background:#fff;
padding:30px;
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* SLIDER */
.slider{
position:relative;
overflow:hidden;
border-radius:12px;
margin-bottom:20px;
}

.slides{
display:flex;
transition:transform 0.5s ease-in-out;
}

.slides img{
width:100%;
flex-shrink:0;
border-radius:12px;
}

.slider-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.6);
color:#fff;
border:none;
padding:10px 14px;
cursor:pointer;
border-radius:6px;
}

.prev{left:10px;}
.next{right:10px;}

/* FOOTER */
.footer{
background:#0a1f44;
color:#fff;
text-align:center;
padding:25px;
font-size:14px;
margin-top:60px;
margin-bottom:70px;   
}


/* RESPONSIVE */
@media(max-width:768px){
header{flex-direction:column;text-align:center}
nav{margin-top:10px}
.section{padding:60px 20px}
.hero h2{font-size:28px}
}

/* PREMIUM CALL NOW BAR */
.call-now-bar{
position:fixed;
bottom:0;
left:0;
width:100%;
background:linear-gradient(135deg,#0a1f44,#123b75);
backdrop-filter:blur(10px);
box-shadow:0 -5px 25px rgba(0,0,0,0.25);
padding:18px 0;
text-align:center;
z-index:9999;
transition:0.3s;
}

.call-now-bar a{
display:inline-flex;
align-items:center;
gap:10px;
color:#fff;
font-size:18px;
font-weight:600;
text-decoration:none;
letter-spacing:0.5px;
transition:0.3s;
}

.call-now-bar a:hover{
color:#ffc107;
transform:scale(1.05);
}

.call-icon{
background:#ffc107;
color:#000;
padding:10px 14px;
border-radius:50%;
font-size:18px;
display:flex;
align-items:center;
justify-content:center;
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float{
position:fixed;
width:60px;
height:60px;
bottom:90px;
right:20px;
background-color:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 4px 12px rgba(0,0,0,0.3);
z-index:1000;
transition:0.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

.whatsapp-float img{
width:32px;
height:32px;
}
</style>