
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


 body {
      background: #fff;
   
       font-family: "Exo 2", sans-serif;
    }

    :root{
--red: #cc0000;
--dark:#1a1a1a;
--white: #ffffff;
}

/* Scroll to top button */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background-color: var(--red);
  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: var(--red); }


/* home */   

    /* ===== HEADER ===== */
 header {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Logo = 12% */
header a {
  flex: 0 0 25%;
}

/* Fix image behavior */
header img {
  width: 100%;
  height: 39px;
  object-fit: contain;
  display: block;
}

/* Nav = 88% */
nav {
  flex: 0 0 65%;
}

/* Align menu to right */
nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end; /* 🔥 important */
  align-items: center;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 19px;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--red);
}
    /* ===== BANNER ===== */
    .hero {
      background-color: var(--red);
      background-size: cover;
      background-position: center;
      color: white;
      padding: 80px 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      text-align: left;
      flex-wrap: wrap;
      opacity: 0.94;
    }

    .hero-content {
      max-width: 700px;
    }

    .hero-content h1 {
      font-size: 40px;
    font-weight: 500;
    line-height: 1.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    }

    .hero-content p {
      font-size: 1.1rem;
      line-height: 1.5;
      margin-bottom: 4rem;
      font-weight: 700;
    }

    .input-row {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 2.2em;

    }

    .input-row input {
      flex: 1;
      padding: 12px;
      font-size: 15px;
      border-radius: 5px;
      border: none;
      outline: none;
      
    }

    .input-row button {
      padding: 12px 60px;
      background-color: var(--white);
      color: var(--dark);
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      transition: background 0.3s ease;
    }

    .input-row button:hover {
      background-color: #fbe8e8;
    }

    .hero img {
      width: 350px;
      max-width: 100%;
    }

/* Ordered List */
.hero-content ol {
  margin: 30px 10px 60px;
  padding-left: 28px; /* spacing like image */
}

/* List Items */
.hero-content ol li {
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
  max-width: 600px;
}

/* Bold numbers */
.hero-content ol li::marker {
  font-weight: 900;
}

/* Highlight word */
.hero-content ol li strong {
  font-weight: 700;
}

.download-btn {
  background: #eee;
  color: var(--red);
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.download-btn:hover {
  background: #fff;
}






  .info-wrapper {
  background: var(--white);

  /* SAME HEIGHT BEHAVIOR AS HERO */
  min-height: 60vh; /* 👈 match your .hero height exactly */

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 20px; /* remove vertical padding */
}

/* Inner Flex Layout */
.info-content {
  width: 100%;
  max-width: 1100px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Text */
.info-text {
  flex: 0 0 65%;
  max-width: 700px;
}

.info-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 20px;
}

/* Right Image */
.info-image {
 flex: 0 0 35%;
  display: flex;
  justify-content: start;
}

.info-image img {
  width: 350px;
  max-width: 100%;
}

/* Section Background */
.policy-section {
  background: #f5f5f5;
  
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 60px 20px; /* remove vertical padding */
}

/* Content Wrapper */
.policy-content {
  width: 100%;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Heading */
.policy-content h2 {
  font-size: 28px;
  color: #0b3d91;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Description */
.policy-desc {
  font-size: 15px;
  color: #333;
  margin-bottom: 25px;
}

/* Subheading */
.policy-content h4 {
  font-size: 16px;
  color: #0b3d91;
  margin-bottom: 15px;
  font-weight: 600;
}

/* List */
.policy-content ul {
  padding-left: 20px;
}

.policy-content ul li {
  font-size: 15px;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .policy-section {
    padding: 40px 15px;
  }

  .policy-content {
    margin-left: 0;
    max-width: 100%;
  }

  .policy-content h2 {
    font-size: 22px;
  }

  .policy-content h4 {
    font-size: 15px;
  }

  .policy-desc,
  .policy-content ul li {
    font-size: 14px;
  }

  .policy-content ul {
    padding-left: 18px;
  }
}



    /* ===== FOOTER ===== */
    footer {
      text-align: center;
      padding: 20px 10px;
      background: var(--red);
      color: #fff;
      font-size: 0.9rem;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      nav ul {
        flex-wrap: wrap;
        gap: 20px;
      }

      .hero {
        flex-direction: column;
        text-align: center;
      }

      .hero-content {
        text-align: center;
      }

      .input-row {
        flex-direction: column;
        width: 100%;
      }

      .input-row input, .input-row button {
        width: 100%;
      }
    }

    /* Section */
.printer-info {
  background: var(--white);
  padding: 100px 60px;
}

/* Layout */
.printer-info-inner {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.printer-info-left {
   flex: 0 0 65%;
  max-width: 700px;
}

/* Heading */
.printer-title {
  font-size: 45px;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
}

/* List */
.printer-list {
  padding-left: 20px;
  margin-bottom: 30px;
}

.printer-list li {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #000;
  font-weight: 400;
}

/* Description */
.printer-desc {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #000;
}

/* Help */
.printer-help {
  font-size: 18px;
  color: #000;
}

.printer-help strong {
  cursor: pointer;
  font-weight: 600;
}

/* RIGHT */
.printer-info-right {
  flex: 0 0 35%;
  display: flex;
  justify-content: flex-start;
}

.printer-info-right img {
  width: 380px;
  max-width: 100%;
}

    /* home ends */

.progress {
      background-color: var(--red);
      background-size: cover;
      background-position: center;
      color: white;
      padding: 100px 20px;
      display: flex;
      align-items: left;
      justify-content: center;
      gap: 60px;
      text-align: left;
      flex-wrap: wrap;
      opacity: 0.94;
    }

    .progress-content {
      flex: 1;
      max-width: 700px;
    }

    .progress-content h1 {
      font-size: 45px;
    font-weight: 500;
    line-height: 1.5em;
    color: #FFFFFF;
    margin-bottom: 1.4em;
    }



/* Progress Block */
.progress-block {
  margin-bottom: 30px;
}

.progress-block p {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  gap: 10;
}

/* Bar */
.progress-bar {
  width: 100%;
  height: 14px;
  background: #ddd;
  border-radius: 20px;
  overflow: hidden;
}

/* Fill */
.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 20px;
  transition: width 0.2s linear, background 0.5s ease;
}

/* Colors */
.download-fill {
  background: linear-gradient(90deg, #29b6f6, #1565c0);
}

.install-fill {
  background: linear-gradient(90deg, #ff8c00, #ff2d00);
}

/* RED state before redirect */
.install-fill.red {
  background: linear-gradient(90deg, #ff4d4d, #cc0000);
}

/* Percentage BELOW + CENTER */
.progress-block span {
  display: block;
  text-align: center;
  margin-top: 6px;
  font-weight: 600;
  color: #fff;
}

 /* IMAGE SIDE */
.progress-image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.progress-image img {
  width: 350px;
  max-width: 100%;
} 

/* RESPONSIVE */
@media (max-width: 768px) {
  .progress {
    flex-direction: column;
    text-align: center;
  }

  .progress-image {
    justify-content: center;
    margin-top: 30px;
  }

  .progress-content h1 {
    font-size: 32px;
  }
}

/* support hero */


/* HERO */
.support-hero {
  background: var(--red);
  color: #fff;
  display: flex;
  gap: 60px;
  padding: 80px 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* LEFT */
.support-left {
  flex: 1;
  max-width: 700px;
}

.support-left h1 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.error-msg {
  font-size: 20px;
  margin-bottom: 20px;
}

.error-img {
  width: 220px;
  margin: 20px 0;
}

.support-text {
  font-size: 24px;
  margin-bottom: 20px;
}

.warning {
  color: yellow;
  font-weight: 600;
  font-size: 22px;
}

/* FORM */
.support-form-box {
  flex: 1;
  max-width: 600px;
}

/* ROW GRID */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full {
  width: 100%;
  margin-bottom: 20px;
}

/* LABEL */
.form-group label {
  font-weight: 600;
  margin-bottom: 4px;
}

/* HELPER TEXT */
.helper {
  font-size: 12px;
  margin-bottom: 8px;
  color: #f2f2f2;
}

/* INPUT */
.form-group input,
.form-group textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
}

/* TEXTAREA */
textarea {
  height: 100px;
}

/* RADIO GRID */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.option-grid label {
  border: 1px solid #fff;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
}

/* ERROR */
.error {
  color: #fff;
  font-size: 12px;
  margin-top: 5px;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #ff2d00;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .support-hero {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    flex-direction: column;
  }
}

/* WRAPPER */
.success-wrapper {
  text-align: center;
  padding: 20px;
  max-width: 500px;
  margin: 0 auto;
}

/* GREEN CHECK */
.success-icon {
  width: 40px;
  height: 40px;
  border: 2px solid #00ff88;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 22px;
  color: #00ff88;
}

/* MAIN TITLE */
.success-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 25px;
}

/* ALERT */
.success-alert {
  color: #ffeb3b;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
}

/* NORMAL TEXT */
.success-text {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
}

/* FINAL HIGHLIGHT (FADED RED LIKE IMAGE) */
.success-highlight {
  font-size: 26px;
  color: rgba(255, 0, 0, 0.5);
  font-weight: 700;
  margin-top: 6px;
}
#successContainer {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}