/* Reset */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Poppins, sans-serif;
background:#f8fafc;
scroll-behavior:smooth;
}

/* Container */
.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* Header */
header{
position:sticky;
top:0;
background:white;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
border-bottom: 1px solid #e5e7eb;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
position: relative;
}

.logo img{
height: 100px;          
width: auto;height: 110px;     
width: auto;
object-fit: contain;

transform: scale(1.2);
}

/* Menu */
.nav ul{
display:flex;
gap:30px;
list-style:none;
margin: 0;
padding: 0;
}

.nav a{
text-decoration:none;
color:#374151;
font-weight:500;
font-size: 16px;
padding: 8px 16px;
border-radius: 6px;
transition: all 0.3s ease;
position: relative;
}

.nav a:hover{
color:#2563eb;
background-color: #f3f4f6;
}

.nav a::after{
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background-color: #2563eb;
transition: all 0.3s ease;
transform: translateX(-50%);
}

.nav a:hover::after,
.nav a.active::after{
width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle{
display: none;
}

.menu-btn{
display:none;
font-size:24px;
background:none;
border:none;
cursor:pointer;
color: #374151;
padding: 8px;
border-radius: 4px;
transition: background-color 0.3s ease;
}

.menu-btn:hover{
background-color: #f3f4f6;
}

/* Mobile Menu Close Button */
.menu-close{
display: none;
position: absolute;
top: 10px;
right: 20px;
font-size: 24px;
background: none;
border: none;
cursor: pointer;
color: #374151;
}

/* Hero Slider */
.hero{
position:relative;
height:90vh;
overflow:hidden;
}

.hero-slider{
height:100%;
position:relative;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:1s;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.slide.active{
opacity:1;
}

.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:white;
text-align:center;
}

.hero-text h1{
font-size:50px;
margin-bottom:10px;
}

/* Buttons */
.btn{
display:inline-block;
padding:12px 25px;
background:black;
color:white;
border-radius:8px;
text-decoration:none;
margin-top:10px;
}

/* Sections */
.section{
padding:80px 0;
}

.light{
background:#f1f5f9;
}

/* Grid */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

/* Cards */
.card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
opacity:0;
transform:translateY(40px);
transition:0.5s;
}

.card.show{
opacity:1;
transform:translateY(0);
}

/* Pricing */
.card h2{
margin-top:10px;
color:#0ea5e9;
}

/* Gallery */
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.gallery img{
width:100%;
border-radius:10px;
}

/* Reviews */
.reviews{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.review{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 10px rgba(0,0,0,0.05);
width:300px;
}

/* Google Reviews Style */
.google-reviews{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.g-review{
background:white;
padding:20px;
border-radius:10px;
display:flex;
gap:15px;
align-items:center;
box-shadow:0 5px 10px rgba(0,0,0,0.05);
width:320px;
}

.g-review img{
border-radius:50%;
width:60px;
height:60px;
}

/* Stats */
.stats{
background:#111;
color:white;
text-align:center;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.counter{
font-size:40px;
font-weight:bold;
}

/* Before After */
.before-after{
position:relative;
max-width:600px;
margin:auto;
overflow:hidden;
}

.before-after img{
width:100%;
display:block;
}

#beforeImg{
position:absolute;
top:0;
left:0;
width:50%;
overflow:hidden;
}

#slider{
width:100%;
margin-top:10px;
}

/* Contact */
.contact{
background:#0f172a;
color:white;
}

input, textarea{
width:100%;
padding:12px;
margin:10px 0;
border-radius:6px;
border:none;
}

button{
padding:12px;
background:#22c55e;
border:none;
color:white;
border-radius:6px;
cursor:pointer;
width:100%;
}

/* Footer */
footer{
text-align:center;
padding:20px;
background:#111;
color:white;
}

/* WhatsApp Button */
.whatsapp{
position:fixed;
bottom:70px;
right:20px;
background:#25D366;
color:white;
padding:12px 18px;
border-radius:50px;
text-decoration:none;
}

/* Sticky Booking Bar */
.sticky-book{
position:fixed;
bottom:0;
width:100%;
background:#0ea5e9;
color:white;
display:flex;
justify-content:center;
align-items:center;
gap:20px;
padding:10px;
z-index:1000;
}

.sticky-book a{
background:white;
color:black;
padding:8px 15px;
border-radius:5px;
text-decoration:none;
}

/* Animations */
@keyframes fadeIn{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* Mobile */
@media(max-width:768px){

.menu-btn{
display:block;
}

.nav ul{
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
flex-direction: column;
gap: 0;
padding: 20px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
border-radius: 0 0 8px 8px;
transform: translateY(-100%);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.menu-toggle:checked ~ ul{
transform: translateY(0);
opacity: 1;
visibility: visible;
}

.menu-toggle:checked ~ .menu-close{
display: block;
}

.nav li{
border-bottom: 1px solid #e5e7eb;
}

.nav li:last-child{
border-bottom: none;
}

.nav a{
display: block;
padding: 15px 0;
border-radius: 0;
}

.nav a:hover{
background-color: #f9fafb;
color: #2563eb;
}

.hero-text h1{
font-size:32px;
}

.stats-grid{
grid-template-columns:1fr 1fr;
}

}


/* Services Section */
.section-title{
text-align:center;
margin-bottom:40px;
font-size:32px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.service-box{
background:white;
padding:30px;
border-radius:14px;
text-align:center;
box-shadow:0 10px 20px rgba(0,0,0,0.05);
transition:0.3s;
}

.service-box:hover{
transform:translateY(-8px);
box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

.service-icon{
font-size:40px;
margin-bottom:15px;
}

.service-box h3{
margin-bottom:10px;
}

/* Packages Section */
.packages-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
margin-top:30px;
}

.package-card{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
text-align:center;
position:relative;
transition:0.3s;
}

.package-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.package-card h3{
margin-bottom:10px;
}

.price{
font-size:28px;
font-weight:700;
color:#0ea5e9;
margin-bottom:15px;
}

.package-card ul{
list-style:none;
margin-bottom:20px;
}

.package-card li{
padding:6px 0;
}

.popular{
border:2px solid #0ea5e9;
transform:scale(1.05);
}

.tag{
position:absolute;
top:-10px;
left:50%;
transform:translateX(-50%);
background:#0ea5e9;
color:white;
padding:5px 12px;
font-size:12px;
border-radius:20px;
}

.package-list{
margin-top:15px;
margin-bottom:20px;
padding-left:0;
}

.package-list li{
list-style:none;
padding:8px 0;
font-size:15px;
color:#333;
border-bottom:1px solid #eee;
}


.footer{
background:#0f172a;
color:white;
text-align:center;
padding:25px 10px;
margin-top:50px;
}

.footer p{
margin:5px 0;
font-size:14px;
}


/* Before After Section */
.ba-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-top:40px;
}

.before-after{
position:relative;
overflow:hidden;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
background:white;
padding-bottom:15px;
}

.ba-images{
position:relative;
height:250px;
overflow:hidden;
}

.ba-images img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.before{
z-index:2;
width:50%;
overflow:hidden;
}

.after{
z-index:1;
}

.slider{
width:90%;
margin:10px auto;
display:block;
}

.logo img{
height:60px;
object-fit:contain;
}

 


/* Contact Section */
.ul-contact-from-section{
padding:80px 0;
background:#f8fafc;
margin-top:0;
}

/* Contact Form Card */
.ul-contact-form-2-container{
background:#ffffff;
max-width:900px;
margin:auto;
padding:50px 40px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* Title */
.ul-contact-form-2-container__title{
text-align:center;
font-size:32px;
font-weight:700;
margin-bottom:40px;
color:#0f172a;
}

/* Grid Layout */
.ul-contact-form-2 .grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

/* Mobile */
@media(max-width:768px){
.ul-contact-form-2 .grid{
grid-template-columns:1fr;
}
}

/* Input Fields */
.ul-contact-form-2 input,
.ul-contact-form-2 textarea{
width:100%;
background:#f1f5f9;
border:none;
padding:14px 16px;
border-radius:10px;
font-size:15px;
transition:0.3s;
}

/* Focus Effect */
.ul-contact-form-2 input:focus,
.ul-contact-form-2 textarea:focus{
outline:none;
background:white;
box-shadow:0 0 0 2px #0ea5e9;
}

/* Textarea */
.ul-contact-form-2 textarea{
height:150px;
resize:none;
}

/* Icons */
.field-icon{
position:absolute;
right:15px;
top:50%;
transform:translateY(-50%);
color:#64748b;
}

/* Button */
.ul-contact-form-2 button{
background:#0ea5e9;
color:white;
border:none;
padding:14px;
font-size:16px;
border-radius:10px;
cursor:pointer;
transition:0.3s;
}

.ul-contact-form-2 button:hover{
background:#0284c7;
}

/* Terms text */
.ul-contact-from-section p{
font-size:14px;
color:#475569;
}

/* Checkbox area */
.ul-contact-from-section label{
font-size:14px;
line-height:1.4;
}

/* Success Modal */
.success-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
align-items:center;
justify-content:center;
z-index:999;
}

.success-box{
background:white;
padding:40px;
border-radius:15px;
text-align:center;
width:320px;
animation:fadeIn 0.3s ease;
}

.checkmark{
font-size:40px;
color:#22c55e;
margin-bottom:10px;
}

.success-box button{
margin-top:15px;
background:#0ea5e9;
border:none;
color:white;
padding:10px 20px;
border-radius:8px;
cursor:pointer;
}

/* Animation */
@keyframes fadeIn{
from{
opacity:0;
transform:scale(0.9);
}
to{
opacity:1;
transform:scale(1);
}
}

.iti{
width:100%;
}

.iti input{
width:100%;
}