.hero-section {
  position: relative;
  min-height: 90vh;
  background: url("/mnt/data/7eaf4083-331d-4377-bb4f-4488a877947c.png")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Left Content */
.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.hero-content h3 {
  color: #ffc107;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.rating {
  color: #ffc107;
  font-size: 22px;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-block;
  background: #ffc107;
  color: #000;
  padding: 12px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}

/* Right Form */
.enquiry-box {
  background: #fff;
  color: #000;
  padding: 25px;
  width: 360px;
  border-radius: 6px;
}

.enquiry-box h2 {
  margin-bottom: 15px;
  font-size: 22px;
}

.enquiry-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.enquiry-box input,
.enquiry-box select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.enquiry-box button {
  background: #000;
  color: #fff;
  padding: 12px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .enquiry-box {
    width: 100%;
    max-width: 400px;
  }
}

.choose-section {
  background: #f3f6f3;
  padding: 80px 20px;
}

.choose-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left */
.choose-left {
  flex: 1;
}

.choose-left h2 {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: bold;
}

.choose-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #444;
}

.whatsapp-btn {
  display: inline-block;
  background: #0a9d44;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

/* Right Cards */
.choose-right {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 24px 24px 24px 0;
  text-align: center;
}

.feature-card img {
  width: 60px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Responsive */
@media (max-width: 900px) {
  .choose-container {
    flex-direction: column;
  }

  .choose-right {
    grid-template-columns: 1fr;
  }

  .choose-left h2 {
    font-size: 28px;
  }
}

.occasion-section {
  background: #ffffff;
  padding: 70px 20px;
}

.occasion-container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.occasion-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.occasion-card:hover {
  transform: translateY(-5px);
}

.occasion-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.occasion-card h3 {
  font-size: 16px;
  margin: 15px 0;
}

.wa-btn {
  display: inline-block;
  background: #0a9d44;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .occasion-grid {
    grid-template-columns: 1fr;
  }
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.section-title {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 40px;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.rating-box {
  text-align: center;
  border: 1px solid #ddd;
  padding: 20px;
}

.rating-box img {
  width: 80px;
  margin-top: 10px;
}

.stars {
  color: #f4b400;
  font-size: 18px;
  margin: 10px 0;
}

.testimonial-card {
  border: 1px solid #ddd;
  padding: 20px;
  background: #fff;
}

.user {
  display: flex;
  gap: 10px;
  align-items: center;
}

.user img {
  border-radius: 50%;
}

.testimonial-card p {
  font-size: 14px;
  color: #444;
}

.testimonial-card a {
  color: #777;
  font-size: 13px;
}

.story-section {
  background: #1f1f1f;
  color: #fff;
  text-align: center;
}

.story-section p {
  max-width: 900px;
  margin: 15px auto;
  line-height: 1.6;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 25px;
  background: #25d366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Tablet */
@media (max-width: 1024px) {
  .testimonials-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .rating-box {
    grid-column: span 2;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }

  .testimonials-wrapper {
    grid-template-columns: 1fr;
  }

  .rating-box {
    grid-column: span 1;
  }

  .testimonial-card {
    padding: 16px;
  }

  .testimonial-card p {
    font-size: 13px;
  }

  .stars {
    font-size: 16px;
  }

  .user h4 {
    font-size: 14px;
  }

  .user span {
    font-size: 12px;
    color: #777;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .section-title {
    font-size: 16px;
    padding: 12px;
  }

  .rating-box h3 {
    font-size: 16px;
  }

  .rating-box img {
    width: 65px;
  }

  .whatsapp-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}


.two-column {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.content h2 span {
  font-weight: bold;
}

.content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

/* CTA Bar */
.cta-bar {
  background: #000;
  color: #fff;
  padding: 25px 20px;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-container h3 {
  margin: 0;
  font-size: 20px;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

@media (max-width: 992px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .img-bottom {
    width: 100%;
    margin-left: 0;
  }

  .cta-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.images {
  position: relative; /* REQUIRED */
  width: 100%;
}

.images img {
  width: 100%;
  border: 4px solid #f2c200;
  border-radius: 10px;
}

/* Top image */
.img-top {
  position: relative;
  z-index: 2;
}

/* Bottom overlapping image */
.img-bottom {
  position: absolute;
  bottom: -40px;      /* controls overlap */
  right: -30px;       /* controls horizontal shift */
  width: 75%;
  z-index: 1;
  background: #fff;
}

@media (max-width: 768px) {
  .img-bottom {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    margin-top: 20px;
  }
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.subtitle {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Section background (light grey like screenshot) */
.features-section {
  background: #f3f6f4;
  padding: 60px 20px;
}

/* Card */
.feature-card {
  background: #ffffff;
  border-radius: 55px 55px 55px 0;
  padding: 40px 30px;
  text-align: center;

  width: 20vw;
  margin: auto;

  box-shadow: none;
  height:55vh;
}

/* Icon wrapper */
.icon-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 22px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon image */
.icon-wrap img {
  width: 70px;
  height: auto;
}

/* Title */
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}

/* Description text */
.feature-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #6b7280;
  margin: 0;
}
/* CTA BAR */
.cta-bar {
  background: #000;
  padding: 25px 20px;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.cta-container h3 {
  margin: 0;
  font-size: 20px;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .why-choose-us h2 {
    font-size: 22px;
  }
}


/* GENERAL */
section {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

h2, h3 {
  margin-bottom: 15px;
}

/* FIRST SECTION */
.customer-showcase {
  background: #ffffff;
}

.cs-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.cs-content {
  flex: 1;
}

.cs-title {
  font-size: 28px;
  font-weight: bold;
}

.cs-text {
  line-height: 1.7;
  margin-bottom: 12px;
  color: #444;
}

.cs-media {
  flex: 1;
}

.cs-video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
}

.cs-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* CTA BAR */
.cta-bar {
  background: #000;
  color: #fff;
}

.cta-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cta-btn {
  background: #1db954;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* SECOND SECTION */
.menu-highlight {
  background: #f9f9f9;
}

.mh-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.mh-text {
  flex: 1;
}

.mh-image {
  flex: 1;
}

.mh-image img {
  width: 100%;
  border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cs-wrapper,
  .mh-wrapper {
    flex-direction: column;
  }

  .cta-inner {
    text-align: center;
    gap: 15px;
  }
}

.corporate-catering {
  background: #050b10;
  padding: 70px 20px;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.cc-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.cc-image {
  flex: 1;
}

.cc-image img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.cc-content {
  flex: 1;
}

.cc-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}

.cc-content p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #e2e2e2;
}

.cc-btn {
  display: inline-block;
  margin-top: 20px;
  background: #1db954;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cc-container {
    flex-direction: column;
    text-align: center;
  }

  .cc-content h2 {
    font-size: 24px;
  }

  .cc-btn {
    margin-inline: auto;
  }
}
/* MENU GALLERY */
.menu-gallery {
  padding: 70px 20px 40px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.mg-title {
  font-size: 30px;
  font-weight: bold;
  color: #8b0000;
  margin-bottom: 40px;
}

.mg-slider {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.mg-card {
  overflow: hidden;
  border-radius: 6px;
}

.mg-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mg-card:hover img {
  transform: scale(1.05);
}

/* DOTS */
.mg-dots {
  margin-top: 25px;
}

.mg-dots span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #bbb;
  border-radius: 50%;
  margin: 0 4px;
}

/* CTA BAR */
.hire-cta {
  background: linear-gradient(90deg, #000, #1a1a1a);
  padding: 30px 20px;
}

.hc-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.hc-btn {
  background: #1db954;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mg-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .mg-slider {
    grid-template-columns: 1fr;
  }

  .hc-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}



.faq-section {
  padding: 50px 20px;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #f2f2f2;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #eaeaea;
}

.faq-question .icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #2e7d32;
  border-bottom: 2px solid #2e7d32;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-question.active .icon {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 15px 20px;
  margin: 0;
  font-size: 15px;
  color: #444;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-question {
    font-size: 15px;
    padding: 15px;
  }

  .faq-container h2 {
    font-size: 22px;
  }
}


.contact-map-section {
  padding: 50px 20px;
  background: #ffffff;
}

.contact-map-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* LEFT BOX */
.contact-box {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 6px;
}

.contact-box h2 {
  margin-bottom: 15px;
}

.contact-box h3 {
  margin-top: 30px;
}

.contact-box p {
  line-height: 1.7;
  font-size: 15px;
}

/* CONTACT INFO */
.contact-info {
  margin-top: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #c99700;
  margin-right: 15px;
  position: relative;
}

.icon.phone::after {
  content: "📞";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.icon.email::after {
  content: "✉️";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 20px;
}

/* MAP */
.map-box h2 {
  margin-bottom: 15px;
}

.map-box iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 6px;
}

/* 📱 RESPONSIVE */
@media (max-width: 900px) {
  .contact-map-container {
    grid-template-columns: 1fr;
  }

  .map-box iframe {
    height: 350px;
  }
}

/* Hide by default (Desktop & Laptop) */
.mobile-bottom-bar {
  display: none;
}

/* Show ONLY on mobile screens */
@media (max-width: 767px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    border-top: 2px solid #ff6600;
    font-family: Arial, sans-serif;
  }

  .mobile-bottom-bar .item {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-right: 2px solid #ff6600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .mobile-bottom-bar .item:last-child {
    border-right: none;
  }

  .mobile-bottom-bar .call {
    background: #ffffff;
    color: #000;
  }

  .mobile-bottom-bar .whatsapp {
    background: #25D366;
    color: #ffffff;
  }

  .mobile-bottom-bar .enquiry {
    background: #ffffff;
    color: #000;
  }
}
