.custom-navbar {
  background-color: #f7f3f0;
  color: #6c757d;
}

.navbar-nav .nav-link {
  color: rgb(58, 58, 58);
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link.active {
  color: #fd0202 !important;
  font-weight: bold;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fd0202;
  border-radius: 2px;
}
  .navbar-toggler-icon {
      display: inline-block;
      width: 1.5em;
      height: 1.5em;
      vertical-align: middle;
      background-image: var(--bs-navbar-toggler-icon-bg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: 100%;
      filter: brightness(0) invert(1); /* Custom color via white filter */
    }

/* Slide and Animation */
.slide {
  height: 750px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  text-shadow: 1px 1px 5px #000;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .slide {
    height: 400px;
  }
}

.fade-in-bg {
  opacity: 0;
  animation: fadeInBackground 1s ease forwards;
}

@keyframes fadeInBackground {
  to {
    opacity: 1;
  }
}

.animated-content {
  opacity: 0;
  transform: translateY(60px);
  animation: slideUpContent 1s ease-out 2s forwards;
}

@keyframes slideUpContent {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(236, 89, 4, 0.6); /* Change background here */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
   box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
display: inline-block;
  }

/* Custom white arrow for previous */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L6.707 7l4.647 4.646a.5.5 0 0 1-.708.708l-5-5a.5.5 0 0 1 0-.708l5-5a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

/* Custom white arrow for next */
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l5 5a.5.5 0 0 1 0 .708l-5 5a.5.5 0 0 1-.708-.708L9.293 7 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}


.carousel,
.carousel-inner,
.carousel-item {
  width: 100%;
}

/* Partner Logo */
.partner-logo {
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Contact Headings */
.contact-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-highlight {
  color: #fd0202;
}

.contact-normal {
  color: #6c757d;
}

/* Product Cards */
.service-card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.service-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.7); */
  z-index: 1;
}

.service-card .content {
  position: relative;
  z-index: 2;
  color: white;
}

.service-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  margin: 0;
}

.service-card .btn-outline-light {
  background-color: #fd0202;
  color: #fff;
  border: none;
}

  .bg-customer-red {
    background-color: #b30000; /* Custom red */
    color: white;
  }
  
.service-card .btn-outline-light:hover {
  background-color: #e60066;
}

.custom-pink-btn {
  background-color: #fd0202;
  color: #fff;
  border: none;
  transition: background-color 0.1s ease;
}

.custom-pink-btn:hover {
  background-color: #e60066;
}

.address-block p {
  margin-bottom: 0.3rem;
}
 .service-card .content p {
      font-size: 1rem; 
    }

.client-logo {
  background-color: #e60066;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
  margin: 10px;
  height: 150px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.client-logo:hover {
  transform: scale(1.05);
}



.section-title {
    font-weight: bold;
    text-shadow: 2px 2px 5px #000;
    margin-bottom: 40px;
}

.menu-box {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-box h5 {
    margin: 0 0 5px;
    color: #fff;
}

.menu-box p {
    margin: 0;
    font-size: 14px;
    color: #ddd;
}

.menu-box ul {
    padding-left: 1.2rem;
    color: #ddd;
}

.menu-box ul li {
    list-style-type: disc;
    margin-bottom: 5px;
}

/* Optional: hover animation */
.menu-box:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.7);
}


/* Background images per section */
.bg-set {
    background-image: url('https://media.istockphoto.com/id/2167253729/photo/kitchen-countertop-with-utensils-vegetables-and-spices-on-brick-wall-background-copy-space.webp?a=1&b=1&s=612x612&w=0&k=20&c=xxzOO8vDeazTQA7_pJjaasc7vdFGF2J2DTPftZX78fs=');
}

.bg-bread {
    background-color: orange;
    /* background-image: url('https://source.unsplash.com/1600x900/?bread'); */
}

.bg-pancake {
     background-color: rgb(253, 213, 138);
    /* background-image: url('https://source.unsplash.com/1600x900/?pancake'); */
}

.bg-roticanai {
    background-color: rgb(145, 96, 4);
    /* background-image: url('https://source.unsplash.com/1600x900/?thosai'); */
}
.bg-thosai {
    background-color: orange;
    /* background-image: url('https://source.unsplash.com/1600x900/?thosai'); */
}

.bg-friedrice {
     background-color: rgb(253, 213, 138);
    /* background-image: url('https://source.unsplash.com/1600x900/?fried-rice'); */
}
.bg-singleplaterice {
    background-color: rgb(236, 214, 172);
    /* background-image: url('https://source.unsplash.com/1600x900/?thosai'); */
}
.bg-chickenbeef {
   background-color: orange;
    /* background-image: url('https://source.unsplash.com/1600x900/?chicken'); */
}

.bg-noodles {
     background-color: rgb(145, 96, 4);
    /* background-image: url('https://source.unsplash.com/1600x900/?noodles'); */
}

.bg-sawadee {
    background-image: url('https://source.unsplash.com/1600x900/?seafood');
}

.bg-seafood {
    background-image: url('https://source.unsplash.com/1600x900/?seafood');
}
.bg-kerabu {
    background-image: url('https://source.unsplash.com/1600x900/?vegetables');
}
.bg-vege {
    background-image: url('https://source.unsplash.com/1600x900/?vegetables');
}
.bg-eggs {
    background-image: url('https://source.unsplash.com/1600x900/?vegetables');
}
.bg-tomyam {
    background-image: url('https://source.unsplash.com/1600x900/?vegetables');
}
.bg-ikanslakap {
    background-image: url('https://source.unsplash.com/1600x900/?vegetables');
}
.bg-shifawestern {
    background-image: url('https://source.unsplash.com/1600x900/?vegetables');
}
.bg-soup {
    background-image: url('https://source.unsplash.com/1600x900/?vegetables');
}
.bg-drinks {
    background-image: url('https://source.unsplash.com/1600x900/?juice');
}

.bg-addon {
    background-image: url('https://source.unsplash.com/1600x900/?rice');
}

.bg-contact {
    background-color: #111;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

.bg-set {
  background: #1a1a1a; /* dark background for contrast */
}

.section-title {
  font-weight: 600;
  font-size: 2rem;
}

.menu-box {
  transition: transform 0.3s ease;
}

.menu-box:hover {
  transform: translateY(-5px);
}

ul li {
  font-size: 0.95rem;
  line-height: 1.5;
}