html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
}

header {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #17212f;
  padding: 20px 16px;
  box-sizing: border-box;
}


/* Logo Link Box */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Logo Image Styling */
.logo-img {
  height: 42px; /* Header ke hisab se height adjust karein */
  width: auto;  /* Width auto rahegi taaki stretch na ho */
  object-fit: contain;
}

/* Navigation Links Alignment */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.logo {
  color: white;
  font-size: 20px;
  margin: 0;
}

.nav {
  display: flex;
  justify-content: space-around;
  width: 30%;
  padding: 0;
  margin: 0;
}

.nav li {
  list-style: none;
  margin: 0;
}

.nav li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.base_div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero Section */
.intro {
  max-width: 1200px;
  width: 100%;
  background-color: #eaf3ff;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 72px 64px;
  box-sizing: border-box;
  border-radius: 0 0 16px 16px;
}

.intro-l {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.intro-l h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0;
  line-height: 1.15;
}

.blue-text {
  color: #1266d6;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.grey-text {
  color: #526275;
  margin: 0;
  font-size: 16px;
  line-height: 1.6em;
}

.button-container {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  background-color: #1967d2;
  color: #ffffff;
  border: 1px solid #1967d2;
}

.btn-primary:hover {
  background-color: #1557b0;
}

.btn-secondary {
  background-color: #ffffff;
  color: #1967d2;
  border: 1px solid #dcdfe6;
}

.btn-secondary:hover {
  background-color: #f8f9fa;
  border-color: #1967d2;
}

.intro-r {
  width: 40%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.intro-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sections Styling */
.section-container {
  width: 100%;
  max-width: 1200px;
  padding: 60px 20px;
  box-sizing: border-box;
}

.featured-bg {
  background-color: #edf4ff;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-bg .cards-grid-3 {
  max-width: 1200px;
  width: 100%;
}

.kicker-text {
  font-size: 13px;
  font-weight: 700;
  color: #1967d2;
  letter-spacing: 1px;
  margin: 0 0 8px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 32px 0;
  letter-spacing: -0.02em;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
}

.card-icon {
  font-size: 26px;
  color: #1967d2;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.service-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Product Card */
.product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.product-icon {
  font-size: 28px;
  color: #1967d2;
  margin-bottom: 8px;
}

.brand-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  border: 1px solid #cbd5e1;
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 12px;
}

.brand-badge.lenovo {
  background: #475569;
  color: #fff;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.specs-text {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 16px 0;
}

.price-text {
  font-size: 20px;
  font-weight: 800;
  color: #1967d2;
  margin-top: auto;
  margin-bottom: 16px;
}

.btn-inquire {
  display: block;
  text-align: center;
  background: #eaf3ff;
  color: #1967d2;
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-inquire:hover {
  background: #d6e6ff;
}

/* Why Choose Banner */
.why-choose-banner {
  width: 100%;
  background: #17212f;
  color: #ffffff;
  padding: 50px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-choose-banner h2 {
  max-width: 1200px;
  width: 100%;
  margin: 0 0 32px 0;
  font-size: 28px;
  font-weight: 800;
}

.banner-features {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.banner-features div {
  display: flex;
  flex-direction: column;
}

.banner-features strong {
  font-size: 16px;
}

.banner-features span {
  font-size: 14px;
  color: #94a3b8;
}

/* Doorstep Section */
.doorstep-flex {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.doorstep-left {
  flex: 1;
}

.highlight-link {
  color: #1967d2;
  font-weight: 700;
  font-size: 14px;
  margin-top: 20px;
}

.doorstep-right {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}

.repair-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.repair-form input,
.repair-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dcdfe6;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
}

.repair-form input:focus,
.repair-form textarea:focus {
  border-color: #1967d2;
}

/* Share Location Button Styling */
.location-picker {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.btn-location {
  background-color: #eaf3ff;
  color: #1967d2;
  border: 1px dashed #1967d2;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease-in-out;
}

.btn-location:hover {
  background-color: #d6e6ff;
}

#locationStatus {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

/* Testimonials & Location */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}

.stars {
  color: #1967d2;
  margin-bottom: 8px;
}

.testimonial-card p {
  font-size: 15px;
  color: #334155;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.client-name {
  font-size: 13px;
  color: #64748b;
}

.location-banner {
  background: #17212f;
  color: #ffffff;
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.loc-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: #94a3b8;
}

.loc-col strong {
  color: #ffffff;
}

.btn-maps {
  background: #2b394a;
  color: #ffffff;
}

/* Footer */
.site-footer {
  width: 100%;
  background: #0f172a;
  color: #ffffff;
  padding: 40px 20px;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand h3 {
  margin: 0 0 4px 0;
}

.footer-brand p {
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
}

.footer-info {
  text-align: right;
  font-size: 13px;
  color: #94a3b8;
}

.footer-info p {
  margin: 2px 0;
}
/* ===================================================
   RESPONSIVE MEDIA QUERIES (MOBILE, TABLET & LAPTOP)
   =================================================== */

/* 1. Tablets and Small Laptops (Max Width: 1024px) */
@media (max-width: 1024px) {
  .intro {
    padding: 48px 32px;
    gap: 32px;
  }

  .intro-l h1 {
    font-size: 36px;
  }

  .intro-r {
    height: 320px;
  }

  .cards-grid-3 {
    gap: 16px;
  }
}

/* 2. Mobile Devices (Max Width: 768px) */
@media (max-width: 768px) {
  header {
    height: auto;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  /* Hero Section Stacking */
  .intro {
    flex-direction: column;
    padding: 32px 20px;
    gap: 28px;
  }

  .intro-l {
    width: 100%;
  }

  .intro-l h1 {
    font-size: 28px;
  }

  .grey-text br {
    display: none; /* Mobile par line break hata ke continuous text dikhayega */
  }

  .intro-r {
    width: 100%;
    height: 250px;
  }

  .button-container {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    box-sizing: border-box;
  }

  /* Grids to Single Column */
  .cards-grid-3,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .section-container {
    padding: 40px 16px;
  }

  /* Why Choose Banner */
  .banner-features {
    flex-direction: column;
    gap: 16px;
  }

  /* Doorstep Form */
  .doorstep-flex {
    flex-direction: column;
    gap: 24px;
  }

  .doorstep-right {
    width: 100%;
    box-sizing: border-box;
  }

  /* Location Banner & Footer */
  .location-banner,
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-info {
    text-align: left;
  }
}

/* 3. Small Mobile Screens (Max Width: 480px) */
@media (max-width: 480px) {
  .intro-l h1 {
    font-size: 24px;
  }

  .price-text {
    font-size: 18px;
  }

  .location-banner {
    padding: 20px 16px;
  }
}