 /* Global Font Styles */
body {
    font-family: 'Anton', sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: 'Anton', sans-serif;

}
  .top-bar {
      background: #fff;
      padding: 10px 15px;
      font-size: 14px;
      border-bottom: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .social-icons a {
      color: #888;
      margin-right: 10px;
      text-decoration: none;
    }

    .top-links a {
      color: #333;
      text-decoration: none;
      margin-left: 8px;
    }

    header {
      background-color: #fff;
      border-bottom: 1px solid #ddd;
    }

   .header-flex {
  max-width: 1200px;
  margin: auto;
  padding: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-flex > * {
  min-width: 0;
  flex-shrink: 1;
}




    .logo {
      display: flex;
      align-items: center;
      font-size: 24px;
      font-weight: bold;
    }

    .shield-icon {
      width: 30px;
      margin-right: 10px;
    }

    .highlight {
      color: #e30613;
    }

    .search-bar {
      display: flex;
      align-items: center;
      flex: 1;
      max-width: 300px;
      margin: 10px;
    }

    .search-bar input {
      flex: 1;
      padding: 7px 10px;
      border: 1px solid #ccc;
      border-radius: 4px 0 0 4px;
    }

    .search-bar button {
      padding: 7px 10px;
      background: #e30613;
      color: #fff;
      border: none;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }

    .call-now a {
      background-color: #e30613;
      color: #fff;
      padding: 10px 15px;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
      white-space: nowrap;
    }

    nav {
      background: #3a3a3a;
    }

    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }

    nav ul li {
      margin: 0 20px;
    }

    nav ul li a {
      display: block;
      padding: 15px 0;
      color: #fff;
      text-decoration: none;
    }

    nav ul li a:hover {
      color: #e30613;
    }

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  margin-left: auto;
}
@media (max-width: 768px) {
  .search-bar,
  .call-now {
    display: none;
  }

  .header-flex {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .logo {
    flex-shrink: 1;
    order: 1;
    min-width: 0;
  }

  .menu-toggle {
    display: block;
    order: 2;
    margin-left: auto;
    z-index: 10;
  }

  nav ul {
    flex-direction: column;
    display: none;
    text-align: center;
    background: #3a3a3a;
    width: 100%;
  }

  nav ul.show {
    display: flex;
  }

  .top-bar {
    flex-direction: column;
    text-align: center;
  }

  .top-links {
    margin-top: 5px;
  }
}


.hero-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #f5f5f5, #ffffff);
  padding: 60px 20px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 500px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  color: #222;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.hero-btn {
  background-color: #e30613;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #b0000f;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
  padding: 20px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-banner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }
}


.why-cleansecure {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #222;
}

.section-title .highlight {
  color: #e30613;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card i {
  font-size: 40px;
  color: #e30613;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  font-size: 15px;
  color: #555;
}


.limited-offer {
  background: linear-gradient(135deg, #e30613, #990611);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.limited-offer .container {
  max-width: 1000px;
  margin: auto;
}

.limited-offer h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.limited-offer .highlight {
  color: #fff700;
}

.limited-offer p {
  font-size: 18px;
  margin-bottom: 30px;
}

.offer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.btn-offer {
  background: #fff;
  color: #e30613;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-offer:hover {
  background: #ffeaea;
}

.countdown {
  font-size: 16px;
  color: #fff;
}

.countdown strong {
  font-weight: bold;
}


.about-us-text {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
}

.about-us-text .container {
  max-width: 900px;
  margin: auto;
}

.about-us-text h2 {
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: bold;
}

.about-us-text .highlight {
  color: #e30613;
}

.about-us-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}


.our-services {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 34px;
  margin-bottom: 50px;
}

.section-title .highlight {
  color: #e30613;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #f6f6f6;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card i {
  font-size: 40px;
  color: #e30613;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


.comparison-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 34px;
  margin-bottom: 50px;
}

.section-title .highlight {
  color: #e30613;
}

.comparison-table {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.comparison-row.header {
  background-color: #e30613;
  color: #fff;
  font-weight: bold;
}

.comparison-row div {
  font-size: 16px;
}

.yes {
  color: #28a745;
  font-size: 20px;
}

.no {
  color: #dc3545;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .comparison-row.header {
    display: none;
  }

  .comparison-row div:nth-child(1) {
    font-weight: bold;
    margin-bottom: 8px;
  }

  .comparison-row div:nth-child(2)::before {
    content: 'CleanSecure: ';
    font-weight: bold;
  }

  .comparison-row div:nth-child(3)::before {
    content: 'Other Antivirus: ';
    font-weight: bold;
  }
}


.cta-section {
  background: url('../images/logo/cta.png') center/cover no-repeat;
  padding: 100px 20px;
  position: relative;
  color: #fff;
  text-align: center;
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  padding: 60px 30px;
  border-radius: 12px;
  max-width: 900px;
  margin: auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content .highlight {
  color: #e30613;
}

.cta-info {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-benefits li {
  margin-bottom: 12px;
}

.cta-benefits i {
  color: #28a745;
  margin-right: 10px;
}

.cta-call-btn {
  background-color: #e30613;
  padding: 15px 30px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
  transition: background 0.3s ease;
}

.cta-call-btn:hover {
  background-color: #c40511;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 28px;
  }

  .cta-info, .cta-benefits {
    font-size: 15px;
  }
}

   

   .disclaimer-section {
  background-color: #f0f0f0;
  padding: 60px 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.disclaimer-section .container {
  max-width: 900px;
  margin: auto;
}

.disclaimer-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #e30613;
  text-align: center;
}


.site-footer {
  background-color: #1e1e1e;
  color: #ddd;
  padding: 40px 20px 20px;
  font-size: 15px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.footer-left,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-left h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-left .highlight {
  color: #e30613;
}

.footer-links h5,
.footer-contact h5 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.footer-links ul li a:hover {
  color: #e30613;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 14px;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-links,
  .footer-contact {
    margin-bottom: 20px;
  }
}
.solutions-section {
  background-color: #f4f6f8;
  padding: 60px 20px;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
  color: #111;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.solution-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 10px 0;
}

.solution-item i {
  font-size: 36px;
  color: #e30613;
  min-width: 40px;
}

.solution-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #222;
}

.solution-item p {
  margin: 0;
  color: #555;
  font-size: 15px;
}

@media (min-width: 768px) {
  .solution-row {
    flex-direction: column;
    gap: 40px;
  }
}


.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.contact-title {
  text-align: center;
  font-size: 32px;
  color: #111;
  margin-bottom: 10px;
}

.contact-subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  font-size: 16px;
  color: #333;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info i {
  color: #e30613;
  margin-right: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.contact-form button {
  padding: 12px;
  background-color: #e30613;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #c40011;
}

@media (min-width: 768px) {
  .contact-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-info {
    flex: 1;
    padding-right: 30px;
  }

  .contact-form {
    flex: 1;
  }
}
