html{
    scroll-behavior:smooth;
}/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter', sans-serif;
}

/* BODY */

body{
background:#0a0a0a;
color:#fff;
line-height:1.6;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:rgba(0,0,0,0.45);
backdrop-filter:blur(12px);
z-index:1000;
}

.navbar h2{
font-size:20px;
font-weight:600;
}

.nav-links{
display:flex;
gap:40px;
}

.nav-links a{
color:#fff;
text-decoration:none;
font-size:14px;
opacity:.8;
transition:.3s;
}

.nav-links a:hover{
opacity:1;
}

.contact-btn{
background:#fff;
color:#000;
padding:10px 20px;
border-radius:30px;
font-size:14px;
text-decoration:none;
}

/* HERO */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:160px 120px;
gap:120px;
}

/* HERO TEXT */

.hero-text{
max-width:520px;
}

.badge{
background:#1b1b1b;
padding:8px 18px;
border-radius:20px;
font-size:13px;
display:inline-block;
margin-bottom:20px;
}

.hero h1{
font-size:64px;
line-height:1.1;
margin-bottom:25px;
}

.hero p{
opacity:.7;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
}

.btn{
padding:12px 24px;
border-radius:30px;
text-decoration:none;
font-size:14px;
}

.btn-primary{
background:#fff;
color:#000;
}

.btn-outline{
border:1px solid #444;
color:#fff;
}

/* HERO IMAGE */

.hero-image{
position:relative;
display:flex;
align-items:center;
justify-content:center;
}

.hero-image img{
width:520px;
height:520px;
object-fit:cover;
border-radius:50%;
}

/* GLASS FLOATING TAGS */

.tag{
position:absolute;

background:rgba(255,255,255,0.08);
backdrop-filter:blur(12px);

padding:10px 18px;

border-radius:25px;
font-size:13px;

border:1px solid rgba(255,255,255,0.15);
}

.tag1{
top:120px;
right:-70px;
}

.tag2{
top:230px;
right:-90px;
}

/* GLASS REVIEW CARD */

.review{
position:absolute;

bottom:-20px;
right:-90px;

background:rgba(255,255,255,0.08);
backdrop-filter:blur(18px);

padding:18px 24px;

border-radius:16px;

border:1px solid rgba(255,255,255,0.15);

font-size:13px;

box-shadow:0 10px 40px rgba(0,0,0,0.4);
}

/* HERO GALLERY SCROLL */

.hero-gallery{
overflow:hidden;
padding:80px 0;
background:#0a0a0a;
}

.scroll-track{
display:flex;
gap:30px;
width:max-content;

animation:scrollLeft 30s linear infinite;
}

.scroll-track img{
height:260px;
width:360px;

object-fit:cover;

border-radius:30px;
}

/* CIRCLE IMAGES */

.hero{

display:flex;
align-items:center;
justify-content:space-between;

max-width:1400px;
margin:0 auto;

padding:160px 80px;

gap:120px;

}
/* ANIMATION */

@keyframes scrollLeft{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* GALLERY GRID */

.gallery{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
padding:40px 80px 80px;
}

.gallery img{
width:100%;
border-radius:30px;
object-fit:cover;
height:300px;
transition:.4s;
}

.gallery img:hover{
transform:scale(1.05);
}

.large{
grid-column:span 2;
height:350px;
}

.circle{
border-radius:50%;
}

/* RESPONSIVE */

@media(max-width:1000px){

.hero{
flex-direction:column;
padding:140px 40px 60px;
}

.hero-image img{
width:100%;
border-radius:30px;
}

.gallery{
grid-template-columns:repeat(2,1fr);
padding:40px;
}

}

@media(max-width:600px){

.navbar{
padding:20px;
}

.nav-links{
display:none;
}

.gallery{
grid-template-columns:1fr;
}

}
<style>
/* tera existing CSS */

...existing code...

/* 👇 yaha paste kar */
.services{
padding:80px;
text-align:center;
}

.services h2{
margin-bottom:40px;
font-size:32px;
}

.service-buttons{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.service-btn{
padding:14px 28px;
border-radius:30px;
border:1px solid rgba(255,255,255,0.2);
background:rgba(255,255,255,0.05);
backdrop-filter:blur(10px);
color:white;
text-decoration:none;
font-size:14px;
transition:.3s;
}

.service-btn:hover{
background:white;
color:black;
transform:translateY(-3px);
}
.services{
padding:120px 80px;
display:flex;
flex-direction:column;
align-items:center; /* 👈 ye main fix hai */
}

.services h2{
margin-bottom:40px;
font-size:32px;
text-align:center;
width:100%;
}
.projects{
padding:120px 80px;
}

.projects h2{
text-align:center;
margin-bottom:60px;
font-size:32px;
}

.project-row{
display:flex;
align-items:center;
gap:50px;
margin-bottom:80px;
}

.project-image{
flex:1;
}

.project-image img{
width:100%;
border-radius:25px;
}

.project-content{
flex:1;
}

.project-content h3{
font-size:28px;
margin-bottom:15px;
}

.project-content p{
opacity:.7;
margin-bottom:20px;
line-height:1.6;
}.project-row.reverse{
flex-direction:row-reverse;
}
.project-content{
flex:1;
padding:20px 40px; /* 👈 ye add kar */
}
.project-row{
margin-bottom:100px;
}
.project-image img{
width:100%;
height:400px; /* 👈 fix height */
object-fit:cover; /* 👈 stretch nahi hoga */
border-radius:25px;
}
.projects{
padding:120px 120px; /* 👈 left-right dono side space */
}
.project-row{
display:flex;
align-items:center;
gap:90px; /* 👈 bada gap = premium feel */
margin-bottom:120px;
}
.project-image{
flex:1;
max-width:600px; /* 👈 image bahar nahi faillegi */
}
.project-row{
justify-content:center;
}

.project-image{
margin-left:-30px;
}
.project-content{
flex:1;
max-width:1000px;
}
/* TESTIMONIALS */
.testimonials{
padding:100px 80px;
background:#111111;
}

.testimonial-heading{
text-align:center;
margin-bottom:60px;
}

.testimonial-heading span{
font-size:13px;
letter-spacing:2px;
opacity:.6;
}

.testimonial-heading h2{
font-size:42px;
margin:15px 0;
}

.testimonial-heading p{
max-width:650px;
margin:auto;
opacity:.7;
line-height:1.7;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.testimonial-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
padding:30px;
border-radius:30px;
transition:.4s;
backdrop-filter:blur(10px);
}

.testimonial-card:hover{
transform:translateY(-10px);
border-color:white;
}

.client-top{
display:flex;
align-items:center;
gap:15px;
margin-bottom:25px;
}

.client-top img{
width:70px;
height:70px;
border-radius:50%;
object-fit:cover;
border:2px solid rgba(255,255,255,.15);
}

.client-top h4{
font-size:18px;
margin-bottom:5px;
}

.client-top span{
font-size:14px;
opacity:.6;
}

.testimonial-card p{
line-height:1.9;
opacity:.8;
margin-bottom:25px;
}

.stars{
font-size:18px;
letter-spacing:3px;
}
/* WHY CHOOSE US */

.why-choose-us{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:100px;
align-items:center;
padding:120px 80px;
background:#0b0b0b;
overflow:hidden;
max-width:1450px;
margin:auto;
}

.why-tag{
display:inline-block;
padding:8px 18px;
border:1px solid rgba(255,255,255,.1);
border-radius:30px;
font-size:12px;
letter-spacing:2px;
margin-bottom:25px;
background:rgba(255,255,255,.03);
}

.why-left h2{
font-size:54px;
line-height:1.15;
margin-bottom:25px;
max-width:700px;
}

.why-left p{
opacity:.7;
line-height:1.9;
margin-bottom:45px;
max-width:580px;
}

.why-points{
display:flex;
flex-direction:column;
gap:25px;
}

.point{
display:flex;
gap:20px;
align-items:flex-start;
padding:22px;
border-radius:25px;
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.06);
transition:.4s;
}

.point:hover{
transform:translateX(10px);
background:rgba(255,255,255,.05);
}

.point-icon{
min-width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:white;
color:black;
font-weight:600;
font-size:18px;
}

.point h4{
font-size:22px;
margin-bottom:8px;
}

.point p{
margin:0;
font-size:15px;
opacity:.7;
line-height:1.7;
}

.why-right{
position:relative;
display:flex;
justify-content:center;
align-items:center;
}

.why-right img{
width:100%;
max-width:520px;
height:750px;
object-fit:cover;
border-radius:40px;
display:block;
}

.experience-box{
position:absolute;
bottom:40px;
left:50%;
transform:translateX(-50%);
background:white;
color:black;
padding:30px 35px;
border-radius:30px;
text-align:center;
z-index:2;
box-shadow:0 10px 40px rgba(0,0,0,.35);
}

.experience-box h3{
font-size:52px;
margin-bottom:5px;
}

.experience-box span{
font-size:15px;
opacity:.8;
}

/* MOBILE */

@media(max-width:991px){

.why-choose-us{
grid-template-columns:1fr;
padding:80px 20px;
gap:60px;
}

.why-left h2{
font-size:38px;
}

.why-right img{
height:450px;
max-width:100%;
}

.experience-box{
bottom:20px;
left:50%;
transform:translateX(-50%);
padding:22px 28px;
}

}

@media(max-width:600px){

.point{
flex-direction:column;
}

.point-icon{
width:60px;
height:60px;
}

}
/* PROCESS SECTION */

.process-section{
padding:120px 80px;
background:#080808;
position:relative;
overflow:hidden;
}

.process-heading{
text-align:center;
margin-bottom:80px;
}

.process-heading span{
display:inline-block;
padding:8px 18px;
border:1px solid rgba(255,255,255,.1);
border-radius:30px;
font-size:12px;
letter-spacing:2px;
margin-bottom:25px;
background:rgba(255,255,255,.03);
}

.process-heading h2{
font-size:54px;
line-height:1.2;
margin-bottom:20px;
}

.process-heading p{
max-width:700px;
margin:auto;
opacity:.7;
line-height:1.9;
}

.process-timeline{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
position:relative;
}

.process-timeline::before{
content:'';
position:absolute;
top:40px;
left:0;
width:100%;
height:1px;
background:rgba(255,255,255,.08);
z-index:0;
}

.process-card{
position:relative;
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.06);
padding:40px 25px;
border-radius:30px;
transition:.4s;
z-index:1;
backdrop-filter:blur(10px);
}

.process-card:hover{
transform:translateY(-12px);
background:rgba(255,255,255,.05);
}

.step-number{
width:80px;
height:80px;
border-radius:50%;
background:white;
color:black;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
font-weight:700;
margin-bottom:30px;
}

.process-card h3{
font-size:26px;
margin-bottom:18px;
}

.process-card p{
opacity:.7;
line-height:1.8;
font-size:15px;
}

/* MOBILE */

@media(max-width:1200px){

.process-timeline{
grid-template-columns:repeat(2,1fr);
}

.process-timeline::before{
display:none;
}

}

@media(max-width:768px){

.process-section{
padding:80px 20px;
}

.process-heading h2{
font-size:38px;
}

.process-timeline{
grid-template-columns:1fr;
}

}
/* FAQ SECTION */

.faq-section{
display:grid;
grid-template-columns:.9fr 1.1fr;
gap:80px;
padding:120px 80px;
background:#0a0a0a;
align-items:start;
}

.faq-tag{
display:inline-block;
padding:8px 18px;
border:1px solid rgba(255,255,255,.1);
border-radius:30px;
font-size:12px;
letter-spacing:2px;
margin-bottom:25px;
background:rgba(255,255,255,.03);
}

.faq-left{
position:sticky;
top:120px;
}

.faq-left h2{
font-size:54px;
line-height:1.15;
margin-bottom:25px;
}

.faq-left p{
opacity:.7;
line-height:1.9;
max-width:450px;
}

.faq-right{
display:flex;
flex-direction:column;
gap:22px;
}

.faq-box{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.06);
border-radius:28px;
padding:28px 30px;
cursor:pointer;
transition:.4s;
}

.faq-box:hover{
background:rgba(255,255,255,.05);
}

.faq-question{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.faq-question h3{
font-size:24px;
font-weight:600;
}

.faq-question span{
font-size:30px;
opacity:.7;
transition:.3s;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
}

.faq-answer p{
padding-top:20px;
line-height:1.9;
opacity:.7;
font-size:15px;
}

.faq-box.active .faq-answer{
max-height:220px;
}

.faq-box.active .faq-question span{
transform:rotate(45deg);
}

/* MOBILE */

@media(max-width:991px){

.faq-section{
grid-template-columns:1fr;
padding:80px 20px;
gap:50px;
}

.faq-left{
position:relative;
top:0;
}

.faq-left h2{
font-size:38px;
}

}

@media(max-width:600px){

.faq-question h3{
font-size:19px;
}

}
/* CTA SECTION */

.cta-section{
position:relative;
padding:140px 20px;
background:url('images/cta-bg.jpg') center/cover no-repeat;
overflow:hidden;
}

.cta-overlay{
position:absolute;
inset:0;
background:linear-gradient(
to right,
rgba(0,0,0,.88),
rgba(0,0,0,.72)
);
}

.cta-content{
position:relative;
z-index:2;
max-width:900px;
margin:auto;
text-align:center;
}

.cta-tag{
display:inline-block;
padding:8px 18px;
border:1px solid rgba(255,255,255,.12);
border-radius:30px;
font-size:12px;
letter-spacing:2px;
margin-bottom:28px;
background:rgba(255,255,255,.04);
backdrop-filter:blur(10px);
}

.cta-content h2{
font-size:68px;
line-height:1.1;
margin-bottom:25px;
}

.cta-content p{
max-width:720px;
margin:auto;
opacity:.75;
line-height:1.9;
font-size:17px;
margin-bottom:45px;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:35px;
}

.cta-btn{
padding:18px 34px;
border-radius:60px;
text-decoration:none;
font-size:16px;
font-weight:600;
display:flex;
align-items:center;
gap:12px;
transition:.4s;
}

.primary-btn{
background:white;
color:black;
}

.primary-btn:hover{
transform:translateY(-6px);
}

.secondary-btn{
border:1px solid rgba(255,255,255,.15);
background:rgba(255,255,255,.04);
color:white;
backdrop-filter:blur(10px);
}

.secondary-btn:hover{
background:white;
color:black;
transform:translateY(-6px);
}

.consultation-line{
opacity:.75;
font-size:15px;
line-height:2;
}

/* MOBILE */

@media(max-width:991px){

.cta-content h2{
font-size:42px;
}

.cta-content p{
font-size:15px;
}

.cta-section{
padding:100px 20px;
}

}

@media(max-width:600px){

.cta-buttons{
flex-direction:column;
align-items:center;
}

.cta-btn{
width:100%;
max-width:320px;
justify-content:center;
}

}
/* FOOTER */

.footer{
background:#050505;
padding:90px 80px 30px;
border-top:1px solid rgba(255,255,255,.06);
}

.footer-top{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:60px;
padding-bottom:50px;
border-bottom:1px solid rgba(255,255,255,.06);
}

.footer-brand h2{
font-size:34px;
margin-bottom:20px;
}

.footer-brand p{
opacity:.7;
line-height:1.9;
max-width:420px;
}

.footer-links,
.footer-contact,
.footer-socials{
display:flex;
flex-direction:column;
}

.footer h3{
font-size:20px;
margin-bottom:25px;
}

.footer a,
.footer p{
color:white;
text-decoration:none;
opacity:.7;
margin-bottom:14px;
transition:.3s;
}

.footer a:hover{
opacity:1;
transform:translateX(4px);
}

.social-icons{
display:flex;
gap:15px;
margin-top:10px;
}

.social-icons a{
width:46px;
height:46px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
font-size:16px;
}

.social-icons a:hover{
background:white;
color:black;
transform:translateY(-5px);
}

.footer-bottom{
padding-top:25px;
text-align:center;
}

.footer-bottom p{
opacity:.55;
font-size:14px;
}

/* MOBILE */

@media(max-width:991px){

.footer{
padding:70px 20px 25px;
}

.footer-top{
grid-template-columns:1fr 1fr;
gap:40px;
}

}

@media(max-width:600px){

.footer-top{
grid-template-columns:1fr;
}

.footer-brand h2{
font-size:28px;
}

}