@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap');
     /* Global font setup */
    body {
      font-family: 'Poppins', sans-serif;
      /* background-color: #082932; */
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
    }

    .apply-btn {
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  padding: 0.6rem 1.5rem;
  background-color: #082932;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 10px;
  font-weight: 600;
  border: 3px solid rgba(255, 255, 255, 0.3);
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none; /* no underline for <a> */
}

.apply-btn .icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.apply-btn:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.6);
  /* background-color: #ffce53;
  color: #000; */
}

.apply-btn:hover .icon {
  transform: translateX(4px);
  color: inherit; /* arrow matches text color */
}

.apply-btn:hover::before {
  animation: shine 1.5s ease-out;
}

.apply-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% { left: -100px; }
  60%, 100% { left: 100%; }
}

    /* Our Expertise Section */
    .expertise-section {
      background-color: #082932;
      text-align: center;
      /* padding: 50px 0; */
    }
    /* Our Expertise Section */
    .expertise-sections{
      background-color: none;
      text-align: center;
      /* padding: 50px 0; */
    }

    .expertise-title {
      font-family: 'Playfair Display', serif;
      color: #ffce53;
      font-weight: 900;
      font-size: 20px;
    }

    .expertise-subtitle {
      font-family: 'Playfair Display', serif;
      color: white;
      font-weight: 600;
      margin-top: 10px;
    }
 .expertise-subtitles {
      font-family: 'Playfair Display', serif;
      color: #082932;
      font-weight: 600;
      margin-top: 10px;
    }
    .expertise-text {
      font-family: 'Poppins', sans-serif;
      color: white;
      max-width: 800px;
      margin: 10px auto 0;
    }
    .expertise-texts {
      font-family: 'Poppins', sans-serif;
      color: #fff;
      max-width: 800px;
      margin: 10px auto 0;
    }
    /* Event card styling */
    .event-card {
      text-align: center;
      padding: 15px;
      background-color: #082932;
    }

    .event-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 15px;
    }
/* Zoom-in flash animation on load */
@keyframes zoomFlash {
  0% {
    transform: scale(1);
    filter: brightness(0.5);
  }
  50% {
    transform: scale(1.1);
    filter: brightness(0.4);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

/* Apply to event card images */
.event-im {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  animation: zoomFlash 0.8s ease-out;
}

/* Hover zoom effect */
.event-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.2);
}

    .event-card h5 {
      font-weight: bold;
      color: #ffce53;
    }

    .event-card p {
      font-size: 0.95rem;
      color: white;
    }

    .know-more {
      color: #ffce53;
      font-weight: bold;
      text-decoration: none;
    }

    .know-more:hover {
      text-decoration: underline;
      color: #ffffff;
    }

    .Abi {
      background-color: #082932;
    }


       
.menu {
  position: relative;
  background-image: url("..//image/img59.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  width:100%;
  height:100%;
  min-height: 100vh;

}

.menu-shape {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none; /* makes it unclickable */
}

.menu-shape-top {
  top: 0;
  transform: rotate(180deg); /* flip so it faces down */
  height:80px;
}

.menu-shape-bottom {
  bottom: 0;
    height:100px;
}

h2 {
  font-weight: bold;
  text-transform: uppercase;
  color: #ffce53; /* golden heading */
}

.section-title {
 
  color: #ffce53; /* dark text */
  padding: 8px 15px;
  display: inline-block;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Zoom pop-in animation for cards */
@keyframes boxZoomEaseOut {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.dish-card {
  text-align: center;
  padding: 20px;
  background: white;
  color: #000000;
  border-radius: 10px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  animation: boxZoomEaseOut 0.6s ease-out; /* animation on load */
}

.dish-card:hover {
    background: #082932;
  color: white;
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(255, 206, 83, 0.4); /* gold glow */
}

.dish-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #ffce53; /* gold border */
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}
.dish-card h4 {
  color: #082932;
  transition: color 0.3s ease; /* smooth change */
}

.dish-card:hover h4 {
  color: #ffce53!important;
}


    /* ===== MEDIA QUERIES ===== */

    /* Under 550px: Force 1 card per row */
    @media (max-width: 550px) {
      .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
      }
      .dish-card {
        padding: 12px;
      }
      .dish-img {
        width: 150px;
        height: 150px;
      }
      h2 {
        font-size: 1.5rem;
      }
      .section-title {
        font-size: 1rem;
      }
    }

    /* Tablets */
    @media (min-width: 551px) and (max-width: 768px) {
      h2 {
        font-size: 1.8rem;
      }
      .dish-img {
        width: 130px;
        height: 130px;
      }
      .dish-card {
        padding: 15px;
      }
    }

    /* Medium to Large screens */
    @media (min-width: 769px) and (max-width: 992px) {
      h2 {
        font-size: 2rem;
      }
      .dish-card {
        padding: 18px;
      }
    }

    /* Extra Large Screens */
    @media (min-width: 1200px) {
      .dish-img {
        width: 180px;
        height: 180px;
      }
      .dish-card {
        padding: 25px;
      }
    }



    .body{
    margin:0;
    padding:0;
    overflow-x: hidden;
}
/* ===== FOOTER ===== */
.unique-footer{
  background:#0d1b2a;
  color:#fff;
  padding:80px 20px 30px;
  position:relative;
  overflow:hidden;
}

/* CONTAINER */
.uf-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

/* TITLE */
.uf-title{
  font-size:18px;
  color:#d4af37;
  margin-bottom:15px;
}

/* BRAND */
.uf-brand h2{
  font-size:24px;
  color:#d4af37;
}
.uf-brand span{ color:#fff; }

.uf-brand p{
  color:#bbb;
  margin:10px 0;
}

/* LINKS */
.uf-links a{
  display:block;
  margin:8px 0;
  color:#bbb;
  text-decoration:none;
  transition:0.3s;
}

.uf-links a:hover{
  color:#d4af37;
  transform:translateX(5px);
}

/* CONTACT (LAST COLUMN) */
.uf-contact div{
  margin:10px 0;
  font-size:14px;
}

.uf-contact i{
  color:#d4af37;
  margin-right:10px;
}

/* BUTTON */
.uf-btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 20px;
  border:1px solid #d4af37;
  border-radius:25px;
  color:#d4af37;
  text-decoration:none;
  transition:0.3s;
}

.uf-btn:hover{
  background:#d4af37;
  color:#000;
}

/* ===== EDGE SOCIAL LEFT ===== */
.uf-social-left{
  position:absolute;
  left:10px;
  top:50%;
  transform:translateY(-50%);
}

.uf-social-left a{
  display:block;
  margin:12px 0;
  color:#bbb;
  font-size:16px;
  transition:0.3s;
}

.uf-social-left a:hover{
  color:#d4af37;
  transform:scale(1.2);
}

/* ===== EDGE SOCIAL RIGHT ===== */
.uf-social-right{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
}

.uf-social-right a{
  display:block;
  margin:12px 0;
  color:#bbb;
  font-size:16px;
  transition:0.3s;
}

.uf-social-right a:hover{
  color:#d4af37;
  transform:scale(1.2);
}

/* LINE */
.uf-line{
  margin:40px 0 20px;
  height:1px;
  background:rgba(255,255,255,0.1);
}

/* BOTTOM */
.uf-bottom{
  text-align:center;
  color:#aaa;
  font-size:13px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .uf-container{
    grid-template-columns:repeat(2,1fr);
  }

  .uf-social-left,
  .uf-social-right{
    position:static;
    transform:none;
    display:flex;
    justify-content:center;
    margin-top:20px;
  }

  .uf-social-left a,
  .uf-social-right a{
    margin:0 10px;
  }
}

@media(max-width:500px){
  .uf-container{
    grid-template-columns:1fr;
    text-align:center;
  }
}

.why-choose-section h2.section-title {
  color: #082932;
  font-weight: 700;
  font-size: 32px;
}

.why-choose-section p.description {
  color: black;
  margin-top: 15px;
  text-align: justify;
}

.why-choose-section h5 {
  font-weight: 600;
  font-size: 16px;
}

.why-choose-section img {
  display: block;
  margin: 0 auto;
height:300px;
}


     * {
      box-sizing: border-box;
    }

    body, html {
      margin: 0;
      padding: 0;
      /* background: #111; */
      font-family: sans-serif;
    }

    .main {
      overflow: hidden;
    }

    .slider-wrapper {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
      height: 380px;
      padding: 30px 0;
      position: relative;
      display: flex;
      align-items: center;
    }

    .slider-track {
      display: flex;
      transition: transform 0.6s ease;
      will-change: transform;
    }

    .slide {
      flex-shrink: 0;
      background: #444;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      opacity: 0.7;
      transition: 0.6s all;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .slide.active {
      box-shadow: 0 0 20px rgba(2, 24, 13, 0.6);
      opacity: 1;
    }

    .slide::after {
      content: attr(data-label);
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      text-align: center;
      font-size: 18px;
      padding: 10px;
    }

    .nav-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #082932;
      border: none;
      padding: 12px 18px;
      font-size: 18px;
      cursor: pointer;
      z-index: 10;
      color: #fff;
      font-weight: bold;
      border-radius: 8px;
    }

    .prev-button {
      left: 10px;
    }

    .next-button {
      right: 10px;
    }

    @media screen and (max-width: 768px) {
      .slider-wrapper {
        padding: 10px 0;
        height: auto;
        gap:10px !important;
      }

      .slider-track{
        gap:10px;
      }
      .slide {
        width: 40% !important;
        margin-right: 0 !important;
        height: 220px;
      }

      .nav-button {
        padding: 10px 14px;
        font-size: 16px;
      }
    }

    .text-purple {
  color: #ffce53;
}

.owl-carousel .item {
  padding: 15px;
}

.tea{
    width:50px !important;
    height: 50px !important;
}
.owl-carousel .card {
  border-radius: 12px;
  background-color: #082932;
  color:#fff;
}
.hero-section {
  position: relative;
  height: 100vh;
  background-image: url('https://img.freepik.com/premium-photo/parked-cars-line-side-busy-street_118124-267714.jpg?w=2000');
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.custom-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.top-bar {
  background-color: #082932;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.top-bar .left-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 120px;
}
.top-bar a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}
.top-bar .social-icons a {
  color: white;
  margin-left: 15px;
  font-size: 16px;
}
.main-navbar {
  background-color: white;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 10px 20px;
    z-index: 1;

}
.nav-link {
  color: #333 !important;
  font-weight: 600;
  margin: 0 10px;
}
.toggle-icon {
  font-size: 1.5rem; /* size of the bars */
  color:#082932 !important;   /* your green */
}

.nav-link:hover,
.nav-link.active {
  color: #102405 !important;
}
.logo-wrapper {
  position: absolute;
  top: -10px;
  left: -50px;
        z-index: 3;
 
}
.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #082932;
  padding: 10px;
  background-color: white;
}
.hero-content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px !important;
  padding: 0 20px;
  z-index: 2;
  text-align: center;
}
.hero-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .top-bar { display: none !important; }
  .main-navbar { display: none !important; }
  .offcanvas-body .left-info a {
    display: block;
    margin-bottom: 5px;
    color: #333;
    text-decoration: none;
  }
  .offcanvas-body .social-icons a {
    margin-right: 10px;
    color: #333;
    font-size: 1.2rem;
  }
  .offcanvas-footer {
    border-top: 1px solid #ddd;
    padding-top: 10px;
  }
  .hero-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero-subtitle {
  font-size: 1rem;
  margin-top: 20px;
  text-align: justify;
}

    .home-about-left .home-about-img {
        width: 90%;
    }
        .home-about-left {
        text-align: center;
    }
    .about-left img {
      height:300px !important;
    }
    .aboutsimg{
      width:300px !important;
    }
    .about-box{
      padding: 10px !important;
    }
    .skewer-img {
      width:100% !important;}

}
.aboutsimg{
  width:555px;
}

@media (max-width: 1020px) {
  .hero-content {
    width: 90% !important;
  }
}

    .our-story-section {
      padding: 60px 0;
    }

    .our-story-title {
      font-weight: 700;
      color: #102405;
    }

.our-story-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 600px;
}

.our-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

    .experience-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background-color: #082932;
      color: #fff;
      padding: 15px 20px;
      border-radius: 5px;
      font-weight: 600;
      font-size: 18px;
      text-align: center;
    }

    .experience-badge span {
      font-size: 28px;
      font-weight: bold;
      display: block;
    }

    .certifications {
      margin-top: 30px;
    }

    .cert-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-right: 30px;
      font-weight: 600;
    }

    .cert-item i {
      color: #fec902;
      font-size: 20px;
    }

        .we-offer-section {
      position: relative;
      /* padding: 80px 0; */
      background-color: #fff;
    }

    .title-box.centered {
      text-align: center;
      margin-bottom: 50px;
    }

    .title-box .subtitle span {
      font-size: 14px;
      color: #888;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: block;
      margin-bottom: 10px;
    }

    .title-box h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #222;
    }

    .title-box .text {
      max-width: 600px;
      margin: 0 auto;
      color: #666;
      font-size: 16px;
    }

    .offer-block-two {
      /* background-color: #222; */
      border-radius: 12px;
      overflow: hidden;
      transition: 0.3s ease;
      /* box-shadow: 0 8px 20px rgba(0,0,0,0.08); */
    }

    .offer-block-two:hover {
      transform: translateY(-5px);
    }

    .offer-block-two .inner-box {
      padding: 20px;
      text-align: center;
    }

    .offer-block-two .image img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: 10px;
    }

    .offer-block-two h4 {
      font-size: 18px;
      margin: 15px 0 10px;
      color: #fff;
    }

    .offer-block-two .desc {
      font-size: 14px;
      color: #000;
      margin-bottom: 15px;
      min-height: 70px;
    }

    .offer-block-two .price a {
      display: inline-block;
      padding: 8px 16px;
      background-color: #fec902;
      color: #000;
      border-radius: 5px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .offer-block-two .price a:hover {
      background-color: #e96b00;
    }

    .pattern-image {
      margin: 15px 0;
    }

    .pattern-image img {
      height: 10px;
    }

    
.intro-section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #000;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../image/intro.avif') center center / cover no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.intro-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* <-- overlay color here */
  z-index: 2;
}

.intro-section .auto-container {
  position: relative;
  z-index: 3; /* must be above ::before and ::after */
  max-width: 1400px;
  margin: 0 auto;
}
.fact-count{
	font-size: 45px;
}

.fact-title {
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: white;
}
/* Main Container */
#booking-form-section {
  background-color: #082932;
  width: 100%;
  margin-top: 10px;
  padding: 40px; /* fixed spacing */
  border-radius: 10px;
  backdrop-filter: blur(5px); /* frosted-glass effect */
}

/* Center content vertically + horizontally */
#booking-form-section .row {
  align-items: center;
  justify-content: center;
}

/* Form Fields */
#booking-form-section input,
#booking-form-section textarea {
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 12px;
  transition: border-color 0.3s ease;
}

/* On focus: highlight field */
#booking-form-section input:focus,
#booking-form-section textarea:focus {
  border-color: #E9B472;
  outline: none;
}

/* Submit Button */
#booking-form-section button {
  letter-spacing: 2px;
  font-weight: 600;
  color: #fff;
  border-color: #fff;
  transition: all 0.3s ease;
}

#booking-form-section button:hover {
  background-color: #fff;
  color: #000;
}

.catering-section {
  background-image: url('../image/catering.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px; /* space for shapes */
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.catering-section::before {
  /* Dark overlay */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

/* Top shape */
.catering-section::after {
  content: "";
  position: absolute;
  top: 0; /* top position */
  left: 0;
  width: 100%;
  height: 100px;
  background: url('../image/shape.png') no-repeat center top;
  background-size: cover;
  z-index: 1;
  transform: rotate(180deg); /* flips shape */

}

/* Bottom shape */
.catering-section .bottom-shape {
  position: absolute;
  bottom: 0; /* bottom position */
  left: 0;
  width: 100%;
  height: 100px;
  background: url('../image/shape.png') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.catering-content {
  position: relative;
  z-index: 2; /* above overlay & shapes */
}

    /* .catering-card {
      background: white;
      padding: 20px;
      border-radius: 10px;
      color: black;
      transition: 0.3s ease;
    }

    .catering-card:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .catering-card img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 15px;
    } */

.about-banner {
  position: relative;
  background: url('../image/menu.avif') center/cover no-repeat;
  padding: 150px 0;
  color: #fff;
  overflow: hidden;
}

.about-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* semi-transparent black */
  z-index: 1;
}

.about-banner .container {
  position: relative;
  z-index: 2; /* places content above the overlay */
  max-width: 1000px;
  margin: 20px auto;
  display: flex;
  align-items: center;
}

.about-banner .banner-content {
  max-width: 600px;
  text-align: left;
}

.about-banner .subtitle span {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}

.about-banner h2 {
  font-size: 36px;
  margin: 20px 0;
}

.about-banner .text {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.about-banner .btn-primary {
  padding: 10px 20px;
  background-color: #fff;
  color: #000 !important;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}


    .about-section {
      padding: 60px 0;
    }

    .about-box {
      /* background-color: #1f1f1f; */
      border-radius: 15px;
      padding: 30px;
      /* color: #fff; */
      position: relative;
      overflow: hidden;
    }

    .about-left img {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
      height: 550px;
    }

    .section-heading {
      color: #ff4c4c;
      font-size: 16px;
      font-weight: 600;
    }

    .about-title {
      font-size: 24px;
      font-weight: bold;
      margin: 10px 0 20px;
      /* color: #fff; */
    }

    .about-text {
      font-size: 15px;
      color: black;
      margin-bottom: 15px;
      text-align: justify;
    }
    
    .home-about-content p{
      text-align: justify;
    }
	.home-about {
		padding: 90px 0 0px;
	}

	.home-about-left {
		text-align: center;
	}

	.home-about-left .home-about-img {
		width: 90%;
	}
.home-about-left .home-about-img figure {
    height:auto;
}
	.home-about-left .home-about-since {
		width: 180px;
		height: 180px;
		transform: translate(10px, -70px);
	}

	.home-about-since h3 {
		font-size: 22px;
	}
.aa  .row{
gap:15px !important;
}
	.home-about-since h2 {
		font-size: 42px;
	}

	.home-about-right {
		padding-top: 0px;
		padding-left: 0;
	}


    .signature {
      /* font-family: 'Brush Script MT', cursive; */
      font-size: 28px;
      margin-top: 20px;
      color: #fff;
    }

    .director-name {
      font-size: 16px;
      font-weight: bold;
      margin-top: 15px;
    }

    .director-role {
      font-size: 14px;
      color: #aaa;
    }

    .skewer-img {
      width: 120px;
      position: absolute;
      bottom: -30px;
      right: 20px;
      border-radius: 12px;
    }

    @media (max-width: 768px) {
      .skewer-img {
        position: static;
        display: block;
        margin: 30px auto 0;
      }

      .about-box {
        text-align: center;
      }
    }
    
    .always-quality {
      position: relative;
      /* background: url('https://venuscateringservice.com/images/most-popular-dises-bg.png') no-repeat bottom right; */
      background-size: 500px;
      /* padding: 100px 0 70px; */
      overflow: hidden;
    }

    .always-quality::before {
      position: absolute;
      content: '';
      left: 0;
      bottom: 0;
      width: 200px;
      height: 115px;
      /* background: url("https://venuscateringservice.com/images/most-popular-dises-bg.png") no-repeat left bottom; */
      background-size: contain;
      z-index: 0;
    }

    .always-quality .container {
      position: relative;
      z-index: 1;
    }


    .team-card {
      background-color: #fff;
      border-radius: 30px;
      /* margin-bottom: 30px; */
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .team-img img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: all 0.5s ease-in-out;
    }

    .team-body {
      padding: 20px;
      text-align: center;
    }

    .team-card-header h4 {
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase;
      color: #fff;
      background-color:#082932;
      display: inline-block;
      padding: 10px 20px;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .team-card-header h3 {
      font-size: 20px;
      margin: 15px 0 10px;
      color: var(--dark-background);
    }

    .team-content p {
      font-size: 16px;
      color: #5C6167;
    }
.sponsors-section {
	padding: 100px 0;
}

.sponsors-section .sponsors-logo {
	padding: 0;
	background-color: transparent;
}

.sponsors-section .sponsors-logo .scrolling-content span {
	padding-right: 80px;
}

.sponsors-section .restaurant-info-box {
	margin-bottom: 0;
	margin-top: 100px;
}


	.restaurant-inforamtion {
		padding: 60px 0 30px;
	}
	
	.restaurant-info-box {
		padding: 35px 35px 30px;
		margin-bottom: 30px;
	}

	.info-box-content .section-title h2 {
		text-align: center;
		margin-bottom: 20px;
	}

	.info-btn .btn-default {
		margin-right: 0;
		margin-bottom: 15px;
	}

.counter-bar {
	position: relative;
	border-radius: 30px;
	margin-bottom: 30px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
}

.counter-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #00000099;
	background-size: cover;
	border-radius: 30px;
	z-index: 1;
}
 .always-quality .section-title{
    text-align: center;
}
.counter-bar:hover .counter-bar-img img{
	transform: scale(1.1);
}

.counter-bar-img img {
	width: 100%;
	transition: all 0.5s ease-in-out;
	height:200px;
}

.counter-bar .counter-bar-body {
	position: absolute;
	top: 50%;
	left: 0;
	text-align: center;
	color: white;
	width: 100%;
	transform: translateY(-50%);
	z-index: 3;
}

.counter-bar-body h3 {
	font-size: 46px;
	color: var(--primary-color);
	margin-bottom: 0;
}

.counter-bar-body p {
	font-size: 16px;
}

.scrolling-ticker {
	padding: 20px 0;
	color:white;
	background-color: #082932;
}

.scrolling-ticker-box {
	--gap: 20px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: 10px;
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: 10px;
	min-width: 100%;
	animation: scroll 24s linear infinite;
}

.scrolling-content span {
	display: inline-flex;
	align-items: center;
	font-family: var(--accent-font);
	font-size: 22px;
	line-height: 1.1em;
	font-weight: 500;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

#home-about p{
  color: black !important;;
}
.scrolling-content span i{
	font-size: 8px;
	color: white;
	margin-right: 20px;
}
.btn-default {
	display: inline-block;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1em;
	color: #082932 !important;
	background: transparent;
	text-align: start;
	padding: 16px 60px 16px 20px;
	border: 2px solid #fec902;
	border-radius: 100px;
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-default::before {
	content: '\f061';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	font-family: 'FontAwesome';
	font-size: 16px;
	font-weight: 900;
	width: 36px;
	height: 36px;
	color: #ffffff !important;
	background-color: #082932;
	border: 1.5px solid #fec902;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
	transform: translate(-6px, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-default::after { 
	content: '';
	display: block;
	width: 0;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
  color:#fff !important;
	background: #082932;
	border-radius: 30px;
	transition: all 0.3s ease-in-out;
}

.btn-default:hover {
	color: #ffffff !important;
}

.btn-default:hover::after {
	width: 100%;
}

.btn-default:hover::before {
	background-color: #fec902;
	color: #082932;
}


    .gallerys-img {
      width: 100%;
      border-radius: 10px;
      height:300px !important;
      object-fit: cover;
      transition: transform 0.3s ease-in-out;
    }
    .gallerys-img:hover {
      transform: scale(1.03);
    }
    .gallery-container {
      padding-top: 60px;
      padding-bottom: 60px;
    }
.desBtn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 16rem;
  height: 3rem;
  padding: 0;
  cursor: pointer;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
  transition: 0.5s;
  
  background-color: #082932; /* solid dark background */
  border: 4px solid #ffce53; /* solid golden border */
  
  /* Remove gradient and animation */
  background-image: none;
  animation: none;

  text-decoration: none;
  overflow: hidden;
  color: #ffce53;
  font-weight: bold;
  letter-spacing: 5px;
  font-size: 12px;
  text-shadow: 0 0 6px #ffce53;
  z-index: 1;
}


  /* container for stars */
  .desBtn #container-stars {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
  }

  /* glow circles */
  .desBtn #glow {
    position: absolute;
    display: flex;
    width: 12rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
  }

  .desBtn .circle {
    width: 100%;
    height: 30px;
    filter: blur(2rem);
    animation: pulse_3011 4s infinite;
    z-index: -1;
  }

  .desBtn .circle:nth-of-type(1) {
    background: rgba(255, 206, 83, 0.6); /* golden glow */
  }

  .desBtn .circle:nth-of-type(2) {
    background: rgba(254, 149, 53, 0.5); /* warm orange-yellow */
  }

  .desBtn:hover #container-stars {
    z-index: 1;
    background-color: #082932;
  }

  .desBtn:hover {
    transform: scale(1.1);
  }
  .desBtn:hover strong {
  color: #ffce53;           /* keep the golden color */
  text-shadow: 0 0 8px #ffce53; /* stronger glow on hover */
  position: relative;       /* ensure it stays on top */
  z-index: 2;
}


  .desBtn:active {
    border: double 4px #ffce53;
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: none;
  }

  .desBtn:active .circle {
    background: #ffce53;
  }

  .desBtn #stars {
    position: relative;
    background: transparent;
    width: 200rem;
    height: 200rem;
  }

  .desBtn #stars::after {
    content: "";
    position: absolute;
    top: -10rem;
    left: -100rem;
    width: 100%;
    height: 100%;
    animation: animStarRotate 90s linear infinite;
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
  }

  .desBtn #stars::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 170%;
    height: 500%;
    animation: animStar 60s linear infinite;
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
    opacity: 0.5;
  }

  @keyframes animStar {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-135rem);
    }
  }

  @keyframes animStarRotate {
    from {
      transform: rotate(360deg);
    }
    to {
      transform: rotate(0);
    }
  }

  @keyframes gradient_301 {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  @keyframes pulse_3011 {
    0% {
      transform: scale(0.75);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
      transform: scale(0.75);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
  }
.our-story-section p{
  text-align: justify;
  color:black;
}



@media (max-width:1080px){
  .header-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.dish-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ffce53;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}
.about-banner {
    position: relative;
    background: url('../image/menu.avif') center / cover no-repeat;
    padding: 152px 0;
    color: #fff;
    overflow: hidden;
}
.event-card img
 {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}
}
/* Default: 1 column on mobile, 2 columns on tablets */
.custom-lg-3 {
  flex: 0 0 50%;
  max-width: 50%;
}

@media (min-width: 576px) {
  .custom-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* At exactly 1024px and above → 4 columns */
@media (min-width: 1024px) {
  .custom-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .dish-card h4 {
    color: #082932;
    transition: color 0.3s ease;
    font-size: 18px;
}
.expertise-subtitles {
    font-family: 'Playfair Display', serif;
    color: #082932;
    font-weight: 600;
    margin-top: 10px;
    font-size: 22px;
}
}


@media(max-width:1280px){
  .about-banner {
    position: relative;
    background: url('../image/menu.avif') center / cover no-repeat;
    padding: 150px 0;
    color: #fff;
    overflow: hidden;
}
}

@media (max-width: 768px) {
    .dish-img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 15px;
        border: 3px solid #ffce53;
        box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    }
    .dish-card h5{
      font-size: 19px;
      /* color:#082932; */
    }
    .intro-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    padding: 50px;
}
    .event-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 15px;
    }
    .dish-card h4 {
    color: #082932;
    transition: color 0.3s ease;
    font-size: 17px;
}
}


    .Contactmain {
      background: url('https://img.freepik.com/premium-psd/long-wooden-table-filled-with-fresh-ingredients-like-fruits-vegetables-meats-while-three-men-prepare-meal-background_1031128-16645.jpg?w=1060') no-repeat center center/cover;
      color: white;
      font-family: 'Poppins', sans-serif;
      min-height: 50vh;
      overflow-x: hidden;
    }

    .overlay {
      background: rgba(0, 0, 0, 0.7); /* stronger overlay for better contrast */
      /* padding: 50px 0; */
      min-height: 50vh;
    }

    .Contactmain h5 {
      font-family: 'Playfair Display', serif;
      color: #ffce53;
      font-weight: 700;
      margin-bottom: 15px;
    }

    p, a, input::placeholder, textarea::placeholder {
      font-family: 'Poppins', sans-serif;
      color: white;
    }

    a {
      color: #ffce53;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }

    .form-control {
      background: transparent;
      border: none;
      border-bottom: 1px solid white;
      border-radius: 0;
      color: white;
      font-family: 'Poppins', sans-serif;
    }

    .form-control::placeholder {
      color: rgba(255, 255, 255, 0.7);
      font-family: 'Poppins', sans-serif;
    }

    .submit-btn {
      background-color: #ffce53;
      border: none;
      padding: 10px 20px;
      font-weight: bold;
      text-transform: uppercase;
      color: #082932;
      font-family: 'Poppins', sans-serif;
      transition: background-color 0.3s ease;
    }

    .contact-info {
      background: rgba(255, 255, 255, 0.1);
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 20px;
      color: white;
    }

    .contact-info i {
      font-size: 28px;
      margin-bottom: 10px;
      color: #ffce53;
    }
    .map-iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  display: block;
}
/* Responsive Contact Page Styling */
@media (max-width: 992px) {
  .Contactmain {
    min-height: auto;
    /* padding: 40px 15px; */
  }
/*   
  .overlay {
    padding: 30px 15px;
  } */

  .contact-info {
    text-align: center;
  }

  .contact-info i {
    font-size: 24px;
  }

  .map-iframe {
    height: 250px;
  }
}

@media (max-width: 576px) {
  h5 {
    font-size: 18px;
  }
  
  .form-control {
    font-size: 14px;
  }
  
  .submit-btn {
    width: 100%;
    padding: 12px;
  }
  
  .contact-info {
    font-size: 14px;
    padding: 15px;
  }
  
  .map-iframe {
    height: 200px;
  }
}
@media (max-width: 992px) {
  .intro-section .auto-container {
    position: relative;
    z-index: 3;
    max-width: 1400px; /* This can be reduced if needed for smaller screens */
    margin: 0 auto;
    padding: 20px !important; /* Forces padding override */
  }

  .fact-count{
    padding: 25px;
  }
      .dish-img {
        width: 100px !important;
        height: 100px !important;
    }
    .dish-card h4 {
    color: #082932;
    transition: color 0.3s ease;
    font-size: 18px !important;
}
}
/* @media(max-width:450px){
    #Aq{
    margin-left: 10px !important;
  }
} */



/* PRELOADER FULL SCREEN */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0d1b2a;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CENTER LOADER */
.loader {
  text-align: center;
}

/* BUILDING DESIGN */
.building {
  width: 80px;
  height: 120px;
  background: #1b263b;
  position: relative;
  border-radius: 5px;
  animation: float 2s ease-in-out infinite;
}

/* WINDOWS GRID */
.windows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
}

.windows span {
  width: 15px;
  height: 15px;
  background: #415a77;
  display: block;
  border-radius: 2px;
  animation: blink 1.5s infinite;
}

/* RANDOM WINDOW ANIMATION */
.windows span:nth-child(odd) {
  animation-delay: 0.5s;
}
.windows span:nth-child(even) {
  animation-delay: 1s;
}

/* TEXT */
.loading-text {
  margin-top: 15px;
  color: #e0e1dd;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ANIMATIONS */
@keyframes blink {
  0%, 100% { background: #415a77; }
  50% { background: #ffd60a; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}