*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.herSection
{
    width: 100%;
    height: 80vh;
    background: url("../images/banner.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.aboutPakFood
{
    width: 75%;
    background-color: rgb(221, 224, 224);
    margin: 30px auto;
    padding: 30px;
}
.aboutPakFood h1
{
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.4);
}

.aboutPakFood p
{
    text-align: justify;
    line-height: 1.9;
    font-size: 18px;
}

.headingText 
{
    text-align: center;
    margin: 30px auto;
    color: yellow;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.4);
}
.menuCard
{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px auto;
}

.flip-card {
    background-color: transparent;
    width: 300px;
    height: 300px;
    border: 1px solid #f1f1f1;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
  }
  
  /* This container is needed to position the front and back side */
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  /* Position the front and back side */
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
  }
  
  /* Style the front side (fallback if image is missing) */
  .flip-card-front {
    background-color: #bbb;
    color: black;
  }
  
  /* Style the back side */
  .flip-card-back {
    background-color: lightskyblue;
    color: white;
    transform: rotateY(180deg);
  }