/* ================= Banner Wrapper ================= */
.banner-wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

/* ================= Slider ================= */
.slider {
  display: flex;
  width: 100%;
  height: 100%;
  animation: bannerSlide 12s infinite;
}

.slide {
  width: 100%;
  flex-shrink: 0;
}

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

/* ================= Content ================= */
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 30px 40px;
  border-radius: 8px;
  color: #fff;
  max-width: 90%;
}

.banner-content h1 {
  font-size: 34px;
  margin-bottom: 12px;
  line-height: 1.3;
  color:#fff;
}

.banner-content p {
  font-size: 18px;
  line-height: 1.6;
  color:#fff;
}

/* ================= Animation ================= */
@keyframes bannerSlide {
  0%, 33% {
    transform: translateX(0);
  }
  36%, 66% {
    transform: translateX(-100%);
  }
  69%, 100% {
    transform: translateX(-200%);
  }
}

/* ================= Tablet ================= */
@media (max-width: 991px) {
  .banner-wrapper {
    height: 40vh;
  }

  .banner-content h1 {
    font-size: 26px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

/* ================= Mobile ================= */
@media (max-width: 576px) {
  .banner-wrapper {
    height: 15vh;
  }

  .banner-content {
    padding: 9px 10px;
  }

  .banner-content h1 {
    font-size: 18px;
  }

  .banner-content p {
    font-size: 14px;
  }
}
/* ===== Section ===== */
.bg-smoke2 {
  background: #f7f7f7;
}

.space {
  padding: 70px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* ===== Title ===== */
.title-area {
  margin-bottom: 40px;
}

.sub-title {
  display: block;
  color: #c49a6c;
  font-weight: 600;
  margin-bottom: 8px;
}

.sec-title {
  font-size: 20px;
  max-width: 700px;
  margin: auto;
}

/* ===== Slider Layout ===== */
.team-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.team-slider::-webkit-scrollbar {
  display: none;
}

/* ===== Card ===== */
.team-box {
  flex: 0 0 15%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.team-box:hover {
  transform: translateY(-6px);
}

.team-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.team-box h3 {
  font-size: 16px;
  padding: 15px;
  text-align: center;
  color: #333;
}

.team-box a {
  text-decoration: none;
  color: inherit;
}

/* ===== Tablet ===== */
@media (max-width: 991px) {
  .team-box {
    flex: 0 0 48%;
  }

  .team-box img {
    height: 200px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 576px) {
  .team-box {
    flex: 0 0 85%;
  }

  .team-box img {
    height: 180px;
  }

  .sec-title {
    font-size: 16px;
  }
}
.catering-section {
  padding: 60px 15px;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

h1 {
  font-size: 34px;
  color: #2d2d2d;
  margin-bottom: 15px;
}

h2 {
  margin-top: 40px;
  font-size: 26px;
  color: #006633;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: #161616;
}

.intro {
  font-size: 17px;
}

.features,
.menu-list {
  margin-top: 20px;
  padding-left: 20px;
}

.features li,
.menu-list li {
  margin-bottom: 8px;
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.areas span {
  background: #006633;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.cta-box {
  margin-top: 50px;
  padding: 30px;
  background: #006633;
  color: #ffffff;
  text-align: center;
  border-radius: 10px;
}

.cta-box h2 {
  color: #ffffff;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  background: #ade1c7;
  color: #000;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 22px;
  }
}






.veg-catering-section{
    padding:70px 20px;
    background:#fff;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:36px;
    color:#0d5d2c;
    margin-bottom:15px;
    line-height:1.4;
}

.section-title p{
    color:#777;
    font-size:18px;
}

.content-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.content-card{
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.content-card:hover{
    transform:translateY(-8px);
}

.content-card h3{
    color:#0d5d2c;
    margin-bottom:20px;
    font-size:24px;
}

.content-card p{
    line-height:1.9;
    margin-bottom:18px;
    text-align:justify;
}

.content-card strong{
    color:#d35400;
}

.cta-buttons{
    margin-top:50px;
    text-align:center;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    margin:10px;
    background:#0d5d2c;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:18px;
    transition:.3s;
}

.btn:hover{
    background:#083c1d;
}

.btn2{
    background:#25D366;
}

.btn2:hover{
    background:#1ca851;
}

/* Tablet */

@media(max-width:992px){

.content-grid{
grid-template-columns:repeat(2,1fr);
}

.section-title h2{
font-size:30px;
}

}

/* Mobile */

@media(max-width:768px){

.content-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:26px;
}

.section-title p{
font-size:16px;
}

.content-card{
padding:25px;
}

.btn{
display:block;
margin:12px auto;
max-width:250px;
}

}
.wedding-catering-section{
    padding:80px 20px;
    background:#f9fcf8;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading span{
    display:inline-block;
    background:#eaf7ea;
    color:#0b7a35;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:38px;
    color:#1f2937;
    margin-bottom:15px;
}

.section-heading p{
    max-width:850px;
    margin:auto;
    line-height:1.8;
    color:#666;
}

.wedding-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-content{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.service-content:hover{
    transform:translateY(-8px);
}

.service-content h3{
    color:#0b7a35;
    margin-bottom:20px;
    font-size:24px;
}

.service-content p{
    line-height:1.9;
    margin-bottom:18px;
    text-align:justify;
}

.service-content strong{
    color:#d35400;
}

.service-highlights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:45px;
}

.highlight-box{
    background:#fff;
    padding:18px;
    text-align:center;
    border-radius:10px;
    font-weight:600;
    box-shadow:0 5px 18px rgba(0,0,0,.06);
}

.cta-area{
    text-align:center;
    margin-top:50px;
}

.call-btn,
.whatsapp-btn{
    display:inline-block;
    padding:15px 35px;
    margin:10px;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.call-btn{
    background:#0b7a35;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn:hover{
    background:#08652b;
}

.whatsapp-btn:hover{
    background:#1ca851;
}

@media(max-width:992px){

.wedding-grid{
grid-template-columns:repeat(2,1fr);
}

.service-highlights{
grid-template-columns:repeat(2,1fr);
}

.section-heading h2{
font-size:32px;
}

}

@media(max-width:768px){

.wedding-grid,
.service-highlights{
grid-template-columns:1fr;
}

.section-heading h2{
font-size:28px;
}

.call-btn,
.whatsapp-btn{
display:block;
max-width:280px;
margin:12px auto;
}

}
.occasion-catering-section{
    padding:80px 20px;
    background:#ffffff;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.sub-title{
    display:inline-block;
    background:#eef9ef;
    color:#0c7a36;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.section-header h2{
    font-size:38px;
    color:#222;
    margin-bottom:15px;
}

.section-header p{
    max-width:850px;
    margin:auto;
    line-height:1.8;
    color:#666;
}

.occasion-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:start;
}

.occasion-content{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.occasion-content h3{
    color:#0c7a36;
    margin-bottom:20px;
    font-size:28px;
}

.occasion-content p{
    line-height:1.9;
    margin-bottom:20px;
    text-align:justify;
}

.occasion-content strong{
    color:#d35400;
}

.occasion-list{
    display:grid;
    gap:15px;
}

.occasion-item{
    background:#f8fff8;
    padding:16px 18px;
    border-left:5px solid #0c7a36;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.occasion-item:hover{
    transform:translateX(6px);
    background:#eef9ef;
}

.occasion-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.stat-box{
    background:#0c7a36;
    color:#fff;
    padding:30px;
    text-align:center;
    border-radius:10px;
}

.stat-box h4{
    font-size:32px;
    margin-bottom:10px;
	color: #fff;
}

.stat-box p{
    margin:0;
    font-size:16px;
	color: #fff;
}

@media(max-width:992px){

.occasion-wrapper{
grid-template-columns:1fr;
}

.occasion-stats{
grid-template-columns:repeat(2,1fr);
}

.section-header h2{
font-size:32px;
}

}

@media(max-width:768px){

.section-header h2{
font-size:28px;
}

.occasion-stats{
grid-template-columns:1fr;
}

.occasion-content{
padding:25px;
}

}
.corporate-catering-section{
    padding:80px 20px;
    background:#f8faf8;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-badge{
    display:inline-block;
    background:#eaf7ea;
    color:#0b7a35;
    padding:8px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.section-header h2{
    font-size:38px;
    color:#222;
    margin-bottom:15px;
}

.section-header p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.corporate-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:40px;
    align-items:center;
}

.corporate-content{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.corporate-content h3{
    color:#0b7a35;
    margin-bottom:20px;
    font-size:28px;
}

.corporate-content p{
    margin-bottom:20px;
    line-height:1.9;
    text-align:justify;
}

.corporate-content strong{
    color:#d35400;
}

.corporate-services{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.service-box{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-box span{
    font-size:34px;
    display:block;
    margin-bottom:12px;
}

.service-box h4{
    color:#0b7a35;
    margin-bottom:10px;
}

.service-box p{
    color:#666;
    line-height:1.6;
}

.corporate-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.feature-card{
    background:#0b7a35;
    color:#fff;
    padding:25px;
    text-align:center;
    border-radius:10px;
}

.feature-card h4{
    margin-bottom:12px;
    font-size:20px;
	color: #fff;
}

.feature-card p{
    line-height:1.7;
	color: #fff;
}

@media(max-width:992px){

.corporate-grid{
grid-template-columns:1fr;
}

.corporate-features{
grid-template-columns:repeat(2,1fr);
}

.section-header h2{
font-size:32px;
}

}

@media(max-width:768px){

.corporate-services{
grid-template-columns:1fr;
}

.corporate-features{
grid-template-columns:1fr;
}

.section-header h2{
font-size:28px;
}

.corporate-content{
padding:25px;
}

}
.traditional-catering-section{
    padding:80px 20px;
    background:#ffffff;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-badge{
    display:inline-block;
    padding:8px 20px;
    background:#edf8ee;
    color:#0d6b2f;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.section-header h2{
    font-size:38px;
    color:#222;
    margin-bottom:15px;
}

.section-header p{
    max-width:850px;
    margin:auto;
    line-height:1.8;
    color:#666;
}

.traditional-grid{
    display:grid;
    grid-template-columns:360px 1fr;
    gap:40px;
    align-items:center;
}

.image-card{
    background:linear-gradient(135deg,#0b7a35,#39a845);
    color:#fff;
    padding:45px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.icon-box{
    font-size:70px;
    margin-bottom:20px;
}

.image-card h3{
    margin-bottom:15px;
    font-size:28px;
	color: #fff;
}

.image-card p{
    line-height:2;
	color: #fff;
}

.traditional-content{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.traditional-content h3{
    color:#0b7a35;
    font-size:28px;
    margin-bottom:20px;
}

.traditional-content p{
    margin-bottom:20px;
    line-height:1.9;
    text-align:justify;
}

.traditional-content strong{
    color:#d35400;
}

.speciality-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.speciality-card{
    background:#f8fff8;
    border:1px solid #d8ecd9;
    border-radius:12px;
    padding:30px 20px;
    text-align:center;
    transition:.3s;
    font-size:40px;
}

.speciality-card:hover{
    transform:translateY(-8px);
}

.speciality-card h4{
    margin:18px 0 12px;
    color:#0b7a35;
    font-size:22px;
}

.speciality-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:992px){

.traditional-grid{
    grid-template-columns:1fr;
}

.speciality-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-header h2{
    font-size:32px;
}

}

@media(max-width:768px){

.speciality-grid{
    grid-template-columns:1fr;
}

.section-header h2{
    font-size:28px;
}

.traditional-content{
    padding:25px;
}

.image-card{
    padding:35px 20px;
}

}
.trusted-catering-section{
    padding:80px 20px;
    background:#f7faf7;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-badge{
    display:inline-block;
    background:#e8f7eb;
    color:#0b7a35;
    padding:8px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.section-header h2{
    font-size:38px;
    color:#222;
    margin-bottom:15px;
}

.section-header p{
    max-width:850px;
    margin:auto;
    line-height:1.8;
    color:#666;
}

.trusted-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
    align-items:start;
}

.trusted-content{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.trusted-content h3{
    color:#0b7a35;
    margin-bottom:20px;
    font-size:28px;
}

.trusted-content p{
    line-height:1.9;
    margin-bottom:20px;
    text-align:justify;
}

.trusted-content strong{
    color:#d35400;
}

.trust-card{
    background:#0b7a35;
    color:#fff;
    padding:35px;
    border-radius:12px;
    position:sticky;
    top:20px;
}

.trust-card h3{
    margin-bottom:20px;
    font-size:26px;
}

.trust-card ul{
    list-style:none;
    padding:0;
}

.trust-card li{
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.15);
    line-height:1.6;
}

.cta-section{
    margin-top:60px;
    text-align:center;
    background:#fff;
    padding:50px 35px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.cta-section h3{
    color:#0b7a35;
    font-size:32px;
    margin-bottom:15px;
}

.cta-section p{
    max-width:850px;
    margin:auto;
    line-height:1.9;
    color:#666;
}

.cta-buttons{
    margin-top:35px;
}

.cta-buttons a{
    display:inline-block;
    margin:10px;
    padding:15px 35px;
    text-decoration:none;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.call-btn{
    background:#0b7a35;
}

.whatsapp-btn{
    background:#25D366;
}

.quote-btn{
    background:#ff7a00;
}

.cta-buttons a:hover{
    transform:translateY(-4px);
}

@media(max-width:992px){

.trusted-grid{
    grid-template-columns:1fr;
}

.trust-card{
    position:static;
}

.section-header h2{
    font-size:32px;
}

}

@media(max-width:768px){

.section-header h2{
    font-size:28px;
}

.trusted-content,
.cta-section{
    padding:25px;
}

.cta-buttons a{
    display:block;
    max-width:260px;
    margin:15px auto;
}

}
.faq-section{
    padding:80px 20px;
    background:#f8faf8;
}

.container{
    max-width:1100px;
    margin:auto;
}

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

.section-title span{
    display:inline-block;
    background:#e8f6ea;
    color:#0b7a35;
    padding:8px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title h2{
    font-size:38px;
    color:#222;
    margin-bottom:15px;
}

.section-title p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
    color:#666;
}

.faq-item{
    background:#fff;
    border-radius:10px;
    margin-bottom:18px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    overflow:hidden;
}

.faq-question{
    width:100%;
    padding:22px 25px;
    background:#fff;
    border:none;
    cursor:pointer;
    text-align:left;
    font-size:18px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#222;
}

.faq-question span{
    font-size:28px;
    color:#0b7a35;
    transition:.3s;
}

.faq-answer{
    display:none;
    padding:0 25px 25px;
}

.faq-answer p{
    line-height:1.9;
    color:#666;
}

.faq-item.active .faq-answer{
    display:block;
}

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

@media(max-width:768px){

.section-title h2{
    font-size:28px;
}

.faq-question{
    font-size:16px;
    padding:18px;
}

.faq-answer{
    padding:0 18px 20px;
}

}


.wedding-service{
    background:#fff;
}

.wedding-service h2{
    font-size:2.2rem;
    line-height:1.3;
}

.wedding-service p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:15px;
}

.wedding-service img{
    transition:.4s;
}

.wedding-service img:hover{
    transform:scale(1.03);
}

@media (max-width:991px){

    .wedding-service{
        text-align:center;
    }

    .wedding-service h2{
        font-size:1.9rem;
    }

}

@media (max-width:576px){

    .wedding-service{
        padding:60px 0;
    }

    .wedding-service h2{
        font-size:1.6rem;
    }

    .wedding-service p{
        font-size:15px;
    }

}

/* Vegetarian Wedding Catering */
.bg-light{
    background:#f8f9fa !important;
}

section h2{
    font-size:2.2rem;
    line-height:1.3;
}

section p{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

section img{
    transition:.4s ease;
}

section img:hover{
    transform:scale(1.03);
}

.border{
    transition:.3s;
}

.border:hover{
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transform:translateY(-5px);
}

@media (max-width:991px){

    section{
        text-align:center;
    }

    section h2{
        font-size:1.9rem;
    }

}

@media (max-width:576px){

    section h2{
        font-size:1.6rem;
    }

    section p{
        font-size:15px;
    }

}
/* Reception Catering Section */

.reception-catering{
    background:#fff;
}

.reception-catering h2{
    font-size:2.2rem;
    line-height:1.3;
}

.reception-catering p{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

.reception-catering img{
    transition:.4s ease;
}

.reception-catering img:hover{
    transform:scale(1.03);
}

.reception-catering .border{
    transition:.3s ease;
}

.reception-catering .border:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

@media (max-width:991px){

    .reception-catering{
        text-align:center;
    }

    .reception-catering h2{
        font-size:1.9rem;
    }

}

@media (max-width:576px){

    .reception-catering h2{
        font-size:1.6rem;
    }

    .reception-catering p{
        font-size:15px;
    }

}
	/* Wedding Celebration */

.wedding-celebration{
    background:#f8f9fa;
}

.wedding-celebration h2{
    font-size:2.2rem;
    line-height:1.3;
    margin-bottom:20px;
}

.wedding-celebration p{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

.wedding-celebration img{
    transition:.4s ease;
}

.wedding-celebration img:hover{
    transform:scale(1.03);
}

.feature-box{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:12px;
    padding:18px;
    font-weight:600;
    transition:.3s ease;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

@media (max-width:991px){

    .wedding-celebration{
        text-align:center;
    }

    .wedding-celebration h2{
        font-size:1.9rem;
    }

}

@media (max-width:576px){

    .wedding-celebration h2{
        font-size:1.6rem;
    }

    .wedding-celebration p{
        font-size:15px;
    }

    .feature-box{
        padding:15px;
    }

}
/* Wedding Menu Section */

.wedding-menu{
    background:#ffffff;
}

.wedding-menu h2{
    font-size:2.2rem;
    line-height:1.3;
}

.wedding-menu p{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

.wedding-menu img{
    transition:.4s ease;
}

.wedding-menu img:hover{
    transform:scale(1.03);
}

.menu-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:12px;
    padding:18px;
    font-weight:600;
    transition:.3s ease;
    height:100%;
}

.menu-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

@media (max-width:991px){

    .wedding-menu{
        text-align:center;
    }

    .wedding-menu h2{
        font-size:1.9rem;
    }

}

@media (max-width:576px){

    .wedding-menu h2{
        font-size:1.6rem;
    }

    .wedding-menu p{
        font-size:15px;
    }

    .menu-card{
        padding:15px;
    }

}
/* Wedding Functions */

.wedding-functions{
    background:#f8f9fa;
}

.service-card{
    background:#fff;
    border-radius:15px;
    padding:30px 20px;
    text-align:center;
    height:100%;
    border:1px solid #e9ecef;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.service-card .icon{
    font-size:40px;
    margin-bottom:15px;
}

.service-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

/* Wedding Packages */

.wedding-packages{
    background:#fff;
}

.wedding-packages h2{
    font-size:2.2rem;
}

.wedding-packages p{
    color:#555;
    line-height:1.9;
}

.wedding-packages img{
    transition:.4s;
}

.wedding-packages img:hover{
    transform:scale(1.03);
}

.package-box{
    background:#f8f9fa;
    border:1px solid #e9ecef;
    border-radius:10px;
    padding:16px;
    font-weight:600;
    transition:.3s;
}

.package-box:hover{
    background:#fff;
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* Responsive */

@media(max-width:991px){

    .wedding-functions,
    .wedding-packages{
        text-align:center;
    }

    .wedding-packages h2{
        font-size:1.9rem;
    }

}

@media(max-width:576px){

    .wedding-packages h2{
        font-size:1.6rem;
    }

    .service-card{
        padding:25px 18px;
    }

}
/* Trusted Wedding Caterers */

.trusted-caterers{
    background:#fff;
}

.trusted-caterers h2{
    font-size:2.2rem;
    line-height:1.3;
}

.trusted-caterers p{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

.trusted-caterers img{
    transition:.4s ease;
}

.trusted-caterers img:hover{
    transform:scale(1.03);
}

.expert-box{
    background:#f8f9fa;
    border:1px solid #e9ecef;
    border-radius:12px;
    padding:18px;
    font-weight:600;
    transition:.3s ease;
    height:100%;
}

.expert-box:hover{
    background:#fff;
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* Responsive */

@media (max-width:991px){

    .trusted-caterers{
        text-align:center;
    }

    .trusted-caterers h2{
        font-size:1.9rem;
    }

}

@media (max-width:576px){

    .trusted-caterers{
        padding:60px 0;
    }

    .trusted-caterers h2{
        font-size:1.6rem;
    }

    .trusted-caterers p{
        font-size:15px;
    }

    .expert-box{
        padding:15px;
    }

}