*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
font-family:Poppins,sans-serif;
}

body{
background-image:url(images/pexels-zelch-30596209.jpg);
color:white;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
background:black;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
z-index:1000;
transition:.4s;
border-bottom:3px solid orange;
}

.logo h2{
color:orange;
}

nav ul{
display:flex;
list-style:none;
}

nav li{
margin-left:35px;
}

nav a{
color:white;
text-decoration:none;
font-weight:600;
transition:.4s;
}

nav a:hover{
color:orange;
}

.menu-toggle{
display:none;
font-size:35px;
cursor:pointer;
color:orange;
}

.hero{
height:100vh;
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url("../images/background.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}


/*This is for the main top of the home page*/
.hero h1{
font-size:55px;
margin-bottom:20px;
}

.hero p{
font-size:22px;
margin-bottom:40px;
}

/*this is for quick go to booking form*/
.btn{
background:orange;
padding:15px 35px;
color:black;
text-decoration:none;
font-weight:bold;
border-radius:30px;
transition:.4s;
}

.btn:hover{
transform:scale(1.1);
}

.content{
padding:120px 10%;
}

.content h2{
font-size:40px;
color:orange;
margin-bottom:30px;
}

/*this is for the hovering 3 cards under the ovhd/dstv*/
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.card{
background:#222;
padding:30px;
border-radius:10px;
transition:.5s;
border:2px solid transparent;
}

.card:hover{
transform:translateY(-12px);
border-color:orange;
}

/*this is for the booking form details*/
form{
display:flex;
flex-direction:column;

}


input,
textarea{

padding:15px;
margin:15px 0;
border:none;
border-radius:6px;

}

/*summit button*/
button{

padding:15px;
background:orange;
border:none;
font-size:18px;
cursor:pointer;

}

/*end of page c2026*/
footer{

padding:40px;
background:#161616;
margin-top:50px;

}

footer h3{
    text-align:center;
}

Footer p{
    text-align: left;
    color: rgb(255, 255, 255);
}

/* Scroll Animation */
/*to make  it look like an anitmation when scrolling and quick find*/
.reveal{

opacity:0;
transform:translateY(100px);
transition:2s;

}

.reveal.active{

opacity:1;
transform:translateY(0);

}

/* Mobile */
/* this is to make it mobile frendly and to make it drop down menu */

@media(max-width:900px){

.menu-toggle{
display:block;
}

nav{

position:absolute;
top:82px;
left:-100%;
width:100%;
background:#111;
transition:.5s;

}

nav.active{

left:0;

}

nav ul{

flex-direction:column;

}

nav li{

margin:20px;
text-align:center;

}

.hero h1{

font-size:36px;

}

.hero p{

font-size:18px;

}

}

/*css for terms and conditions box for us to contact client */
.terms-box{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:20px 0;
    font-size:14px;
    line-height:1.5;
    color:#fff;
}

.terms-box input[type="checkbox"]{
    margin-top:4px;
    width:18px;
    height:18px;
    cursor:pointer;
}

.terms-box label{
    cursor:pointer;
}

.terms-box a{
    color:orange;
    text-decoration:none;
    font-weight:bold;
}

.terms-box a:hover{
    text-decoration:underline;
}

.terms{
    margin-top:50px;
    padding:20px;
    background:#1b1b1b;
    border-left:4px solid orange;
    border-radius:8px;
    color:#ddd;
    line-height:1.8;
}

.terms h3{
    color:orange;
    margin-bottom:10px;
}

/*this code is for the address it will use street maps it is free*/
/* Address Search if address not there manually type*/

/* Address Suggestions */
/* Address Fields */

#street,
#suburb,
#city{

    width:100%;

    padding:14px 16px;

    margin-bottom:15px;

    border:2px solid #ddd;

    border-radius:8px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

    color:#333;

    background:#fff;

    box-sizing:border-box;

    transition:.3s ease;

}

#street::placeholder,
#suburb::placeholder,
#city::placeholder{

    color:#888;

}

#street:focus,
#suburb:focus,
#city:focus{

    outline:none;

    border-color:#ff7b00;

    box-shadow:0 0 8px rgba(255,123,0,.25);

}

#street:hover,
#suburb:hover,
#city:hover{

    border-color:#ffb066;

}



@keyframes fadeIn{

    from{

        opacity:0;
        transform:translateY(-8px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .manual-link{

        font-size:13px;

    }

    #manualAddressInput{

        font-size:15px;

        padding:12px 14px;

    }

}


/*if other picked client will enter area text box css for this action java used*/
.form-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: 0.3s;
}

.form-input:focus {
    border-color: #ff7b00;
    outline: none;
    box-shadow: 0 0 8px rgba(255,123,0,0.3);
}


/*code below for service box*/
.service-select{
  color: #777;
}

.service-select:valid {
    color: #333;
}

.service-select option {
    color: #333;
}

.service-select option:first-child {
    color: #777;
}

.service-select {
    width: 100%;
    max-width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;

    /* Remove default browser arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Orange arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff7b00'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.service-select:hover {
    border-color: #ff7b00;
}

.service-select:focus {
    border-color: #ff7b00;
    box-shadow: 0 0 8px rgba(255,123,0,0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .seleservicect {
        font-size: 15px;
        padding: 12px;
    }
}

/*this is the css for the calender for the webpage*/
/* ===============================
   DATE INPUT
================================= */
#date {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
}

#date:hover {
    border-color: #ff7b00;
}

#date:focus {
    border-color: #ff7b00;
    box-shadow: 0 0 8px rgba(255,123,0,0.3);
    outline: none;
}

/* Calendar icon */
#date::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#date::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}


/* ===============================
   TIME SELECT
================================= */
#time {
    width: 100%;
    height: 50px;
    padding: 0 45px 0 15px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #777; /* Placeholder colour */
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Orange arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff7b00'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

#time:hover {
    border-color: #ff7b00;
}

#time:focus {
    border-color: #ff7b00;
    box-shadow: 0 0 8px rgba(255,123,0,0.3);
    outline: none;
}

#time:valid {
    color: #333;
}

#time option:first-child {
    color: #777;
}

#time option {
    color: #333;
}


/* ===============================
   MOBILE
================================= */
@media (max-width: 768px) {
    #date,
    #time {
        height: 48px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    #date,
    #time {
        height: 46px;
        font-size: 14px;
    }
}


/*this is for the error message to look more morden only to be used once*/
.error-message{
    display:none;
    margin-top:6px;
    padding:10px 12px;
    background:#fff5f5;
    border-left:4px solid #dc3545;
    color:#c62828;
    border-radius:6px;
    font-size:14px;
    font-weight:500;
    animation:fadeIn .3s ease;
}

.error-message.show{
    display:block;
}

#phone.invalid{
    border:2px solid #dc3545;
    background:#fff5f5;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(-5px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}



/*hover for email*/
/* email hover */
input[name="email"] {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Hover */
input[name="email"]:hover {
    border-color: #ff7b00;
    background-color: #fffdf9;
}

/* Focus */
input[name="email"]:focus {
    border-color: #ff7b00;
    box-shadow: 0 0 8px rgba(255, 123, 0, 0.3);
    outline: none;
}




/* Full Name input for hover*/
input[name="fullname"] {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Hover */
input[name="fullname"]:hover {
    border-color: #ff7b00;
    background-color: #fffdf9;
}

/* Focus */
input[name="fullname"]:focus {
    border-color: #ff7b00;
    box-shadow: 0 0 8px rgba(255, 123, 0, 0.3);
    outline: none;
}



/*cellnumber input */
input[name="phone"] {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Hover */
input[name="phone"]:hover {
    border-color: #ff7b00;
    background-color: #fffdf9;
}

/* Focus */
input[name="phone"]:focus {
    border-color: #ff7b00;
    box-shadow: 0 0 8px rgba(255, 123, 0, 0.3);
    outline: none;
}


/*address Hover input*/
/* address input */
input[name="address"] {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Hover */
input[name="address"]:hover {
    border-color: #ff7b00;
    background-color: #fffdf9;
}

/* Focus */
input[name="adress"]:focus {
    border-color: #ff7b00;
    box-shadow: 0 0 8px rgba(255, 123, 0, 0.3);
    outline: none;
}



/*image rows 2 per line code css desktop row mobile below each other*/
.image-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.image-row img {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-row img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/*css for small logo above the company name*/

/* Logo container */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo image */
.logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Logo hover */
.logo img:hover {
    transform: scale(1.08);
}

/* Company name */
.logo h2 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: orange;
}

/*mobile css*/
@media (max-width:768px){

    .logo img{
        width:40px;
        height:40px;
    }

    .logo h2{
        font-size:20px;
    }

}


/*css for the confirmation box when subbmited*/
/* Dark background */
.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    color: black;
}

/* Popup */
.popup-box{

    width:90%;
    max-width:450px;

    background:#fff;

    border-radius:15px;

    padding:35px;

    text-align:center;

    animation:popup .35s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.3);

}

.success-icon{

    width:80px;
    height:80px;

    margin:auto;

    border-radius:50%;

    background:#28a745;

    font-size:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;
}


.popup-box h2{

    color:#222;

    margin-bottom:10px;

}

.popup-warning{

    background:#fff8e6;

    border-left:5px solid #ff8800;

    padding:12px;

    border-radius:6px;

    margin:20px 0;
    color: black;

}

.booking-code-box{

    background:#f7f7f7;

    border:2px dashed #ff8800;

    border-radius:10px;

    padding:18px;

    margin:20px 0;

    color: black;

}

.booking-code-box h3{

    margin-top:10px;

    color:#ff6600;

    letter-spacing:2px;

}

#copyCode,
#closePopup{

    width:100%;

    border:none;

    border-radius:8px;

    padding:14px;

    font-size:16px;

    cursor:pointer;

    margin-top:10px;

    transition:.3s;

}

#copyCode{

    background:#ff8800;

    color:white;

}

#copyCode:hover{

    background:#e67600;

}

#closePopup{

    background:#333;

    color:white;

}

#closePopup:hover{

    background:#111;

}

@keyframes popup{

from{

opacity:0;
transform:scale(.7);

}

to{

opacity:1;
transform:scale(1);

}

}

/*whatsapp code for floating whatsapp*/
 /* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 125px;  /* distance from bottom */
  right: 20px;   /* distance from right */
  z-index: 100;
  width: 60px;   /* icon size */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #25D366; /* WhatsApp green */
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.whatsapp-float img {
  width: 35px;  /* icon size inside button */
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: red;
  color: white;
  font-size: 14px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/*css for the powered by logo*/
.powered-by{
    margin-top:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.powered-by span{
    font-size:14px;
    color:#bbb;
    font-weight:500;
    letter-spacing:1px;
}

.powered-by img{
    width:45px;
    height:auto;
    transition:0.3s ease;
}

.powered-by img:hover{
    transform:scale(1.1);
}

.contact a{
    font-size: 14px;
    color: white;

}


/* ==========================
   BACK TO TOP BUTTON to go top it has a ring that lights up
========================== */

#backToTop{
    position:fixed;
    bottom:25px;
    right:20px;

    width:55px;
    height:55px;

    display:none;
    justify-content:center;
    align-items:center;

    border:none;
    border-radius:50%;

    background:#ff7b00;
    color:#fff;

    font-size:36px;
    font-weight:bold;

    cursor:pointer;

    z-index:9999;

    transition:.3s ease;

    box-shadow:0 0 8px rgba(255,123,0,.35);

    /* Center the arrow perfectly */
    padding:0;
    line-height:1;
}

#backToTop.show{
    display:flex;
    animation:softGlow 2s infinite;
}

/* Move the arrow slightly up */
#backToTop::before{
    content:"↑";
    transform:translateY(-2px);
}

@media(max-width:768px){

    #backToTop{

        width:50px;
        height:50px;

        font-size:30px;

        right:18px;
        bottom:18px;

    }

}