*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#0d0d0d;
color:white;
overflow-x:hidden;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 7%;
display:flex;
justify-content:space-between;
align-items:center;
z-index:1000;
background:rgba(0,0,0,0.75);
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo img{
width:280px;
background:transparent;
}

nav{
display:flex;
gap:35px;
}

nav a{
color:white;
text-decoration:none;
font-size:16px;
font-weight:500;
transition:0.3s;
position:relative;
}

nav a:hover{
color:#ffcc00;
}

/* HERO */

.hero{
width:100%;
height:100vh;

background:
linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
url('../images/Projects (31).png');

background-size:cover;
background-position:center;

display:flex;
justify-content:center;
align-items:center;
text-align:center;

position:relative;
padding:20px;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.45);
}

.hero-content{
position:relative;
z-index:2;
max-width:950px;
}

.hero-content h1{
font-size:90px;
font-weight:800;
line-height:1;
margin-bottom:25px;
letter-spacing:2px;
}

.hero-content h1 span{
color:#ffcc00;
}

.hero-content p{
font-size:24px;
line-height:1.8;
color:#ddd;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn-yellow{
padding:16px 40px;
background:#ffcc00;
color:black;
border-radius:50px;
font-weight:700;
text-decoration:none;
transition:0.4s;
}

.btn-yellow:hover{
transform:translateY(-5px);
background:white;
}

.btn-dark{
padding:16px 40px;
border:2px solid white;
color:white;
border-radius:50px;
font-weight:700;
text-decoration:none;
transition:0.4s;
}

.btn-dark:hover{
background:white;
color:black;
}

/* ABOUT */

.about{
padding:120px 7%;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
background:#111;
}

.about-image img{
width:100%;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,0.4);

object-fit:contain;
background:#181818;
padding:10px;
}

.about-text h2{
font-size:55px;
margin-bottom:25px;
}

.about-text p{
font-size:18px;
line-height:2;
color:#ccc;
margin-bottom:35px;
}

.about-stats{
display:flex;
gap:40px;
flex-wrap:wrap;
}

.about-stats h3{
font-size:42px;
color:#ffcc00;
margin-bottom:8px;
}

/* PROJECTS */

.projects{
padding:120px 7%;
background:#0d0d0d;
}

.section-header{
text-align:center;
margin-bottom:70px;
}

.section-header h2{
font-size:60px;
margin-bottom:15px;
}

.section-header p{
font-size:20px;
color:#aaa;
}

.project-grid{
display:flex;
flex-direction:column;
gap:40px;
}

.project-card{
position:relative;
overflow:hidden;
border-radius:25px;
background:#111;
box-shadow:0 15px 40px rgba(0,0,0,0.35);
padding:15px;
}

.project-card img{
width:100%;
height:auto;

display:block;

border-radius:20px;

transition:0.5s;
}

.project-card:hover img{
transform:scale(1.03);
}

.project-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:25px;
background:linear-gradient(transparent,rgba(0,0,0,0.95));
}

.project-overlay h3{
font-size:26px;
}

/* CONTACT */

.contact{
padding:120px 7%;
background:#111;

display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.contact-box h2{
font-size:60px;
margin-bottom:30px;
}

.contact-box p{
font-size:18px;
margin-bottom:18px;
line-height:1.8;
color:#ddd;
}

.socials{
display:flex;
gap:20px;
margin-top:35px;
}

.socials a{
width:60px;
height:60px;
display:flex;
justify-content:center;
align-items:center;
background:#ffcc00;
color:black;
border-radius:50%;
font-size:22px;
transition:0.4s;
text-decoration:none;
}

.socials a:hover{
transform:translateY(-5px);
background:white;
}

.map-container{
width:100%;
height:500px;
border-radius:25px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,0.35);
}

.map-container iframe{
width:100%;
height:100%;
border:0;
}

/* INQUIRY FORM */

.contact-form-section{
padding:120px 7%;
background:#0d0d0d;
text-align:center;
}

.contact-form-section h2{
font-size:55px;
margin-bottom:50px;
color:white;
}

.inquiry-form{
max-width:800px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.inquiry-form input,
.inquiry-form textarea{
width:100%;
padding:18px 20px;
background:#181818;
border:1px solid rgba(255,255,255,0.08);
border-radius:15px;
color:white;
font-size:16px;
outline:none;
font-family:'Poppins',sans-serif;
}

.inquiry-form textarea{
height:180px;
resize:none;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus{
border-color:#ffcc00;
}

.inquiry-form button{
padding:18px;
background:#ffcc00;
color:black;
border:none;
border-radius:50px;
font-size:18px;
font-weight:700;
cursor:pointer;
transition:0.4s;
}

.inquiry-form button:hover{
background:white;
transform:translateY(-4px);
}

/* FOOTER */

footer{
background:black;
padding:30px;
text-align:center;
color:#777;
font-size:15px;
}

/* MOBILE */

@media(max-width:991px){

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

.hero-content p{
font-size:18px;
}

.about{
grid-template-columns:1fr;
}

.contact{
grid-template-columns:1fr;
}

.section-header h2{
font-size:42px;
}

.about-text h2,
.contact-box h2{
font-size:40px;
}

nav{
display:none;
}

}

@media(max-width:600px){

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:16px;
}

.logo img{
width:180px;
}

.about-stats{
gap:20px;
}

.about-stats h3{
font-size:30px;
}

}
