.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
padding:40px;
}

.service-box{

background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
text-align:center;

}

.service-icon{

font-size:40px;
color:#0077ff;
margin-bottom:15px;

}

.service-box h3{

margin-bottom:10px;

}

.btn{

display:inline-block;
background:#0077ff;
color:white;
padding:10px 20px;
border-radius:5px;
text-decoration:none;

}
.booking-section{

max-width:600px;
margin:auto;
padding:40px;

}

.form-group{

margin-bottom:20px;

}

.form-group input,
.form-group textarea,
.form-group select{

width:60%;
padding:10px;
border:1px solid #ddd;
border-radius:5px;

}

button.btn{

background:#0077ff;
border:none;
padding:12px 20px;
color:white;
border-radius:5px;
cursor:pointer;

}

.blog-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
padding:40px;

}

.blog-card{

background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.1);

}

.blog-card img{

width:100%;
height:200px;
object-fit:cover;

}

.blog-card h3{

padding:15px;

}

.blog-card a{

display:block;
padding:15px;
background:#0077ff;
color:white;
text-align:center;
text-decoration:none;

}
.emergency-btn{

position:fixed;
bottom:20px;
right:20px;
z-index:999;

}

.emergency-btn button{

background:red;
color:white;
padding:15px 20px;
border:none;
border-radius:50px;
font-weight:bold;
cursor:pointer;

}

.emergency-modal{

display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);

}

.emergency-box{

background:white;
max-width:400px;
margin:100px auto;
padding:30px;
border-radius:10px;

}

.testimonial-section{
max-width:800px;
margin:auto;
padding:40px;
}

.testimonial-card{
background:#fff;
padding:20px;
margin-bottom:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}
.testimonial-card h4{
margin-top:10px;
color:#0077ff;
}
.testimonial-card span{
font-size:14px;
color:#555;
}

.contact-section{
max-width:600px;
margin:auto;
padding:40px;
}

.contact-section input,
.contact-section textarea{
width:100%;
padding:10px;
margin-bottom:15px;
border-radius:5px;
border:1px solid #ddd;
}

.contact-section button{
background:#0077ff;
color:white;
border:none;
padding:12px 20px;
border-radius:5px;
cursor:pointer;
}

.projects-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
padding:40px;
}

.project-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
}

.project-card img{
width:100%;
height:200px;
object-fit:cover;
}

.project-card h3{
margin:15px 0 10px;
}

.project-card p{
padding:0 15px 15px;
color:#555;
}

/* Live Search Dropdown */
#searchResults {
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: none; /* Hidden by default */
}

#searchResults a {
    text-decoration: none;
    color: #333;
}

#searchResults a:hover {
    background-color: #f1f1f1;
}
.navbar .form-control {
    min-width: 200px;
}

@media (max-width: 992px){
    #searchResults {
        position: relative;
        width: 100%;
    }
}

.map-responsive{
overflow:hidden;
padding-bottom:56.25%;
position:relative;
height:0;
}

.map-responsive iframe{
left:0;
top:0;
height:100%;
width:100%;
position:absolute;
}

.hero-img{
height:40px;
object-fit:cover;
filter:brightness(30%);
}

.carousel-caption{
bottom:10%;
}




.services-section{
padding:10px 1%;
background:#ffffff;
}

.section-title{
text-align:center;
font-size:36px;
margin-bottom:6px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
}

.service-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.service-image img{
width:100%;
height:200px;
object-fit:cover;
}

.service-content{
padding:20px;
}

.service-content h3{
margin-bottom:10px;
font-size:20px;
}

.service-content p{
font-size:14px;
color:#666;
margin-bottom:15px;
}

.btn-service{
display:inline-block;
background:#f0f4ff;
color:#0066ff;
padding:8px 14px;
border-radius:6px;
text-decoration:none;
margin-right:8px;
}

.btn-book{
display:inline-block;
background:#0066ff;
color:white;
padding:8px 14px;
border-radius:6px;
text-decoration:none;
}