:root{
--brand:#2fa5b3;
--dark:#0b1f23;
}

*{box-sizing:border-box}

body{
font-family:Inter,sans-serif;
margin:0;
background:#f7fbfc;
color:#0e2b30;
}

/* NAVBAR */
.premium-nav{
background:rgba(11,31,35,.92);
backdrop-filter:blur(12px);
}

.navbar-brand{
font-family:Playfair Display;
color:#fff;
font-size:28px;
}
.navbar-brand span{color:var(--brand);}

.nav-link{color:#fff;margin-left:15px;}

.custom-toggler i{
color:#fff;
font-size:22px;
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;

 
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}


.hero h1{
font-family:Playfair Display;
font-size:clamp(36px,5vw,60px);
}

.hero span{color:var(--brand);}

/* SECTIONS */
.section{padding:100px 0;}
.section.dark{background:var(--dark);color:#fff;}

.section-title{
text-align:center;
font-family:Playfair Display;
margin-bottom:60px;
}

/* PROJECT CARDS */
.project-card{
position:relative;
overflow:hidden;
border-radius:22px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(10px);
transition:.45s ease;
}

.project-card img{
width:100%;
height:280px;
object-fit:cover;
transition:.6s;
}

.project-card.small img{height:230px;}

.project-info{
position:absolute;
bottom:0;
left:0;
right:0;
padding:18px;
background:linear-gradient(transparent,rgba(0,0,0,.75));
}

.project-info h5,
.project-info h6{
color:#fff;
margin:0;
font-weight:600;
}

.project-info a{
color:var(--brand);
text-decoration:none;
font-size:14px;
}

/* HOVER */
.project-card:hover{
transform:translateY(-10px);
box-shadow:0 30px 70px rgba(47,165,179,.4);
}
.project-card:hover img{transform:scale(1.08);}

/* CTA */
.cta{
background:var(--brand);
padding:80px 20px;
text-align:center;
color:#fff;
}

/* FOOTER */
footer{
background:#041417;
color:#fff;
text-align:center;
padding:20px;
}

/* WHATSAPP */
.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
width:55px;
height:55px;
background:#25D366;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
z-index:999;
}
.visit-text{
    color: skyblue;
}
.logo-img{
  height:48px;          /* control logo size */
  width:auto;
  object-fit:contain;
}

/* Mobile */
@media (max-width:768px){
  .logo-img{
    height:40px;
  }
}
