body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    margin-bottom: 20px;
}

.card {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-title {
    font-size: 24px;
    font-weight: bold;
}

.card-body {
    padding: 20px;
}
.footer {
    background-color: #f5c8c8;
    padding: 40px 0;
    margin-top: 40px; /* Space above the footer */
}
.footer .footer-bottom {
    background-color: #e1e1e1;
    padding: 20px 0;
    text-align: center; /* Center text in footer bottom */
}
.footer .social-icons a {
    margin: 0 10px;
    color: #333;
    font-size: 1.5rem; /* Larger social icons */
}
.footer .social-icons a:hover {
    color: #b1d1f3;
}
.footer .footer-links a {
    display: block;
    font-size: 1.2rem; /* Larger links */
    margin-bottom: 10px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s, font-size 0.3s;
}
.footer .footer-links a:hover {
    color: #b1d1f3;
    font-size: 1.3rem; /* Interactive effect on hover */
}
.footer .contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.footer .contact-info i {
    margin-right: 10px;
}
.carousel-item {
    height: 200px; /* Adjust height as needed */
  }

  .logo img {
    max-width: 150px; /* Adjust logo size as needed */
  }

  .navbar-nav .nav-link {
    color: #333;
    transition: color 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    color: #b1d1f3;
  }

  .navbar-nav .nav-link.active {
    color: #fff;
    background-color: #b1d1f3;
  }
