css .hero-section {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background-color: rgba(0, 0, 0, 0.5); dark overlay */
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.quick-links {
  padding: 2rem;
  background-color: #fce4ec;
  /* light pink */
  text-align: center;
}

.quick-links h2 {
  color: #d81b60;
  /* matching pink */
  margin-bottom: 1rem;
}

.links-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.links-container a img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.links-container a img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  position: sticky;
  top: 0;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 20px;
  color: #333;
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #d94f30;
}

.signin-btn {
  margin-left: 20px;
  padding: 8px 15px;
  background-color: #d94f30;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.signin-btn:hover {
  background-color: #b13d25;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  margin-left: 15px;
}
/* .card-title{
  box-shadow:10px 10px 5px white ;
  transition: all 0.3 ease-in-out;
  
  color: white;
} */

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}