 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Courier New', Courier, monospace;
    background: #000000;
    color: #fffdfd;
}

.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: "Poppins", sans-serif;

      /* Wallpaper settings */
      min-height: 55vh; /* full screen height */
      background-image: url("Images/Washedcar/5.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: 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 */
}

.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;
      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 */

 h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    color: #ffffff;
    margin-bottom: 1px;
    font-size: 75px;
}

.container {
     font-size: 3rem;         /* Big and bold */
      font-weight: 700;        /* Strong weight */
      font-family:quest; 
      text-align: left;        /* Left aligned */
      margin: 35px 8%;         /* Space around, indented slightly */
      border-left: 6px solid #002ffff5; /* Stylish accent line */
      padding-left: 10px;   
}
.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;
}

/* Map and Info Panel Layout */
    :root{
      --bg: #0f1720;
      --card: #0b1220;
      --accent: #000000;
      --text: #f7fafc;
      --muted: #9aa4b2;
    }

   

    .container6{
      width:100%;
      max-width: 1100px;
      border-radius:12px;
      overflow:hidden;
      box-shadow: 0 8px 30px rgba(2,6,23,0.7);
      background: linear-gradient(180deg,var(--card), #07121b);
      display:grid;
      grid-template-columns: 1fr 420px;
      gap: 10px;
      margin: 0 auto;
    }

    /* On small screens stack vertically */
    @media (max-width:900px){
      .container{ grid-template-columns: 1fr; }
    }

    .map-wrap{
      position:relative;
      min-height:320px;
    }

    /* Responsive iframe map */
    .map-frame{
      width:100%;
      height:100%;
      border:0;
      display:block;
      min-height:320px;
    }

    /* Info panel on the right */
    .info{
      padding:28px;
      display:flex;
      flex-direction:column;
      gap:12px;
      justify-content:center;
      background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    }

    .info h1{
      margin:0;
      font-size:1.25rem;
      letter-spacing:0.6px;
    }

    .address{
      color:var(--muted);
      font-size:0.95rem;
      line-height:1.5;
      margin-top:6px;
    }

    .actions{
      margin-top:12px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    .btn{
      display:inline-block;
      padding:10px 14px;
      border-radius:8px;
      text-decoration:none;
      font-weight:600;
      text-align:center;
      cursor:pointer;
      border: 1px solid rgba(255,255,255,0.06);
      background: linear-gradient(180deg,var(--accent), #0072d6);
      color:white;
      box-shadow: 0 6px 14px rgba(10,80,160,0.18);
    }

    .btn.secondary{
      background:transparent;
      color:var(--text);
      border: 1px solid rgba(255,255,255,0.06);
      background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    }

    .note{
      color:var(--muted);
      font-size:0.85rem;
      margin-top:8px;
    }

    /* Make map fill the left column */
    .map-wrap iframe { width:100%; height:100%; min-height:420px; display:block; }
    @media (max-width:900px){
      .map-wrap iframe { min-height:360px; }
      .info{ padding:20px; }
    }
 

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;
}


@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
  }

  .form-message,
  .form-fields {
    flex: 1 1 100%;
  }
}


  /* 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;
  }





/* Footer */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Make the body fill the screen */
body {
  display: flex;
  flex-direction: column;
  min-height: 10vh;
}

/* 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;") */
}