@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fc;
  color: #333;
  scroll-behavior: smooth;
}

.header {
    background: #007BFF;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.navbar {
  background-color: #1E3A8A;
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}

.navbar-nav .nav-item {
    margin-right: 30px; /* Adjust spacing between buttons */
  }
  
  .navbar-nav .nav-item:last-child {
    margin-right: 0; /* Prevent extra spacing on the last item */
  }

.landing-page .btn-primary {
  background-color: #3B82F6;
  border: none;
  transition: transform 0.3s ease-in-out;
}

.landing-page .btn-primary:hover {
  background-color: #2563EB;
  transform: scale(1.05);
}

.landing-page .card {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.landing-page .card:hover {
  /*transform: translateY(-10px);*/
}

.hero-section {
    background: url("/landing/banner4.png") no-repeat center center;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .features, .pricing, .cta {
    padding: 40px;
  }
  
  .feature-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .feature {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
    font-size: 2.5rem; /* Larger icon size for emphasis */
  }
  
  .card-title {
    font-weight: 600; /* Make headings more prominent */
  }

  .hero-section {
    background: url("/landing/banner4.png") no-repeat center center;
    background-size: cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  
  .hero-content {
    background: rgba(255, 255, 255, 0.8); /* Subtle semi-transparent background for better readability */
    padding: 30px;
    border-radius: 12px;
    max-width: 700px;
  }
  
  .hero-section h1 {
    color: #1E3A8A;
    font-size: 3rem;
    font-weight: 700;
  }
  
  .hero-section p {
    color: #333;
    font-size: 1.4rem;
  }
  
  .highlight {
    color: #2563EB; /* Modern accent color */
  }
  
  .card-title {
    font-size: 1.3rem; /* Adjust title size */
    font-weight: 600; /* Make it slightly bolder */
  }
  
  /* PRICING */

  .pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .pricing-icon {
    font-size: 2rem;
    color: #2563EB;
    margin-bottom: 10px;
  }
  
  .pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
  }
  
  .pricing-card .price {
    font-size: 1.8rem;
    color: #3B82F6;
    font-weight: bold;
  }
  
  .pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
  }
  
  .pricing-card ul li {
    margin: 8px 0;
    font-size: 1.1rem;
  }
  
  .pricing-card .btn-container {
    margin-top: auto;
    display: flex;
    justify-content: center;
  }

  .user-roles {
    background: #f8f9fc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    text-align: left;
  }
  
  .user-roles h4 {
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .user-roles p {
    margin: 5px 0;
    font-weight: 500;
  }

  /* DEPLOYMENT */

  #deployment h4 {
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  #deployment p {
    font-size: 1.1rem;
  }
  
  .bg-light {
    background-color: #f8f9fc !important;
  }
  
  .shadow {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* FOOTER */

  footer.landing {
    background-color: #1E3A8A;
    color: white;
  }
  
  footer h5 {
    font-weight: 600;
  }
  
  footer ul li a:hover {
    text-decoration: underline;
  }
  
  .border-light {
    border-color: rgba(255, 255, 255, 0.3);
  }
