 /* Global Font Styles */
body {
  font-family: "Comic Relief", system-ui;

}

h1, h2, h3, h4, h5, h6, .call-btn {
  font-family: "Comic Relief", system-ui;


}
.defencecode-header {
    background: #081f3f;
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);


  }

  .defencecode-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .defencecode-logo a {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
  }

  .defencecode-logo span {
    color: #00ffcc;
  }

  .defencecode-nav {
    flex: 1;
    margin-left: 40px;
  }

  .defencecode-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
  }

  .defencecode-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.3s;
  }

  .defencecode-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .defencecode-call a {
    background: #00ffcc;
    color: #081f3f;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
  }

  .defencecode-call a:hover {
    background: #ffffff;
    color: #081f3f;
  }

  .menu-toggle {
    display: none;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .defencecode-nav {
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      background: #081f3f;
      flex-direction: column;
      display: none;
    }

    .defencecode-menu {
      flex-direction: column;
      gap: 0;
    }

    .defencecode-menu li {
      text-align: center;
      padding: 10px 0;
    }

    .defencecode-nav.active {
      display: flex;
    }

    .menu-toggle {
      display: block;
    }
  }
   .defencecode-banner {
    background: linear-gradient(135deg, #081f3f, #00ffcc);
    color: #ffffff;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 0 20px;
  }

  .banner-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
  }

  .defencecode-banner h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
  }

  .defencecode-banner p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
  }

  .banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
  }

  .btn-primary {
    background: #ffffff;
    color: #081f3f;
  }

  .btn-primary:hover {
    background: #00ffcc;
    color: #081f3f;
  }

  .btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
  }

  .btn-secondary:hover {
    background: #ffffff;
    color: #081f3f;
  }

  /* Antivirus floating elements */
  .antivirus-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
  }
  .antivirus-elements i{
    font-size: 150px;
  }
  .element {
    position: absolute;
    font-size: 40px;
    opacity: 0.1;
    animation: floatElement 15s linear infinite;
  }

  .shield {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
  }

  .lock {
    top: 30%;
    right: 15%;
    animation-delay: 3s;
  }

  .firewall {
    bottom: 20%;
    left: 10%;
    animation-delay: 6s;
  }

  .antivirus {
    bottom: 10%;
    right: 25%;
    animation-delay: 9s;
  }

  @keyframes floatElement {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(20deg); }
    100% { transform: translateY(0px) rotate(0deg); }
  }

  @media (max-width: 768px) {
    .defencecode-banner h1 {
      font-size: 32px;
    }

    .defencecode-banner p {
      font-size: 16px;
    }
    .element {
      font-size: 30px;
    }
  }
  .defencecode-cta{
    background-color: rgb(8 31 63) !important;
  }
  .plan-card h2{
        color: rgb(8 31 63) !important;
  }