.menu-section {
    padding: 20px 20px;
    text-align: center;
}

.menu-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.menu-heading {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary-color); /* root la define panna color use pannunga */
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.menu-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 8px auto 0;
  border-radius: 5px;
}


.menu-section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--secondary-color) !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    border-radius: 2px;
}

.menu-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    color: var(--black);
    text-align: center;
    padding-bottom: 20px;
}

.menu-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.menu-card h4 {
    margin-top: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.menu-card .border-line {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 8px auto 12px auto;
    border-radius: 2px;
}

.menu-card p {
    padding: 0 15px;
    font-size: 0.95rem;
    color: var(--black);
}

/* Hover animation */
.menu-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}