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

body{
font-family:'Rajdhani',sans-serif;
background:#050505;
color:#fff;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
height:80px;
padding:0 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,0.92);
backdrop-filter:blur(10px);
z-index:1000;
border-bottom:1px solid rgba(255,255,255,.08);
}

.logo img{
height:40px;
width:auto;
}

.nav-links{
display:flex;
gap:60px;
list-style:none;
}

.nav-links a{
color:#fff;
font-size:20px;
font-weight:600;
transition:.3s;
}

.nav-links a:hover{
color:#ff7a1a;
}

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger span{
width:28px;
height:3px;
background:#fff;
}

.hero{
height:100vh;
background:url('../images/hero-bg.png') center center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
padding:0 12%;
}

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

.hero-content{
position:relative;
z-index:2;
max-width:700px;
padding-top:60px;
}

.hero h1{
font-size:65px;
max-width:750px;
line-height:0.95;
text-transform:uppercase;
margin-bottom:25px;
font-weight:700;
}

.hero p{
font-size:20px;
max-width:750px;
line-height:1.5;
color:#cfcfcf;
margin-bottom:20px;
}

.hero h1 span{
color:#ff7a1a;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 32px;
font-size:18px;
font-weight:700;
color:#ff7a1a;
border:2px solid #ff7a1a;
background:transparent;
border-radius:8px;
transition:.3s;
}

.btn:hover{
background:#ff7a1a;
color:#fff;
}

section{
padding:110px 8%;
}

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

.section-title h2{
font-size:60px;
font-weight:700;
margin-bottom:15px;
text-transform:uppercase;
color:#fff;
}

.section-title span{
display:block;
max-width:900px;
margin:20px auto 0;
color:#A0A0A0;
font-size:25px;
font-weight:650;
}


.services{
background:#080808;
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
background:#101010;
border:1px solid rgba(255,255,255,.08);
padding:40px;
border-radius:18px;
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
border-color:#ff7a1a;
}

.card i{
font-size:40px;
color:#ff7a1a;
margin-bottom:25px;
}

.card h3{
font-size:34px;
margin-bottom:15px;
}

.card p{
font-size:18px;
line-height:1.7;
color:#c7c7c7;
}

.gallery{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.gallery img{
height:350px;
width:100%;
object-fit:cover;
border-radius:15px;
transition:.4s;
}

.gallery img:hover{
transform:scale(1.05);
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.step{
text-align:center;
background:#101010;
padding:40px 20px;
border-radius:15px;
}

.number{
font-size:60px;
font-weight:700;
color:#ff7a1a;
margin-bottom:15px;
}

.step h3{
font-size:28px;
}

.contact-box{
background:#ff7a1a;
color:#111;
padding:70px;
border-radius:20px;
text-align:center;
}

.contact-box h2{
font-size:50px;
font-weight:700;
margin-bottom:20px;
}

.contact-box p{
font-size:20px;
font-weight:600;
}

.contact-details{
margin-top:25px;
display:flex;
flex-direction:column;
gap:10px;
}

.contact-details p{
display:flex;
align-items:center;
justify-content:center;
gap:15px;
font-size:26px;
font-weight:700;
letter-spacing:0.5px;
margin:0;          /* IMPORTANT */
line-height:1.2;   /* IMPORTANT */
}

.contact-details i{
font-size:28px;
width:40px;
}

.contact-item{
display:flex;
align-items:center;
justify-content:center;
gap:18px;
font-size:30px;
font-weight:700;
margin-bottom:25px;
}

.contact-item i{
font-size:30px;
}

footer{
padding:80px 8%;
text-align:center;
background:#020202;
border-top:1px solid rgba(255,255,255,.08);
}

footer img{
height:90px;
margin:auto;
margin-bottom:20px;
}

.socials{
display:flex;
justify-content:center;
gap:20px;
margin:30px 0;
}

.socials i{
font-size:24px;
color:#ff7a1a;
}

.copyright{
color:#999;
}

@media(max-width:991px){

@media(max-width:991px){

.hero h1{
font-size:42px;
line-height:1.1;
}

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

.btn{
font-size:16px;
padding:14px 24px;
}

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

.section-title span{
font-size:18px;
}

.card h3{
font-size:28px;
}

.card p{
font-size:16px;
}

.contact-box h2{
font-size:36px;
}

.contact-details p{
font-size:18px;
}

.service-grid,
.process-grid{
grid-template-columns:1fr;
}

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

.nav-links{
display:none;
}

.hamburger{
display:flex;
}
}
@media(max-width:991px){

.nav-links.active{
display:flex;
position:absolute;
top:90px;
left:0;
width:100%;
background:#000;
flex-direction:column;
align-items:center;
padding:25px 0;
gap:20px;
}

}

