/* General Styles */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Montserrat", serif; */
}
html{
  scroll-behavior: smooth;
}
body {
    background-color: #e5e5e5;
    font-family: Arial, sans-serif;
  }
  
  .navbar {
    background-color: brown;
    padding: 0;
    margin: 0;
  }
  
  .logo {
    width: 80px;
    height: auto;
  }
  
  .navbar-nav.mx-auto {
    justify-content: center;
  }
  
  .nav-link {
    color: white;
    text-decoration: none;
  }
  
  .nav-link:hover {
    color: lightgray;
  }
  
  .bgimg img {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
  }
  .heading{
    font-size: 50px;
    text-align: center;
    margin-top: 50px;
    font-family: "Montserrat", sans-serif;
  }
  /* Cards Styles */
  .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
  }
  
  .card img {
    height: 180px;
    object-fit: contain;
  }
  
  .card .card-body {
    padding: 15px;
  }
  
  .row {
    margin-top: 10px;
  }

  /* Footer Main Styles */
/* Footer Main Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  position: relative; /* Ensure the footer is positioned properly */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.footer-section {
  flex: 1 1 calc(25% - 20px);
  margin: 10px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f9c74f;
}

.footer-section p,
.footer-section ul li a {
  font-size: 14px;
  color: #ddd;
  text-decoration: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a:hover {
  color: #f9c74f;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icons a {
  color: #ddd;
  font-size: 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #f9c74f;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center; /* Center-align the text */
  margin-top: 20px;
  border-top: 1px solid #555;
  flex-wrap: wrap;
  padding-top: 10px;
  font-size: 14px;
  color: #aaa;
  position: absolute; /* Position it at the bottom */
  width: 100%;
  bottom: 0;
  left: 0;
}
