*{
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:#ffffff;
color:#2b7cff;
}

.logo-area{
display:flex;
align-items:center;
gap:10px;
}

.logo{
height:45px;
}

nav h2{
font-size:20px;
}

nav a{
color:#000000;
text-decoration:none;
margin-left:20px;
font-weight:bold;
}

h1 span{
color:#2b7cff;
}



/* HERO */

.hero{
height:550px;

background:
linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
url("../images/22.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;
}

.hero-buttons .call-btn{
background:#ffffff;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
color:#2b7cff;
font-weight:bold;
}








/* FLOATING CALL BUTTON */

.floating-call{

position:fixed;

bottom:25px;
right:25px;

background:#2b7cff;

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);
}

}

/* BRANDS SECTION */

.brands{
padding:70px 20px;
background:#ffffff;
text-align:center;
}

.brands-title{
font-size:32px;
margin-bottom:40px;
color:#0b1c2c;
}

/* SLIDER */

.brands-slider{
overflow:hidden;
width:100%;
}

/* TRACK */

.brands-track{
display:flex;
gap:40px;
animation:slideBrands 10s linear infinite;
}

/* ANIMATION LEFT → RIGHT */

@keyframes slideBrands{
0%{
transform:translateX(-50%);
}
100%{
transform:translateX(0);
}
}

/* BRAND BOX */

.brand{
min-width:140px;
padding:15px 20px;
background:white;
border-radius:8px;
font-weight:600;
color:darkblue;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
transition:0.3s;
}

/* HOVER */

.brand:hover{
transform:translateY(-5px);
background:#0b7dda;
color:#fff;
}

/* RESPONSIVE */

@media(max-width:768px){
.brand{
min-width:110px;
font-size:14px;
}
}

/* 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:lightblue;
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;
}

/* DISHWASHER CARD HOVER */

.service-card:nth-child(3):hover{
background:#eefcff;
border-bottom:4px solid #00c6ff;
}

.service-card:nth-child(3):hover h3{
color:#00c6ff;

}

/* BUTTON GLOW */

.service-card:nth-child(3):hover .service-btn{
background:#00c6ff;
}




/* SECTION */

.service-banner {
    background: linear-gradient(135deg, #0b7dda, #095ca8);
    border-radius: 20px;
    margin: 80px 40px;
    padding: 60px 50px;
    color: white;
    overflow: hidden;
}

/* WRAPPER */

.banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* CONTENT */

.banner-content {
    max-width: 520px;
}

.banner-content h1 {
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.banner-content h1 span {
    color: #ffd54f;
}

.banner-sub {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* POINTS */

.banner-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.banner-points li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* BUTTONS */

.banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-call {
    background: #ffd54f;
    color: #000;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-call:hover {
    background: #ffc107;
}

.btn-book {
    background: transparent;
    border: 2px solid #fff;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-book:hover {
    background: white;
    color: #0b7dda;
}

/* IMAGE */

.banner-image img {
    width: 420px;
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .service-banner {
        margin: 40px 20px;
        padding: 40px 25px;
    }

    .banner-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .banner-buttons {
        justify-content: center;
    }

    .banner-image img {
        width: 280px;
    }
}

/* BOOKING SECTION */

.booking{
background:lightblue;
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:blue;
border:none;
color:white;
font-size:17px;
font-weight:600;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

/* BUTTON HOVER */

.booking button:hover{
background:blue;
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;
}

}

/* SECTION */

.problems-section {
    padding: 90px 20px;
    background: linear-gradient(to right, #f8fbff, #eef4ff);
    text-align: center;
}

/* TITLE */

.section-title {
    font-size: 34px;
    color: #0b1c2c;
    margin-bottom: 10px;
}

.section-title span {
    color: #2b7cff;
}

.section-subtitle {
    color: #555;
    font-size: 17px;
    margin-bottom: 60px;
}

/* GRID */

.problems-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* BOX */

.problem-box {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

/* ICON */

.problem-box .icon {
    font-size: 30px;
    margin-bottom: 15px;
}

/* HEADING */

.problem-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0b1c2c;
}

/* TEXT */

.problem-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* HOVER EFFECT */

.problem-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* HIGHLIGHT BOX */

.problem-box.highlight {
    background: linear-gradient(135deg, #2b7cff, #0056d2);
    color: white;
}

.problem-box.highlight h3,
.problem-box.highlight p {
    color: white;
}

/* RESPONSIVE */

@media (max-width:768px) {
    .section-title {
        font-size: 26px;
    }

    .problem-box {
        text-align: center;
    }
}



/* SECTION */

.reviews-section {
    padding: 80px 40px;
    text-align: center;
    background: #f5f7fb;
}

/* TITLE */

.reviews-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.review-subtitle {
    color: #555;
    margin-bottom: 50px;
}

/* CONTAINER */

.reviews-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CARD */

.review-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-10px);
}

/* TEXT */

.review-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

/* USER */

.review-user h4 {
    margin: 0;
    font-size: 16px;
}

.review-user span {
    font-size: 13px;
    color: gray;
}

/* STARS */

.stars {
    margin-top: 15px;
    color: #ffc107;
    font-size: 18px;
}

/* RESPONSIVE */

@media(max-width:768px) {
    .reviews-section {
        padding: 50px 20px;
    }

    .review-card {
        width: 100%;
        max-width: 350px;
    }
}

/* FOOTER */

footer{
background:white;
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:white;
color:blue;
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:black;
}

/* LINKS */

.footer-box ul{
list-style:none;
}

.footer-box ul li{
margin-bottom:10px;
}

.footer-box ul li a{
color:black;
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:black;
}



/* ============================= */
/* 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;
}

}
