body,
html {
  margin: 0;
  padding: 0;
  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  font-family: 'Poppins', sans-serif;

  background-image: url("https://hhive.co.uk/assets/images/landing/background.svg");
  background-color: #0b0d11;


}

.dd-navbar {
  background-color: #14171f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  z-index: 9999;
  border: 2px solid rgba(0, 0, 0, 0.199);
  box-shadow: 0 8px 8px -4px rgba(0, 0, 0, 0.466),
    0 -8px 8px -4px rgba(0, 0, 0, 0.466);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.Dezer {
  font-size: 25px;
  !important font-weight: bold;
}

.navbar-links {
  display: flex;
  align-items: center;
}

.navbar-links a {
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  margin-right: 10px;
  font-weight: 300;
}

.navbar-links a:hover {
  border-bottom: 1px solid #043880;
  color: #ccc; 
}
.dd-header {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.header-content {
  display: inline-block;
  position: relative;
  text-align: center;

  max-width: 90%;

}

.header-content h1 {
  color: #fff;
  font-size: 3rem;

  margin: 0;
  font-weight: bold;
  margin-top: 20px;
  line-height: 1.5;

}

.typing-animation::after {
  content: '|';

  animation: blink-caret 0.75s infinite alternate;
}

@keyframes blink-caret {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.dd-buttons {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.buttons-full {
  color: #fff;
  background-color: #045eda;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  margin-right: 10px;
  font-size: 16px;
  border: 1px solid #045eda;
  transition: 0.3s;

}

.buttons-full:hover {
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  background-color: #043880;
  text-decoration: none;
  margin-right: 10px;
  background-color: #043880;
  font-size: 16px;

}

.buttons-clear {
  color: #ccc;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  margin-right: 10px;
}

.header-content p {
  color: #fff;
  background-color: #045eda;
  width: fit-content;
  padding: 8px;
  border-radius: 4px;
  text-align: center;

  margin: 0 auto;

}

.container {
  max-width: 1145px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 1rem;
  border-radius: 8px;
  position: relative;
  box-shadow: 0px 0px 4px #044fb9;
  overflow: hidden;
  background-image: url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwallpapercave.com%2Fwp%2Fwp11368655.jpg&f=1&nofb=1&ipt=cab4ef738bacc3661c39d19c08947ce1090e93cbb771f789043f03c47832f877&ipo=images');
  background-size: cover;
  background-position: center;
  margin-bottom: 5rem;
}

.container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #14171fb4;

}

h1,
p,
.join-button {
  position: relative;

  z-index: 1;

  color: #fff;

}

.join-button {
  display: inline-block;
  background-color: #045eda;
  color: #fff;
  font-size: 18px;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.join-button:hover {
  background-color: #0450b9;
}

@media (max-width: 768px) {
  .header-content h1 {
    font-size: 2rem;
  }

  .container {
    border-radius: 1px;

  }

  .portfolio-item {
    display: none;
  }

  .dd-navbar a {
    display: none;
  }
}

.portfolio {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  width: calc(33.33% - 20px);
  margin: 10px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0px 0px 4px #044fb9;
  transition: transform 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.767);
  color: #fff;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: opacity 0.3s ease;
}

.overlay p {
  font-size: 18px;
  margin: 0;
  padding: 20px;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .portfolio-item {
    width: calc(50% - 20px);
  }
}

.dd-pricing {
  box-shadow: 0px 0px 5px #044fb9;
  background-color: #14171f;
  background-image: url("https://hhive.co.uk/assets/images/vps/background.svg");

}

.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

p span a {
  color: #045eda;
  text-decoration: underline;

}

.plan {
  background-image: url('https://hhive.co.uk/assets/images/landing/featuresbg.svg');
  padding: 2.5rem;
  box-shadow: 0px 0px 4px #044fb9;
  margin-bottom: 5rem;
  border-radius: 5px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;

  h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
  }

  .price {
    margin-bottom: 1rem;
    font-size: 30px;
    color: #0450b9;
  }

  ul.features {
    list-style-type: none;
    text-align: left;
    color: #ccc;

    li {
      margin: 8px;

      .fas {
        margin-right: 4px;
      }

      .fa-check-circle {
        color: #045eda;
      }

      .fa-times-circle {
        color: #eb4d4b;
      }
    }
  }

  button {
    border: none;
    width: 100%;
    padding: 12px 35px;
    margin-top: 1rem;
    background-color: #045eda;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }

  &.popular {
    border: 2px solid #045eda;
    position: relative;
    transform: scale(1.08);

    span {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #045eda;
      color: #fff;
      padding: 4px 20px;
      font-size: 18px;
      border-radius: 5px;
    }
  }

  &:hover {
    box-shadow: 5px 7px 67px -28px rgba(0, 0, 0, 0.37);
  }
}
}

footer {
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  background-color: #0b0d11;
  z-index: 1;
    width: 100%;
  box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
  margin: 0;
  font-size: 16px;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
  margin-top: -2rem;
}

.faq-container {
  max-width: 800px;
  width: 90%;
  margin: auto;
  margin-top: 20px;

}

.faq-item {
  margin-bottom: 1rem;
  background-color: #14171f;
  border-radius: 5px;
  border-bottom: 1px solid #043880;
  box-shadow: 0px 0px 3px #043880;

}

.faq-question {
  padding: 10px;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 10px;
  color: #ccc;
}

.faq-item:target .faq-answer {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.faq-item:target .faq-question {
  background-color: #043880;
}

.faq-item:target .faq-question h2 {
  color: #fff;
}

.faq-item:target .faq-question h2::after {
  content: "";
  float: right;
  font-size: 18px;
  margin-right: 10px;
}

.faq-item:not(:target) .faq-question h2::after {
  content: "";
  float: right;
  font-size: 18px;
  margin-right: 10px;
}

.faq-item .faq-answer p {
  margin: 0;
}

.faq-item .faq-question h2 {
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.faq-item .faq-question h2 a {
  text-decoration: none;
  color: inherit;
  display: block;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}


.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 2rem;
}
.dd-team {
  background-color: #14171f;
  padding: 10px;
  margin-top: 5rem;
  margin-bottom: 4rem;
  box-shadow: 0px 0px 5px #043880;
background-image: url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Flh6.googleusercontent.com%2Fproxy%2Fs30HAw1A1ErcGgJNpEA1Xk9WjwBE0tiHVRowSdGhwB6ClRQ5Txs5igEfRCNQGxontw1RFBbPgT9G0abi9VnXZ_vnizE8gEOoaylZScepw0IE_Pw-ymWWbzaYyqG_HOkhfocbdYHuvvk%3Ds0-d&f=1&nofb=1&ipt=9f58ec74f42975df10f62a699f2884e9e9a79340280b74830e390928d77adaed&ipo=images");

}
.team-member {
  width: 300px;
  background-color: #0b0d11;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.team-member img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #ddd;
}

.member-info {
  padding: 20px;
}

.member-info h3 {
  margin-top: 0;
  font-size: 20px;
  color: #fff;
}

.member-info p {
  margin: 5px 0;
  font-size: 16px;
  color: #ccc;
}

.news-feed {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Styling for each news item */
.news-item {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Title styling */
.news-title {
  font-size: 1.2em;
  margin-bottom: 5px;
}

/* Summary styling */
.news-summary {
  color: #555;
}

/* Date styling */
.news-date {
  font-style: italic;
  color: #888;
  font-size: 0.9em;
}

