header {
  background-color: #000;
}
header .main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}
@media (max-width: 650px) {
  header .main-header {
    flex-wrap: wrap;
    gap: 0;
    padding: 10px 0;
  }
}
header .main-header .logo {
  display: flex;
}
header .main-header .logo img {
  width: 110px;
}
header .main-header .menu-bar {
  display: none;
}
@media (max-width: 1050px) {
  header .main-header .menu-bar {
    display: block;
    position: relative;
    z-index: 999;
  }
}
header .main-header .primary-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .main-header .primary-menu nav {
  display: flex;
}
@media (max-width: 1050px) {
  header .main-header .primary-menu nav {
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    left: -100%;
    top: 0;
    width: 100%;
    max-width: 300px;
    background-color: #000;
    z-index: 9;
    transition: all 0.5s;
  }
}
header .main-header .primary-menu .active-nav {
  left: 0%;
}
header .main-header .primary-menu a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 10px;
  letter-spacing: 2px;
  display: block;
}
header .main-header .primary-menu a:hover {
  color: #ff0000;
}
header .main-header .header-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 450px) {
  header .main-header .header-btn {
    gap: 10px;
  }
}
header .main-header .header-btn .icon {
  display: flex;
}
header .main-header .header-btn .btn1 a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ff0000;
  font-size: 20px;
}
header .main-header .header-btn .btn1 a svg {
  width: 20px;
  fill: #ff0000;
}
header .main-header .primary-btn a {
  animation: blink-bg 1s infinite; /* Add the blinking animation */
  font-size: 14px;
}

/* Blinking animation keyframes */
@keyframes blink-bg {
  0%, 100% {
    background-color: #ff0000;
  }
  50% {
    background-color: #000000; /* Slightly lighter orange color at 50% */
  }
}
.banner .img1 {
  background: url(../upload/background/banner1.jpg);
}
.banner .img2 {
  background: url(../upload/background/banner2.jpg);
}
.banner .img3 {
  background: url(../upload/background/banner3.jpg);
}
.banner .item {
  background-position: center;
  background-size: cover;
  padding: 350px;
}
@media (max-width: 650px) {
  .banner .item {
    padding: 250px;
  }
}
@media (max-width: 650px) {
  .banner .item {
    padding: 200px;
  }
}

.about-us .main-about {
  display: flex;
  gap: 40px;
}
@media (max-width: 992px) {
  .about-us .main-about {
    flex-direction: column-reverse;
  }
}
.about-us .main-about .about-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 15px;
}
@media (max-width: 992px) {
  .about-us .main-about .about-content {
    width: 100%;
  }
}
.about-us .main-about .about-content h1 {
  border-bottom: 4px dashed #a9a9a9;
  padding-bottom: 20px;
}
.about-us .main-about .about-content .hours {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4em;
  color: #464646;
}
.about-us .main-about .address strong {
  display: flex;
  gap: 10px;
}
.about-us .main-about .address strong span {
  display: block;
}
.about-us .main-about .about-img {
  width: 55%;
}
@media (max-width: 992px) {
  .about-us .main-about .about-img {
    width: 100%;
  }
}
.about-us .main-about .about-img img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 25px;
}

.order-online {
  background: url(../upload/background/background-order.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.order-online .content {
  width: 40%;
  padding: 30px;
  background: rgba(41, 41, 41, 0.2509803922);
  border-radius: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 992px) {
  .order-online .content {
    width: 60%;
  }
}
@media (max-width: 650px) {
  .order-online .content {
    width: 100%;
  }
}
.order-online .content p {
  color: #fff;
}
.order-online .content .primary-btn a {
  background-color: #fff;
  color: #ff0000;
}

.menu .heading {
  padding-bottom: 20px;
  border-bottom: 4px dashed #febbab;
}
.menu .heading h3 {
  font-size: 50px;
  font-weight: 600;
  color: #ff0000;
}
@media (max-width: 450px) {
  .menu .heading h3 {
    font-size: 30px;
  }
}
.menu .main-menu {
  margin: 50px 0 30px;
}
.menu .main-menu .item {
  overflow: hidden;
  border-radius: 10px;
}
.menu .main-menu img {
  border-radius: 10px;
  transition: all 0.2s linear;
}
.menu .main-menu img:hover {
  transform: scale(1.1);
}

.career {
  border-top: 1px solid #ccc;
}
.career .main-career {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (max-width: 450px) {
  .career .main-career {
    gap: 20px;
  }
}
.career .main-career .heading {
  width: 70%;
  padding-bottom: 20px;
  border-bottom: 4px dashed #ff8888;
}
@media (max-width: 450px) {
  .career .main-career .heading {
    width: 100%;
  }
}
.career .main-career .heading h3 {
  font-size: 50px;
  font-weight: 600;
  color: #383838;
  text-align: center;
}
@media (max-width: 450px) {
  .career .main-career .heading h3 {
    font-size: 30px;
  }
}

footer {
  background-color: #000;
  padding: 50px 0 0;
}
footer .top-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding-bottom: 20px;
}
footer .top-footer .logo img {
  width: 150px;
}
@media (max-width: 450px) {
  footer .top-footer .logo img {
    width: 100px;
  }
}
footer .top-footer .store-details ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
footer .top-footer .store-details li a {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  text-align: center;
}
footer .top-footer .social-media ul {
  display: flex;
  gap: 20px;
}
footer .top-footer .social-media li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ff0000;
  border-radius: 50%;
  color: #fff;
}
footer .bottom-footer {
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #ccc;
  color: #fff;
}
footer .bottom-footer a {
  color: #fff;
}
footer .bottom-footer img {
  width: 90px;
}

#about_page .about-content {
  width: 100%;
}

#contact_page {
  /* General Styles */
  /* Contact Section */
  /* Responsive Styles */
}
#contact_page p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}
#contact_page ul {
  list-style: none;
  padding: 0;
}
#contact_page ul li {
  font-size: 16px;
  color: #444;
}
#contact_page .contact-us {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
#contact_page .main-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
#contact_page .details-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#contact_page .details-items .item .item-icon strong {
  color: #000;
  font-size: 18px;
}
#contact_page .details-items .item .item-icon strong i {
  margin-right: 10px;
  color: red;
}
#contact_page .details-items .business-hours ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#contact_page .contact-details {
  flex: 1;
  min-width: 300px;
}
#contact_page .contact-details ul {
  display: flex;
  flex-direction: column;
}
#contact_page .contact-form {
  flex: 1;
  min-width: 300px;
  background-color: #ff0000;
  border: 1px solid #ccc;
  border-radius: 15px;
  box-shadow: 0px 0px 12px rgba(173, 173, 173, 0.25);
  padding: 20px;
}
#contact_page .contact-form .form-group {
  margin-bottom: 20px;
}
#contact_page form {
  margin-top: 20px;
}
#contact_page form label {
  color: #fff;
}
#contact_page .input_group {
  display: flex;
  gap: 20px;
}
#contact_page .input_group .form-group {
  width: 50%;
}
@media (max-width: 768px) {
  #contact_page .input_group {
    flex-direction: column;
    gap: 0;
  }
  #contact_page .input_group .form-group {
    width: 100%;
  }
}
#contact_page .contact-form input,
#contact_page .contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
#contact_page .contact-form textarea {
  resize: vertical;
}
#contact_page .primary-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #000000;
  color: #fff;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  #contact_page .main-contact {
    flex-direction: column;
    align-items: center;
  }
  #contact_page .contact-details,
  #contact_page .contact-form {
    width: 100%;
  }
}
#contact_page .map_section {
  display: flex;
}
#contact_page .map_section iframe {
  width: 100%;
}

#gallery_page {
  background-color: #ffffff;
}
#gallery_page .gallery .main-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
  align-items: stretch;
}
#gallery_page .gallery .main-gallery .item {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  border: 1px dashed #e04e00;
}
#gallery_page .gallery .main-gallery .item img {
  transition: all 0.4s linear;
}
#gallery_page .gallery .main-gallery .item:hover img {
  transform: scale(1.1);
}

#about_page {
  background: #ffffff;
  color: #fff;
}
#about_page .about-us h1, #about_page .about-us p {
  color: #000000;
}
.d-none{
  display: none;
}

.pull-left{ float:left; margin-right:25px;}