body {
    margin: 0;
    padding: 0;
    background-color: #2c2c2c;
    font-family: poppins;
    font-size: 1.25rem;
  }

  .box {
    width: 140px;
    height: auto;
    transition: .5s linear;
    position: relative;
    display: block;
    overflow: hidden;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin: 20px auto; 
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
    font-family: poppins;
}

.box:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(100%);
}


.box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
}

button {
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
    outline: none;
    border: none;
    
    background: #2c2c2c !important;
}

.nav {
    height: 4.0rem;
    display: flex;
    position: sticky;
    top: 0;
    z-index: 999;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    background-color: #2c2c2c;
}

.nav__logo img{
    height: 3.5rem;
    margin: auto 1rem;
}

.nav__menu ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.nav__menu ul li {
    list-style: none;
}

.nav__menu ul li a {
    text-decoration: none;
    color: #fff;
    padding: 1rem;
    display: block;
}

.nav li:hover {
    background-color: #262626;
}

.nav__hamburger {
    width: 1.875rem;
    height: 1.313rem;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.nav__hamburger__line {
    height: 0.188rem;
    width: 100%;
    background-color: #fff;
    border-radius: 0.625rem;
    transition: all ease-in-out 0.2s;
}

.services h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.container {
    width: 80%;
    max-width: 1250px;
    margin: 50px auto;
    text-align: center;
}

.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.plan {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}
.plan h3 {
    font-size: 1.5rem;
}
.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
}
.plan ul {
    list-style: none;
    padding: 0;
}
.plan ul li {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.footer {
    background-color: #2c2c2c;
    margin-top: 160px;
    padding: 16px;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo img {
  height: 32px;
  margin-right: 8px;
}
.footer-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-right: 16px;
}
.footer-links a {
  text-decoration: none;
  color: #555;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-top: 16px;
  border-top: 1px solid #ddd;
  padding-top: 16px;
}
  
  @media screen and (max-width: 550px) {
    .footer-links li {
      font-size: 1.125rem;
    }
    .nav__hamburger {
      display: flex;
    }
    .nav__menu {
      position: absolute;
      display: flex;
      align-items: center;
      background-color: #2c2c2c;
      top: -20rem;
      width: 100%;
      transition: all ease-in-out 0.4s;
    }
    .nav {
      flex-direction: column;
      align-items: flex-start;
      
    }
    .nav__menu ul {
      flex-direction: column;
      width: 100%;
      padding: 3rem 0 0.6rem;
    }
    .nav__menu ul li {
      text-align: center;
    }
    .nav__menu ul li a {
      padding: 0.5rem;
    }
    .nav__menu {
      z-index: -1;
    }
    .nav__menu.active {
      top: 0;
    }
    .nav__hamburger.active :nth-child(1) {
      transform: rotate(45deg) translate(0.45rem, 0.1875rem);
    }
  
    .nav__hamburger.active :nth-child(2) {
      opacity: 0;
    }
  
    .nav__hamburger.active :nth-child(3) {
      transform: rotate(-45deg) translate(0.45rem, -0.1875rem);
    }
  }
