/* =====================
   Global Styles
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Gidole', sans-serif;
}

body {
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #0dcaf0;
}

img {
  max-width: 100%;
  height: auto;
}

/* =====================
   Top Bar
===================== */
.antivirus-topbar {
  background: #0d1b2a;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.antivirus-topbar a {
  color: #fff;
  margin-right: 15px;
}

.antivirus-topbar i {
  margin-right: 5px;
}

/* =====================
   Navbar
===================== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 15px 0;
}

.navbar-brand img {
  height: 32px;
}

.call-now .btn {
      background: linear-gradient(120deg, #0d1b2a, #1b263b);
  border: none;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 18px;
}

.call-now .btn:hover {
  background: #0bb8dc;
}

/* =====================
   Banner Section
===================== */
.modern-banner {
  padding: 80px 0;
  background: linear-gradient(120deg, #0d1b2a, #1b263b);
  color: #fff;
}

.banner-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.banner-content .subtext {
  margin: 15px 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.features-list {
  list-style: none;
  margin: 20px 0;
}

.features-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.features-list i {
  color: #0dcaf0;
  margin-right: 8px;
}

.btn-cta {
  background: #0dcaf0;
  color: #fff;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 30px;
  display: inline-block;
}

.btn-cta:hover {
  background: #0bb8dc;
}

.glass-card {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

/* =====================
   Counter Section
===================== */
.counter-section h2 {
  font-size: 2rem;
  font-weight: 700;
}

.counter-section p {
  margin-top: 5px;
  font-size: 1rem;
}

/* =====================
   About Section
===================== */
.about-us {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.about-us h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-us p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.about-image img {
  width: 100%;
  display: block;
  margin-top: 20px;
  border-radius: 10px;
}

/* =====================
   Products Section
===================== */
.antivirus-products {
  background: #f4f7fa;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-name {
  font-weight: 600;
  margin-bottom: 8px;
}

.product-price {
  margin-bottom: 15px;
}

.regular-price {
  text-decoration: line-through;
  margin-right: 10px;
  color: #777;
}

.sale-price {
     color: linear-gradient(120deg, #0d1b2a, #1b263b);
  font-weight: bold;
}

.product-card .btn {
     background: linear-gradient(120deg, #0d1b2a, #1b263b);
  border-radius: 25px;
}

.product-card .btn:hover {
  background: #0bb8dc;
}

/* =====================
   How It Works
===================== */
.how-it-works-section {
  background: #fff;
}

.step {
  margin-bottom: 20px;
}

.step h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

/* =====================
   CTA Section
===================== */
.cta {
  padding: 70px 0;
     background: linear-gradient(120deg, #0d1b2a, #1b263b);
  color: #fff;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 700;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #0dcaf0;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 15px;
}

.cta-btn:hover {
  background: #f8f9fa;
}

/* =====================
   Support Section
===================== */
.support-section {
  padding: 70px 0;
  background: #f9f9f9;
}

.support-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.support-content h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.support-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.support-content ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.support-content i {
  color: #0dcaf0;
  margin-right: 6px;
}

.support-btn {
  display: inline-block;
  background: #0dcaf0;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
}

.support-btn:hover {
  background: #0bb8dc;
}

/* =====================
   Disclaimer Section
===================== */
.disclaimer-section {
  padding: 60px 0;
  background: #fff;
}

.disclaimer-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

/* =====================
   Footer
===================== */
.footer {
  background: #0d1b2a;
  padding: 50px 0 100px;
  color: #fff;
  text-align: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  display: inline-block;
  margin: 0 10px;
}

.footer-links a {
  color: #fff;
  font-size: 14px;
}

.footer-links a:hover {
  color: #0dcaf0;
}

/* =====================
   Fixed Call Now Button
===================== */
.call-now-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0dcaf0;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  display: block;
  z-index: 999;
}

.call-now-btn i {
  margin-right: 8px;
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .support-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .call-now .btn {
    padding: 8px 15px;
    font-size: 14px;
  }
}


/* Contact Section */
.contact {
  padding: 60px 20px;
  background: #f9fbfd;
}

.contact h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Contact Info */
.contact-info {
  flex: 1 1 35%;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #007bff;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info ul li {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #444;
}

.contact-info i {
  color: #007bff;
  margin-right: 10px;
}

/* Contact Form */
.contact-form {
  flex: 1 1 60%;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.contact-form button {
      background: linear-gradient(120deg, #0d1b2a, #1b263b);
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #0056b3;
}
