:root {
  --primary-color: #a10f11;
  --secondary-color: #004e89;
  --dark-color: #292f36;
  --light-color: #f7fff7;
  --accent-color: #ffa630;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: var(--dark-color);
  overflow-x: hidden!important;
}

/* .our_location iframe{
  width: 100%;
  height: 230px;
  border: 0;
} */

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.abt_content{
  padding: 0 12.5%;
}
/* .nav_toggler{
  display: none;
} */
.stat-item img{
  width: 100px;
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}
.sidenav a{
  text-decoration: none;
  color: #fff;
}
.nav_toggler{
  font-size:30px;
  cursor:pointer;
  display: block;
  margin-right: 10px;
  margin-top: 14px;
  color: #000000;
}
.sidenav li a {
  padding: 8px 8px 26px 63px !important;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidenav li a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
.hero-slide {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  margin-top: 84px;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  /* height: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 150px 0 150px;
}

.logo img {
  width: 250px;
}

.tagline {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s;
  border-radius: 50px;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.section-title {
  position: relative;
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 40px;
}
.section-title span {
  color: #cfa16d;
}

/* .section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--primary-color);
} */

.about-section {
  /* padding: 50px 0 50px; */
  background-color: #f3f3f3;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.feature-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  height: 100%;
  position: relative;
  z-index: 1;
  background: white;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
}

.model-section {
  background: linear-gradient(
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.95)
    ),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0;
  position: relative;
}

.location-card {
  background-color: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.location-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.location-card:hover .location-icon {
  color: var(--primary-color);
  transform: scale(1.2);
}

.vision-section {
  background-color: var(--secondary-color);
  color: white;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.vision-item {
  padding: 21px 5px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 30px;
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.vision-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.vision-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.vision-item:hover .vision-icon {
  transform: rotate(15deg) scale(1.2);
}

.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 50px 0 20px;
  position: relative;
}
.social-icons {
  display: flex;
  gap: 30px;
}
.social-icon {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.2s;
}
.social-icon:hover {
  color: #cfa16d;
}
.card {
  border-radius: 1rem;
}
/* .section-title span {
  color: #e17055;
} */

.food-image {
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
  border: 5px solid white;
}

.food-image:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.pulse {
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.nav-pills .nav-link.active {
  background-color: var(--primary-color);
}

.nav-pills .nav-link {
  color: var(--dark-color);
}

/* Testimonials */
.testimonial-section {
  padding: 50px 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 15px;
  transition: all 0.4s;
  position: relative;
  text-align: center;
}
.testimonial-card h4 {
  margin-top: 15px;
}

.testimonial-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(0, 78, 137, 0.1);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-img {
  width: 90px !important;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  /* border: 5px solid var(--primary-color); */
  margin-bottom: 15px;
  display: block;
  margin: 0 auto;
}

/* Menu Preview */
.menu-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.menu-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  margin-bottom: 30px;
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.menu-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.menu-content {
  padding: 20px;
}

.price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Stats */
.stats-section {
  padding: 40px 0;
  background: linear-gradient(rgb(161 15 17 / 84%), rgba(161 15 17 / 84%)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.stat-item {
  text-align: center;
  padding: 30px 0;
  /* background: #a10f11; */
  border-radius: 10px;
}

.stat-number {
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Owl Carousel Custom */
.owl-theme .owl-controls {
  margin-top: 30px;
}

.owl-theme .owl-controls .owl-page span {
  background: var(--primary-color);
  opacity: 0.5;
}

.owl-theme .owl-controls .owl-page.active span {
  opacity: 1;
  background: var(--primary-color);
}

/* Custom Shapes */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: -1;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.shape-divider .shape-fill {
  fill: var(--light-color);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 166, 48, 0.2);
  z-index: 0;
}

.floating-element-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.floating-element-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

/* Navigation */
.navbar {
  transition: all 0.4s;
  padding: 3px 0 6px;
  background: #fff;
}

.navbar.scrolled {
  background-color: #fff !important;
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
  font-weight: 500;
  padding: 10px 15px !important;
  margin: 0 5px;
  border-radius: 50px;
  transition: all 0.3s;
  color: #000;
}

.nav-link:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color) !important;
}

.nav-link.active {
  background: var(--primary-color) !important;
  color: white !important;
}
/* .hero-slider.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
}

.hero-slider.owl-carousel .owl-nav span {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 3px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  transition: background 0.3s ease;
}

.hero-slider.owl-carousel .owl-nav span:hover {
  background: #ff5722;
}

.hero-slider.owl-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.hero-slider.owl-carousel .owl-dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.hero-slider.owl-carousel .owl-dot.active {
  opacity: 1;
  background: #ff5722;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
} */
.copy-text {
  padding: 10px 0 10px;
  background: #a10f11;
  color: #fff;
}
.footer img {
  width: 250px;
  margin-bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 10px;
}
.footer-list li {
  margin-bottom: 20px;
}
.footer-list li a {
  color: #fff;
}

/* contac-us-section-styles */
.modern-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.modern-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 4px;
  background: #a10f11;
  border-radius: 2px;
}

.modern-section-subtitle {
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Contact Card */
.modern-contact-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 100%;
  /* min-height: 640px; */
}

.modern-contact-info {
  margin: 2rem 0;
}

.modern-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.modern-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.modern-contact-content h5 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.modern-contact-content p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Social Links */
.modern-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.modern-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.modern-social-link:hover {
  transform: translateY(-3px);
}

.bg-facebook {
  background: #3b5998;
}
.bg-twitter {
  background: #1da1f2;
}
.bg-linkedin {
  background: #0077b5;
}
.bg-instagram {
  background: #e1306c;
}

.bg-primary-soft {
  background: #e0e7ff;
}
.bg-success-soft {
  background: #d1fae5;
}
.bg-warning-soft {
  background: #fef3c7;
}

.text-primary {
  color: #6366f1;
}
.text-success {
  color: #10b981;
}
.text-warning {
  color: #f59e0b;
}

/* Contact Form */
.modern-contact-form {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.modern-form-group {
  margin-bottom: 0;
}

.modern-form-label {
  display: block;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.modern-input-group {
  position: relative;
}

.modern-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  z-index: 1;
}

.modern-form-control {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: #f9fafb;
}

.modern-form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
  background-color: white;
}

.modern-form-control::placeholder {
  color: #9ca3af;
}

textarea.modern-form-control {
  padding: 1rem 1rem 1rem 3rem;
  min-height: 120px;
}

/* Button */
.modern-btn {
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
}

.modern-btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  /* background: #6366f1; */
  color: white;
}

.btn-primary:hover {
  background: #cfa16d;
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

/* Responsive Adjustments */
@media only screen and (max-width: 991px) {
  .modern-contact-section {
    padding: 3rem 0;
  }
  .slide{
    height: 85vh!important;
  }
  .slide h1{
    font-size: 50px!important;
  }
  .modern-contact-card,
  .modern-contact-form {
    padding: 2rem;
  }
  .slide-content{
    top: 38%!important;
  }
  .slider{
    height: 80vh!important;
  }
  .abt_content {
    padding: 0 4.5%;
}
.stat-item img {
    width: 82px;
}
.stat-number{
  font-size: 22px;
}
.stats-section{
      padding: 25px 0;
}
.content-container{
  max-width: 700px!important;
}
.ratio-4x3 {
    --bs-aspect-ratio: 41%;
}
}

@media (max-width: 767.98px) {
  .modern-section-title {
    font-size: 1.5rem;
  }
  .copy-text {
    font-size: 10px;
  }

  .modern-contact-item {
    flex-direction: row;
  }

  .modern-contact-icon {
    margin-bottom: 1rem;
  }
}
/* end-contac-us-section-styles */
.vision-section ul li {
  list-style: none;
  line-height: 42px;
  position: relative;
  padding-left: 18px;
}
.vision-section ul li:before {
  content: "\f105";
  color: #fff;
  font-weight: bold;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  width: 1em;
  position: absolute;
  left: 0;
}

/* Scroll to Top Button Style */
#scrollToTopBtn {
  position: fixed;
  bottom: 59px;
  right: 9px;
  z-index: 999;
  background-color: #cfa16d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: none;
  transition: opacity 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #a10f11;
}

.slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  animation: zoomInOut 10s infinite;
}

/* .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
} */

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  top: 27%;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}

.slide h1 {
  font-size: 80px;
  margin-bottom: 1rem;
  font-weight: bold;
}

.slide p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  padding: 12px 25px;
  font-size: 1rem;
  color: #fff;
  background-color: #a10f11;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.slick-dots {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
/* Optional: slick dots style */
.slick-dots li button:before {
  color: #fff;
  font-size: 14px;
}
.split-section {
  min-height: 80vh;
}

.image-half {
  background: url("https://choolaah.com/wp-content/uploads/2016/04/Family_style_meals_hp.jpg")
    center/cover no-repeat;
  position: relative;
  padding: 0;
}

.image-half::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.1) 0%,
    rgba(29, 53, 87, 0.3) 100%
  );
}

.content-half {
  background-color: #f8f1e9;
  display: flex;
  align-items: center;
  padding: 4rem;
}

.content-container {
  max-width: 600px;
  margin: 0 auto;
}

.split-section .section-title {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 0;
  color: #a10f11;
  line-height: 1.2;
}

.section-content {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  color: #333333;
}

.highlight {
  position: relative;
  z-index: 1;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #d8b288;
  z-index: -1;
  opacity: 0.6;
  transform: scaleX(0.9);
  transition: all 0.3s ease;
}

.highlight:hover::after {
  height: 16px;
  opacity: 0.8;
  transform: scaleX(1);
}
.divider {
  height: 4px;
  background: linear-gradient(to right, #a10f11, #d1a574);
  width: 80px;
  margin: 9px 0 15px;
  border-radius: 3px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
  color: #a10f11;
  font-weight: 500;
  font-style: italic;
}

.feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #a10f11;
  position: absolute;
  left: 0;
  top: 2px;
}

.cta-button {
  background-color: #a10f11;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px #cfa16d;
  background-color: #cfa16d;
}

.spice-icon {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.spice-icon-1 {
  top: 10%;
  right: 10%;
  font-size: 5rem;
  color: #e63946;
  animation: float 6s ease-in-out infinite;
}

.spice-icon-2 {
  bottom: 15%;
  left: 8%;
  font-size: 4rem;
  color: #1d3557;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.pl_40 {
  padding-left: 40px;
}

@media (max-width: 992px) {
  .split-section {
    flex-direction: column;
  }

  .image-half {
    min-height: 50vh;
  }

  .content-half {
    padding: 3rem 2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .nav_toggler{
    display: none;
  }
}
@media (max-width: 1199px) {
  .footer img{
    width: 190px;
  }
  .slide h1{
    font-size: 70px;
  }
  /* .nav_toggler{
    display: none;
  } */
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .content-half {
    padding: 2rem 1.5rem;
  }
}
.section-block {
  min-height: 325px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 2.3rem 0; */
}
.section-muted {
  background: #f3f3f3;
}
.section-white {
  background: #fff;
}
.promo-title {
  font-family: "Montserrat", "Arial", sans-serif;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #9e9e9e;
  margin-bottom: 1.2rem;
}
.promo-body {
  font-family: "Montserrat", "Arial", sans-serif;
  font-size: 1.06rem;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.app-img {
  width: 100%;
  height: 843px;
  object-fit: cover;
}
.mobile-app-img{
  width: 100%;
  object-fit: cover;
}
.gift-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.tandoor-img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  /* border-radius: 0 0 24px 24px; */
  box-shadow: 0 7px 24px rgba(0, 0, 0, 0.1);
}
.subtext {
  font-size: 0.92rem;
  color: #aea49b;
}
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
/* .sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}
.sidenav a{
  text-decoration: none;
  color: #fff;
}

.sidenav li a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidenav li a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
} */

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
@media only screen and (max-width:450px){
  .nav_toggler{
    display: block;
  }
.slide h1 {
      font-size: 40px !important;
  }
  .slide-content {
      top: 30% !important;
  }
  .section-block{
    min-height: 0;
  }
  .stat-number {
    font-size: 14px!important;
}
.stat-item img {
        width: 64px!important;
    }
}
@media (max-width: 767px) {
  .section-block {
    flex-direction: column !important;
    /* padding: 1.2rem 0; */
    padding: 0;
    text-align: center;
  }
  .app-img{
    height: 424px;
  }
  .promo-title {
    font-size: 1.08rem;
  }
  .promo-body {
    font-size: 0.98rem;
  }
  .tandoor-img {
    border-radius: 0 0 14px 14px;
  }
  .slide h1{
    font-size: 45px;
  }
  .logo img {
    width: 220px;
}
.navbar-toggler{
  background: #a10f11;
  color: #fff;
  margin-right: 10px;
}
.abt_content{
  padding: 0 3.5%;
}
.stat-item img{
  width: 80px;
}
.stat-number{
  font-size: 17px;
}
}

.nav-link:focus, .nav-link:hover {
    color: #000;
}
/* @media only screen and (max-width: 991px) {
  body {
    display: none;
  }
  html:before {
    content: "Once the desktop version is approved, we'll proceed with developing the responsive design. Thank you for your collaboration.";
    padding: 20%;
    text-align: center;
    font-size: 30px;
    display: block;
  }
} */
