/* Reset and Base Styles */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #121212; /* Dark mode background */
  color: #ffffff;
}

/* Navbar Container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000000; /* Pure black background */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
}

/* Logo Styling */
.navbar .logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.navbar .logo:hover {
  transform: scale(1.1);
  text-shadow: 0 0 8px #ffffff;
}

.navbar .logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

/* Navbar Links Container */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

/* Link Styling */
.nav-links a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #f0f0f0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA Button */
.cta {
  padding: 0.5rem 1.5rem;
  background-color: #ffffff;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cta:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: transform 0.3s ease-in-out;
}

/* Responsive Navbar */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #000000;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    gap: 1rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* Footer Styles */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
  color: #f0f0f0;
}

.socials {
  display: flex;
  gap: 0.5rem;
}

.socials a {
  font-size: 1.2rem;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.socials a:hover {
  color: #f0f0f0;
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
}

/* Pricing Section */
.pricing {
  margin-top: -70px;
  padding: 4rem 2rem;
  text-align: center;
  background-color: #181818; /* Matches theme */
  color: #ffffff;
}

.pricing h2 {
  font-size: 2.5rem;
  color: #ffffff; /* Highlight color */
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #ffffff;
}

.pricing p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.pricing-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.category {
  background: #222222;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.category:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
}

.category h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category ul li {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category ul li::before {
  content: "•";
  color: #ffffff;
  margin-right: 0.5rem;
}

.category ul li span {
  font-size: 0.9rem;
  color: #cccccc;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .pricing h2 {
    font-size: 2rem;
  }

  .category {
    padding: 1.5rem;
  }

  .category h3 {
    font-size: 1.5rem;
  }
}
