html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

.bgimg {
  height: 100vh; /* Ensure full screen height */
  width: 100vw;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  box-sizing: border-box;
  gap: 20px;
}
@media screen and (min-width: 1400px) and (max-width: 2400px)  {

}

/* Logo */
.logo img {
  height: 120px;
  max-width: 100%;
  display: block;
}

/* Main Title */
.middle {
  max-width: 800px;
  margin: 0 auto 15px auto;
}
.middle h2 {
  color: #ef7c00;
  font-size: 70px;
  font-weight: bold;
  margin: 10px 0;
}
.middle h2 span {
  color: #e3000f;
}
.middle p {
  color: #000;
  font-size: 20px;
  padding: 0;
  margin: 0;
  line-height: 26px;
  font-style: italic;
}

/* Social Icons */
.social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 5px;
}
.menu-btn-section p {
  margin-bottom: 15px;
  padding: 0;
  margin-top: 0;
}
.social a {
  font-size: 12px;
  padding: 7px 15px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: block;
}
.social-f a {
  background-color: #0866ff;
  border: 1px solid #0866ff;
}
.social-i a {
  background-color: #ff8f3f;
  border: 1px solid #ff8f3f;
}
.social-y a {
  background-color: #ff0033;
  border: 1px solid #ff0033;
}
.contact a {
  text-decoration: none;
  font-size: 30px;
  color: red;
  font-weight: 700;
}
/* Footer */
.footer {
  text-align: center;
  font-size: 12px;
  color: #000;
}
.footer a {
  color: #000000;
  text-decoration: none;
}
.menu-btn {
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background: #009688;
  display: block;
  width: fit-content;
}
.menu-btn-section img {
  height: 120px;
  margin-bottom: 15px;
}
.menu-btn-section {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .middle h2 {
    font-size: 50px;
    margin: 0px 0;
  }
  .middle h2 span {
    font-size: 50px;
  }
  .middle p {
    font-size: 14px;
    margin: 0;
    line-height: 20px;
  }
  .logo img {
    height: 100px;
  }
.social a {
  font-size: 18px;
  padding: 10px 10px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.contact a {
  text-decoration: none;
  font-size: 40px;
  color:red;
}
.footer {
  text-align: center;
  font-size: 14px;
  color: #000;
  padding-top: 20px;
}
  .middle {
    max-width: 100%;
    margin: 10px auto 10px auto;
  }
  .menu-img-section img {
    margin-bottom: 2px;
  }

}

@media (max-width: 480px) {
  .middle h2 {
    font-size: 40px;
  }
  .middle h2 span {
    font-size: 40px;
  }
  .social a {
    font-size: 12px;
    padding: 10px 10px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-weight: 600;
  }
.contact a {
  text-decoration: none;
  font-size: 30px;
  color:red;
}
.footer {
  text-align: center;
  font-size: 14px;
  color: #000;
  padding-top: 20px;
}
  .bgimg {
    height: auto;
  }
  .logo img {
    height: 70px;
  }
  .menu-btn-section img {
    height: 100px;
    margin-bottom: 15px;
  }
  .social {
    gap: 5px;
  }

}
@media (max-width: 350px) {
  .middle h2 {
    margin-top:-30px;
    font-size: 30px;
  }
  .middle h2 span {
    font-size: 30px;
  }
  .social a {
  font-size: 13px;
  padding: 10px 5px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.contact a {
  text-decoration: none;
  font-size: 30px;
  color:red;
}
.footer {
  text-align: center;
  font-size: 12px;
  color: #000;
}
.footer span {
  color: red;
}

}
.menu-img-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  overflow-y: scroll;
}
.menu-img-section img {
  width: 100%;
  height: 100vh;
  object-fit: contain;
}
body {
  position: relative;
}
body:before {
  content: "";
  background: url(../images/bg.jpg);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-position: center;
}