body {
  font-family: 'Open Sans', sans-serif;
  background: url('../assets/images/bg.jpg') repeat center top;
  background-size: 100% auto;   
  color: #fff;
  text-align: center;
  
}
a {
  color: inherit;
  text-decoration: none;
}
.top-bar {
  background-color: #3399ff;  /* Dark background for top bar */
  font-size: 14px;
}

.hero-section {
  background: rgba(51, 153, 255, 0.7); /* #3399ff with 50% opacity */
    padding: 100px 20px;  
}
.navbar {
    color: #000033; /* Dark blue text for navbar */
    text-transform: uppercase;
    font-weight: bold;
}
.navbar .btn,.service-section .btn  {
  background-color: #3399ff; /* Dark blue button */
  padding: 10px 20px;
  border: none;  
  text-transform: uppercase;}

.hero-section h1 {
  font-size: 48px;
  line-height:56px;
  margin-bottom: 10px;
}
.hero-section .btn{
  background-color: #006699; /* Dark blue button */
  border: none;  
  text-transform: uppercase;}

 .service-section h2 {
  color: #002d72;
  font-size: 48px;
  line-height:56px;
  margin-bottom: 10px;
}
.service-section p,.ai-powerd-section p {
  color: #666666;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}

.pricing-section {
  background: #3399ff;
  padding: 60px 20px;
}

.ai-powerd-section h2 {
  color: #002d72;
  font-size: 32px;
  line-height:40px;
  margin-bottom: 10px;
}

.pricing-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #f7fbff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding-bottom: 40px;
}

header {
  background: transparent;
  padding: 30px 30px 10px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-mark {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: #2b7ec4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 38px;
  font-weight: 800;
}

.logo-text {
  background: #0e3556;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  display: inline-block;
}

.logo-text h1 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.logo-text span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

.title-block {
  text-align: center;
  margin: 10px 24px 30px;
}

.title-block h2 {
  font-size: 34px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #002d72;
}

.title-block h3{
  font-size: 16px;
  color: #002d72;
}

.tagline {
  display: inline-block;
  background: #2a7ec4;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  margin: 0 24px 24px;
  background: #e0f0ff;
  border-radius: 18px;
  padding: 20px 20px 26px;
}

.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  color: #ffffff;
  background: #2a7ec4;
  border-radius: 14px;
  padding: 10px 12px;
}

.section-inner {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 18px 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service {
  text-align: center;
}

.service h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #002d72;
}

.service p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 14px;
  color: #42566c;
}

.btn-quote {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: #2a7ec4;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(42, 126, 196, 0.4);
}

.btn-quote:hover {
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo-mark {
    width: 72px;
    height: 72px;
    font-size: 26px;
  }
  .logo-text h1 {
    font-size: 20px;
  }
  .title-block h2 {
    font-size: 26px;
  }
  .section-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .section-inner {
    grid-template-columns: 1fr;
  }
  .pricing-wrapper {
    padding-bottom: 30px;
  }
  .title-block {
    margin-inline: 16px;
  }
  .section {
    margin-inline: 16px;
  }
}

.page-wrap { margin: 0 auto;
       
        }

.card {
  background: radial-gradient(circle at top left, #6fd5ff, #0681c0);
  color: white;
  margin: 20px 30px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}
h2 {
  font-size: 20px; font-weight: 800;
  text-transform: uppercase; text-align: center;
  letter-spacing: 0.16em; margin-bottom: 18px;
}
.service-row {
  display: flex; gap: 10px; margin-bottom: 14px;
  text-align: left;
}
.icon { width: 26px; font-size: 20px; }
.service-title { font-size: 16px; font-weight: 700; }
.service-text { font-size: 14px; line-height: 1.45; }
.divider {
  border-bottom: 1px solid rgba(255,255,255,0.3);
  margin: 18px 0;
}
.inline-summary {
  display: flex; justify-content: space-between;
  font-size: 14px; font-weight: 700; margin-bottom: 12px;
}
.pill-box {
  background: rgba(0,0,0,0.18);
  padding: 14px;
  border-radius: 18px;
  font-size: 14px;
  margin-bottom: 16px;
  text-align: left ;
}
.pill-box ul { margin-left: 18px; line-height: 1.5; }
.cta-wrap { text-align: center; }
.cta-btn {
  background: #003f7e;
  color: white;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 8px;
  box-shadow: 0 14px 26px rgba(0,0,0,0.4);
}
.ai-page-wrap { background: radial-gradient(circle at top left, #6fd5ff, #0681c0);max-width: 960px; 
  margin: 20px 30px;
  padding: 20px;
  border-radius: 10px;
   }
/* .page-wrap { max-width: 960px; margin: 0 auto; } */
.hero { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 40px; }
    .hero-title { font-size: 40px; line-height: 1.1; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; margin-bottom: 18px; }
    .hero-text p { font-size: 16px; line-height: 1.6; max-width: 460px; }
    .mascot-circle {
      width: 150px; height: 150px; border-radius: 50%;
      background: radial-gradient(circle at 30% 20%, #8be4ff, #0075b4);
      display: flex; align-items: center; justify-content: center;
      font-size: 64px; box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    }
    .section-heading { font-size: 22px; font-weight: 800; text-transform: uppercase; margin-bottom: 18px; letter-spacing: .12em; }
    .steps { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
    .step-card {
      background: rgba(255,255,255,.12); border-radius: 18px; padding: 18px 20px;
      display: grid; grid-template-columns: auto 1fr auto; gap: 16px;
      box-shadow: 0 8px 22px rgba(0,0,0,0.25); backdrop-filter: blur(10px);
    }
    .step-title { font-size: 18px; font-weight: 700; margin-bottom: 6px;text-align: left; }
    .step-text { font-size: 14px; line-height: 1.5; text-align: left; }
    .step-bullets { margin-top: 6px; margin-left: 18px;text-align: left; }
    .buttons-row { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn {
      padding: 12px 26px; border-radius: 999px; text-decoration: none;
      font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
      display: inline-flex; align-items: center; justify-content: center;
      box-shadow: 0 12px 24px rgba(0,0,0,.35);
    }
    .btn-primary { background: #004f9b; color: #fff; }
    .btn-secondary { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.6); color: #fff; }

    .section {
      max-width: 850px;
      margin: auto;
      padding: 30px 20px;
  }
  .intro-title {
      font-size: 32px;
      font-weight: 700;
      color: #0d1b2a;
      text-align: center;
  }
  .intro-text {
      font-size: 17px;
      line-height: 1.6;
      text-align: center;
      max-width: 700px;
      margin: 10px auto 25px;
  }
  .promo-box {
      background: #fef7e6;
      padding: 20px;
      border-radius: 10px;
      font-size: 18px;
      text-align: center;
      margin: 20px auto;
      max-width: 700px;
      border: 1px solid #f2e3c5;
  }
  .pricing-title {
      text-align: center;
      font-size: 28px;
      font-weight: 700;
      margin-top: 30px;
  }
  .pricing-value {
      text-align: center;
      font-size: 40px;
      font-weight: 800;
      margin-top: 10px;
  }
  .pricing-note {
      text-align: center;
      margin-top: 10px;
      font-size: 15px;
      color: #333;
  }
  .how-title {
      text-align: center;
      font-size: 26px;
      font-weight: 700;
      margin-top: 40px;
  }
  .how-grid {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 25px;
      flex-wrap: wrap;
  }
  .step {
      flex: 1;
      min-width: 230px;
  }
  .step-number {
      width: 34px;
      height: 34px;
      background: #e1f0ff;
      border-radius: 50%;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      color: #123456;
      margin-right: 10px;
  }
  .step-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 5px;
  }
  .step-text {
      font-size: 15px;
      line-height: 1.5;
      color: #333;
  }
  .form-title {
      font-size: 26px;
      font-weight: 700;
      margin-top: 50px;
      text-align: center;
  }
  form {
      max-width: 750px;
      margin: 25px auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
  }
  input, select {
      padding: 12px;
      border: 1px solid #b5c6d6;
      border-radius: 6px;
      font-size: 15px;
      width: 100%;
  }
  .full {
      grid-column: span 2;
  }
  button {
      grid-column: span 2;
      background: #004aad;
      color: white;
      padding: 15px;
      font-size: 18px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 10px;
  }
  button:hover {
      background: #003a8c;
  }

  .wash-dry-fold-section{
    color: #000;
  }

  .thank-you-box{
    min-height: 700px;
  }

  /* Upload Button */
    .upload-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #e9f3ff;
        padding: 12px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        border: 1px solid #bcd6ff;
        color: #0d1c2e;
        text-align: center;
    }

    .upload-btn:hover {
        background: #ddecff;
    }

     /* Image Preview */
    .preview-container {
        display: flex;
        gap: 10px;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .preview-container img {
        width: 90px;
        height: 90px;
        object-fit: cover;
        border-radius: 8px;
        border: 1px solid #ccc;
    }

    .preview-container img{
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .about-wrap {
      min-height: 500px;
      margin: 0 auto;
      font-size: 16px;
      line-height: 1.6;
      color: #fff;
      text-align: center;
    }
