*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f4f6f9;
color:#333;
overflow-x:hidden;
}

/* Navbar */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#0a3d62;
color:#fff;
position:sticky;
top:0;
z-index:1000;
flex-wrap:wrap;
}

.navbar h1{
font-size:24px;
font-style:italic;
background:linear-gradient(45deg,#f39c12,#fff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.nav-links{
display:flex;
gap:20px;
align-items:center;
}

.nav-links a{
color:#fff;
text-decoration:none;
padding:8px 14px;
border-radius:20px;
transition:.3s;
font-size:15px;
}

.nav-links a:hover{
background:#f39c12;
}

/* Hamburger */
.menu-toggle{
display:none;
font-size:30px;
cursor:pointer;
user-select:none;
}

/* Hero */
.hero{
min-height:100vh;
background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url('/image/home.jpg');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
color:#fff;
}

.hero h2{
font-size:48px;
margin-bottom:10px;
line-height:1.3;
}

.hero p{
font-size:18px;
}
.bhu{
    margin-top: 250px;
}
/* Section */
section{
padding:70px 20px;
text-align:center;
}

/* About */
#about p{
max-width:800px;
margin:auto;
line-height:1.8;
font-size:17px;
}

/* Grid */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
margin-top:30px;
}

/* Card */
.card{
background:#fff;
padding:20px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

/* Gallery */
.gallery img{
width:100%;
height:220px;
object-fit:cover;
border-radius:12px;
transition:.4s;
}

.gallery img:hover{
transform:scale(1.05);
}

/* Owner */
.owner-box{
background:#fff;
padding:30px;
border-radius:20px;
display:inline-block;
box-shadow:0 8px 20px rgba(0,0,0,.12);
max-width:100%;
}

.owner-box img{
width:150px;
height:150px;
border-radius:50%;
object-fit:cover;
border:4px solid #f39c12;
margin-bottom:10px;
}

/* Contact */
.contact-box{
max-width:600px;
margin:auto;
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.1);
text-align:left;
line-height:1.8;
word-wrap:break-word;
}

/* WhatsApp */
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:#fff;
padding:13px 16px;
border-radius:50%;
text-decoration:none;
font-size:22px;
z-index:999;
animation:float 2s infinite;
}

@keyframes float{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-10px);}
}

footer{
background:#0a3d62;
color:#fff;
text-align:center;
padding:15px;
font-size:14px;
}

/* Tablet */
@media(max-width:992px){

.navbar{
padding:15px 20px;
}

.hero h2{
font-size:34px;
}

.hero p{
font-size:16px;
}

}

/* Mobile */
@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{
position:absolute;
top:65px;
left:-100%;
width:100%;
background:#0a3d62;
flex-direction:column;
gap:0;
transition:.4s;
padding:10px 0;
}

.nav-links.active{
left:0;
}

.nav-links a{
width:100%;
padding:14px;
border-top:1px solid rgba(255,255,255,.1);
text-align:center;
border-radius:0;
font-size:15px;
}

.navbar{
padding:15px;
}

.navbar h1{
font-size:20px;
max-width:80%;
}

.hero{
min-height:80vh;
padding:15px;
}

.hero h2{
font-size:28px;
}

.hero p{
font-size:14px;
}

section{
padding:50px 15px;
}

h2{
font-size:24px;
margin-bottom:15px;
}

#about p{
font-size:15px;
text-align:left;
}

.grid{
grid-template-columns:1fr;
gap:20px;
}

.owner-box{
width:100%;
max-width:320px;
padding:20px;
}

.owner-box img{
width:120px;
height:120px;
}

.gallery img{
height:190px;
}

.contact-box{
padding:18px;
font-size:14px;
}

.whatsapp{
bottom:15px;
right:15px;
font-size:20px;
padding:10px 13px;
}

}

/* Small Mobile */
@media(max-width:480px){

.hero h2{
font-size:24px;
}

.hero p{
font-size:13px;
}

.navbar h1{
font-size:18px;
}

.contact-box{
font-size:13px;
}

footer{
font-size:12px;
}

}
