/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

body {
    background-color: #0f0f0f;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navbar */
.navbar {
    background: #000;
    padding: 10px 5px;
    border-radius: 50px;
    display: flex;
    position: sticky;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
    margin: 0;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: 0.3s;
}

/* Hover effect */
.navbar li:hover a {
    transform: scale(0.8);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Optional: Add a tooltip effect */
.navbar li::after {
    content: attr(data-title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.navbar li:hover::after {
    opacity: 1;
}

/* General Styles */
body {
  background-color: #111;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 20px;
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  color: #bbb;
}

/* Pricing Container */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Pricing Card */
.pricing-card {
  background: #161616;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #252525;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.1);
}

.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.pricing-card p {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 15px;
}

/* Pricing Style */
.pricing-card h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.pricing-card h2 span {
  color: #4da6ff;
}

/* Button */
button {
  background-color: #4da6ff;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

button:hover {
  background-color: #3a8cd0;
}


footer {
    background-color: #111;
    color: white;
    padding: 20px;
    text-align: center;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    border-top: 1px solid white;

  }
  .footer-section h4 {
    font-weight: bold;
  }
  .footer-section ul {
    a {
        color: white; /* Change this to any color you want */
        text-decoration: none; /* Removes the underline */
    }
    
    a:hover {
        color: gray; /* Change this to the hover color you prefer */
    }
    
    list-style: none;
    padding: 0;
  }
  .footer-section ul li {
    margin: 5px 0;
    font-weight: 800;
    text-align: left;
  }
  .footer-section ul li a {
    color: white;
    text-decoration: none;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    border-top: 1px solid white;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }