html{
scroll-behavior:smooth;
}

body{
margin:0;
background-image:url("../images/hero.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
height:100vh;
color:white;
font-family:'Inter', sans-serif;
}

h1, h2, h3{
font-family:'Playfair Display', serif;
}

h1{
font-size:60px;
letter-spacing:3px;
}

p{
font-size:22px;
color:#c9a96e;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:rgba(0,0,0,0.65);
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
backdrop-filter: blur(8px);
}

.logo{
font-size:22px;
letter-spacing:2px;
font-weight:bold;
}

.menu{
list-style:none;
display:flex;
gap:40px;
}

.menu a{
text-decoration:none;
color:white;
font-size:16px;
}

.menu a:hover{
color:#c9a96e;
}

.hero{
position:relative;
height:100vh;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100vh;
object-fit:cover;
opacity:0;
transform:scale(1.08);
transition:opacity 1.5s ease-in-out, transform 6s ease;
}

.slide.active{
opacity:1;
transform:scale(1);
}

.slider{
width:100%;
height:100%;
overflow:hidden;
position:absolute;
top:0;
left:0;
}

.slides{
display:flex;
width:400%;
height:100%;
transition:transform 1s ease;
}

.slides img{
width:100%;
height:100vh;
object-fit:cover;
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:85%;
display:flex;
justify-content:space-between;
align-items:center;
z-index:2;
color:white;
}

.projects{
background:#f5f5f5;
padding:80px 10%;
}

.projects h2{
text-align:center;
font-size:32px;
margin-bottom:50px;
color:#222;
letter-spacing:3px;
font-weight:300;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
grid-auto-rows:10px;
gap:20px;
}

.grid img{
width:100%;
margin-bottom:20px;
border-radius:6px;
display:block;
break-inside:avoid;
transition:0.4s;
cursor:pointer;
}

.grid img:hover{
transform:scale(1.05);
filter:brightness(90%);
}

@media (max-width:1000px){

.grid{
column-count:2;
}

}

@media (max-width:600px){

.grid{
column-count:1;
}

}

.services{
padding:100px 10%;
background:#f7f7f7;
text-align:center;
}

.services h2{
color:#222;
font-size:32px;
letter-spacing:3px;
margin-bottom:60px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.service-card{
background:#f2f2f2;
padding:40px;
border-radius:6px;
transition:0.3s;
}

.service-card h3{
color:#333;    
font-weight:400;
margin-bottom:10px;
}

.service-card p{
color:#555;
line-height:1.6;
}

.service-card:hover{
background:#e5e5e5;
transform:translateY(-5px);
}

@media (max-width:700px){

.service-grid{
grid-template-columns:1fr;
}

}

.about{
padding:120px 20%;
background:#fafafa;
}

.about-container{
max-width:800px;
margin:auto;
text-align:center;
}

.about h2{
font-size:30px;
letter-spacing:3px;
font-weight:300;
margin-bottom:40px;
color:#222;
}

.about p{
color:#555;
line-height:1.8;
font-size:16px;
margin-bottom:20px;
}

.project-page{
padding-top:100px;
background:white;
}

.project-hero img{
width:100%;
height:80vh;
object-fit:cover;
}

.project-info{
max-width:800px;
margin:80px auto;
text-align:center;
padding:0 20px;
}

.project-info h1{
font-size:36px;
letter-spacing:3px;
font-weight:300;
margin-bottom:20px;
}

.project-info p{
color:#555;
line-height:1.8;
}

.project-gallery{
column-count:3;
column-gap:20px;
max-width:1200px;
margin:40px auto;
padding:0 20px;
}

.project-gallery img{
width:100%;
margin-bottom:20px;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

.project-gallery img:hover{
transform:scale(1.03);
}

.contact{
padding:120px 10%;
background:#111;
color:white;
text-align:center;
}

.contact h2{
font-size:30px;
letter-spacing:3px;
font-weight:300;
margin-bottom:40px;
color:white;
}

.contact-info p{
margin:10px 0;
color:#ccc;
}



.footer{
background:#0f0f0f;
color:white;
text-align:center;
padding:60px 20px;
}

.footer h3{
font-size:22px;
letter-spacing:3px;
margin-bottom:10px;
}

.footer p{
color:#aaa;
margin:6px 0;
}

.copyright{
font-size:13px;
margin-top:20px;
color:#666;
}

.project-card{
border-radius:6px;
overflow:hidden;
background:white;
}

.project-card img{
width:100%;
display:block;
border-radius:6px;
transition:0.4s;
}

.project-card img:hover{
transform:scale(1.05);
filter:brightness(90%);
}

.project-card h3{
margin:12px 0 4px 0;
font-size:18px;
font-weight:400;
}

.project-card p{
color:#666;
font-size:14px;
margin-bottom:12px;
}

.project-image{
position:relative;
overflow:hidden;
border-radius:6px;
}

.project-image img{
width:100%;
display:block;
transition:0.4s;
}

.project-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
opacity:0;
transition:0.4s;
color:white;
}

.project-overlay h3{
font-size:20px;
margin-bottom:5px;
letter-spacing:1px;
}

.project-overlay p{
font-size:14px;
color:#ddd;
}

.project-image:hover img{
transform:scale(1.08);
}

.project-image:hover .project-overlay{
opacity:1;
}

.lightbox{
display:none;
position:fixed;
z-index:2000;
padding-top:60px;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
}

.lightbox img{
margin:auto;
display:block;
max-width:90%;
max-height:80vh;
opacity:1;
transition:opacity 0.4s ease;
}

.lightbox-close{
position:absolute;
top:20px;
right:40px;
color:white;
font-size:35px;
cursor:pointer;
}

.project-gallery img{
width:100%;
margin-bottom:20px;
border-radius:6px;
opacity:0;
transform:translateY(20px);
animation:fadeUp 0.8s ease forwards;
transition:transform 0.4s ease;
}

@keyframes fadeUp{
to{
opacity:1;
transform:translateY(0);
}
}

.project-gallery img:hover{
transform:scale(1.06);
filter:brightness(1.05);
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.lightbox-prev,
.lightbox-next{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:40px;
color:white;
cursor:pointer;
padding:10px;
}

.lightbox-prev{
left:30px;
}

.lightbox-next{
right:30px;
}

.testimonial-container{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(350px,1fr));
gap:40px;
max-width:1100px;
margin:40px auto;
}

.testimonial{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:transform 0.3s ease;
}

.testimonial:hover{
transform:translateY(-5px);
}

.testimonial p{
color:#555;
line-height:1.6;
margin-top:10px;
}

.testimonial h4{
margin-top:15px;
color:#222;
}

.review-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
}

.stars{
color:#f5a623;
}

.google-badge{
font-size:12px;
background:#f1f1f1;
padding:4px 8px;
border-radius:4px;
}

.testimonial p{
color:#555;
line-height:1.6;
}

.testimonial h4{
margin-top:15px;
color:#222;
}

.google-reviews{
display:inline-block;
margin-top:40px;
padding:12px 24px;
background:#222;
color:white;
text-decoration:none;
border-radius:4px;
transition:0.3s;
}

.google-reviews:hover{
background:#444;
}

.testimonials{
background:#f7f7f7;
padding:100px 10%;
text-align:center;
}

.instagram{
padding:100px 10%;
text-align:center;
}

.insta-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin:40px 0;
}

.insta-grid img{
width:100%;
border-radius:6px;
transition:0.3s;
}

.insta-grid img:hover{
transform:scale(1.05);
}

.testimonials h2{
color:#333;
margin-bottom:40px;
letter-spacing:2px;
}

section{
padding:120px 10%;
}

.projects{
background:#ffffff;
}

.services{
background:#f7f7f7;
}

.about{
background:#ffffff;
}

.testimonials{
background:#f7f7f7;
}

.contact{
background:#111;
color:white;
}

.section-container{
max-width:1200px;
margin:auto;
}

section h2{
font-size:32px;
margin-bottom:60px;
letter-spacing:2px;
color:#333;
text-align:center;
}

section h2{
display:block;
position:relative;
text-align: center;
}

section h2::after{
content:"";
position:absolute;
left:0;
bottom:-10px;
width:100%;
height:2px;
background:#333;
}

.reveal{
opacity:0;
transform:translateY(60px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
}

.logo{
height:50px;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.logo{
height:50px;
cursor:pointer;
}

.logo-container{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
}

.logo{
height:40px;
}

.logo-text{
color:white;
font-size:20px;
letter-spacing:3px;
text-transform: uppercase;
font-weight:500;
}

.projects{
    background: #ffffff;
    padding-top: 120px;
    border-top: 1px solid #e5e5e5;
}

.projects-grid {
  column-count: 3;
  column-gap: 20px;
}

.projects-grid img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}

.project-description{
max-width:800px;
margin:60px auto;
text-align:center;
line-height:1.7;

border-top:2px solid #e5e5e5;
border-bottom:2px solid #e5e5e5;

padding:30px 20px;
}

.hero-left{
max-width:500px;
}

.hero-left h1{
font-size:48px;
letter-spacing:3px;
}

.hero-left p{
margin-top:10px;
font-size:18px;
opacity:0.9;
}

.hero-btn{
display:inline-block;
margin-top:20px;
padding:12px 28px;
border:2px solid white;
color:white;
text-decoration:none;
letter-spacing:2px;
}

.quote-btn{
display:flex;
align-items:center;
justify-content:center;

width:100%;

padding:14px;

background:linear-gradient(145deg,#1c1c1c,#2a2a2a);

border:1px solid rgba(255,255,255,0.25);

color:white;

font-size:15px;
font-weight:600;

border-radius:10px;

cursor:pointer;

transition:all 0.3s ease;
}

.quote-btn:hover{
background:linear-gradient(145deg,#2a2a2a,#3a3a3a);
border:1px solid rgba(255,255,255,0.45);
}

.quote-box h3{
color:white;
font-size:22px;
margin-bottom:10px;
}

.quote-box input,
.quote-box select,
.quote-box textarea{
width:100%;
padding:12px;
height:48px;

background: rgba(0,0,0,0.45);
border:1px solid rgba(255,255,255,0.25);

color:white;
border-radius:8px;

outline:none;

box-sizing:border-box;
}

.quote-box input:focus,
.quote-box textarea:focus,
.quote-box select:focus{
border-color:#999;
outline:none;
box-shadow:0 0 0 2px rgba(0,0,0,0.05);
}



@keyframes floatBox{
0%{transform:translateY(0);}
50%{transform:translateY(-6px);}
100%{transform:translateY(0);}
}

.quote-box{
background: rgba(20,20,20,0.55);

backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);

border:1px solid rgba(255,255,255,0.15);

border-radius:16px;

padding:35px;
width:320px;

box-shadow:0 10px 40px rgba(0,0,0,0.5);

display:flex;
flex-direction:column;
gap:14px;
}

.hero{
position:relative;
height:100vh;
}

.quote-box select{
appearance:none;
-webkit-appearance:none;
-moz-appearance:none;
}

.social-sidebar{

position:fixed;

left:20px;
top:50%;

transform:translateY(-50%);

display:flex;
flex-direction:column;

gap:12px;

z-index:1000;

}

.social-sidebar a{

background:#111;

padding:10px;

border-radius:8px;

box-shadow:0 4px 10px rgba(0,0,0,0.4);

transition:0.3s;

}

.social-sidebar img{
width:22px;
height:22px;
}

.social-sidebar a:hover{

transform:scale(1.1);

background:#1f1f1f;

}

nav{
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 40px;
width:100%;
box-sizing:border-box;
}

.menu{
display:flex;
gap:30px;
list-style:none;
margin:0;
padding:0;
align-items:center;
}

#darkModeToggle{
background:none;
border:none;
color:white;
font-size:18px;
cursor:pointer;
}

.dark-mode{
background:#0e0e0e;
color:white;
}

.dark-mode nav{
background:#111;
}

@media (max-width:768px){

nav{
padding:12px 20px;
}

.menu{
gap:15px;
font-size:14px;
}

#darkModeToggle{
font-size:16px;
}

.logo{
height:32px;
}

}

.dark-mode section{
background:#0e0e0e;
color:white;
}

.dark-mode .contact-box{
background:#1a1a1a;
color:white;
}

.dark-mode input,
.dark-mode textarea,
.dark-mode select{
background:#222;
color:white;
border:1px solid #444;
}

.dark-mode button{
background:#333;
color:white;
}

.why-us{
text-align:center;
padding:80px 10%;
background:#f8f8f8;
}

.why-us h2{
font-size:32px;
margin-bottom:50px;
}

.why-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.why-box{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.why-box:hover{
transform:translateY(-5px);
}

.why-box h3{
margin-bottom:10px;
font-size:20px;
}

.contact-section{
background: linear-gradient(180deg,#1c1c1c,#0f0f0f);
color:white;
text-align:center;
padding:80px 20px;
}

.contact-section h2{
font-size:34px;
margin-bottom:30px;
letter-spacing:2px;
}

.contact-info p{
font-size:18px;
margin:15px 0;
}

.whatsapp-btn{
display:inline-block;
margin-top:25px;
padding:12px 30px;
background:#25D366;
color:white;
text-decoration:none;
border-radius:30px;
font-weight:600;
transition:0.3s;
}

.whatsapp-btn:hover{
background:#1ebe5b;
transform:scale(1.05);
}

.contact-divider{
width:80px;
height:2px;
background:#c9a96e;
margin:15px auto 30px auto;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #d4af37;
  border-color: #d4af37;
  color: black;
  transform: translateY(-3px);
}

/* SECTION */
.why-us{
    background:#f7f7f7;
    padding:80px 10%;
    text-align:center;
}

/* HEADING */
.why-us h2{
    font-size:34px;
    margin-bottom:50px;
    letter-spacing:1px;
}

/* GRID LAYOUT */
.why-container{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
}

/* BOX STYLE */
.why-box{
    background:white;
    padding:35px 25px;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
}

/* HOVER EFFECT */
.why-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

/* TITLE */
.why-box h3{
    margin-bottom:12px;
    font-size:20px;
}

/* TEXT */
.why-box p{
    color:#666;
    line-height:1.6;
}

.why-box h3::before{
    content:"";
    display:block;
    width:40px;
    height:3px;
    background:#d4af37;
    margin:0 auto 15px;
}

.partners{
text-align:center;
padding:80px 10%;
background:#f7f7f7;
}

.partner-logos{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:40px;
margin-top:40px;
}

.partner-logos img{
height:40px;
opacity:1;
transition:0.3s;
}

.partner-logos img:hover{
transform:scale(1.05);
}

.partner-logos{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:40px;
margin-top:40px;
}


.logo img{
max-width:100%;
max-height:100%;
object-fit:contain;
}

.grid{
column-count:3;
column-gap:20px;
padding-top:30px;
}

.project-card{
break-inside:avoid;
margin-bottom:20px;
position:relative;
overflow:hidden;
border-radius:8px;
}

.project-image img{
width:100%;
height:auto;
display:block;
border-radius:8px;
}

.project-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px;
background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
color:white;
}

@media (max-width:1000px){
.grid{
column-count:2;
}
}

@media (max-width:600px){
.grid{
column-count:1;
}
}

.project-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

display:flex;
justify-content:center;
align-items:center;

background:rgba(0,0,0,0.4);
color:white;
text-align:center;

opacity:0;
transition:opacity 0.3s ease;
}

.project-card:hover .project-overlay{
opacity:1;
}

.project-image{
position:relative;
overflow:hidden;
border-radius:12px;
}

.project-overlay h3{
font-size:22px;
letter-spacing:1px;
font-weight:500;
}

.project-image img{
transition:transform 0.4s ease;
}

.project-card:hover img{
transform:scale(1.05);
}

/* ===== MOBILE FIX START ===== */
@media (max-width: 768px) {

  body {
    padding: 10px;
  }

  /* Navbar */
  .menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .logo-container {
    flex-direction: column;
    align-items: center;
  }

  /* Headings */
  h1, h2 {
    font-size: 22px;
  }

  /* Images */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Sections */
  section {
    padding: 20px 10px;
  }

  /* Contact section */
  .contact-info {
    text-align: center;
  }

}
/* ===== MOBILE FIX END ===== */