* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
}

/* Wrapper */
.blog-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden; 
  margin-top: 100px;
}

/* Background Image */
.bg-img {
  width: 100%;
  height: 60%;
  object-fit: cover;
}

/* White Floating Card */
.content-box {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1400px;
  background: #fff;
  padding: 55px 70px 60px;
  border-radius: 35px 35px 0 0;
}

/* Heading */
.content-box h1 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 800;
  color: #0a48e6;
  margin-bottom: 18px;
}

.content-box h1 span {
  font-weight: 800;
}

/* Meta */
.meta {
  font-size: 15px;
  color: #777;
  margin-bottom: 22px;
}

/* Paragraph */
.content-box p {
  max-width: 1000px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .content-box {
    padding: 35px 25px;
    width: 95%;
  }

  .content-box h1 {
    font-size: 32px;
  }
}



.center-title {
  width: 100%;
  height: 160px;              /* same white space jaisa image me */
  display: flex;
  align-items: center;        /* vertically center */
  justify-content: center;    /* horizontally center */
  font-size: 48px;            /* bold & strong */
  font-weight: 600;           /* heavy bold */
  color: #000000;
  background: #fff;
  text-align: center;
}


@media (max-width: 768px) {
  .center-title {
    font-size: 28px;
    height: 120px;
    padding: 0 15px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.prewash-section {
  padding: 80px 60px;
  background: #ffffff;
}

/* Center Intro */
.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  
}

.intro h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000;
}

.intro p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

/* Card Image */
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Card Content */
.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 18px 10px;
  color: #000;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  padding: 0 18px 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .prewash-section {
    padding: 50px 20px;
  }

  .intro h2 {
    font-size: 28px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

.center-subtext {
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  max-width: 900px;
  margin: 0 auto 50px;
}

@media (max-width: 768px) {
  .center-subtext {
    font-size: 16px;
    padding: 0 15px;
  }
}


.pro-tip {
  max-width: 900px;
  margin: 40px auto;
  padding: 18px 24px;
  background: #eaebf8;                 /* soft highlight */
  border-left: 6px solid #0505d9;      /* brand accent */
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  border-radius: 6px;
  margin-top: -20px;
}

.pro-tip strong {
  font-weight: 700;
}

.pro-tip span {
  color: #050505;
  font-weight: 700;
}


@media (max-width: 768px) {
  .pro-tip {
    font-size: 16px;
    margin: 30px 15px;
  }
}


.wash-requirements {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

/* First Bold Line */
.service-note {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

/* Section Title */
.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #000;
}

/* Sub Text */
.section-subtext {
  font-size: 18px;
  margin-bottom: 22px;
  color: #333;
}

/* List */
.requirement-list {
  list-style: none;
  padding-left: 0;
}

.requirement-list li {
  font-size: 17px;
  padding-left: 28px;
  margin-bottom: 14px;
  position: relative;
  color: #000;
}

/* Custom Bullet */
.requirement-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1507d5;
  font-weight: 700;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .service-note,
  .section-subtext,
  .requirement-list li {
    font-size: 16px;
  }
}


.warning-box {
  max-width: 900px;
  margin: 50px auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff5f5;                 /* soft red background */
  border-left: 6px solid #d93025;      /* warning red */
  border-radius: 8px;
}

.warning-box .icon {
  font-size: 26px;
  line-height: 1;
}

.warning-box p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}

.warning-box strong {
  font-weight: 800;
  color: #d93025;
}

@media (max-width: 768px) {
  .warning-box {
    margin: 35px 15px;
    padding: 16px;
  }

  .warning-box p {
    font-size: 16px;
  }
}


.steps-section {
  max-width: 1100px;
  margin: 90px auto;
  padding: 0 20px;
}

.steps-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #000;
}

/* Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.step-card {
  background: #ffffff;
  padding: 28px 28px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
}

/* Step Badge */
.step-number {
  position: absolute;
  top: -14px;
  left: 28px;
  background: #2f19f0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Card Title */
.step-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0 14px;
}

/* List */
.step-card ul {
  padding-left: 18px;
}

.step-card li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Notes */
.extra-note {
  margin-top: 12px;
  font-size: 15px;
  color: #444;
  background: #f7f7f7;
  padding: 10px 14px;
  border-radius: 8px;
}

/* Warning Card */
.step-card.warning {
  border-left: 6px solid #d93025;
}

.warning-text {
  margin-top: 14px;
  font-weight: 700;
  color: #d93025;
}

/* Responsive */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-title {
    font-size: 28px;
  }
}


.cta-section {
  padding: 80px 20px;
  background: #ffffff;
}

.cta-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 50px;
  background: linear-gradient(135deg, #f1f1f9, #ffffff);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.cta-text {
  font-size: 22px;
  line-height: 1.4;
  color: #000;
}

.cta-text span {
  color: #000000;
  font-weight: 700;
}

/* Button */
.cta-btn {
  background: #1d0c7d;
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #596708;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .cta-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 30px 20px;
  }

  .cta-text {
    font-size: 18px;
  }
}


.silk-types {
  max-width: 1100px;
  margin: 90px auto;
  padding: 0 20px;
}

.silk-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 60px;
}

/* Grid */
.silk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.silk-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.silk-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #120786;
}

.silk-card ul {
  padding-left: 18px;
}

.silk-card li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* After Care */
.after-care {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.care-card {
  background: #f9f9f9;
  padding: 28px;
  border-radius: 18px;
}

.care-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.care-card ul {
  padding-left: 18px;
}

.care-card li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .silk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .silk-grid,
  .after-care {
    grid-template-columns: 1fr;
  }

  .silk-title {
    font-size: 28px;
  }
}

/* Hover Animation for Silk Cards */
.silk-card,
.care-card {
  transition: all 0.35s ease;
  cursor: pointer;
}

.silk-card:hover,
.care-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}


.conclusion-section {
  max-width: 900px;
  margin: 90px auto;
  padding: 40px 45px;
  background: #f8f8fa;              /* soft ending highlight */
  border-left: 6px solid #230c7d;   /* brand accent */
  border-radius: 18px;
}

.conclusion-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #000;
}

.conclusion-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.conclusion-text strong {
  color: #0e0c7d;
}

.conclusion-link {
  color: #300a90;
  font-weight: 700;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .conclusion-section {
    margin: 60px 15px;
    padding: 28px 22px;
  }

  .conclusion-title {
    font-size: 24px;
  }

  .conclusion-text {
    font-size: 16px;
  }
}

/* Navbar Base */
.navbar {
  width: 100%;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

/* Sticky State */
.navbar.sticky {
  position: fixed;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Menu */
.menu a {
  margin: 0 14px;
  text-decoration: none;
  font-weight: 500;
  color: #000;
}

/* Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login {
  text-decoration: none;
  color: #000;
}

/* Pickup Box */
.pickup-box {
  display: none;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 40px;
  padding: 8px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.pickup, .where {
  font-size: 12px;
}

.pickup strong,
.where strong {
  font-size: 13px;
}

.go-btn {
  background: orange;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

/* Show on Scroll */
.navbar.sticky .pickup-box {
  display: flex;
}
 

.pickup-pill {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  gap: 12px;
}

/* Text blocks */
.pill-item {
  display: flex;
  flex-direction: column;
  padding: 0 14px;
}

.label {
  font-size: 12px;
  color: #777;
  line-height: 1;
}

.value {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* Divider */
.divider {
  width: 1px;
  height: 32px;
  background: #e0e0e0;
}

/* Button */
.pill-btn {
  background: #f5a623;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover */
.pill-btn:hover {
  background: #e69512;
}


/* Default hidden */
.pickup-pill {
  display: none;
}

/* Scroll ke baad show */
.navbar.sticky .pickup-pill {
  display: flex;
}

/* Default state (page load) */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  transition: all 0.3s ease;
}

/* White text initially */
.navbar .menu a,
.navbar .login {
  color: #000000;
}

/* Sticky state */
.navbar.sticky {
  position: fixed;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Text becomes black */
.navbar.sticky .menu a,
.navbar.sticky .login {
  color: #000;
}


.logo {
  height: 80px;     /* yahin size control hoga */
  width: auto;
}


/* Remove underline from links */
.logo-link,
.pickup-link {
  text-decoration: none !important;
  color: inherit;
}

/* Safety: agar kisi browser me hover par aaye */
.logo-link:hover,
.pickup-link:hover,
.logo-link:focus,
.pickup-link:focus {
  text-decoration: none !important;
  outline: none;
}
