:root {
--bg:#020403;
--text:#f4fbf8;
--muted:#a9bbb5;
--teal:#21e2b3;
--gold:#d8bc77;
--line:rgba(255,255,255,0.08);
}

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

body{
font-family:Poppins, sans-serif;
background:
radial-gradient(circle at 10% 10%, rgba(33,226,179,0.08), transparent 40%),
linear-gradient(145deg,#010202,#07100e,#020403);
color:var(--text);
}

/* CONTAINER */
.container{
width:90%;
max-width:1100px;
margin:auto;
}

/* NAVBAR */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
position:sticky;
top:0;
z-index:1000;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(10px);
border-bottom:1px solid var(--line);
}

.brand{
display:flex;
align-items:center;
gap:10px;
font-weight:600;
font-size:15px;
}

.brand img{
width:42px;
}

/* MOBILE MENU */
.menu-toggle{
font-size:28px;
cursor:pointer;
display:block;
padding:5px 10px;
}

.nav-links{
position:absolute;
top:70px;
right:0;
width:100%;
background:#000;
display:none;
flex-direction:column;
text-align:center;
border-top:1px solid var(--line);
}

.nav-links a{
padding:16px;
display:block;
border-bottom:1px solid var(--line);
color:var(--muted);
text-decoration:none;
font-size:15px;
}

.nav-links.active{
display:flex;
}

/* HERO */
.hero{
text-align:center;
padding:90px 10px;
}

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

.tagline{
color:var(--gold);
margin:10px 0;
}

.desc{
color:var(--muted);
max-width:650px;
margin:auto;
}

.hero-buttons{
margin-top:20px;
display:flex;
flex-direction:column;
gap:10px;
}

/* BUTTON */
.btn{
padding:12px 20px;
border-radius:30px;
text-align:center;
transition:all 0.25s ease;
margin-top:15px;
}

.primary{
background:var(--teal);
color:#000;
}

.secondary{
border:1px solid var(--line);
}

/* SECTION */
.section{
padding:60px 0;
}

/* GRID */
.grid{
display:grid;
grid-template-columns:1fr;
gap:14px;
}

/* 🔥 ENHANCED SERVICE CARDS */
.card{
padding:18px;
border-radius:14px;
text-align:center;

background:rgba(255,255,255,0.04);
border:1px solid rgba(33,226,179,0.15);

transition:all 0.3s ease;
}

.card:hover{
transform:translateY(-4px);
border-color:var(--teal);
box-shadow:0 10px 25px rgba(33,226,179,0.15);
background:rgba(33,226,179,0.05);
}

/* BRAND GRID */
.brand-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:14px;
margin-top:20px;
}

/* 🔥 ENHANCED BRAND BUBBLES */
.brand-card{
padding:14px;
border-radius:30px;
text-align:center;

background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.12);

font-weight:500;
transition:all 0.3s ease;
}

.brand-card:hover{
background:var(--teal);
color:#000;
border-color:var(--teal);
box-shadow:0 8px 20px rgba(33,226,179,0.25);
}

/* FOUNDER IMAGE */
.founder-img{
width:100%;
max-width:260px;
margin:0 auto 20px;
display:block;
border-radius:12px;
}

/* CONTACT */
.enquiry{
margin-top:15px;
color:var(--muted);
}

/* FLOAT */
.whatsapp-float{
position:fixed;
bottom:90px;
right:20px;
background:#25D366;
color:white;
font-size:22px;
padding:14px;
border-radius:50%;
}

/* STICKY */
.sticky-bar{
position:fixed;
bottom:0;
width:100%;
display:flex;
background:#000;
}

.sticky-bar a{
flex:1;
text-align:center;
padding:12px;
color:white;
}

/* FOOTER */
footer{
text-align:center;
padding:20px;
}

/* ============================= */
/* CONSTRUCTION SHOWCASE SECTION */
/* ============================= */

.construction-showcase{
position:relative;
height:420px;
margin:50px 0;
overflow:hidden;
border-radius:12px;
}

.construction-showcase img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(0.75);
}

.overlay{
position:absolute;
inset:0;
background:linear-gradient(
90deg,
rgba(0,0,0,0.7),
rgba(0,0,0,0.4),
rgba(0,0,0,0.1)
);
}

.construction-content{
position:absolute;
top:50%;
left:50px;
transform:translateY(-50%);
max-width:500px;
}

.construction-content h2{
font-size:30px;
font-weight:600;
margin-bottom:12px;
}

.construction-content p{
color:var(--muted);
line-height:1.6;
}

/* TABLET */
@media(min-width:768px){

.menu-toggle{
display:none;
}

.nav-links{
position:static;
display:flex !important;
flex-direction:row;
background:none;
gap:20px;
}

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

.hero-buttons{
flex-direction:row;
justify-content:center;
}

.grid{
grid-template-columns:repeat(3,1fr);
}

.brand-grid{
grid-template-columns:repeat(4,1fr);
}

.sticky-bar{
display:none;
}
}

/* DESKTOP */
@media(min-width:1024px){

.hero{
padding:120px 0;
}

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