*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 60px;
background:#0b1c2c;
color:white;
}

.logo-area{
display:flex;
align-items:center;
gap:10px;
}

.logo{
height:45px;
}

nav h2{
font-size:20px;
}

nav a{
color:white;
text-decoration:none;
margin-left:20px;
font-weight:bold;
}



/* HERO */

.hero{

height:550px;

background:
linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
url("../images/14.webp");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;

}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:46px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
margin-bottom:30px;
line-height:1.6;
}



/* HERO BUTTONS */

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.call-btn{
background:#ff6600;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
color:white;
font-weight:bold;
}






/* FLOATING CALL BUTTON */

.floating-call{

position:fixed;

bottom:25px;
right:25px;

background:green;

width:80px;
height:80px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:28px;

color:white;

text-decoration:none;

box-shadow:0 0 15px rgba(255,102,0,0.8);

animation: pulse 1.5s infinite;

}

/* GLOW ANIMATION */

@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(255,102,0,0.7);
}

70%{
box-shadow:0 0 0 15px rgba(255,102,0,0);
}

100%{
box-shadow:0 0 0 0 rgba(255,102,0,0);
}

}

/* FEATURES SECTION */

.features{
padding:70px 20px;
background:#f4f7fb;
text-align:center;
}

.features-title{
font-size:32px;
margin-bottom:50px;
color:#0b1c2c;
}

/* FEATURES GRID */

.features-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

/* FEATURE CARD */

.feature-card{
background:white;
padding:30px 20px;
width:230px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.feature-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.feature-card .icon{
font-size:40px;
margin-bottom:15px;
}

.feature-card h3{
margin-bottom:10px;
color:#0b1c2c;
}

.feature-card p{
font-size:14px;
color:#555;
line-height:1.5;
}


/* SERVICES SECTION */

.services{
padding:80px 20px;
background:#f7f8fa;
text-align:center;
}

/* TITLE */

.service-title{
font-size:34px;
color:#0b1c2c;
margin-bottom:10px;
}

.service-subtitle{
color:#666;
font-size:17px;
margin-bottom:50px;
}

/* GRID CONTAINER */

.service-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

/* CARD */

.service-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
transition:0.3s;
display:flex;
flex-direction:column;
}

/* IMAGE */

.service-card img{
width:100%;
height:220px;
object-fit:cover;
}

/* CONTENT */

.service-info{
padding:25px;
flex:1;
display:flex;
flex-direction:column;
justify-content:space-between;
}

/* TITLE */

.service-info h3{
font-size:22px;
margin-bottom:10px;
color:#0b1c2c;
}

/* TEXT */

.service-info p{
font-size:15px;
color:#555;
line-height:1.7;
margin-bottom:20px;
}

/* BUTTON */

/* SERVICE CALL BUTTON */

.service-call-btn{
display:inline-block;
margin-top:20px;
padding:12px 25px;
background:#fff;
color:#0b1c2c;
font-weight:600;
text-decoration:none;
border-radius:6px;
transition:0.3s;
box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

/* HOVER */

.service-call-btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 18px rgba(0,0,0,0.2);
}


.service-btn{
display:inline-block;
padding:12px 20px;
background:#0b7dda;
color:#fff;
text-decoration:none;
border-radius:5px;
font-weight:600;
transition:0.3s;
}

.service-btn:hover{
background:#095ca8;
}

/* HOVER EFFECT */

/* REMOVE OLD HOVER IF NEEDED */
.service-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.12);
}


/* FRIDGE CARD HOVER */

.service-card:nth-child(1):hover{
background:#e8f4ff;
border-bottom:4px solid #0b7dda;
}

.service-card:nth-child(1):hover h3{
color:#0b7dda;
}


/* WASHING MACHINE CARD HOVER */

.service-card:nth-child(2):hover{
background:#fff3e6;
border-bottom:4px solid #ff6600;
}

.service-card:nth-child(2):hover h3{
color:#ff6600;
}


/* BUTTON COLOR CHANGE ON HOVER */

.service-card:nth-child(1):hover .service-btn{
background:#0b7dda;
}

.service-card:nth-child(2):hover .service-btn{
background:#ff6600;
}



/* SERVICE BANNER */

.service-banners{
background:linear-gradient(135deg,#141e30,#243b55);
border-radius:20px;
margin:80px 40px;
padding:50px;
color:white;
}

/* CONTAINER */

.banner-container{

display:flex;

align-items:center;

justify-content:space-between;

gap:40px;

flex-wrap:wrap;

}

/* TEXT */

.banner-text{
max-width:500px;
}

.banner-text h2{
font-size:30px;
margin-bottom:20px;
}

.banner-text p{
font-size:16px;
line-height:1.7;
margin-bottom:25px;
}

/* CALL BUTTON */

.banner-call{

display:inline-block;

padding:12px 30px;

background:white;

color:#0b1c2c;

text-decoration:none;

border-radius:6px;

font-weight:bold;

}

/* IMAGE */

.banner-image img{

width:380px;

max-width:100%;

}

/* RESPONSIVE */

@media(max-width:768px){

.banner-container{
flex-direction:column;
text-align:center;
}

.banner-image img{
width:260px;
}

}


/* BOOKING SECTION */

.booking{
background:#f4f7fb;
padding:80px 20px;
text-align:center;
}

/* CONTAINER */

.booking-container{
max-width:600px;
margin:auto;
background:white;
padding:40px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

/* TITLE */

.booking h2{
font-size:32px;
color:#0b1c2c;
margin-bottom:10px;
}

/* SUBTITLE */

.booking-subtitle{
color:#666;
font-size:16px;
margin-bottom:30px;
}

/* FORM */

.booking form{
display:flex;
flex-direction:column;
gap:15px;
}

/* INPUTS */

.booking input,
.booking select,
.booking textarea{
padding:14px;
border:1px solid #ddd;
border-radius:6px;
font-size:15px;
transition:0.3s;
}

/* INPUT FOCUS */

.booking input:focus,
.booking select:focus,
.booking textarea:focus{
border-color:#0b7dda;
outline:none;
box-shadow:0 0 6px rgba(11,125,218,0.2);
}

/* TEXTAREA */

.booking textarea{
min-height:100px;
resize:none;
}

/* BUTTON */

.booking button{
padding:14px;
background:#ff6600;
border:none;
color:white;
font-size:17px;
font-weight:600;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

/* BUTTON HOVER */

.booking button:hover{
background:#e55a00;
transform:translateY(-2px);
}


/* SERVICE SECTION */

.service-content{
background:#f3f5f7;
padding:80px 20px;
display:flex;
justify-content:center;
}

/* INNER BOX */

.service-box{
max-width:950px;
background:#fff;
padding:50px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
line-height:1.9;
font-size:18px;
color:#444;
text-align:justify;
}

/* TITLE */

.service-box h2{
text-align:center;
font-size:34px;
margin-bottom:25px;
color:#0b1c2c;
}

/* SUBTITLE */

.service-box h3{
margin-top:30px;
margin-bottom:15px;
font-size:24px;
color:#0b1c2c;
}

/* PARAGRAPH */

.service-box p{
margin-bottom:18px;
}

/* STRONG TEXT */

.service-box strong{
color:#0b1c2c;
}

/* CTA TEXT */

.cta-text{
font-size:19px;
font-weight:500;
text-align:center;
margin-top:20px;
}

/* CALL BUTTON */

.call-btn{
display:inline-block;
margin-top:20px;
background:#0b7dda;
color:white;
padding:14px 28px;
font-size:18px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.call-btn:hover{
background:#095ca8;
}

/* CENTER BUTTON */

.service-box a{
display:block;
text-align:center;
width:250px;
margin:20px auto 0;
}

/* MOBILE */

@media(max-width:768px){

.service-box{
padding:30px;
font-size:16px;
}

.service-box h2{
font-size:26px;
}

}

/* ISSUES SECTION */

.issues{
background:#f5f7fb;
padding:80px 20px;
text-align:center;
}

/* TITLE */

.issues-title{
font-size:32px;
color:#0b1c2c;
margin-bottom:10px;
}

/* SUBTITLE */

.issues-subtitle{
color:#666;
font-size:17px;
margin-bottom:50px;
}

/* GRID */

.issues-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

/* CARD */

.issue-card{
background:#e9ecef;
padding:30px;
border-radius:12px;
font-size:16px;
line-height:1.6;
font-weight:500;
color:#333;
transition:0.3s;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

/* HIGHLIGHT CARD */

.issue-card.highlight{
background:linear-gradient(135deg,#6c63ff,#4b49d1);
color:white;
}

/* HOVER */

.issue-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.12);
}


/* FOOTER */

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}

/* Highlight Text Style */
.highlight {
    color: #007BFF;          /* Blue color */
    font-weight: 600;        /* Semi-bold */
    text-decoration: none;
    transition: 0.3s ease;
}

/* Hover Effect */
.highlight:hover {
    color: #0056b3;          /* Darker blue on hover */
    text-decoration: underline;
}

/* Optional: Email Link Styling */
a {
    text-decoration: none;
}


/* ============================= */
/* TABLET RESPONSIVE (1024px) */
/* ============================= */

@media (max-width:1024px){

nav{
padding:15px 30px;
}

.hero{
height:480px;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:16px;
}

.features-container{
gap:20px;
}

.feature-card{
width:200px;
}

.service-container{
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}

.service-banner{
margin:60px 20px;
padding:40px;
}

.banner-image img{
width:320px;
}

.service-box{
max-width:850px;
padding:40px;
}

}

/* FOOTER */

.footer{
background:#0b1c2c;
color:#fff;
padding:60px 20px 20px;
}

/* CONTAINER */

.footer-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

/* BOX */

.footer-box h3{
margin-bottom:15px;
font-size:20px;
}

.footer-box p{
font-size:14px;
line-height:1.7;
color:#dcdcdc;
}

/* LINKS */

.footer-box ul{
list-style:none;
}

.footer-box ul li{
margin-bottom:10px;
}

.footer-box ul li a{
color:#dcdcdc;
text-decoration:none;
transition:0.3s;
}

.footer-box ul li a:hover{
color:#0b7dda;
}

/* BOTTOM */

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.2);
margin-top:40px;
padding-top:15px;
text-align:center;
font-size:14px;
color:#ccc;
}



/* ============================= */
/* TABLET SMALL (768px) */
/* ============================= */

@media (max-width:768px){

nav{
flex-direction:column;
gap:10px;
padding:15px 20px;
text-align:center;
}

nav a{
margin:0 10px;
}

.hero{
height:auto;
padding:80px 20px;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
gap:12px;
}

.features{
padding:60px 15px;
}

.features-title{
font-size:26px;
}

.features-container{
flex-direction:column;
align-items:center;
}

.feature-card{
width:90%;
max-width:350px;
}

.services{
padding:60px 15px;
}

.service-title{
font-size:28px;
}

.service-container{
grid-template-columns:1fr;
}

.service-card img{
height:200px;
}

.banner-container{
flex-direction:column;
text-align:center;
}

.banner-image img{
width:260px;
}

.banner-text h2{
font-size:24px;
}

.service-content{
padding:60px 15px;
}

.service-box{
padding:30px;
font-size:16px;
}

.service-box h2{
font-size:26px;
}

.service-box h3{
font-size:20px;
}

.booking{
padding:40px 20px;
}

.floating-call{
width:55px;
height:55px;
font-size:24px;
}

}


/* ============================= */
/* MOBILE SMALL (480px) */
/* ============================= */

@media (max-width:480px){

.hero h1{
font-size:26px;
}

.hero p{
font-size:15px;
}

.call-btn{
padding:10px 18px;
font-size:14px;
}

.features-title{
font-size:22px;
}

.feature-card{
padding:25px 15px;
}

.feature-card .icon{
font-size:34px;
}

.service-title{
font-size:24px;
}

.service-subtitle{
font-size:15px;
}

.service-info h3{
font-size:20px;
}

.service-info p{
font-size:14px;
}

.banner-text h2{
font-size:22px;
}

.banner-text p{
font-size:14px;
}

.banner-call{
padding:10px 20px;
font-size:14px;
}

.service-box{
padding:25px;
}

.service-box h2{
font-size:22px;
}

.service-box h3{
font-size:18px;
}

.call-btn{
font-size:16px;
padding:12px 22px;
}

.floating-call{
width:70px;
height:70px;
font-size:22px;
}

}
@media(max-width:768px){

.issues-title{
font-size:26px;
}

.issues-container{
grid-template-columns:1fr;
}

.issue-card{
padding:25px;
font-size:15px;
}

.booking{
padding:60px 15px;
}

.booking-container{
padding:30px;
}

.booking h2{
font-size:26px;
}

.booking-subtitle{
font-size:15px;
}

}
