* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #f2f2f2;
      color: #333;
      padding: 20px;
      padding-top: 80px;
    }

.navbar {
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
}


.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
} 

.logo-img {
  height: 40px;
  width: 40px;
  margin-right: 8px;
  border-radius: 50%;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links li a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: #001aff;
  color: #ffffff;
  border-color: #000000;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #000000;
  cursor: pointer;
}

@media (max-width: 800px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 30px;
    background: rgba(82, 81, 81, 0.596);
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    display: none;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }
}
.hero-btn-group {
  display: flex;
  align-items: center;
  justify-content: center; /* desktop aur phone dono pe center */
  flex-wrap: nowrap;       /* ek line me rakho */
  gap: 12px;
  margin-top: 10px;
}

.hero-btn-group a {
  text-align: center;
  padding: 10px 20px;      /* normal padding */
  font-size: 15px;
  border-radius: 30px;     /* gol but neat */
  white-space: nowrap;     /* text line break na ho */
}


/* Mobile view */
@media (max-width: 768px) {
  .hero-btn-group {
    flex-wrap: nowrap;     /* ek line me side by side */
    justify-content: center;
  }

.hero-btn-group a {
  text-align: center;
  padding: 10px 20px;      /* normal padding */
  font-size: 15px;
  border-radius: 30px;     /* gol but neat */
  white-space: nowrap;     /* text line break na ho */
}
}

.call-btn {
  background: linear-gradient(90deg, #28a745, #218838);
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}
.call-btn:hover {
  background: linear-gradient(90deg, #218838, #145c2c);
}

.whatsapp-btn {
  background: linear-gradient(90deg, #25d366, #128c7e);
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}
.whatsapp-btn:hover {
  background: linear-gradient(90deg, #128c7e, #075e54);
}



    .services h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2rem;
      color: #2c3e50;
    }

    /* New Services Layout Styles */
    .service-container {
      display: flex;
      gap: 40px;
      align-items: flex-start;
      margin-bottom: 50px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .services-left {
      flex: 1;
    }

    .services-right {
      flex: 1;
    }

    .services-number-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .service-number-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 15px;
      background: #f9f9f9;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .service-number-item:hover {
      background: #f0f0f0;
      transform: translateX(5px);
    }

    .service-number-item .number {
      font-size: 2.5rem;
      font-weight: bold;
      color: #001aff;
      min-width: 60px;
    }

    .service-number-item p {
      font-size: 1.1rem;
      color: #333;
      margin: 0;
    }

    .service-cards {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .card-item {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .card-item:hover {
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      transform: translateY(-5px);
    }

    .card-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-item h4 {
      padding: 15px;
      text-align: center;
      color: #333;
      margin: 0;
    }

    /* Description Container */
    .description-container {
      display: flex;
      gap: 40px;
      align-items: center;
      margin-bottom: 30px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding: 30px;
      background: #f9f9f9;
      border-radius: 15px;
    }

    .description-left {
      flex: 1;
    }

    .description-left h3 {
      font-size: 1.8rem;
      color: #2c3e50;
      margin-bottom: 15px;
    }

    .description-left p {
      font-size: 1rem;
      line-height: 1.6;
      color: #666;
    }

    .description-right {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .trusted-customers-badge {
      text-align: center;
      background: linear-gradient(135deg, #001aff, #0a3cc7);
      color: white;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,26,255,0.3);
    }

    .customer-count {
      font-size: 3.5rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .customer-text {
      font-size: 1.3rem;
      margin: 0;
      font-weight: 600;
    }

    .customer-subtext {
      font-size: 0.95rem;
      margin: 8px 0 0 0;
      opacity: 0.9;
    }

    /* Repair Wrapper Layout */
    .repair-wrapper {
      display: flex;
      gap: 40px;
      align-items: flex-start;
      margin-bottom: 50px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .repair-left {
      flex: 1;
    }

    .repair-right {
      flex: 1;
    }

    .repair-left .description-container {
      background: transparent;
      padding: 0;
      display: flex;
      gap: 0;
      margin-bottom: 0;
      flex-direction: column;
      align-items: flex-start;
    }

    .repair-left .description-left {
      width: 100%;
    }

    .repair-left .description-left h3 {
      margin-top: 0;
      font-size: 1.6rem;
    }

    .repair-left .description-left p {
      margin-bottom: 0;
    }

    .repair-left .description-right {
      display: none;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .repair-wrapper {
        flex-direction: column;
        gap: 30px;
      }

      .repair-left .description-container {
        order: 2;
        flex-direction: column;
      }

      .repair-left .description-right {
        display: flex;
        order: 1;
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
      }
      .description-left p {
        font-size: smaller;
      }

      .repair-left .trusted-customers-badge {
        width: 100%;
      }

      .repair-right {
        order: 3;
      }
    }

    .service-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .service-item {
      background: #fff;
      padding: 15px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      position: relative;
      text-align: center;
    }
    
#Gas\ Refill .service-list {
  grid-template-columns: repeat(2, 300px); 
  justify-content: center;
  gap: 20px;
}


#Gas\ Refill .service-item {
  padding: 15px;
  max-width: 300px;
}

#Gas\ Refill .service-item img {
  height: 190px;
}

#Installation .service-list {
  grid-template-columns: repeat(2, 300px);
  justify-content: center;
  gap: 20px;
}

#Installation .service-item {
  padding: 15px;
  max-width: 300px;
}

#Installation .service-item img {
  height: 190px;
}

@media (max-width: 768px) {
  #Gas\ Refill .service-list {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  #Gas\ Refill .service-item {
    max-width: 100%;
  }

  #Gas\ Refill .service-item img {
    height: auto;
  }

   #Installation .service-list {
    grid-template-columns: 1fr; 
    justify-content: center;
  }

  #Installation .service-item {
    max-width: 100%;
  }

  #Installation .service-item img {
    height: auto;
  }
}

    .service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .section-divider {
  width: 10cm;
  height: 1px;
  margin: 0 auto 20px;
  background: linear-gradient(to right, #000000, #ffffff);
  border-radius: 10px;
    }

    .service-item img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
    }
    

#Repair h2,
#Installation h2 {
  text-align: center;
  margin-bottom: 15px;
}


#Repair .service-list,
#Installation .service-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

#Repair h2,
#Installation h2 {
  text-align: center;
}

#Repair .service-list,
#Installation .service-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

#Repair .service-item,
#Installation .service-item {
  width: 300px;
  max-width: 100%;
  text-align: center;
}

    .service-item h3 {
      font-size: 1.1rem;
      margin: 10px 0 5px;
    }

    .service-item p {
      font-size: 0.8rem;
      color: #555;
      margin-bottom: 10px;
    }

    .btn {
      display: inline-block;
      background: linear-gradient(135deg, #3498db, #2980b9);
      color: white;
      padding: 10px 18px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .btn:hover {
      background: #2470a3;
      transform: scale(1.05);
    }

    .price {
      background: linear-gradient(135deg, #3498db, #2980b9);
      color: white;
      padding: 4px 10px;
      border-radius: 10px;
      position: absolute;
      margin-top: -5px;
      margin-left: -5px;
      font-size: 0.85rem;
      box-shadow: 0 0 10px rgba(52, 152, 219, 0.4);
      z-index: 1;
    }

    .price del {
  color: rgba(255, 255, 255, 0.712); 
  font-size: 0.8em;
  margin-right: 5px;
}

.service-box {
  max-width: 450px;
  margin: 40px auto;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.box-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  width: 23%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-2px);
}

.service-card img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  border-radius: 5px;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .service-card {
    width: 23%;
    padding: 6px;
  }

  .service-card img {
    height: 30px;
  }

  .service-card p {
    font-size: 12px;
    font-weight: 600;
  }
        .section-divider {
  width: 300px;
  height: 1px;
  margin: 0 auto 20px;
  background: linear-gradient(to right, #000000, #ffffff);
  border-radius: 10px;
}

}


.a-tag {
  text-decoration: none;
  color: inherit;
  display: block;
}


section {
  margin-top: 25PX;
  scroll-margin-top: 80px; 
}
    .modal {
      margin-top: 30px;
      display: none;
      position: fixed;
      z-index: 999;
      left: 0; top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(5px);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      border-radius: 20px;
      padding: 25px;
      width: 90%;
      max-width: 400px;
      position: relative;
      color: #fff;
      backdrop-filter: blur(15px);
      animation: slideIn 0.4s ease;
      overflow: hidden;
    }

    @keyframes slideIn {
      from { transform: translateY(-50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .close {
      position: absolute;
      right: 15px;
      top: 10px;
      font-size: 25px;
      cursor: pointer;
      color: white;
    }

    .modal-content form input {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      background: rgba(255, 255, 255, 0.15);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 8px;
    }

    .modal-content form input::placeholder {
      color: #ddd;
    }

    .modal-content button {
      background: linear-gradient(135deg, #3498db, #2980b9);
      color: white;
      border: none;
      padding: 12px;
      width: 100%;
      max-width: 350px; 
      max-height: 90vh;
      border-radius: 10px;
      font-weight: bold;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .modal-content button:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 15px rgba(52, 152, 219, 0.5);
    }

    .success-message {
      margin-top: 10px;
      color: #00ff88;
      display: none;
      font-weight: 600;
      text-align: center;
    }

    .tick-modal {
      background: #fff;
      color: #2ecc71;
      text-align: center;
      padding: 30px;
      border-radius: 20px;
      max-width: 300px;
      animation: scaleUp 0.4s ease;
    }

    .big-tick {
      font-size: 4rem;
      margin-bottom: 15px;
      animation: pop 0.5s ease;
    }

    .success-text {
      font-size: 1.2rem;
      font-weight: 600;
    }

    @keyframes pop {
      0% { transform: scale(0); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    @keyframes scaleUp {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    @media screen and (max-width: 480px) {
      .modal-content {
        padding: 20px;
      }

      .services h2 {
        font-size: 1.5rem;
      }

      .service-item img {
        height: 150px;
      }
    }

@keyframes fadeUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.service-item {
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}

.process-steps {
  margin-top: 25px;
  background: rgba(255,255,255,0.1);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.process-steps h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #00e6e6;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.step .circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #00c6ff;
  color: white;
  text-align: center;
  font-weight: bold;
  line-height: 26px;
  margin-right: 10px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step .text strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}

.step .text p {
  font-size: 10px;
  color: #ddd;
  margin: 3px 0 0;
}

.modal-content form {
  width: 100%;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 5px;
}

.modal-content form::-webkit-scrollbar {
  width: 6px;
}

.modal-content form::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}
.form-note p{
  font-size: 13px;
  color: #fff;
  margin-top: 10px;
  text-align: left;
  margin-left: 15px;
}
.form-note strong {
  color: #000000;
  font-weight: 600;
  float: left;
  font-size: 18px;
}


.seo-section {
  background: #f9f9f9;
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 2px solid #eee;
}
.seo-container {
  max-width: 1000px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #333;
}
.seo-section h2, 
.seo-section h3 {
  color: #222;
  margin-bottom: 15px;
}
.seo-section ul {
  margin: 15px 0;
  padding-left: 20px;
}
.seo-section ul li {
  margin-bottom: 8px;
}
.seo-note {
  margin-top: 20px;
  font-weight: bold;
  color: #0077cc;
}


.offer-wrapper {
  max-width: 420px;
  margin: auto;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.offer-title {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.offer-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: #f9f9f9;
  border: 1px solid #eee;
}

.offer-card img {
  width: 42px;
  height: 42px;
}

.offer-card h4 {
  font-size: 14px;
  margin: 0 0 4px;
}

.offer-card p {
  font-size: 12px;
  margin: 0;
  color: #666;
}

.call-bttn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #7bdbb6, #4da8da);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.service-info.white {
  max-width: 700px;
  margin: auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  color: #222;
}

.service-info.white h2 {
  font-size: 20px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.service-info.white h4 {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 16px;
}

.service-info.white p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

.service-info.white .price {
  background: #f5f7fa;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 500;
}

.service-info.white ul {
  padding-left: 18px;
  margin-bottom: 14px;
}

.service-info.white ul li {
  font-size: 14px;
  margin-bottom: 6px;
}

.service-info.white .note {
  font-size: 13px;
  color: #666;
  border-left: 3px solid #4da8da;
  padding-left: 10px;
}
.two-box-layout {
  display: flex;
  gap: 12px;   /* yahin se control hota hai */
  align-items: stretch;
}

/* desktop look same rahe */
.two-box-layout > div {
  flex: 1;
}
.two-box-layout {
  position: relative;     /* 🔥 absolute hata diya */
  margin-top: 80px;       /* upar se safe distance */
  z-index: 1;
}


.two-box-layout > div {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);

  /* start hidden */
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: all 0.6s ease;
}

/* jab visible ho */
.two-box-layout > div.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* hover effect – same kal wali feel */
.two-box-layout > div:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(237, 0, 0, 0.25);
}


/* mobile pe upar-niche */
@media (max-width: 768px) {
  .two-box-layout {
    flex-direction: column;
  }
}

/* ===============================
   ICON SERVICES – SEXY VERSION
================================ */

.icon-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px; /* thoda tight, premium look */
  max-width: 1200px;
  margin: 0 auto;
}

/* Card base */
.service-icon {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 10px;
  text-decoration: none;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 140px;
  text-align: center;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 
    transform 0.45s cubic-bezier(.4,0,.2,1),
    box-shadow 0.45s ease,
    background 0.45s ease;
  
  position: relative;
  overflow: hidden;
}

/* Soft glow layer */
.service-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
      rgba(0,106,255,0.18),
      transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* Icon image */
.service-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition:
    transform 0.5s cubic-bezier(.4,0,.2,1),
    filter 0.5s ease;
}

/* Text */
.service-icon span {
  font-size: 14px;
  margin-top: auto;
  line-height: 1.1;
  transition: transform 0.4s ease, color 0.4s ease;
}

/* ===============================
   HOVER – REAL SEXY PART
================================ */

.service-icon:hover {
  transform: translateY(-8px);
  background: #f4f8ff;
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.service-icon:hover::before {
  opacity: 1;
}

.service-icon:hover img {
  transform: scale(1.18) rotate(-6deg);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

.service-icon:hover span {
  transform: translateY(-2px);
  color: #006aff;
}


.service-icon img {
  animation: floatIcon 3.8s ease-in-out infinite;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {
  .icon-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .service-icon {
    height: 130px;
  }

  .service-icon span {
    font-size: 13px;
  }
}
/* ===============================
   ICON ENTRY ANIMATION (MOBILE)
================================ */

.service-icon {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(.4,0,.2,1);
}

/* jab visible ho */
.service-icon.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* thoda delay look ke liye */
.service-icon:nth-child(1) { transition-delay: 0.05s; }
.service-icon:nth-child(2) { transition-delay: 0.1s; }
.service-icon:nth-child(3) { transition-delay: 0.15s; }
.service-icon:nth-child(4) { transition-delay: 0.2s; }
.service-icon:nth-child(5) { transition-delay: 0.25s; }
.service-icon:nth-child(6) { transition-delay: 0.3s; }
.service-icon:nth-child(7) { transition-delay: 0.35s; }
.service-icon:nth-child(8) { transition-delay: 0.4s; }
.service-icon:nth-child(9) { transition-delay: 0.45s; }


