*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

.navbar{
position:sticky;
top:0;
background:#3e3a36;
padding:15px 25px;
display:flex;
justify-content:space-between;
align-items:center;
z-index:1000;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.logo{
color:white;
font-size:18px;
font-weight:600;
}

.logo span{
display:block;
font-size:12px;
color:#d4c0af;
}

.nav-links{
display:flex;
gap:20px;
list-style:none;
}

.nav-links a{
color:white;
text-decoration:none;
font-size:15px;
position:relative;
}

.nav-links a:hover,
.nav-links a.active{
color:#e1c6aa;
}

.menu-toggle{
display:none;
color:white;
font-size:22px;
cursor:pointer;
}

/* Mobile */
@media(max-width:768px){
.nav-links{
display:none;
flex-direction:column;
background:#3e3a36;
position:absolute;
top:60px;
left:0;
width:100%;
text-align:center;
padding:10px 0;
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
}
}


/*Premium Hero Section*/



body{
overflow-x:hidden;
}

/* Full Screen Hero */
.hero{
position:relative;
height:100vh;
background:url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') no-repeat center center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

/* Dark Overlay */
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
}

/* Content */
.hero-content{
position:relative;
z-index:2;
padding:20px;
}

.hero h1{
font-size:50px;
margin-bottom:10px;
letter-spacing:2px;
}

.hero h2{
font-size:26px;
height:40px;
margin-bottom:30px;
}

/* Buttons */
.buttons{
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
}

.btn{
padding:12px 25px;
border-radius:40px;
text-decoration:none;
color:white;
font-weight:600;
transition:0.3s;
}

.call-btn{
background:#2c5f2d;
}

.wa-btn{
background:#25D366;
}

.btn:hover{
transform:scale(1.05);
}

/* Mobile Responsive */
@media(max-width:768px){
.hero h1{
font-size:32px;
}
.hero h2{
font-size:18px;
}
}


/*Home Page – About Short Intro Section*/


.about-home{
padding:70px 20px;
background:#f5efe9;
}

.container{
max-width:1200px;
margin:auto;
display:flex;
gap:40px;
flex-wrap:wrap;
}

.about-left,
.about-right{
flex:1;
min-width:280px;
}

.about-home h2{
font-size:28px;
margin-bottom:20px;
color:#3e3a36;
border-bottom:3px solid #b29172;
display:inline-block;
padding-bottom:5px;
}

.about-home p{
font-size:16px;
line-height:1.7;
color:#444;
}

.about-right ul{
list-style:none;
margin-top:15px;
}

.about-right li{
margin-bottom:15px;
font-size:16px;
display:flex;
align-items:center;
gap:10px;
}

.about-right i{
color:#946b44;
font-size:18px;
}

/* Mobile */
@media(max-width:768px){
.container{
flex-direction:column;
}
}



/*Our Services Section*/



/* Marble Texture Background */
.services-section{
padding:80px 20px;
background:url('https://www.transparenttextures.com/patterns/white-marble.png');
background-color:#f3ede7;
text-align:center;
}

.section-title{
font-size:32px;
margin-bottom:50px;
color:#3e3a36;
border-bottom:3px solid #b29172;
display:inline-block;
padding-bottom:8px;
}

/* Grid */
.services-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
perspective:1000px;
}

/* Card */
.service-card{
background:white;
padding:30px 20px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:transform 0.4s ease, box-shadow 0.4s ease;
transform-style:preserve-3d;
opacity:0;
transform:translateY(50px);
}

.service-card i{
font-size:40px;
color:#946b44;
margin-bottom:15px;
}

.service-card h3{
margin-bottom:10px;
color:#2e2b28;
}

.service-card p{
font-size:14px;
color:#555;
}

/* 3D Tilt Hover */
.service-card:hover{
transform:rotateY(10deg) rotateX(10deg) scale(1.05);
box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* Scroll Animation Active */
.service-card.show{
opacity:1;
transform:translateY(0);
transition:all 0.8s ease;
}

/* Mobile */
@media(max-width:768px){
.section-title{
font-size:24px;
}
}




/*About Us Section*/




.about-section{
padding:80px 20px;
background:url('https://www.transparenttextures.com/patterns/white-marble.png');
background-color:#f3ede7;
}

.about-container{
max-width:1200px;
margin:auto;
display:flex;
gap:50px;
flex-wrap:wrap;
align-items:flex-start;
}

.about-content{
flex:2;
min-width:280px;
opacity:0;
transform:translateY(40px);
transition:0.8s ease;
}

.about-content.show{
opacity:1;
transform:translateY(0);
}

.about-content h2{
font-size:30px;
margin-bottom:20px;
border-bottom:3px solid #b29172;
display:inline-block;
padding-bottom:6px;
color:#3e3a36;
}

.about-content p{
margin-bottom:25px;
line-height:1.7;
color:#444;
}

/* Experience Highlight */
.experience-box{
background:#ffffff;
padding:15px 20px;
border-left:5px solid #946b44;
margin-bottom:25px;
border-radius:10px;
box-shadow:0 6px 15px rgba(0,0,0,0.1);
}

/* Mission Vision Cards */
.mission-vision{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.mv-card{
flex:1;
min-width:220px;
background:white;
padding:20px;
border-radius:15px;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
transition:0.3s ease;
}

.mv-card:hover{
transform:translateY(-8px);
}

/* Team Box */
.team-box{
flex:1;
min-width:250px;
background:white;
padding:25px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
opacity:0;
transform:translateY(40px);
transition:0.8s ease;
}

.team-box.show{
opacity:1;
transform:translateY(0);
}

.team-box h3{
margin-bottom:20px;
border-bottom:3px solid #b29172;
display:inline-block;
padding-bottom:6px;
}

.team-box ul{
list-style:none;
}

.team-box li{
margin-bottom:15px;
display:flex;
gap:10px;
align-items:center;
font-size:15px;
}

.team-box i{
color:#946b44;
}

/* Mobile */
@media(max-width:768px){
.about-container{
flex-direction:column;
}
}


/*Gallery Section*/



.gallery-section{
padding:80px 20px;
background:url('https://www.transparenttextures.com/patterns/white-marble.png');
background-color:#f3ede7;
text-align:center;
}

.gallery-title{
font-size:30px;
margin-bottom:50px;
color:#3e3a36;
border-bottom:3px solid #b29172;
display:inline-block;
padding-bottom:6px;
}

.gallery-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
max-width:1200px;
margin:auto;
}

.gallery-item{
position:relative;
overflow:hidden;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
opacity:0;
transform:translateY(40px);
transition:0.8s ease;
}

.gallery-item.show{
opacity:1;
transform:translateY(0);
}

.gallery-item img{
width:100%;
height:250px;
object-fit:cover;
transition:0.5s ease;
}

/* Hover Zoom */
.gallery-item:hover img{
transform:scale(1.1);
}

/* Overlay */
.gallery-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
color:white;
padding:20px;
text-align:left;
transform:translateY(100%);
transition:0.4s ease;
}

.gallery-item:hover .gallery-overlay{
transform:translateY(0);
}



/*Contact & Location Section*/



.contact-section{
padding:80px 20px;
background:url('https://www.transparenttextures.com/patterns/white-marble.png');
background-color:#f3ede7;
text-align:center;
}

.contact-title{
font-size:30px;
margin-bottom:50px;
color:#3e3a36;
border-bottom:3px solid #b29172;
display:inline-block;
padding-bottom:6px;
}

.contact-container{
display:flex;
gap:40px;
flex-wrap:wrap;
max-width:1200px;
margin:auto;
text-align:left;
}

.contact-form,
.contact-details{
flex:1;
min-width:280px;
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
opacity:0;
transform:translateY(40px);
transition:0.8s ease;
}

.contact-form.show,
.contact-details.show{
opacity:1;
transform:translateY(0);
}

.contact-form h3,
.contact-details h3{
margin-bottom:20px;
color:#2e2b28;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border-radius:10px;
border:1px solid #ccc;
font-size:14px;
}

.contact-form button{
width:100%;
padding:12px;
background:#3e3a36;
color:white;
border:none;
border-radius:10px;
font-size:15px;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
background:#2c2a28;
}

.contact-details p{
margin-bottom:12px;
font-size:14px;
}

.contact-details i{
color:#946b44;
margin-right:8px;
}

.contact-buttons{
margin-top:15px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

.call-btn,
.wa-btn{
padding:10px 20px;
border-radius:30px;
text-decoration:none;
color:white;
font-size:14px;
display:inline-block;
}

.call-btn{
background:#2c5f2d;
}

.wa-btn{
background:#25D366;
}

.call-btn:hover,
.wa-btn:hover{
transform:scale(1.05);
}

/* Mobile */
@media(max-width:768px){
.contact-container{
flex-direction:column;
}
}




/*Footer Section*/



.footer{
background:#3e3a36;
color:#f5e6d8;
padding:60px 20px 20px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-box h3,
.footer-box h4{
margin-bottom:20px;
color:#ffffff;
border-bottom:2px solid #b29172;
display:inline-block;
padding-bottom:5px;
}

.footer-box p{
font-size:14px;
margin-bottom:10px;
color:#ddd;
}

.footer-box ul{
list-style:none;
}

.footer-box ul li{
margin-bottom:10px;
font-size:14px;
}

.footer-box ul li a{
color:#ddd;
text-decoration:none;
transition:0.3s;
}

.footer-box ul li a:hover{
color:#e1c6aa;
}

.footer-box i{
margin-right:8px;
color:#b29172;
}

/* Social Icons */
.social-icons{
margin-top:15px;
}

.social-icons a{
display:inline-block;
width:35px;
height:35px;
line-height:35px;
text-align:center;
background:#2c2a28;
color:white;
border-radius:50%;
margin-right:8px;
transition:0.3s;
}

.social-icons a:hover{
background:#b29172;
}

/* Bottom */
.footer-bottom{
text-align:center;
margin-top:40px;
padding-top:15px;
border-top:1px solid #555;
font-size:13px;
color:#ccc;
}

/* Mobile */
@media(max-width:768px){
.footer-container{
text-align:center;
}
}




/* Scroll To Top */
#scrollTopBtn{
position:fixed;
bottom:30px;
left:30px;
width:45px;
height:45px;
border:none;
border-radius:50%;
background:#946b44;
color:white;
font-size:18px;
cursor:pointer;
box-shadow:0 6px 15px rgba(0,0,0,0.3);
display:none;
z-index:999;
transition:0.3s ease;
}

#scrollTopBtn:hover{
background:#b29172;
transform:scale(1.1);
}




/* Floating Button Container */
.floating-buttons{
position:fixed;
right:20px;
bottom:20px;
display:flex;
flex-direction:column;
gap:15px;
z-index:999;
}

/* Base Style */
.float-btn{
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:22px;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
transition:0.3s ease;
animation:pulse 2s infinite;
}

/* WhatsApp */
.whatsapp{
background:#25D366;
}

/* Call */
.call{
background:#2c5f2d;
}

/* Hover Effect */
.float-btn:hover{
transform:scale(1.1);
}

/* Pulse Animation */
@keyframes pulse{
0%{
box-shadow:0 0 0 0 rgba(0,0,0,0.4);
}
70%{
box-shadow:0 0 0 15px rgba(0,0,0,0);
}
100%{
box-shadow:0 0 0 0 rgba(0,0,0,0);
}
}

/* Mobile Adjust */
@media(max-width:768px){
.float-btn{
width:50px;
height:50px;
font-size:20px;
}
}