body {
  font-family: sans-serif;
  background-color: #000;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  color: white;
}

/* Header Styles */
header {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
}

/* Mizizi AI Title */
h1 {
  margin: 0;
  font-size: 24px;
  color: white;
  flex-grow: 1; /
  text-align: center;
  
}
/* Hero Section */
hero {
  background-image: url("assets/3.png"); /* Background image */
  background-size: cover;
  background-position: center;
  height: 500px; /* Adjust height as needed */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; /* Center text within the hero */
}

hero .container {
  max-width: 800px; /* Limit text width for readability */
}

hero h1 {
  font-size: 3rem;  /* Larger heading */
  margin-bottom: 15px;
}

hero .intro {
  margin-bottom: 30px;
}
.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full height of the viewport */
}
#testimonials {
  background-color: black; /* Slightly lighter shade */
  padding: 40px 0;
}

#testimonials h2 {
  color: #f3efef;
  text-align: center;
  margin-bottom: 30px;
}

.gallery-container {
  text-align: center;
  margin: 20px;
}
.gallery-img {
  width: 80%;
  height: auto;
  margin-bottom: 10px;
}
.nav-btn {
  padding: 10px;
  margin: 5px;
  font-size: 16px;
}
.testimonial-item {
  background-color:black;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto; /* Center within carousel */
}

.client-info {
  display:center;
  align-items: center;
  margin-top: 15px;
}

.client-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 10px;
}
#services {
  padding: 40px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px; 
}

.service-card {
  text-align: center;
  background-color: black;
  padding: 20px;
  border-radius: 5px;
}

.service-card img {
  max-width: 80px;
  margin-bottom: 15px;
}
/* If you want to highlight specific services */
.service-card:nth-child(1), 
.service-card:nth-child(4) { /* Example: Target first & fourth card */
    background-color:black; /* Your accent color */
    color: #fff; 
}
#news {
  padding: 40px 0;
  background-color:black; /* Light background for separation */
}

.news-items {
  display: flex; /* Arrange news items horizontally */
  justify-content: space-between; /* Even spacing */
  flex-wrap: wrap; /* Wrap to a new line if needed */
}

.news-item {
  width: 30%; /* Adjust based on how many items per row */
  margin-bottom: 20px;
  background:black;
  padding: 15px;
}

.news-item img {
  max-width: 100%; 
  height: auto;
  margin-bottom: 10px;
}

.excerpt {
  margin-bottom: 10px;
}
#team {
  padding: 40px 0;
  background-color: #000000; /* Light background for differentiation */
}

.team-members {
  display: flex;
  flex-wrap: wrap; /* Allow members to wrap to a new line */
  justify-content: space-around;
}

.team-member {
  text-align: center;
  background:black;
  margin: 15px;
  padding: 20px;
  border-radius: 5px;
}

.team-member img {
  max-width: 150px;
  height: auto;
  border-radius: 50%; 
  margin-bottom: 10px;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.social-links a {
  display: inline-block;
  margin: 0 5px;
  color:white;
} 
#lead-capture {
  background-color: black;
  padding: 40px 0;
  text-align: center;
}

#lead-capture h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

#lead-capture p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

#capture-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

#capture-form input[type="email"] {
  padding: 10px 20px;
  border: 1px solid black;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 1em;
}

#capture-form button {
  padding: 10px 20px;
  background-color:white;
  color:black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#capture-form button:hover {
  background-color: black;
}
.download-pdf-btn {
  display: inline-block;
  margin-top: 20px; /* Adjust as needed */
  padding: 10px 20px;
  background-color: white; /* Bootstrap primary color for example */
  color: black;
  text-decoration: none;
  border-radius: 5px;
}

.download-pdf-btn:hover {
  background-color: white; /* Darker shade for hover effect */
}/* Dropdown Button */
.dropbtn {
  background-color:black;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* Dropdown container (hidden by default) */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: black;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}



main {
  margin-top: 20px;
  padding: 20px;
}

main h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

main p {
  margin-bottom: 10px;
}

main ul {
  list-style-type: none;
  padding: 0;
}

main li {
  margin-bottom: 10px;
}

main a {
  text-decoration: none;
}

main a:hover {
  color: #000;
}

#carousel {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

#carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section {
  padding: 20px;
}

section h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

.service-card img {
  width: 80px;
  margin-bottom: 15px;
}

.learn-more {
  display: block;
  background-color: black;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
}

.learn-more:hover {
  background-color: #333; /* Darken button color on hover */
}
}

.search-bar {
  margin-bottom: 20px;
  display: flex;
}

.search-bar input[type="text"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
}

.search-bar button[type="submit"] {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 15px;
}

.kb-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.kb-category ul {
  list-style-type: disc;
}

.learn-more {
  display: block;
  background-color: black;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
}

.demo-tabs {
  margin-bottom: 20px;
}

.demo-tab {
  background-color: #f0f0f0;
  border: none;
  padding: 10px 15px;
  margin-right: 5px;
  cursor: pointer;
}

.demo-tab.active {
  background-color: black;
  color: #fff;
}

.demo-content {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
}

.login-message {
  margin-bottom: 20px;
}

#login-form,
#dashboard-content {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
}

.contact-info {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 5px;
}

.contact-form form {
  /* Style your form fields and buttons */
}

footer {
  background-color: #f1f1f1;
  padding: 20px;
  text-align: center;
}
#knowledge-base {
  padding: 40px 0;
}

.search-bar {
  margin-bottom: 20px;
}

.search-bar input[type="text"] {
  width: 100%; 
  padding: 10px 15px;
  border: 1px solid black;
  border-radius: 5px;
}

.kb-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.kb-section {
  background-color: black;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
#ai-demos {
  padding: 40px 0;
}

.demo-card {
  margin-bottom: 20px;
  background-color:black;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
#auth-section {
  padding: 40px 0;
  text-align: center;
}

#login-form,
#signup-form {
  display: inline-block; /* To position them side-by-side */
  width: 40%; /* Adjust as needed */
  padding: 20px;
  border: 1px solid black;
  border-radius: 5px;
}
#subscription-billing {
  padding: 40px 0;
}

.current-plan, .available-plans, .billing-history, .payment-info {
    margin-bottom: 20px;
    background-color: black;
    padding: 20px;
    border-radius: 5px;
}

.available-plans {
  /* Style to display plans side-by-side or as a list */
}
/* Additions to your existing CSS */
.dropdown {
  position: relative; /* To contain the dropdown menu */
}

.dropdown-toggle {
  background-color: rgb(16, 15, 15); /* Example color */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.dropdown-menu {
  display: none; /* Initially hidden */ 
  position: absolute;
  background-color: #fff; 
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-menu a {
  color: #333;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
}

/* Show menu on hover */
.dropdown-menu a:hover {
    background-color: black;  
}

.dropdown:hover .dropdown-menu {
  display: block;
}
#usage-tracking, 
#analytics-reports, 
#subscription-billing {
    display: none; 
}
.active-section {
  display: block;
}
#contact {
  padding: 40px 0;
  text-align: center;
}

.contact-info, .contact-form {
  margin-bottom: 40px;
}

.contact-info {
  background-color:black;
  padding: 20px;
  border-radius: 5px;
}
/* Base styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

header h1 {
  color: #fff;
}

.dropdown-content, .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a, .dropdown-menu a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content, .dropdown:hover .dropdown-menu {
  display: block;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .container, header, main {
    padding: 0 20px;
  }

  .dropdown-content, .dropdown-menu {
    min-width: 120px;
  }
}

@media screen and (max-width: 480px) {
  header h1, main h2, main h3 {
    font-size: 1.5em;
  }
}