/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #121212; /* Dark background */
  color: #e0e0e0; /* Light text color */
  text-align: center; /* Center-align all text globally */
}

header.main-header {
  background-color: #1f1f1f; /* Dark header background */
  padding: 10px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align the content */
}

.clicked {
  color: red;
}


.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 100%; /* Full width to make it a banner */
  max-width: 1000px; /* You can control the max-width to fit your container */
  height: auto; /* Automatically adjust the height to keep the aspect ratio */
  border: none; /* Remove border if not needed */
}

.main-nav {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.main-nav button {
  background: none;
  border: none;
  color: #e0e0e0;
  font-size: 1rem;
  margin: 5px;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 10px;
}

.main-nav button:hover {
  color: #007acc; /* Highlight color */
}

.container {
  margin-top: 80px; /* Adjust for fixed header */
  padding: 20px;
  text-align: center; /* Center-align content inside the container */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center-align the container content */
}

h1, h2, h3 {
  color: #007acc; /* Accent color for headings */
  text-align: center; /* Center-align headings */
}

h1 {
  font-size: 2rem;
  margin: 20px 0;
}

h2 {
  font-size: 1.5rem;
  margin: 15px 0;
}

h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.about-us {
  text-align: center; /* Center-align About Us section */
  max-width: 800px; /* Optional, to limit the width of the content */
  margin: 0 auto;
}

.milestones {
  text-align: left; /* Keep milestones left-aligned */
  display: inline-block; /* Prevent it from expanding to full width */
  margin: 0 auto;
}

.milestones ul {
  list-style-type: none; /* Remove bullets */
  padding: 0;
}

.milestones li {
  margin: 10px 0;
}

.donate-button {
  text-align: center;
  margin: 30px 0;
}

.donate-button h2 {
  color: #007acc; /* Accent color */
  margin-bottom: 15px;
}

.donate-button p {
  color: #e0e0e0; /* Light text color */
  margin-bottom: 20px;
}

.donate-button img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.donate-button img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
}

/* New Styles for Bot Images */
.bot-icon {
  width: 100px; /* Set a fixed size for the bot icons */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Optional: add rounded corners */
  border: 2px solid #333; /* Optional: add border for contrast */
}

/* Center the support button */
.support-button-container {
  text-align: center;
  margin-top: 50px; /* Space above the button */
}

.support-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  color: #ffffff; /* White text */
  background-color: #007acc; /* Accent color for the button */
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.support-button:hover {
  background-color: #005999; /* Darker shade for hover effect */
  transform: scale(1.05); /* Slight zoom on hover */
}

/* Responsive Design Adjustments */
@media (max-width: 1024px) {
  .container {
    padding: 20px;
    margin-top: 120px; /* Increase margin-top for fixed header on tablets */
  }

  .logo {
    max-width: 800px; /* Resize the logo for tablets */
  }

  .main-nav {
    flex-direction: column;
    align-items: center;
  }

  .main-nav button {
    margin: 5px 0;
    font-size: 1rem; /* Adjusted font size for tablets */
  }

  .support-button {
    font-size: 0.9rem; /* Adjust button text size for tablets */
    padding: 12px 25px; /* Adjust padding for tablets */
  }
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
    margin-top: 120px; /* Increase margin-top for fixed header on mobile screens */
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .logo {
    width: 80%; /* Adjusted logo size for mobile screens */
  }

  .main-nav button {
    margin: 5px 0;
    font-size: 0.9rem; /* Adjusted font size for mobile screens */
  }

  .support-button {
    font-size: 0.8rem; /* Adjust button text size for mobile screens */
    padding: 10px 20px; /* Adjust padding for mobile screens */
  }
}

.doc-viewer {
  width: 100%; /* Full width for mobile devices */
  min-height: 600px; /* Adjust height as needed */
  border: none;
}
