*,
*::before,
*::after {
  margin: 0 !important;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #ffc107 !important;
}

body {
  background-color: #000;
}

.navbar {
  background: rgba(0, 0, 0, 0.444)
}

.navbar-nav .nav-item .nav-link {
  position: relative;
  text-decoration: none;
  color: #ffc107;
  text-transform: uppercase;
  /* Text color (text-warning equivalent) */
  transition: color 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #ffdd57;
  /* Slightly brighter color on hover */
}

.navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  /* Distance from the text */
  left: 0;
  width: 0;
  height: 2px;
  /* Thickness of the border */
  background-color: #ffc107;
  /* Border color */
  transition: width 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::after {
  width: 100%;
  /* Full width on hover */
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display SC", serif;
  font-weight: 400;
}

h2 {
  font-size: 50px;
}

.nav-link {
  font-size: 20px;
}

.bg-black {
  background: black;
}

.hero {
  background-image: url("images/hero.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  top: 60px;
}
#about{
  top: 40px;
}

.menubg {
  background-image: linear-gradient(rgba(9, 22, 29, 0.326), rgba(9, 22, 29, 0.321)), url("images/menu-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: end;
  align-items: center;

}

.menubg h1 {
  font-size: 100px;
  background: -webkit-linear-gradient(#e61717, #ffeb15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  right: 100px;
}

.hero h5 {
  font-size: 70px;
  padding-bottom: 50px;
  font-weight: 300;
}

#button {
  display: none;
  /* Hidden by default */
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 1000;
  background-color: #ffc107;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s, transform 0.3s;
}

#button i {
  font-size: 24px;
}

#button:hover {
  transform: scale(1.1);
}

.hero .btns {
  margin-bottom: 150px;
}

.btns {
  background: none;
  border: 1px solid #ffc107;
  border-radius: 4px;
  color: white !important;
}

.btns:hover {
  background-color: #ffc107;
  color: black !important;
}


.order-btn {
  background: #9f0209;
  border: 1px solid #ffc107;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: nunito,roboto,proxima-nova,"proxima nova",sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 16px;
  min-height: 40px;
  outline: 0;
  padding: 12px 14px;
  text-align: center;
  text-rendering: geometricprecision;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}

.order-btn:hover,
.order-btn:active {
  background-color: initial;
  background-position: 0 0;
  color: #ffffff;
}

.order-btn:active {
  opacity: .5;
}

.service img {
  border-radius: 10px;
}

.contact-bg {
  background-image: linear-gradient(rgb(9 22 29 / 49%), rgb(9 22 29 / 49%)), url("images/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.overflow-hidden {
  overflow: hidden;
}

.animate_zoomIn {
  animation: zoom 15s;
  width: 100%;
  height: 100vh;
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.5, 1.5);
  }
}

.image-class {
  /* Your other styles for the image */
  animation: moveUpDown 5s linear infinite alternate;
}

.shape2 {
  transition: 0.5s ease-in-out;
}

.shape2:hover {
  transform: scale(1.1);
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
    /* Start position */
  }

  50% {
    transform: translateY(-20px);
    /* Mid position, move up */
  }

  100% {
    transform: translateY(0);
    /* End position, back to start */
  }
}

@media (max-width: 768px) {
  .animate_zoomIn {
    height: 58vh;
  }

  .navbar-nav .nav-item .nav-link::after {
    display: none;
  }

  .navbar {
    background-color: rgb(0, 0, 0);
  }

  .navbar-collapse {
    background: #000;
    border-radius: 10px;
    padding: 10px;
  }

  .marquee span {
    font-size: 110px !important;
  }

  .footer p {
    font-size: 12px;
  }

  .menubg h1 {
    right: 0px;
  }

  #button {
    bottom: 15px;
    width: 40px;
    height: 40px;
  }

  .fixed-div {
    background-color: #9f0209;
    position: fixed;
    bottom: 0;
    display: block !important;
  }
  .footer {
    padding-bottom: 6rem !important;
  }
}

.about-bg {
  background-color: #9f0209;
  border-radius: 20px;
  padding: 20px 30px;
  border: 1px solid #ffc107;
}

.about-bg p {
  font-size: 18px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.marquee span {
  text-transform: uppercase;
  will-change: transform;
  transform: translateX(0);
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  font-size: 200px;
  font-family: 'Gravitas One', Helvetica, Arial, sans-serif;
  font-weight: 900;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #9f0209;
  color: #000;
}

.rounded {
  object-fit: cover;
}

.form-control {
  background-color: #9f0209 !important;
  color: rgb(255, 255, 255);
  border: none !important;
  border-bottom: 1px solid white !important;
}

.form-control:focus {
  background-color: #f8e9e936 !important;
  color: rgb(255, 255, 255) !important;
  box-shadow: none !important;
}

::placeholder {
  color: rgb(179, 175, 175) !important;
  
}

.footer {
  background-color: #0a0707;
  color: rgba(255, 255, 255, 0.793);
  bottom: 0;
  border-top: 1px solid #ffc107;
}

.footer-address p i {
  font-size: 15px;
  color: #ffc107;
}

.bi {
  font-size: 24px;
}

.icon:hover {
  color: #ffc107 !important;
}

.col-12 {
  border: 1px solid #ffc107;
  border-radius: 20px;
}

.col-12 h4 {
  color: #ffeb15;
}

.col-12 h2 {
  background: -webkit-linear-gradient(#e61717, #ffeb15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fixed-div {
  display: none;
}

.value-math {
  opacity: 0;
  height: 0;
}
.opening-col{
  color: white;
  border: 1px solid #ffc107;
  padding: 50px;
  line-height: 2;
}
.contact-sidecol{
  border: 1px solid #ffc107;
  padding: 10px;
}
.border-r{
  border-right: 1px solid #ffc107;
}



@media (max-width: 767px) {
  .halal-img {
    width: 20%;
  }
  #about{
    top: 0px;
  }
  .about-bg {
    background-color: #9f0209;
    border-radius: 20px;
    padding: 20px 10px;
  }
  /* .hero {
    height: 34vh;
    position: relative;
    top: 92px;
  } */
  .hero {
    background-image: url("images/hero-mobile.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 90vh;
    position: relative;
    top: 33px;
  }
  .opening-col{
    padding: 10px;
  }
  #button{
    bottom: 95px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    height: 60vh;
    position: relative;
    /* top: 112px; */
  }
  #button{
    bottom: 22px;
  }
}

@media (min-width: 375px) and (max-width: 400px) {
  .hero {
    height: 100vh;
    position: relative;
    /* top: 58px; */
  }
}