  @font-face {
      font-family: "Canaro";
      src: url("canaro/fonts/Canaro-Light.woff") format("opentype");
      font-weight: 700;
    }
    @font-face {
      font-family: "Canaro";
      src: url("canaro/fonts/Canaro-Light.woff") format("opentype");
      font-weight: 400;
    }
    :root {
      --brand-orange: #ff6d32;
      --brand-orange-light: #ff7e3e;
      --brand-dark: #151515;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--brand-dark);
    }

    h1, h2, h3, nav a, button {
      font-family: "Canaro", Arial, sans-serif;
      letter-spacing: -0.03em;
    }

    /* ===== Header & Navigation ===== */
    header {
      width: 100%;
      background: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid #f1f1f1;
    }

    .nav-container {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 1.5rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.5rem;
      font-weight: 700;
      text-decoration: none;
      color: var(--brand-dark);
    }

    .logo-icon {
      width: 34px;
      height: 34px;
      background: var(--brand-orange);
      clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      font-size: 1rem;
      color: var(--brand-dark);
      text-decoration: none;
      position: relative;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: var(--brand-orange);
      transition: width 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    .icon-group {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 1rem;
    }

    .icon-group i {
      cursor: pointer;
    }

    /* ===== Hero Section ===== */
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      /*max-width: 1280px;*/
      margin: 0 auto;
      padding: 4rem 9.5rem 6rem;
    }

    .hero-text {
      flex: 1 1 480px;
      max-width: 560px;
    }

    .hero-text h1 {
      font-size: clamp(2.5rem, 5vw + 1rem, 4.2rem);
      line-height: 1.1;
      margin-bottom: 1.25rem;
    }

    .hero-text p {
      font-size: 1.125rem;
      margin-bottom: 2.5rem;
      line-height: 1.6;
    }

    .cta-btns {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
    }

    .btn {
      font-family: "Canaro", Arial, sans-serif;
      padding: 0.9rem 2.25rem;
      font-size: 1rem;
      border-radius: 30px;
      border: 2px solid var(--brand-orange);
      cursor: pointer;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
      color: #fff;
    }

    .btn-outline {
      background: #fff;
      color: var(--brand-orange);
    }

    .btn-primary:hover {
      filter: brightness(1.05);
    }

    .btn-outline:hover {
      background: var(--brand-orange);
      color: #fff;
    }

    .hero-img {
      flex: 1 1 420px;
      max-width: 560px;
      margin-top: 2rem;
    }

    .hero-img img {
      width: 100%;
      height: auto;
    }

    /* ===== Responsive – Mobile Nav ===== */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--brand-dark);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    @media (max-width: 900px) {
      nav {
        position: fixed;
        inset: 0 0 0 40%;
        background: #fff;
        flex-direction: column;
        padding: 5rem 2rem;
        transform: translateX(100%);
        transition: transform 0.4s ease;
      }

      nav.open {
        transform: translateX(0);
      }

      .hamburger {
        display: flex;
      }

      .nav-container {
        justify-content: space-between;
      }
    }

    /* ===== AdShield Section Styles ===== */
.adblock {
  padding: 4rem 1.5rem;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.adblock-text { flex: 1 1 480px; max-width: 520px; }

.adblock-text h2 {
  font-family: "Canaro", Arial, sans-serif;
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  line-height: 1.25;
  margin-bottom: 2rem;
}

.ab-features { list-style: none; margin: 0 0 2.5rem; padding: 0; }

.ab-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.icon {
  font-size: 1.5rem;
  color: var(--brand-orange);
  width: 28px;
  display: inline-flex;
  justify-content: center;
}

.ab-cta { display: flex; gap: 1.25rem; flex-wrap: wrap; margin: 1.5rem 0; }

.btn {
  font-family: "Canaro", Arial, sans-serif;
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
  border-radius: 30px;
  border: 2px solid var(--brand-orange);
  cursor: pointer;
  background: var(--brand-orange);
  color: #fff;
}

.btn:hover { filter: brightness(1.05); }

.learn-link {
  display: inline-block;
  margin-top: 1.75rem;
  font-weight: 700;
  color: var(--brand-dark);
  text-decoration: none;
}

.adblock-image { position: relative; flex: 1 1 420px; max-width: 540px; }

.adblock-image img { width: 100%; height: auto; }

.circle-img {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 180px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.circle-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .adblock { flex-direction: column; text-align: center; }
  .adblock-image { order: -1; }
  .circle-img { position: static; margin: 0 auto 1.5rem; width: 140px; border-width: 6px; }
}


/* ===== PC Cleaner Styles ===== */
.pc-cleaner {
  background-color: #f9f9fc;
  padding: 4rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.pc-cleaner-image {
  flex: 1 1 480px;
  position: relative;
  max-width: 540px;
}

.pc-cleaner-image img {
  width: 100%;
  height: auto;
}

.pc-cleaner-text {
  flex: 1 1 480px;
  max-width: 520px;
}

.pc-cleaner-text h2 {
  font-family: "Canaro", Arial, sans-serif;
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  margin-bottom: 2rem;
  line-height: 1.25;
}

.pc-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pc-features li {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: var(--brand-orange);
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.75rem;
}

.pc-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.btn-disabled {
  font-family: "Canaro", Arial, sans-serif;
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
  border-radius: 30px;
  border: none;
  background-color: #ccc;
  color: #fff;
  cursor: not-allowed;
}

.coming-soon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-orange);
  font-size: 1rem;
  font-weight: bold;
}

.clock-icon {
  font-size: 1.5rem;
}

.learn-link {
  display: inline-block;
  color: #999;
  text-decoration: none;
  font-weight: bold;
}

.circle-img {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 8px solid white;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .pc-cleaner {
    flex-direction: column;
    text-align: center;
  }

  .pc-cleaner-image {
    order: -1;
  }

  .circle-img {
    position: static;
    margin: 1rem auto;
    width: 120px;
    height: 120px;
    border-width: 6px;
  }
}

/* ===== Driver Manager Styles ===== */
.driver-manager {
  background-color: #fff;
  padding: 4rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.driver-text {
  flex: 1 1 480px;
  max-width: 520px;
}

.driver-text h2 {
  font-family: "Canaro", Arial, sans-serif;
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  margin-bottom: 2rem;
  line-height: 1.25;
}

.driver-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.driver-features li {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.driver-features .dot {
  width: 10px;
  height: 10px;
  background-color: var(--brand-orange);
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.75rem;
}

.driver-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.btn-disabled {
  font-family: "Canaro", Arial, sans-serif;
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
  border-radius: 30px;
  border: none;
  background-color: #ccc;
  color: #fff;
  cursor: not-allowed;
}

.coming-soon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-orange);
  font-size: 1rem;
  font-weight: bold;
}

.clock-icon {
  font-size: 1.5rem;
}

.learn-link {
  display: inline-block;
  color: #999;
  text-decoration: none;
  font-weight: bold;
}

.driver-image {
  flex: 1 1 480px;
  max-width: 520px;
}

.driver-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .driver-manager {
    flex-direction: column;
    text-align: center;
  }

  .driver-image {
    order: -1;
  }
}

/* About Us Section Styles */
.about-us {
  background-color: #f9f9fc;
  padding: 4rem 1.5rem;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1 1 480px;
  color: #151515;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff6d32;
  font-family: "Canaro", sans-serif;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-img {
  flex: 1 1 480px;
  text-align: center;
}

.about-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.footer {
  background-color: #2a2a2a;
  color: #ddd;
  padding: 2rem 1.5rem;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6d32;
}

@media (max-width: 600px) {
  .footer-container {
    padding: 1rem;
  }
}
a {
   color: #fff;
    text-decoration: none;
    font-size: 17px;
}
/* ===== Contact Section ===== */
.contact-section {
  padding: 4rem 1.5rem;
  background-color: #f9f9fc;
  color: #151515;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

/* Contact Info */
.contact-info {
  flex: 1 1 480px;
}

.contact-info h2 {
  font-family: "Canaro", Arial, sans-serif;
  font-size: 2.5rem;
  color: #ff6d32;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.contact-details strong {
  color: #ff6d32;
}

/* Contact Form */
.contact-form {
  flex: 1 1 480px;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  background-color: #fdfdfd;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6d32;
}

/* Submit Button */
.contact-form button {
  font-family: "Canaro", Arial, sans-serif;
  background: var(--brand-orange);
  color: #fff;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #ff7e3e;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 4rem 1.5rem;
  background: #f9f9fc;
  color: #151515;
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
}

.faq-container h2 {
  font-family: "Canaro", Arial, sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #ff6d32;
}

.faq-item {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.faq-question {
  font-size: 1.2rem;
  font-family: "Canaro", Arial, sans-serif;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ff6d32;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}
.breadcrumb {
  padding: 1rem 1.5rem;
  background-color: #f5f5f5;
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #777;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--brand-orange);
  font-weight: bold;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ff3d00;
}

.breadcrumb span {
  color: #aaa;
  margin: 0 0.25rem;
}
