/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}


:root{

--bg:#0F172A;
--card:#182236;

--gold:#C6A56A;

--white:#FAFAFA;

--text:#CBD5E1;

}


body{

background:var(--bg);

color:var(--white);

font-family:'Poppins',sans-serif;

line-height:1.7;

}



/* CONTAINER */

.container{

width:90%;

max-width:1200px;

margin:auto;

}



/* HEADER */

.header{

position:fixed;

width:100%;

top:0;

z-index:1000;

background:rgba(15,23,42,.92);

backdrop-filter:blur(12px);

}



.navbar{

display:flex;

justify-content:space-between;

align-items:center;

padding:22px 0;

}



.logo{

display:flex;

align-items:center;

}


.logo img{

height:100px;

width:auto;

display:block;

transition:.3s ease;

}

.logo img:hover{

transform:scale(1.03);

}



.nav-links{

display:flex;

gap:20px;

list-style:none;

}



.nav-links a{

text-decoration:none;

color:var(--white);

transition:.3s;

}



.nav-links a:hover{

color:var(--gold);

}



.btn-nav{

text-decoration:none;

padding:12px 22px;

border:1px solid var(--gold);

border-radius:40px;

color:var(--gold);

}



.btn-nav:hover{

background:var(--gold);

color:#111;

}
.nav-right{

display:flex;

align-items:center;

gap:10px;

}

.social-icons{

display:flex;

gap:15px;

}

.social-icons a{

color:var(--gold);

font-size:18px;

transition:.3s;

}

.social-icons a:hover{

color:#fff;

transform:translateY(-2px);

}


/* HERO */
.hero-social{

margin-top:35px;

display:flex;

justify-content:center;

gap:25px;

}

.hero-social a{

color:var(--gold);

font-size:22px;

transition:.3s;

}

.hero-social a:hover{

color:#fff;

transform:translateY(-3px);

}
.hero{

min-height:100vh;

display:flex;

align-items:center;

text-align:center;

}



.hero-content{

max-width:900px;

margin:auto;

}



.tagline{

color:var(--gold);

letter-spacing:3px;

margin-bottom:25px;

}



.hero h1{

font-size:72px;

line-height:1.1;

font-family:'Playfair Display',serif;

margin-bottom:28px;

}



.hero-text{

font-size:20px;

color:var(--text);

max-width:800px;

margin:auto;

}



.hero-buttons{

margin-top:45px;

display:flex;

justify-content:center;

gap:20px;

}



.btn-primary{

padding:16px 32px;

background:var(--gold);

border-radius:40px;

color:#111;

text-decoration:none;

font-weight:600;

}



.btn-primary:hover{

transform:translateY(-4px);

}



.btn-secondary{

padding:16px 32px;

border:1px solid var(--gold);

border-radius:40px;

color:var(--white);

text-decoration:none;

}



.btn-secondary:hover{

background:var(--gold);

color:#111;

}

.hero-services{

margin-top:40px;

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.hero-services span{

padding:10px 18px;

border:1px solid rgba(255,255,255,.12);

border-radius:50px;

background:rgba(255,255,255,.03);

color:var(--gold);

font-size:14px;

transition:.3s;

}

.hero-services span:hover{

border-color:var(--gold);

transform:translateY(-3px);

}

/* SECTIONS */

section{

padding:50px 0;

}



h2{

font-size:44px;

text-align:center;

margin-bottom:30px;

font-family:'Playfair Display',serif;

}



.about p,
.contact p{

max-width:900px;

margin:auto;

text-align:center;

color:var(--text);

}



/* SERVICES */

.cards{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:30px;

margin-top:60px;

}



.card{

background:var(--card);

padding:45px;

border-radius:24px;

border:1px solid rgba(255,255,255,.08);

transition:.3s;

}



.card:hover{

transform:translateY(-10px);

border-color:var(--gold);

}



.card h3{

margin-bottom:18px;

color:var(--gold);

}



.card p{

color:var(--text);

}



/* CTA */

.cta{

text-align:center;

}



.cta h2{

margin-bottom:35px;

}



/* FOOTER */

footer{

padding:50px;

text-align:center;

border-top:

1px solid rgba(255,255,255,.08);

color:var(--text);

}



/* MOBILE */

@media(max-width:768px){

.hero h1{

font-size:46px;

}

.cards{

grid-template-columns:1fr;

}

.nav-links{

display:none;

}

.hero-buttons{

flex-direction:column;

}

h2{

font-size:34px;

}

}
/* PORTFOLIO */

.portfolio-sub{

text-align:center;

color:var(--text);

margin-bottom:60px;

}



.portfolio-grid{

display:grid;

grid-template-columns:

repeat(3,1fr);

gap:20px;

}



.project{

background:var(--card);

border-radius:24px;

overflow:hidden;

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.project-image{
height:260px;
}

.project:hover{

transform:

translateY(-10px);

border-color:

var(--gold);

}



.project-image{

height:260px;

display:flex;

align-items:center;

justify-content:center;

background:

linear-gradient(
135deg,
#182236,
#111827
);

font-size:28px;

color:var(--gold);

font-weight:700;

}

.project-image img{

width:100%;

height:100%;

object-fit:contain;

background:#111827;

}

.project h3{

padding:

28px 28px 10px;

color:var(--gold);

}



.project p{

padding:

0 28px 30px;

color:var(--text);

}



.portfolio-btn{

text-align:center;

margin-top:60px;

}



@media(max-width:768px){

.portfolio-grid{

grid-template-columns:1fr;

}

}

/* CONTACT */

.contact-sub{

text-align:center;

color:var(--text);

margin-bottom:50px;

}



.contact-form{

max-width:700px;

margin:auto;

display:flex;

flex-direction:column;

gap:20px;

}



.contact-form input,
.contact-form textarea{

background:var(--card);

border:none;

padding:22px;

border-radius:18px;

color:var(--white);

font-size:16px;

outline:none;

}



.contact-form textarea{

height:180px;

resize:none;

}



.contact-form input:focus,
.contact-form textarea:focus{

border:

1px solid var(--gold);

}



/* WHATSAPP */

.whatsapp{

position:fixed;

right:30px;

bottom:30px;

width:64px;

height:64px;

border-radius:50%;

background:var(--gold);

display:flex;

align-items:center;

justify-content:center;

text-decoration:none;

font-size:28px;

color:#111;

box-shadow:

0 10px 30px rgba(0,0,0,.3);

transition:.3s;

}



.whatsapp:hover{

transform:

scale(1.08);

}

/* MOBILE MENU */

.menu-toggle{

display:none;

font-size:34px;

cursor:pointer;

color:var(--gold);

}



/* FOOTER */

.footer-grid{

display:grid;

grid-template-columns:

2fr 1fr 1fr;

gap:40px;

}



.footer-grid a{

display:block;

color:var(--text);

text-decoration:none;

margin:10px 0;

}



.footer-grid h4{

margin-bottom:18px;

color:var(--gold);

}



.copyright{

margin-top:50px;

text-align:center;

color:var(--text);

}



@media(max-width:768px){

.menu-toggle{

display:block;

}

.nav-links{

display:none;

position:absolute;

top:100%;

left:0;

width:100%;

background:var(--bg);

flex-direction:column;

padding:30px;

}

.nav-links.active{

display:flex;

}

.footer-grid{

grid-template-columns:1fr;

}

}

/* TOP BAR */

.top-bar{

background:#0a1220;

border-bottom:1px solid rgba(255,255,255,.08);

padding:10px 0;

}

.top-bar-right{

display:flex;

justify-content:flex-end;

align-items:center;

gap:18px;

}

.top-bar-right a{

color:var(--gold);

text-decoration:none;

transition:.3s;

}

.top-bar-right a:hover{

color:#fff;

}

.top-email{

display:flex;

align-items:center;

gap:8px;

margin-left:15px;

padding-left:15px;

border-left:1px solid rgba(255,255,255,.15);

}

.top-email i{

color:var(--gold);

font-size:14px;

}

.top-email a{

color:var(--text);

font-size:14px;

}

.top-email a:hover{

color:#fff;

}

/* WHY US */

.section-subtitle{

text-align:center;

max-width:700px;

margin:0 auto 60px;

color:var(--text);

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.why-card{

background:var(--card);

padding:35px;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

transition:.3s;

}

.why-card:hover{

transform:translateY(-8px);

border-color:var(--gold);

}

.why-card h3{

color:var(--gold);

margin-bottom:15px;

}

.why-card p{

color:var(--text);

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

}
/* PROCESS */

.process-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:25px;

margin-top:60px;

}

.process-item{

text-align:center;

background:var(--card);

padding:35px 25px;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

transition:.3s;

}

.process-item:hover{

transform:translateY(-8px);

border-color:var(--gold);

}

.process-number{

width:60px;

height:60px;

margin:0 auto 20px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:var(--gold);

color:#111;

font-weight:700;

font-size:20px;

}

.process-item h3{

margin-bottom:15px;

color:var(--gold);

}

.process-item p{

color:var(--text);

font-size:15px;

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

}

/* TESTIMONIALS */

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.testimonial-card{

background:var(--card);

padding:35px;

border-radius:24px;

border:1px solid rgba(255,255,255,.08);

transition:.3s;

}

.testimonial-card:hover{

transform:translateY(-8px);

border-color:var(--gold);

}

.testimonial-card p{

color:var(--text);

font-style:italic;

margin-bottom:25px;

}

.testimonial-card h4{

color:var(--gold);

margin-bottom:5px;

}

.testimonial-card span{

font-size:14px;

color:#94A3B8;

}

@media(max-width:768px){

.testimonial-grid{

grid-template-columns:1fr;

}

}
/* STATS */

.stats{

background:#111827;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.stat-box{

text-align:center;

padding:30px;

}

.stat-box h3{

font-size:52px;

color:var(--gold);

margin-bottom:10px;

font-weight:700;

}

.stat-box p{

color:var(--text);

font-size:16px;

}

@media(max-width:768px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

gap:20px;

}

}

/* CLIENTS */

.clients-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:25px;

margin-top:60px;

}

.client-logo{

height:50px;

display:flex;

align-items:center;

justify-content:center;

background:var(--card);

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

color:var(--gold);

font-weight:600;

transition:.3s;

}

.client-logo{

height:120px;

display:flex;

align-items:center;

justify-content:center;

background:var(--card);

border-radius:20px;

padding:20px;

overflow:hidden;

}

@media(max-width:768px){

.clients-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.cards{

grid-template-columns:1fr;

}

}

/* FAQ SECTION */

.faq-container{

max-width:900px;

margin:60px auto 0;

}

.faq-item{

background:var(--card);

border-radius:18px;

margin-bottom:20px;

overflow:hidden;

border:1px solid rgba(255,255,255,.08);

}

.faq-question{

width:100%;

background:none;

border:none;

color:var(--white);

padding:24px;

font-size:18px;

font-weight:600;

display:flex;

justify-content:space-between;

align-items:center;

cursor:pointer;

text-align:left;

}

.faq-question span{

color:var(--gold);

font-size:24px;

}

.faq-answer{

max-height:0;

overflow:hidden;

transition:max-height .4s ease;

}

.faq-answer p{

padding:0 24px 24px;

color:var(-
-text);

line-height:1.8;

}

/* FINAL CTA */

.final-cta{

padding:120px 0;

text-align:center;

}

.cta-box{

text-align:center;

}

background:linear-gradient(
135deg,
rgba(198,165,106,.12),
rgba(255,255,255,.03)
);

border:1px solid rgba(198,165,106,.25);

border-radius:30px;

padding:80px 50px;

text-align:center;

backdrop-filter:blur(10px);

}

.cta-box h2{

font-size:52px;

margin-bottom:25px;

font-family:'Playfair Display',serif;

}

.cta-box p{

max-width:800px;

margin:0 auto 40px;

color:var(--text);

font-size:18px;

line-height:1.8;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.cta-trust{

margin-top:30px;

color:var(--gold);

font-size:14px;

letter-spacing:1px;
justify-content:center;

text-transform:uppercase;

}

.cta-box p{

max-width:800px;

margin:0 auto 40px;

text-align:center;

color:var(--text);

font-size:18px;

line-height:1.8;

}

.cta-buttons{

display:flex;

justify-content:center;

align-items:center;

gap:20px;

flex-wrap:wrap;

}

.cta-trust{

display:block;

width:100%;

text-align:center;

margin-top:30px;

color:var(--gold);

font-size:14px;

letter-spacing:1px;

text-transform:uppercase;

}

.logo img{

height:65px;

transition:.4s ease;

}

.logo:hover img{

transform:scale(1.08) rotate(-2deg);

filter:drop-shadow(0 0 15px rgba(198,165,106,.4));

}

.logo:hover img{

transform:translateY(-3px) scale(1.05);

filter:drop-shadow(0 8px 20px rgba(198,165,106,.35));

}

.footer-social{
    display: flex;
    justify-content: center;  /* center align */
    align-items: center;
    gap: 15px; /* icons ke beech space */
    margin-top: 10px;
}
