body {
  background-color: #f7f7f7;
}

footer {
  background-color: #f8f9fa;
  padding: 20px 0;
}

.card {
  margin-top: 50px;
}

.card-body {
  padding: 30px;
}

.navbar {
  margin-bottom: 20px;
}

/* Add this to your styles.css for more polish */
body {
  font-family: Arial, sans-serif;
}

.container {
  margin-top: 50px;
}

h1 {
  font-size: 2.5em;
  color: #333;
}

p {
  font-size: 1.2em;
  color: #666;
}

.clock-buttons a {
  margin: 10px;
  font-size: 1.2em;
  text-decoration: none;
}

/**/
.success {
  color: green;
}
.danger {
  color: red;
}

/* styles.css */
.success-message {
  color: green;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

/* styles for homepage */
/* Style the hero section */
.hero {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

/* Make the carousel images fit properly */
.carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 450px;
}

/* Style the content below */
.text-center {
  text-align: center;
}

.btn-lg {
  font-size: 1.2rem;
  padding: 12px 24px;
}

.mt-5 {
  margin-top: 50px;
}

/* styles for carousel*/
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  max-height: 400px; /* Adjust the height for better visibility */
  overflow: hidden;
}

.hero-img {
  object-fit: cover;
  width: 100%;
  height: 400px; /* Ensures uniform height */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .hero {
    max-height: 250px;
  }

  .hero-img {
    height: 250px;
  }
}

/* Fixed Footer */
footer.footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 10;
}

/* Fixed Header */
nav.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20; /* Ensure the navbar is above other content */
}

/* Hero Image Adjustment */
.hero .carousel {
  padding-top: 20px; /* Push carousel down a bit if needed */
}
