nav a{
    margin-left:25px;
    text-decoration:none;
    color:white;
    transition:0.3s ease;
}

nav a:hover{
    color:#00b4ff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f172a;
    color:#fff;
}

main{
    padding-top: 0px;
}

/* ================= TOPBAR ================= */
.topbar{
    position:fixed;
    top:0;
    width:100%;
    background:#020617;
    display:flex;
    justify-content:space-between;
    padding:18px 10%;
    font-size:14px;
    z-index:2000;
}

.topbar-left a{
    color:#cbd5e1;
    margin-right:15px;
    font-size:16px;
    transition:0.3s;
}

.topbar-left a:hover{
    color:#00b4ff;
}

.topbar-right a{
    color:#cbd5e1;
    text-decoration:none;
    margin-left:15px;
}
.topbar-right a:hover{
    color:#00b4ff;
}

.social-icons {
    display:flex;
    gap:18px;
}

.social-icons img {
    width:18px;
    height:18px;
    opacity:0.8;
    transition:0.3s;
}

.social-icons img:hover {
    opacity:1;
    transform:scale(1.2);
}


/* ================= NAVBAR ================= */
header{
    position:fixed;
    width:100%;
    background:#0b1220;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10%;
    z-index:1500;
    border-bottom:1px solid rgba(255,255,255,0.08);
    
}

header h2{
    color:#00b4ff;
}

nav a{
    margin-left:25px;
    text-decoration:none;
    color:white;
}

/* ================= HERO ================= */
.hero{
    position: relative;
    min-height:100vh;
    min-height: 100dvh;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding: 160px 10% 80px;
    gap: 40px;
    flex-wrap: wrap;
    background:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('../Images/wash5.jpg')
    no-repeat center/cover;
}

.hero-text{ width:45%; }

.hero-text h1{ font-size:3rem; }

.hero-text span{ color:#00b4ff; }

.btn{
    padding:12px 28px;
    background:#00b4ff;
    border:none;
    color:white;
    border-radius:30px;
    display:inline-block;
    margin-top:20px;
    text-decoration:none;
}

/* HERO STACKED IMAGES */
.hero-images{
    width:45%;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.hero-img-box{
    display:flex;
    align-items:center;
    background:#020617;
    border-radius:12px;
    overflow:hidden;
}

.hero-img-box img{
    width:140px;
    height:100px;
    object-fit:cover;
}

.hero-img-box div{ padding:10px; }

/* ================= SERVICES ================= */
section{ padding:80px 8%; }

.section-title{
    text-align:center;
    font-size:2.5rem;
    margin-bottom:50px;
    color:#00b4ff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#020617;
    border-radius:15px;
    overflow:hidden;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.service-card div{ padding:20px; }

/* ================= PRODUCTS ================= */
#products{
  padding:80px 8%;
}

.product-list{
  display:grid;
  grid-template-columns:repeat(4, 1fr); /* 4 columns */
  gap:20px;
  list-style:none;
  padding:0;
  max-width:1200px;
  margin:auto;
}

.product-list li{
  background:#020617;
  padding:20px;
  border-radius:12px;
  text-align:center;
  font-size:16px;
  color:#cbd5e1;
  transition:0.3s ease;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,0.4);
}

/* Hover color effect */
.product-list li:hover{
  background:#00b4ff;
  color:#fff;
  transform:translateY(-6px);
}

/* Responsive */
@media(max-width:900px){
  .product-list{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .product-list{
    grid-template-columns:1fr;
  }
}

/* ================= CONTACT ================= */
.contact-box{
    text-align:center;
    background:#020617;
    padding:40px;
    border-radius:15px;
}

.contact-box a{
    color:#cbd5e1;
    text-decoration:none;
}

.contact-box a:hover{
    color:#00b4ff;
}

/* ================= FLOATING BUTTONS ================= */
.floating-buttons{
    position:fixed;
    bottom:20px;
    right:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:3000;
}

.whatsapp{ background:#25D366; }
.email{ background:#00b4ff; }

.float-btn:hover{
    transform:scale(1.1);
}

/* FLOATING BUTTON ANIMATION */
.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 4px 10px rgba(0,0,0,0.4);
    animation:floatBounce 2s infinite;
}

/* Bounce Effect */
@keyframes floatBounce{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

.page-buttons{
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn{
    padding: 12px 20px;
    background-color: #111;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn:hover{
    background-color: #ff6600;
}

html {
    scroll-behavior: smooth;
}

/* ================= FOOTER ================= */
footer{
    background:#0b1220;
    padding:20px;
    text-align:center;
}

/* BOOK NOW ANIMATION */
.btn{
    padding:12px 28px;
    background:#00b4ff;
    border:none;
    color:white;
    border-radius:30px;
    display:inline-block;
    margin-top:20px;
    text-decoration:none;
    animation:pulse 1.8s infinite;
}

/* Pulse Keyframes */
@keyframes pulse{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(0,180,255,0.7);
    }
    70%{
        transform:scale(1.05);
        box-shadow:0 0 0 18px rgba(0,180,255,0);
    }
    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(0,180,255,0);
    }
}

/* ================= ABOUT SECTION ================= */

#about{
    padding:80px 8%;
}

.about-container{
    display:flex;
    align-items:center;
    gap:50px;
}

.about-text{
    flex:1;
}

.about-text h3{
    color:#00b4ff;
    margin:20px 0;
}

.about-text p{
    margin-bottom:15px;
    color:#cbd5e1;
    line-height:1.6;
}

.about-image{
    flex:1;
    overflow: hidden;
    border-radius: 20px;
}

.about-image img{
    width:100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img{
    transform: scale(1.1);
}    

/* ================= ABOUT RESPONSIVE ================= */

@media(max-width:900px){

    .about-container{
        flex-direction:column;
    }

    .about-image{
        order:-1; /* Image goes on top on mobile */
    }

    .about-text{
        text-align:center;
    }
}

/* ================= LOCATION SECTION ================= */

#location{
    padding:80px 8%;
}

.location-container{
    display:flex;
    gap:40px;
    align-items:stretch;
}

.location-info{
    flex:1;
    background:#020617;
    padding:40px;
    border-radius:15px;
}

.location-info h3{
    color:#00b4ff;
    margin-bottom:20px;
}

.location-info p{
    margin-bottom:15px;
    color:#cbd5e1;
}

.location-map{
    flex:1;
    border-radius:15px;
    overflow:hidden;
}
.location-map iframe{
        width: 100%;
        height: 500px;
        border: 0;
    }

/* ================= LOCATION RESPONSIVE ================= */
@media(max-width:900px){

    .location-container{
        flex-direction:column;
    }

    .location-map{
        flex: 1;
        
    }
    
}

/* ================= RESPONSIVE TOPBAR FIX ================= */
@media(max-width: 900px){

    .topbar{
        flex-direction:column;
        gap:8px;
        padding:10px 5%;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .topbar-right{
        display:flex;
        flex-direction:column;
        gap:5px;
        align-items:center;
    }

    .topbar-right a{
        margin:0;
        font-size:14px;
    }
}

@media(max-width:500px){
    .topbar{
        font-size:13px;
    }

    .social-icons img{
        width:16px;
        height:16px;
    }
}
/* ================= MOBILE RESPONSIVE ================= */

@media(max-width: 900px){

    header{
        flex-direction:column;
        gap:15px;
        padding:15px 5%;
        text-align:center;
    }

    nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        padding:180px 5% 60px;
    }

    .hero-text{
        width:100%;
    }

    .hero-text h1{
        font-size:2.2rem;
    }

    .hero-images{
        width:100%;
        margin-top:30px;
    }

    .hero-img-box{
        flex-direction:column;
        text-align:center;
    }

    .hero-img-box img{
        width:100%;
        height:180px;
    }

    section{
        padding:60px 5%;
    }

    .floating-buttons{
        right:15px;
        bottom:15px;
    }

    .float-btn{
        width:45px;
        height:45px;
        font-size:18px;
    }
}

.fixed-wrapper{
    position:fixed;
    top:0;
    width:100%;
    z-index:2000;
}

.topbar{
    position:relative; /* REMOVE fixed */
}

header{
    position:relative; /* REMOVE fixed */
}