body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    position: sticky;
    top: 0;
    background-color: #000;
    z-index: 100;
    border: 2px solid white;
    border-radius: 25px;
    max-width: 1000px;
    margin: 10px auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 40px;
}

.logo {
    height: 40px;
    pointer-events: none;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #aaa;
}

.pricing-section {
    text-align: center;
    padding: 40px 20px;
}

.pricing-section h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    background-color: #111;
    border: 2px solid white;
    border-radius: 20px;
    padding: 30px 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.03);
}

.card h2 {
    font-size: 40px;
    font-weight: 600;
    padding-bottom: -50px;
}

.featured {
    width: 300px;
}

.icon {
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

.check {
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.card ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.8;
}

button.order-btn {
  padding: 12px 90px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background-color: #00b894;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button.order-btn:hover {
  background-color: #019874;
  transform: scale(1.03);
}

.footer {
    background-color: #000;
    border-radius: 25px;
    margin: 40px 16px 0;
    padding: 24px;
    text-align: center;
    animation: slideUp 0.6s ease-out;
}

.footer-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
    animation: fadeIn 1s ease-in;
}

.footer-content p {
    font-size: 14px;
    margin: 6px 0;
    color: #ccc;
    animation: fadeIn 1s ease-in;
}

.footer-nav,
.footer-connect {
    margin: 12px 0;
    animation: fadeIn 1s ease-in;
}

.footer-nav a,
.footer-connect a {
    margin: 0 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-connect a:hover {
    color: #aaa;
}

.footer-copy,
.footer-credit {
    font-size: 12px;
    color: #888;
    margin-top: 12px;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-in {
  animation: slideUp 0.6s ease-out, fadeIn 1s ease-in;
}

.logo {
  height: 26px;
  width: auto;
  transform: scale(5.3);
  transform-origin: right center;
  position: relative;
  top: -7px;
  left: 70px;
}


.icon {
  height: 60px;
  width: auto;
  vertical-align: middle;
  margin-right: -5px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin: 20px 0;
}

.footer {
  margin-top: auto;
  padding-bottom: 80px;
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin: 40px 0 20px 0;
}

.footer-nav-columns {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.left-column {
  margin-left: 20px;
}

.right-column {
  margin-right: 200px;
  align-items: flex-end;
}

.footer-column a {
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 1rem;
  opacity: 0.9;
}

.footer-content {
  position: relative;
}

.footer-bottom-left {
  position: absolute;
  left: 20px;
  bottom: 20px;
  text-align: left;
}

.footer-bottom-left p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.4;
}

.footer-bottom-right {
  position: absolute;
  right: 20px;
  bottom: 20px;
  text-align: right;
}

.footer-bottom-right p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.4;
}

.footer-heading-block {
  position: relative;
  left: 0%;
  top: 65px;
  text-align: left;
  max-width: 400px;
}

.orderinggg {
    font-weight: bold;
}

.contactinggg {
    font-weight: bold;
}

.heh {
  pointer-events: none;
}

nav a:first-child {
  z-index: 9999;
  pointer-events: auto;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    header {
        margin: 10px;
        padding: 10px;
        flex-direction: column;
        align-items: center;
        border-radius: 15px;
    }

    .navbar {
        flex-direction: column;
        padding: 6px 10px;
    }

    nav a {
        margin: 10px 0;
        font-size: 16px;
    }

    .logo {
        transform: scale(3);
        left: 0;
        top: 0;
    }

    .pricing-section h1 {
        font-size: 32px;
    }

    .cards {
        gap: 20px;
    }

    .card {
        width: 90%;
        padding: 20px 15px;
    }

    .card h2 {
        font-size: 28px;
    }

    .card ul {
        font-size: 14px;
    }

    button.order-btn {
        padding: 10px 60px;
        font-size: 18px;
    }

    .footer-nav-columns {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .left-column,
    .right-column {
        margin: 10px 0;
        align-items: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        position: static;
        text-align: center;
        margin-top: 10px;
    }

    .footer-heading-block {
        top: 20px;
        text-align: center;
        max-width: 100%;
        left: 0;
    }

    .logo {
    display: none;
    }
}

.ratess {
  color:#6b6b6b;
  font-size: 15px;
  font-weight: normal;
}
