.key-about {
    background-color: #4b0101;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    /* font-family: "Lora", serif; */
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s;
    border: 1px solid #db972f;
}

.key-about:hover {
    transform: translateY(-5px);
}

.key-about h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #db972f;
    padding-bottom: 5px;
    font-family: "Lora", serif;
}

.key-links {
    background-color: #4b0101;
    /* soft background */
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s;
    border: 1px solid #db972f;
}

.key-links:hover {
    transform: translateY(-5px);
}

.key-links h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #db972f;
    padding-bottom: 5px;
    font-family: "Lora", serif;
}

.key-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-links ul li {
    margin: 0px 0;
}

.key-links ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 8px 12px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.key-links ul li a:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateX(5px);
}

.key-contact {
    background-color: #4b0101;
    /* soft background */
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s;
    border: 1px solid #db972f;
}

.key-contact:hover {
    transform: translateY(-5px);
}

.key-contact h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #db972f;
    padding-bottom: 5px;
    font-family: "Lora", serif;
}

.key-contact p a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.key-baner-div {
    width: 100%;
    height: 340px;
    margin-bottom: 30px;
}

.key-baner-div img {
    width: 100%;
    height: 340px;
    /* margin-bottom: 30px; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.key-main h2 {
    text-align: left !important;
}

.caterer-para {
    font-size: 26px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-family: "Lora", serif;
    font-weight: 600;
}

.about-prem-card {
    background: linear-gradient(145deg, #fff6f0, #ffece6);
    border-radius: 25px;
    padding: 20px 20px;
    max-width: 555px;
    max-height: 490px;
    flex: 1 1 45%;
    /* text-align: center; */
    box-shadow: 0 20px 40px rgba(233, 78, 119, 0.2);
    transition: transform 0.4s, box-shadow 0.4s;
    border: 1px solid red;
}

.about-prem-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7e7e, #ad0101);
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(233, 78, 119, 0.3);
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    margin: 0 0 15px 0;
    color: #4b0101;
    font-size: 20px;
    font-weight: 700;
}

.service-content ul {
    list-style: disc;
    padding-left: 20px;
}

.service-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}


/* testimonial css */
.testimonial-section {
  /* padding: 60px 20px;
  background: #f8f9fa; */
  text-align: center;
}

/* .section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
} */

.testimonial-container {
  position: relative;
  max-width: 800px;
  margin: auto;
}

/* .testimonial-wrapper {
  overflow: hidden;
  position: relative;
} */

.testimonial-card {
  display: none;
  background: #fff;
  padding: 35px 30px;
  border-radius: 14px;
 box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: opacity 0.5s ease;
}

.testimonial-card.active {
  display: block;
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  font-weight: 600;
}

.testimonial-card h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 4px;
  font-weight: 700;
}

.testimonial-card span {
  font-size: 14px;
  color: #888;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4b0101;
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
}

.nav-btn:hover {
  background: #6b4f02;
}

.prev {
  left: -70px;
}

.next {
  right: -70px;
}

/* Responsive */
@media (max-width: 768px) {
  .prev { left: 0; }
  .next { right: 0; }

  .testimonial-card {
            padding: 40px 40px;
  }
}

.banner_text h1 {
    color: #fff;
    /* padding-top: 130px; */
    font-family: "Playfair Display", serif;
    font-weight: bold;
    font-size: 45px;
    margin-top: 30px;
}
.menu-headings h6 {
    color: rgb(214, 17, 1);
    font-family: Satisfy, cursive;
    font-weight: 600;
    font-size: 35px;
    margin: 0;
}


.menu-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .menu-card {
    background: #fff5f0;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }

  .menu-card:hover {
    transform: translateY(-5px);
  }

  .menu-card i {
        font-size: 35px;
    color: #e74c3c;
    margin-bottom: 15px;
  }

  .menu-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
        color: #000000;
    font-weight: 600;
  }

  .menu-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* 3-Step Process */
  .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
  }

  .step-card {
    background: #fff5f0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 280px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }

  .step-card:hover {
    transform: translateY(-5px);
  }

  .step-card i {
        font-size: 35px;
    color: #e74c3c;
    margin-bottom: 20px;
  }

  .step-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #000000;
    font-weight: 600;
  }

  .step-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  @media(max-width:768px){
    .steps {
      flex-direction: column;
      align-items: center;
    }
  }

  .how-caterers {
        font-size: 30px;
    font-weight: 700;
        font-family: "Lora", serif;
  }




/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* .faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #222;
} */

/* FAQ Item */
.faq-item {
    border-radius: 10px;
    margin-bottom: 15px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Question */
.faq-question {
    padding: 18px 22px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f9f9f9;
}

/* Icon */
.faq-question span {
    font-size: 24px;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fafafa;
}

.faq-answer p {
    padding: 18px 22px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}







@media(max-width: 768px) {

    .key-about {
        max-width: 100%;
    }

    .key-links {
        max-width: 100%;
    }

    .key-contact {
        max-width: 100%;
    }

    .key-baner-div img {
        width: 100%;
        height: auto;
    }

    .key-baner-div {
        width: 100%;
        height: auto;
    }
    .banner_text h1 {
    font-size: 30px;
}

.about-prem-card {
    max-height: 760px;
}
.caterer-para {
    font-size: 22px;
}
}