*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Nirmala UI',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f4fff0;
color:#222;
line-height:1.6;
}

/* TOP BAR */

.top-bar{
background:#ff9800;
color:#fff;
text-align:center;
padding:10px;
font-size:16px;
font-weight:bold;
}

/* HEADER */

header{
background:#2e7d32;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,.2);
}

.logo{
font-size:28px;
font-weight:bold;
color:white;
}

nav a{
text-decoration:none;
color:white;
margin-left:20px;
font-weight:bold;
transition:.3s;
}

nav a:hover

/* HERO SECTION */

.hero{
height:90vh;
background:url("images/building.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
position:relative;
}

.hero::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
z-index:2;
color:white;
max-width:800px;
padding:20px;
}

.hero h1{
font-size:55px;
margin-bottom:20px;
}

.hero p{
font-size:24px;
margin-bottom:25px;
}

.hero-buttons{
margin-top:20px;
}

.btn{
display:inline-block;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
margin:10px;
background:#ff9800;
color:white;
transition:.3s;
}

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

.whatsapp{
background:#25d366;
}

/* SECTION */

section{
padding:70px 10%;
}

section h2{
text-align:center;
margin-bottom:30px;
font-size:38px;
color:#2e7d32;
}

/* OWNER */

.owner-section{
background:#fff;
}

.owner-box{
display:flex;
align-items:center;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.owner-box img{
width:280px;
height:280px;
border-radius:50%;
object-fit:cover;
border:8px solid #ff9800;
box-shadow:0 0 20px rgba(0,0,0,.2);
}

.owner-box h3{
font-size:32px;
margin-bottom:10px;
color:#2e7d32;
}

/* ABOUT */

#about{
background:#f9fff5;
text-align:center;
font-size:20px;
}

/* CARDS */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
background:white;
padding:25px;
text-align:center;
font-size:20px;
font-weight:bold;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
}

/* GALLERY */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}

.gallery img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.15);
transition:.4s;
}

.gallery img:hover{
transform:scale(1.05);
}

/* OFFER */

.offer-section{
background:#fff9e6;
}

.offer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
text-align:center;
font-size:22px;
font-weight:bold;
}

.offer-grid div{
background:white;
padding:20px;
border-radius:15px;
box-shadow:0 3px 12px rgba(0,0,0,.1);
}

/* CONTACT */

#contact{
background:#2e7d32;
color:white;
text-align:center;
}

#contact h2{
color:white;
}

#contact p{
font-size:20px;
margin:15px 0;
}

/* FOOTER */

footer{
background:#111;
color:white;
text-align:center;
padding:30px;
}

/* WHATSAPP BUTTON */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25d366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
text-decoration:none;
color:white;
box-shadow:0 0 20px rgba(0,0,0,.3);
z-index:999;
}

/* MOBILE */

@media(max-width:768px){

header{
flex-direction:column;
padding:15px;
}

nav{
margin-top:15px;
}

nav a{
display:inline-block;
margin:6px;
}

.hero h1{
font-size:34px;
}

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

.owner-box img{
width:220px;
height:220px;
}

section h2{
font-size:28px;
}

.card{
font-size:18px;
}

}
body {
    font-family: Arial;
    text-align: center;
    background-color: #f4f4f4;
}

h1 {
    color: blue;
}