 /* 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 30px;
  border-bottom: 1px solid #ddd;
}

.social-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons a {
  margin-right: 12px;
  color: #555;
  text-decoration: none;
}

.search-box {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.search-box input {
  border: none;
  padding: 6px 10px;
  outline: none;
}

.search-box button {
  background: none;
  border: none;
  padding: 0 10px;
  color: #cc1e3e;
  cursor: pointer;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #cc1e3e;
}

.user-actions a {
  margin-left: 10px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
}

.cta-button {
  background: #cc1e3e;
  color: #fff;
  padding: 8px 18px;
  border-radius: 3px;
  font-weight: bold;
  text-decoration: none;
}

.nav-menu {
  background: #444;
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

.nav-menu a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}

.nav-menu a:hover {
  text-decoration: underline;
}

.hero-banner {
  background: url('https://www.transparenttextures.com/patterns/dark-denim.png'), linear-gradient(to right, #1e1e1e90, #00000090),
              url('../images/logo/banner.webp') center/cover no-repeat;
  color: #fff;
  padding: 100px 30px;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-button {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 24px;
  font-size: 16px;
  text-decoration: none;
}

.hero-button:hover {
  background: #cc1e3e;
  border-color: #cc1e3e;
}

/* Responsive */
@media (max-width: 768px) {
  .main-header, .social-search {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #cc1e3e;
}

@media (max-width: 768px) {
  .main-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    background: #444;
    width: 100%;
    display: none;
    padding: 10px 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    margin: 10px 0;
  }

  .user-actions {
    display: none;
  }

  .search-box {
    margin-top: 10px;
    width: 100%;
  }

  .social-search {
    flex-direction: column;
    align-items: flex-start;
  }
}
.antivirus-info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background: #f9f9f9;
}

.section-header {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.info-card {
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.info-card h3 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 600;
  font-family: 'Georgia', serif;
}

.info-card p {
  font-size: 16px;
  color: #555;
  margin: 15px 0;
}

.info-card a {
  text-decoration: none;
  font-weight: bold;
  color: #cc1e3e;
}


/* Hurry Deals Section */
.hurry-deals-section {
  background: #cc1e3e;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hurry-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hurry-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

#countdown {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Parallax Section */
.parallax-section {
  background-image: url('../images/logo/banner3.webp'); /* Replace with your parallax image */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.parallax-content {
  position: relative;
  max-width: 800px;
  margin: auto;
  z-index: 1;
}

.parallax-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.parallax-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.call-now-btn {
  background: #cc1e3e;
  color: white;
  padding: 12px 30px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.call-now-btn:hover {
  background: #cc1e3e;
}

.services-showcase {
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
}

/* Left side image */
.services-image {
  flex: 1 1 50%;
  background: url('../images/logo/banner.webp') no-repeat center center;
  background-size: cover;
  min-height: 400px;
}

/* Right side content */
.services-content {
  flex: 1 1 50%;
  background-color: #cc1e3e; /* deep red to match your style */
  color: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-content h3 {
  font-size: 34px;
  margin-bottom: 30px;
}

.service {
  margin-bottom: 25px;
}

.service h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #ffd8d8;
}

.service p {
  font-size: 16px;
  line-height: 1.5;
  color: #f3f3f3;
}

/* Responsive */
@media (max-width: 768px) {
  .services-showcase {
    flex-direction: column;
  }

  .services-image, .services-content {
    flex: 1 1 100%;
  }

  .services-content {
    padding: 40px 20px;
  }
  .call-now-btn{
    width: 25%!important;
    text-align: center;
  }
}


.cta-prayer {
  padding: 80px 30px;
  position: relative;
  color: #fff;
}

.cta-prayer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #cc1e3e; /* dark overlay */
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.text-block h2 {
  font-size: 36px;
  font-weight: bold;
  font-family: 'Georgia', serif;
  margin: 0;
}

.text-block p {
  font-size: 18px;
  margin-top: 10px;
  color: #eee;
}

.cta-button {
  padding: 14px 28px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.cta-button:hover {
  background-color: #fff;
  color: #333;
}


.about-antivirus {
  padding: 60px 20px;
  background: #ffffff;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #cc1e3e;
  font-weight: bold;
}

.about-container p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}


.pricing-plan {
  padding: 70px 20px;
  background: #f8f9fa;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.pricing-container {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-container h2 {
  font-size: 32px;
  color: #cc1e3e;
  margin-bottom: 40px;
}

.pricing-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.pricing-box h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.price {
  font-size: 26px;
  font-weight: bold;
  margin: 15px 0;
  color: #111;
}

.pricing-box ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-box ul li {
  padding: 10px 0;
  font-size: 16px;
  color: #555;
  border-bottom: 1px solid #eee;
}

.btn-purchase {
  display: inline-block;
  margin-top: 20px;
  background: #cc1e3e;
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-purchase:hover {
  background: #a91630;
}

.comparison-section {
  padding: 70px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.comparison-container {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-container h2 {
  font-size: 32px;
  color: #cc1e3e;
  margin-bottom: 10px;
}

.subtext {
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.comparison-table thead {
  background-color: #f4f4f4;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.comparison-table th {
  font-weight: bold;
}

.comparison-table td {
  text-align: center;
}

.highlight {
  color: #cc1e3e;
  font-weight: bold;
}


.antivirus-footer {
  background-color: #262626;
  color: #ccc;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 240px;
  min-width: 220px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
}

.footer-column p,
.footer-column li,
.footer-column a {
  color: #ccc;
  font-size: 15px;
  line-height: 1.8;
  text-decoration: none;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a:hover {
  color: #fff;
}

.social-icons a {
  margin-right: 12px;
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.newsletter-form {
  margin-top: 15px;
  display: block;
  flex-wrap: nowrap;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.newsletter-form button {
  background-color: #444;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background-color: #cc1e3e;
}


.disclaimer-section {
  padding: 60px 20px;
  background-color: #f7f7f7;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-container h2 {
  font-size: 28px;
  color: #cc1e3e;
  margin-bottom: 20px;
  text-align: center;
}

.disclaimer-container p {
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-section {
  padding: 70px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-container h2 {
  font-size: 32px;
  color: #cc1e3e;
  margin-bottom: 10px;
}

.contact-subtext {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}

.contact-button {
  background-color: #cc1e3e;
  color: white;
  border: none;
  padding: 14px 0;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-button:hover {
  background-color: #a91532;
}

.contact-details {
  margin-top: 40px;
  font-size: 15px;
  color: #333;
  text-align: left;
}

li{
  list-style: none;
}