/* ================= GLOBAL ================= */

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

body{
font-family:Arial, sans-serif;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:80px auto;
}

h2{
font-size:2.4rem;
text-align:center;
margin-bottom:40px;
}

/* ================= HEADER ================= */

.header{
background:#fff;
padding:6px 0;
box-shadow:0 3px 10px rgba(0,0,0,0.06);
position:sticky;
top:0;
z-index:1000;
}

.header .container{
width:92%;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}

/* BRAND */

.brand{
display:flex;
align-items:center;
gap:12px;
}

.logo-img{
width:80px;
height:80px;
object-fit:contain;
margin-right:25px;
}

.brand-text{
display:flex;
flex-direction:column;
}

.brand-text h1{
font-size:20px;
margin:0;
}

.brand-text span{
font-size:12px;
color:#777;
}

/* NAV */

.nav ul{
list-style:none;
display:flex;
gap:50px;
}

.nav a{
text-decoration:none;
color:#333;
font-size:15px;
font-weight:500;
position:relative;
}

.nav a::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0%;
height:2px;
background:#e67e22;
transition:.3s;
}

.nav a:hover::after{
width:100%;
}

/* ================= HERO ================= */

.hero{
position:relative;
height:100vh;
background:url('assets/7.jpg') center/cover no-repeat;
background-attachment:fixed;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:#fff;
}

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

.hero-text{
position:relative;
z-index:2;
}

.hero-text h2{
font-size:3rem;
}

.hero-text p{
margin:15px 0;
}

/* BUTTON */

.btn{
padding:12px 30px;
background:#e67e22;
color:#fff;
text-decoration:none;
border-radius:30px;
font-weight:bold;
display:inline-block;
transition:0.3s;
}

.btn:hover

/* ================= ABOUT RANDOM LAYOUT ================= */

.about-section{
padding:120px 0;
background:#f9f9f9;
}

.about-wrapper{
width:90%;
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
flex-wrap:wrap;
}

/* IMAGE AREA */

.about-images{
position:relative;
width:500px;
height:420px;
}

/* IMAGE CARD STYLE */

.img-card{
position:absolute;
border-radius:18px;
overflow:hidden;
box-shadow:0 12px 30px rgba(0,0,0,0.15);
background:white;
}

.img-card img{
width:100%;
height:100%;
object-fit:cover;
}

/* IMAGE POSITIONS (NO OVERLAP) */

.img1{
width:200px;
height:230px;
top:20px;
left:0;
}

.img2{
width:200px;
height:230px;
top:0;
right:40px;
}

.img3{
width:200px;
height:230px;
bottom:0;
left:140px;
}

/* TEXT SIDE */

.about-text{
max-width:520px;
padding: 50px;
}

.mini-title{
color:#e67e22;
letter-spacing:4px;
font-weight:bold;
font-size:14px;
}

.about-text h2{
font-size:42px;
margin:10px 0 20px;
text-align:left;
}

.about-text p{
color:#666;
margin-bottom:18px;
line-height:1.8;
}

/* MOBILE */

@media(max-width:900px){

.about-wrapper{
flex-direction:column;
text-align:center;
}

.about-text h2{
text-align:center;
}

.about-images{
width:100%;
height:380px;
}

.img1{
left:20px;
}

.img2{
right:20px;
}

.img3{
left:50%;
transform:translateX(-50%);
}

}


/* ================= PORTFOLIO ================= */

.masonry{
display:none;
column-count:4;
column-gap:15px;
}

.masonry.active{
display:block;
}

.masonry img{
width:100%;
margin-bottom:15px;
border-radius:14px;
cursor:pointer;
transition:.4s;
}

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

@media(max-width:1100px){
.masonry{column-count:3}
}

@media(max-width:768px){
.masonry{column-count:2}
}

@media(max-width:500px){
.masonry{column-count:1}
}

/* PAGINATION */

.pagination{
text-align:center;
margin-top:50px;
}

.pagination button{
padding:10px 18px;
margin:0 6px;
border:none;
background:#eee;
border-radius:6px;
cursor:pointer;
}

.pagination button.active-btn{
background:#e67e22;
color:#fff;
}

/* ================= SERVICES ================= */

.services-grid{
display:flex;
gap:25px;
flex-wrap:wrap;
}

.service-card{
flex:1 1 20%;
background:#f7f7f7;
padding:25px;
border-radius:10px;
text-align:center;
}

/* ================= CONTACT NEW ================= */

.contact-wrapper{
display:flex;
justify-content:center;
gap:60px;
flex-wrap:wrap;
margin-top:40px;
}

.contact-box,
.follow-box{
background:#f7f7f7;
padding:35px;
border-radius:12px;
min-width:280px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
}

.phone{
font-size:18px;
margin:12px 0;
}

.phone a{
text-decoration:none;
color:#333;
font-weight:bold;
}

.phone a:hover{
color:#e67e22;
}


/* SOCIAL ICONS */

.social-icons{
display:flex;
justify-content:center;
gap:20px;
margin-top:15px;
}

.social-icons a{
width:55px;
height:55px;
background:#e67e22;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:22px;
text-decoration:none;
transition:.3s;
}

.social-icons a:hover{
background:#333;
transform:translateY(-6px);
}


/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#25D366;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
box-shadow:0 6px 15px rgba(0,0,0,0.3);
z-index:9999;
text-decoration:none;
transition:.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

/* ================= FOOTER ================= */

footer{
text-align:center;
padding:20px;
background:#333;
color:#fff;
margin-top:80px;
}

/* ================= LIGHTBOX ================= */

#lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,.95);
display:none;
justify-content:center;
align-items:center;
}

#lightbox img{
max-width:90%;
max-height:90%;
border-radius:12px;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

.about-wrapper{
flex-direction:column;
}

.about-images{
width:100%;
height:350px;
}

.img1{
width:160px;
height:200px;
}

.img2{
width:150px;
height:190px;
}

.img3{
width:160px;
height:200px;
}

.services-grid{
flex-direction:column;
}

}

/* ================= HAMBURGER MENU ================= */

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

.hamburger span{
width:28px;
height:3px;
background:#333;
border-radius:2px;
transition:.3s;
}

@media(max-width:900px){

.hamburger{
display:flex;
}

.nav{
position:absolute;
top:100%;
left:0;
width:100%;
background:#fff;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
}

.nav.active{
max-height:400px;
}

.nav ul{
flex-direction:column;
gap:0;
}

.nav li{
border-bottom:1px solid #eee;
text-align:center;
padding:15px 0;
}

}
