/* ==================== Responsive Design ==================== */

/* Large Desktops (1700px and up) */
@media only screen and (min-width: 1700px) {
  :root {
    --color-h1-font-size: 4.5em;
    --color-p-font-size: 2em;
  }

}

/* Standard Desktops (1400px - 1699px) */
@media only screen and (min-width: 1400px) and (max-width: 1699px) {
  :root {
    --color-h1-font-size: 4em;
    --color-p-font-size: 1.8em;
  }

  .hero {
    padding: 200px 0 300px;
  }
}

/* Medium Desktops (1200px - 1399px) */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  :root {
    --color-h1-font-size: 3.5em;
    --color-p-font-size: 1.6em;
  }

  .hero h1 {
    font-size: 3.2em;
  }
}

/* Small Desktops/Laptops (992px - 1199px) */
@media only screen and (min-width: 991px) and (max-width: 1199px) {
  :root {
    --color-h1-font-size: 3em;
    --color-p-font-size: 1.4em;
    --color-btn-width: 180px;
  }

  .hero {
    padding: 150px 0 200px;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 0.8rem;
  }

  .footer-section h1 {
    font-size: 3.5em;
  }
}

/* Tablets (768px - 991px) */
@media only screen and (max-width: 991px) {
  :root {
    --color-h1-font-size: 2.5em;
    --color-p-font-size: 1.2em;
    --color-btn-width: 160px;
  }

  .hero {
    padding: 120px 0 180px;
    text-align: center;
  }

  .hero .row {
    flex-direction: column;
  }



  .about-text p
   {
    text-align: center;
  }

  .price-content {
    border-right: none;
    border-bottom: 2px solid #e7e9eb;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
 .price-content3 {
    border-right: none;
    border-top: 2px solid #e7e9eb;
    margin-top: 20px;
    padding-top: 20px;
  }

  .footer-section {
    clip-path: ellipse(180% 90% at 50% 91%);
    padding: 120px 0 20px;
  }

  .footer-section h1 {
    font-size: 2.8em;
  }

  .cta-circle {
    width: 200px;
    height: 200px;
    margin-bottom: 60px;
  }
}

/* Large Phones (576px - 767px) */
@media only screen and (max-width: 767px) {
  :root {
    --color-h1-font-size: 2em;
    --color-p-font-size: 1em;
    --color-btn-padding: 12px 20px;
  }

  .hero {
    padding: 100px 0 150px;
  }

  .hero h1 {
    font-size: 2.2em;
    line-height: 1.3;
  }

  .ai-banner {
    font-size: 12px;
    padding: 6px 12px;
  }

  .about-text h1 {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .about-text p {
    font-size: 16px;
  }

  .antivirus-header h1,
  .price-heading h1 {
    font-size: 1.8em;
  }

  .antivirus-content h3 {
    font-size: 1.5em;
  }

  .price-packges h1 {
    font-size: 2em;
  }

  .footer-section {
    clip-path: ellipse(200% 90% at 50% 91%);
    padding: 80px 0 20px;
  }

  .footer-section h1 {
    font-size: 2em;
  }

  .nav-links {
    margin-bottom: 80px;
  }

  .nav-links a {
    margin: 0 10px;
    font-size: 0.8rem;
  }
    .price-content3 {
    border-right: none;
    border-top: 2px solid #e7e9eb;
    margin-top: 20px;
    padding-top: 20px;
  }
}

/* Small Phones (480px - 575px) */
@media only screen and (max-width: 575px) {
  :root {
    --color-h1-font-size: 1.8em;
    --color-btn-width: 100%;
  }

  .hero {
    padding: 80px 0 120px;
  }

  .hero h1 {
    font-size: 1.8em;
  }

  .hero p {
    font-size: 1em;
  }

  .about-text p span {
    min-width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .price-buttom {
    padding: 8px 30px;
  }

  .footer-section {
    clip-path: ellipse(250% 90% at 50% 91%);
  }

  .subscribe-section {
    flex-direction: column;
  }

  .subscribe-section input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* Extra Small Phones (up to 479px) */
@media only screen and (max-width: 479px) {
  :root {
    --color-h1-font-size: 1.6em;
  }

  .hero {
    padding: 60px 0 100px;
  }

  .hero h1 {
    font-size: 1.6em;
  }

  .ai-banner {
    font-size: 11px;
  }

  .about-text p {
    font-size: 14px;
    gap: 10px;
  }

  .antivirus-content p {
    line-height: 30px;
  }

  .price-packges h2 {
    font-size: 1.5em;
  }

  .price-packges h1 {
    font-size: 1.8em;
  }

  .footer-section h1 {
    font-size: 1.8em;
  }

  .cta-circle {
    width: 180px;
    height: 180px;
    font-size: 0.9rem;
  }

  .contact-buttons a {
    padding: 10px 15px;
    margin: 5px;
  }
}