 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Courier New', Courier, monospace;
    background: #000000;
    color: #000000;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    padding: 2rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Wallpaper */

/* Wallpaper */

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'georgia', serif;
}

.wallpaper {
  
      margin: 0;
      padding: 0;
      font-family: quest, sans-serif;

      /* Wallpaper settings */
     min-height: 55vh; /* full screen height */
      background-image: url("Images/Washedcar/9.jpg");
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;       /* fills screen nicely */
      background-attachment: scroll; /* prevents iOS zoom issue */
      background-color: #fffdfd;       /* fallback for empty space */
    }

    .content {
      color: rgb(255, 255, 255);
      padding: 5px;
      text-align: center;
      background: rgb(255, 255, 255); /* optional: adds a transparent overlay for readability */
    }


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.219); /* Darkens wallpaper */
  z-index: 1;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 50px;
  text-shadow: 0 2px 4px rgb(0, 0, 0); /* Adds contrast */
}

.wallpaper2 {
  
      margin: 0;
      padding: 0;
      font-family: "Poppins", sans-serif;

      /* Wallpaper settings */
       height: 5000vh; 
      background-image: url("Images/Washedcar/3.jpg"); /* replace with your image path */
      background-size: cover;   /* Makes the image cover the screen */
      background-position: center; /* Centers the image */
      background-repeat: no-repeat; /* Prevents tiling */
      background-attachment: fixed; /* Keeps it fixed while scrolling (optional) */
      display: flex;
      background-attachment: scroll;
      justify-content: center;
      align-items: center;
      color: rgb(255, 255, 255);
      text-align: center;
      position: relative;
    }

    .content {
      color: rgb(255, 255, 255);
      padding: 50px;
      text-align: center;
      background: rgb(255, 255, 255); /* optional: adds a transparent overlay for readability */
    }


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.219); /* Darkens wallpaper */
  z-index: 1;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 50px;
  text-shadow: 0 2px 4px rgb(0, 0, 0); /* Adds contrast */
}


/* Main Content Layout */
 h1 {
    font-family: 'Georgia', serif;
    color: #ffffff;
    margin-bottom: 1px;
    
}

 h2, h3, h5, h6 {
    font-family: 'Georgia', serif;
    color: #ffffff;
    margin-bottom: 1px;
    font-size: 70px;
}

.container {
     font-size: 2.5rem;         /* Big and bold */
      font-weight: 700;        /* Strong weight */
      font-family:quest ; /* Modern font */
      text-align: left;        /* Left aligned */
      margin: 30px 6%;         /* Space around, indented slightly */
      border-left: 6px solid #002ffff5; /* Stylish accent line */
      padding-left: 5px;   
}
.row-1, .row-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    font-family: 'Georgia', serif;
}

.row-2 {
    flex-direction: row-reverse;
}


 /* Styling for the black line */
    .divider {
      width: 100%;         /* Full width */
      height: 3px;         /* Thickness of the line */
      background-color: rgb(255, 255, 255); 
      margin: px 0;      /* Space above and below */
    }

    p {
      font-size: 1.1em;
      line-height: 1.6;
    }


/* Navbar */
#menu-toggle-input {
    display: none;
}

.navbar {
    
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    z-index: 1000;             /* Ensures it stays above content */
    box-shadow: 0 2px 10px rgb(0, 0, 0);
  background-color: #000000; /* Dark blue, change to your desired color */
  color: white;              /* Makes text readable */
  padding: 15px;
  position: sticky;           /* Optional: keeps navbar on top */
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;             /* Ensures it stays above content */

}

.logo {
    color: #000000;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
}

.branding {
  display: flex;
  align-items: left;
  padding: 10px 30px;
  
}

.logo {
  height: 100cm; /* scale as needed */
  width: 180px;  /* scale as needed */
  object-fit: contain; /* Ensures the image fits well */
  margin-right: 5px;
}




.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 21px;
    position: relative;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.menu-toggle span:nth-child(1) { top: 0px; }
.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) { top: 9px; }
.menu-toggle span:nth-child(4) { top: 18px; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 1000;
    padding: 0.1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.411);
    color: #ffffff;
}

/* Mobile nav */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: #000000f5;
        width: 70%;
        height: 100vh;
        padding: 5rem 2rem 2rem;
        transition: 0.5s;
        box-shadow: -5px 0 15px rgb(0, 0, 0);
    }

    #menu-toggle-input:checked ~ .nav-menu {
        right: 0;
    }

    #menu-toggle-input:checked + .menu-toggle span:nth-child(1),
    #menu-toggle-input:checked + .menu-toggle span:nth-child(4) {
        top: 9px;
        width: 0%;
        left: 50%;
    }

    #menu-toggle-input:checked + .menu-toggle span:nth-child(2) {
        transform: rotate(45deg);
    }

    #menu-toggle-input:checked + .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .nav-item {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgb(0, 0, 0);
    }
}
**/ product Layout */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: sans-serif;
}

.service-container2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.services2 {
  width: 300px;
  background-color: #000000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgb(255, 255, 255);
  margin: 20px;
}

.services2 img {
  width: 100%;
  height: 350px;
}

.service-details {
  padding: 15px;
  color: rgb(255, 255, 255);
    text-align: center;
}

.service-details h3 {
    font-size: 1rem;
  margin-bottom: 10px;
}

**/ product Layout */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: sans-serif;
}

.service-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.services {
  width: 325px;
  background-color: #000000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgb(255, 255, 255);
  margin: 20px;
}

.services img {
  width: 100%;
  height: 200px;
}

.service-details {
  padding: 15px;
  color: rgb(255, 255, 255);
    text-align: center;
}

.service-details h3 {
    font-size: 1rem;
  margin-bottom: 10px;
}

.black-line {
  width: 100%;           /* full width */
  height: 20px;           /* thickness */
  background: rgb(255, 255, 255);     /* color */
  margin: 10px 0;        /* spacing */
}



.contact-section {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(255, 255, 255);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info,
.business-hours {
  flex: 1 1 45%;
}

.contact-info p,
.business-hours p {
  margin: 10px 0;
  font-size: 16px;
  color: #000;
}

a {
  color: #0099ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-container2 {
  max-width: 400px;
  margin: 40px auto;
  padding: 20px;
  background-color: #111;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container2 h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 50px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: none;
  border-radius: 4px;
  background-color: #222;
  color: #fff;
  font-size: 0.9rem;
}

form input::placeholder,
form textarea::placeholder {
  color: #aaa;
}

form button {
  width: 100%;
  padding: 10px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #0056b3;
}


/* Reviews Section */
 

    h2 {
      text-align: center;
      margin-bottom: 100px;
      color: #ffffff;
    }

    /* Form Styling */
    .review-form {
      max-width: 600px;
      margin: 0 auto 40px;
      padding: 20px;
      background: #000000;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgb(0, 0, 0);
    }

    .review-form input,
    .review-form textarea {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 14px;
    }

    .review-form button {
      background: #4a3aff;
      color: #000000;
      border: none;
      padding: 12px 20px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 15px;
    }

    .review-form button:hover {
      background: #362ecc;
    }

    /* Reviews Section */
    .reviews {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .review-card {
      background: #ffffff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
    }

    .review-card p {
      font-size: 15px;
      color: #333;
      margin-bottom: 15px;
    }

    .review-card h4 {
      color: #8b85d8;
      font-weight: bold;
    }

    /* Keep button at bottom */
.shop-item-btn {
  margin-top: auto;
  padding: 10px 18px;
  background-color: #0077cc;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.shop-item-btn :hover {
  background-color: #005fa3;
}

/* certificate */

.image-container2 {
  margin-top: 40px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;   
}

.image-container2 img {
  max-width: 100%;
  height: auto;
  transform: rotate(0deg);  
  display: block;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Make the body fill the screen */
body {
  display: flex;
  flex-direction: column;
  height: 100vh;
}


  /* Weather widget container */
  .weather-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffffcc; /* semi-transparent white */
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    width: 130px;
    height: 120px;
    text-align: center;
  }

  .weather-widget h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
  }

  .weather-widget p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
  }

  .weather-icon {
    font-size: 32px;
    margin: 5px 0;
  }

/* Main content expands to push footer down */
.content {
  flex: 1;
  padding: 50px;
  background: #000000;
  color: #333;
}

footer {
  background: #111;
  color: rgb(255, 255, 255);
  padding: 20px;
  text-align: center;
}

.footercontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.socialicons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.socialicons a {
  color: rgb(255, 255, 255);
  font-size: 2rem; /* fixed size instead of invalid bold 5rem */
  font-weight: bold;
  transition: color 0.3s ease;
}

.socialicons a:hover {
  color: #002ffff5;
}

.footerbottom p {
  margin-top: 0; /* fixed invalid CSS (was "margin: top 0;") */
}