* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #ffffff;
}

/* Scroll to top button */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background-color: #0b3d63;
  color: white;
  border: none;
  padding: 12px 14px;
  border-radius: 10%;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
#scrollTopBtn:hover { background-color: #1d39b3; }

/* ensures new row below all inputs */
.privacy-wrapper {
  width: 100%;
}

.privacy-note {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 15px;
}

.privacy-note a {
  color: #007bff;
  text-decoration: underline;
}

.privacy-note a:hover {
  text-decoration: none;
}

/* Header Section */
.header {
  text-align: center;
  background-color: #0b3d63;
  color: white;
  padding: 60px 20px 40px;
}
.header h1 { font-size: 4.8rem; font-weight: 700; }
.header p { font-size: 2.3rem; font-weight: 600; margin-top: 10px; }

/* Printer Cards Section */
.printer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}
.printer-card {
  background: #f7f9fc;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 40px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.printer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.brand { font-size: 3.2rem; font-weight: 700; margin-top: 20px; margin-bottom: 8px; }
.hp { color: #38b6ff; } .brother { color: #055894; } .epson { color: #10218b; } .canon { color: #e60000; }
.printer-card p { font-size: 1.9rem; color: #222; margin-top: 15px; margin-bottom: 20px; font-weight: 600; }

button {
  background-color: #3d8bff;
  color: #f7f9fc;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover { background-color: #2b6fdc; }

/* Form Section */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}
.intro-text { font-size: 18px; margin-bottom: 20px; }

.form-box {
  background: #f7f9fc;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  align-items: flex-end;
}

.form-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}

.input-block {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.button-block {
  flex: 0 0 160px;
}

.input-block input {
  padding: 10px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}



.error-msg {
  font-size: 12px;
  color: red;
}


.input-block {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.input-block label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.input-block input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
  height: 46px;
}
.error-msg {
  color: red;
  font-size: 13px;
  margin-top: 4px;
}

/* Input + Button alignment */
.input-with-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.input-with-btn input {
  flex: 1;
  height: 46px;
}
.input-with-btn button {
  height: 46px;
  border-radius: 6px;
  padding: 0 25px;
  font-weight: 600;
  background: #2563eb;
  transition: 0.3s;
}
.input-with-btn button:hover {
  background: #1e4ed8;
}

/* Features */
.features {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-inline: auto;
}
.feature {
  background: #4f46e5;
  color: #fff;
  padding: 50px 25px;
  border-radius: 10px;
  width: 300px;
  font-size: 20px;
  text-align: center;
  transition: 0.3s;
}
.feature:hover { background: #4338ca; transform: translateY(-5px); }

/* Footer */
.footer {
  text-align: center;
  background: #0b3d63;
  color: #fff;
  padding: 20px;
  font-size: 14px;
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .form-box { flex-direction: column; }
  .input-with-btn { flex-direction: column; align-items: stretch; }
  .input-with-btn button { width: 100%; height: 46px; }
}


    /* Feature Boxes */
    .features {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin: 40px 0;
      flex-wrap: wrap;
      max-width: 1400px;
    }

    .feature {
      background: #4f46e5;
      color: #fff;
      padding: 80px 30px;
      border-radius: 10px;
      width: 350px;
      font-size: 20px;
      text-align: center;
      transition: 0.3s;
      position: relative;
      margin: 35px auto;
    }

    .feature:hover {
      background: #4338ca;
      transform: translateY(-5px);
    }

    .feature i {
      display: block;
      margin: 25px auto 0;
      font-size: 22px;
      transition: 0.3s;
    }

    .feature:hover i {
      transform: translateX(5px);
    }

    /* Setup Section */
    .setup-section {
      background: #dedcdc;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      padding: 50px 100px ;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
    }

    .setup-text {
      flex: 1;
      min-width: 280px;
      text-align: left;
    }

    .setup-text h2 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .setup-text p {
      font-size: 15px;
      margin-bottom: 20px;
    }

    .setup-text button {
      background: #2563eb;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    .setup-text button:hover {
      background: #1e4ed8;
    }

    .setup-img img {
      width: 100%;
      max-width: 400px;
      border-radius: 10px;
    }

    /* assistance & Troubleshooting */
    .assistance-section {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      text-align: left;
    }

    .assistance-box {
      background: #fff;
      border-radius: 10px;
      flex: 1;
      padding: 30px;
      min-width: 280px;
    }

    .assistance-box h3 {
      font-size: 35px;
      margin-bottom: 10px;
    }

    .assistance-box p {
      font-size: 15px;
      line-height: 2.1em;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .form-box {
        flex-direction: column;
        align-items: stretch;
      }
      .features {
        flex-direction: column;
      }
      .setup-section {
        flex-direction: column;
      }
      .button-block {
        align-items: stretch;
      }
      .form-box button {
        width: 100%;
      }
    }

    /* privacy */

.privacy {
    max-width: 1200px;         /* keeps content readable, not stretched */
    margin: 40px auto;        /* centers it horizontally with top/bottom space */
    padding: 30px 40px;       /* inner spacing */
    background: #fff;         /* optional: white background for clarity */
    border-radius: 12px;      /* soft corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* subtle shadow */
    font-family: 'Exo', sans-serif;
    line-height: 1.6;
    color: #333;
}

.privacy h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: #222;
}

.privacy h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #444;
}

.privacy p,
.privacy ul {
    margin-bottom: 15px;
}


    /* privacy end */

    /* footer start */

      .footer {
      background-color: #0b3d63;
      color: white;
      padding: 40px 20px 20px 20px;
      font-family: Exo;
    }

    .footer-container {
      display: flex;
      /* flex-wrap: wrap; */
      align-items: flex-start;
      justify-content: space-around;
      max-width: 1200px;
      margin: auto;
      gap: 20;
    }

    .footer-column.service {
  flex: 0 0 30%;   /* fixed 30% width */
}

.footer-column.newsletter {
  flex: 0 0 70%;   /* fixed 70% width */
}

    .footer-column {
      flex: 1;
      min-width: 250px;
      margin: 10px 0px;
    }

    .footer-column h3 {
      border-bottom: 2px solid #fff;
      padding-bottom: 8px;
      margin-bottom: 16px;
      font-family: Exo;
      text-align: left;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      font-family: Exo;
    }

    .footer-column ul li {
      margin: 10px 0;
      font-family: Exo;
      text-align: left;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #d6d6d6;
      transition: color 0.3s;
    }

    .footer-column ul li a:hover {
      color: #ffffff;
    }

    .newsletter p {
      margin-bottom: 10px;
      line-height: 1.4;
      font-family: Exo;
      text-align: left;
    }

    .contact-number {
      font-weight: bold;
      font-size: 16px;
      font-family: Exo;
    }

.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #fff;
  margin-top: 30px;
  padding: 20px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom-text {
  font-size: 14px;
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.payment-logos {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  min-width: 300px;
}

.payment-logos a {
  display: inline-flex;
  align-items: center;
}

.payment-logos img {
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.payment-logos img:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer-bottom-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom-text {
    text-align: center;
  }

  .payment-logos {
    justify-content: center;
  }
}


    /* footer end */

    /* hPages start */
  img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
    }

    .container {
      width: min(1200px, 92%);
      margin: auto;
    }

    /* ================= HERO ================= */
    .hero {
      background: linear-gradient(135deg, #60a5fa, #2563eb);
      color: #fff;
      padding: 3.5rem 0;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    .hero h1 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      margin-bottom: 1rem;
    }

    .hero p {
      max-width: 520px;
      margin-bottom: 1.5rem;
      opacity: 0.95;
    }

    .btn {
      display: inline-block;
      background: #fff;
      color: var(--primary);
      padding: 0.75rem 1.3rem;
      border-radius: 10px;
      font-weight: 600;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .hero img {
      border-radius: var(--radius);
      box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    }

    /* ================= GUIDE ================= */
    .guide {
      padding: 4rem 0;
    }

    .guide h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      margin-bottom: 2.5rem;
      text-align: left;
    }

    .steps {
      display: grid;
      gap: 2rem;
    }

    .step {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1.5rem;
      background: var(--card);
      padding: 1.5rem;
      border-radius: var(--radius);
      border: 1px solid var(--border);
    }

    .step-number {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 700;
      flex-shrink: 0;
    }

    .step-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      align-items: center;
    }

    .step-content p {
      color: var(--muted);
    }

    .step-content img {
      border-radius: 10px;
      border: 1px solid var(--border);
      background: #f1f5f9;
      padding: 0.5rem;
    }

    /* ================= FOOTER NOTE ================= */
    .note {
      margin-top: 3rem;
      background: var(--card);
      padding: 1.8rem;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      text-align: center;
    }

    .note p {
      color: var(--muted);
      margin-bottom: 1rem;
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero p {
        margin-inline: auto;
      }

      .step-content {
        grid-template-columns: 1fr;
      }
    }

    
    /* hPages end */

.btnn {
  background-color: #3d8bff;
  color: #f7f9fc;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btnn:hover { background-color: #2b6fdc; }

/* ===== ABOUT US SECTION ===== */
    .about-section {
      padding: 80px 8%;
      background-color: #ffffff;
    }

    .about-container {
      display: flex;
      align-items: center;
      gap: 50px;
      flex-wrap: wrap;
    }

    .about-image {
      flex: 1;
    }

    .about-image img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .about-content {
      flex: 1;
    }

    .about-content h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: #0d6efd;
    }

    .about-content p {
      line-height: 1.8;
      margin-bottom: 16px;
      font-size: 16px;
    }

    /* ===== MISSION CARDS ===== */
    .mission-section {
      margin-top: 70px;
    }

    .mission-title {
      text-align: center;
      font-size: 32px;
      margin-bottom: 50px;
      color: #084298;
    }

    .mission-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .mission-card {
      background: #f8f9ff;
      padding: 35px 25px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .mission-card:hover {
      transform: translateY(-8px);
    }

    .mission-card i {
      font-size: 42px;
      color: #0d6efd;
      margin-bottom: 20px;
    }

    .mission-card h3 {
      font-size: 22px;
      margin-bottom: 15px;
    }

    .mission-card p {
      font-size: 15px;
      line-height: 1.7;
    }

    /* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 8%;
  background-color: #f4f7ff;
}

.contact-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: stretch;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-info img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.contact-details {
  padding: 30px;
}

.contact-details h2 {
  color: #0d6efd;
  margin-bottom: 15px;
}

.contact-details p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 15px;
}

.contact-item i {
  color: #0d6efd;
  font-size: 18px;
  margin-right: 12px;
}

/* RIGHT FORM */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-form h2 {
  color: #084298;
  margin-bottom: 10px;
}

.contact-form p {
  font-size: 14px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0d6efd;
}

.contact-btn {
  width: 100%;
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 15px;
}

.contact-item i {
  color: #0d6efd;
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
}

/* ===== POPUP MODAL ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 2000;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: #fff;
  padding: 40px 35px;
  border-radius: 18px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  transform: scale(0.7);
  transition: transform 0.4s ease;
}

.popup-overlay.active .popup-box {
  transform: scale(1);
}

.popup-icon i {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}

.popup-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #084298;
}

.popup-box p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.popup-box button {
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.popup-box button:hover {
  transform: translateY(-2px);
}
 