
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


 body {
      background: #fff;
   
       font-family: "Exo 2", sans-serif;
    }

    :root{
--red: #cc0000;
--dark:#1a1a1a;
--white: #ffffff;
--hblue: #38b6ff;
--bblue: #055894;
--eblue:#10218b;
}




/* 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: 35px;
  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: 0px 10px; /* 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%;
}



    .footer-section {
    width: 100%;
    background: linear-gradient(90deg, #1b2029 0%, #181d25 100%);
    padding: 70px 20px 35px;
}

.footer-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    gap: 100px;
}

/* FOOTER COLUMN */

.footer-column {
    flex: 1;
}

/* HEADING */

.footer-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
}

/* LINE */

.footer-line {
    width: 170px;
    height: 4px;
    background: #ffffff;
    margin-bottom: 45px;
}

/* LINKS */

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: 0.3s ease;
}

.footer-links li a:hover {
    opacity: 0.8;
}

/* NEWSLETTER */

.newsletter-text {
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1.8;
    max-width: 650px;
}

/* FOOTER BOTTOM */

.footer-bottom {
    width: 100%;
    max-width: 1450px;
    margin: 50px auto 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* COPYRIGHT */

.copyright-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

/* PAYMENT ICONS */

.payment-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 38px;
    width: auto;
    object-fit: contain;
    
    opacity: 0.9;
}

/* =========================
   LARGE LAPTOP
========================= */

@media (max-width: 1400px) {

    .support-title {
        font-size: 1.8rem;
    }

    .support-text {
        font-size: 1.2rem;
    }

    .footer-heading {
        font-size: 1.7rem;
    }

    .footer-links li a,
    .newsletter-text {
        font-size: 1.15rem;
    }

}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .support-features-section {
        padding: 70px 25px;
    }

    .support-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .support-icon i {
        font-size: 3.2rem;
    }

    .support-title {
        font-size: 1.7rem;
    }

    .support-text {
        font-size: 1.1rem;
        max-width: 100%;
    }

    /* FOOTER */

    .footer-section {
        padding: 60px 25px 30px;
    }

    .footer-container {
        flex-direction: column;
        gap: 70px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        margin-top: 60px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .support-features-section {
        padding: 60px 18px;
    }

    .support-icon {
        margin-bottom: 18px;
    }

    .support-icon i {
        font-size: 2.7rem;
    }

    .support-title {
        font-size: 1.45rem;
        margin-bottom: 14px;
    }

    .support-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* FOOTER */

    .footer-section {
        padding: 55px 18px 28px;
    }

    .footer-heading {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .footer-line {
        width: 120px;
        height: 3px;
        margin-bottom: 28px;
    }

    .footer-links li {
        margin-bottom: 14px;
    }

    .footer-links li a {
        font-size: 1rem;
    }

    .newsletter-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .footer-bottom {
        margin-top: 45px;
    }

    .copyright-text {
        font-size: 0.95rem;
    }

    .payment-icons img {
        height: 28px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .support-title {
        font-size: 1.3rem;
    }

    .support-text {
        font-size: 0.95rem;
    }

    .footer-heading {
        font-size: 1.2rem;
    }

    .newsletter-text,
    .footer-links li a {
        font-size: 0.95rem;
    }

    .copyright-text {
        font-size: 0.88rem;
    }

}

/* c-non  */


    /* ===== 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: start;
  justify-content: left;
  flex-wrap: wrap;
}

/* LEFT */
.support-left {
  max-width: 1200px;
}

.support-left h1 {
  font-size: 60px;
  margin-bottom: 20px;
  font-weight: 600;
}

.error-msg {
  font-size: 20px;
  margin-bottom: 20px;
}

.error-img {
  width: 300px;
  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); }
}

.hblue{
  background: var(--hblue);
}

.eblue{
  background: var(--eblue);
}

.bblue{
background: var(--bblue);
}