/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.ff-secondary {
    font-family: 'Pacifico', cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #c22a2e;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff !important;
}

.navbar-dark .navbar-brand img {
    /* max-height: 60px; */
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    /* max-height: 45px; */
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .navbar-dark .navbar-brand img {
        /* max-height: 45px; */
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #c22a2e !important;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url(../img/bg-hero.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: #c22a2e;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background:#c22a2e;
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.py-51{
    padding-top: 3rem !important;
}
.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #c22a2e !important;
    border-color:#c22a2e !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: #c22a2e;
    border-color: #c22a2e;
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Section with Background */
.services-section {
  background-image: url('../img/bg.png'); /* Catering buffet background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax-style scroll */
  background-repeat: no-repeat;
  padding: 100px 20px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* Dark Overlay for readability */
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
     background: rgb(0 0 0 / 88%);

  backdrop-filter: blur(2px);
}

.overlay {
  position: relative;
  z-index: 2;
}

/* Title */
.section-titlex {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  /* text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3); */
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
}

/* Card Styling */
.service-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.18);
}

/* Image */
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #b81c1c;
}

/* Content */
.service-content {
  padding: 20px;
  text-align: center;
}

.service-content h3 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-content p {
  font-size: 0.95rem;
  color: #f3f3f3;
  line-height: 1.5;
  margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
}

.read-more {
  display: inline-block;
  padding: 8px 16px;
  background: #b81c1c;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  font-family: 'Nunito', sans-serif;
}

.read-more:hover {
  background: #8e1212;
  color:white
}


        .why-choose-us {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-subtitle {
            color: #e74c3c;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        
        .section-title1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-title1:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #e74c3c;
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        .section-description {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: #fff5f5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #e74c3c;
            font-size: 28px;
        }
        
        .feature-title {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .feature-description {
            color: #7f8c8d;
            font-size: 1rem;
        }
        
        .feature-card:nth-child(2) .feature-icon {
            background: #f0f9ff;
            color: #3498db;
        }
        
        .feature-card:nth-child(3) .feature-icon {
            background: #f0fff4;
            color: #2ecc71;
        }
        
        .feature-card:nth-child(4) .feature-icon {
            background: #fffaf0;
            color: #f39c12;
        }
        
        .feature-card:nth-child(5) .feature-icon {
            background: #f8f0ff;
            color: #9b59b6;
        }
        
        .feature-card:nth-child(6) .feature-icon {
            background: #fff0f5;
            color: #e84393;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 1rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }


        .we {
  background-image: url(../img/bg-pattern.png); /* 👈 your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* gives a nice parallax effect */
  position: relative;
  z-index: 1;
  margin-top: -50px;;
  
}

/* Optional: Add a soft overlay for better readability */
.we::before {
  content: "";
  position: absolute;
  inset: 0;
  background:rgb(255 255 255 / 92%); /* light overlay tint */
  z-index: -1;
}

        .we1 {
  background-image: url(../img/bg-pattern.png); /* 👈 your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* gives a nice parallax effect */
  position: relative;
  z-index: 1;
  /* margin-top: -20px;; */
  
}

/* Optional: Add a soft overlay for better readability */
.we1::before {
  content: "";
  position: absolute;
  inset: 0;
  background:rgb(255 255 255 / 92%); /* light overlay tint */
  z-index: -1;
}


        .wee {
  background-image: url(../img/bg-pattern.png); /* 👈 your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* gives a nice parallax effect */
  position: relative;
  z-index: 1;
  /* margin-top: -50px;; */
  
}

/* Optional: Add a soft overlay for better readability */
.wee::before {
  content: "";
  position: absolute;
  inset: 0;
  background:rgb(255 255 255 / 92%); /* light overlay tint */
  z-index: -1;
}


        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
/*         
        h1 {
            text-align: center;
            margin: 30px 0;
            color: #2c3e50;
            font-size: 2.5rem;
        } */
        
        .design-selector {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .design-btn {
            padding: 12px 25px;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .design-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }
        
        .design-btn.active {
            background: #2c3e50;
        }
        
        .faq-section {
            display: none;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }
        
        .faq-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Design 1: Modern Split Layout */
        .design-1 .faq-container {
            display: flex;
            flex-wrap: wrap;
            min-height: 500px;
        }
        
        .design-1 .faq-content {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            background: #f8f9fa;
        }
        
        .design-1 .faq-image {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(135deg, #c22a2e 0%, #400c0d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            color: white;
        }
        
        .design-1 .faq-image-content {
            text-align: center;
            max-width: 400px;
        }
        
        .design-1 .faq-image i {
            font-size: 5rem;
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .design-1 .faq-image h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
                color: white;
        }
        
        .design-1 .faq-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            background: white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .design-1 .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            background-color: #fff;
            transition: background-color 0.3s;
        }
        
        .design-1 .faq-question:hover {
            background-color:  #7e1b1d  ;
            color:white;
        }
        
        .design-1 .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: #7e1b1d;
            transition: transform 0.3s;
        }
        
        .design-1 .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .design-1 .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            background-color: white;
        }
        
        .design-1 .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* Design 2: Card Style */
        .design-2 .faq-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            padding: 40px;
        }
        
        .design-2 .faq-content {
            flex: 2;
            min-width: 300px;
        }
        
        .design-2 .faq-image {
            flex: 1;
            min-width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .design-2 .faq-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .design-2 .faq-item {
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-left: 5px solid #3498db;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .design-2 .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .design-2 .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            background-color: #fff;
        }
        
        .design-2 .faq-question i {
            margin-right: 15px;
            color: #3498db;
            font-size: 1.2rem;
        }
        
        .design-2 .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s, padding 0.4s;
            background-color: white;
        }
        
        .design-2 .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* Design 3: Minimalist */
        .design-3 .faq-container {
            display: flex;
            flex-wrap: wrap;
            min-height: 500px;
        }
        
        .design-3 .faq-content {
            flex: 1;
            min-width: 300px;
            padding: 50px;
            background: white;
        }
        
        .design-3 .faq-image {
            flex: 1;
            min-width: 300px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }
        
        .design-3 .faq-image-content {
            text-align: center;
        }
        
        .design-3 .faq-image-content i {
            font-size: 6rem;
            color: #3498db;
            margin-bottom: 20px;
        }
        
        .design-3 .faq-image-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .design-3 .faq-item {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .design-3 .faq-question {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.2rem;
            padding: 10px 0;
        }
        
        .design-3 .faq-question::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 1.2rem;
            color: #3498db;
            transition: transform 0.3s;
        }
        
        .design-3 .faq-item.active .faq-question::after {
            transform: rotate(180deg);
        }
        
        .design-3 .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .design-3 .faq-item.active .faq-answer {
            padding: 15px 0 0;
            max-height: 500px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .design-1 .faq-container,
            .design-2 .faq-container,
            .design-3 .faq-container {
                flex-direction: column;
            }
            
            .design-1 .faq-content,
            .design-1 .faq-image,
            .design-2 .faq-content,
            .design-2 .faq-image,
            .design-3 .faq-content,
            .design-3 .faq-image {
                width: 100%;
            }
            
            .design-1 .faq-image,
            .design-3 .faq-image {
                padding: 40px 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
        }




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

    /* Trusted Section */
    .trusted-section {
      padding: 80px 0;
      background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                  url('https://images.unsplash.com/photo-1555244162-803834f70033?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
      background-size: cover;
      background-position: center;
    }

    .trusted-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
    }

    .trusted-content {
      flex: 1;
      min-width: 300px;
      padding-right: 40px;
    }

    .trusted-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .trusted-image img {
      max-width: 100%;
      border-radius: 10px;
      /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    }

    .trusted-title {
      font-size: 3rem;
      color: #2c3e50;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .trusted-subtitle {
      background: #c22a2e;
      color: white;
      padding: 8px 15px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .trusted-subtitle i {
      margin-right: 8px;
      color: #feb47b;
    }

    .trusted-description {
      margin-bottom: 30px;
      font-size: 1.1rem;
      color: #555;
    }

    .trusted-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }

    .trusted-feature {
      display: flex;
      align-items: flex-start;
    }

    .trusted-feature i {
      color: #ff7e5f;
      margin-right: 15px;
      font-size: 1.2rem;
      margin-top: 5px;
    }

    .trusted-feature-text h3 {
      font-size:16px;
      margin-bottom: 5px;
      color: #2c3e50;
    }

    .trusted-feature-text p {
      color: #7f8c8d;
      font-size: 0.95rem;
    }

    .trusted-buttons {
      display: flex;
      gap: 15px;
    }

    .trusted-btn {
      padding: 12px 25px;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .trusted-btn-primary {
     background: linear-gradient(135deg, #c22a2e 0%, #c22a2e 100%);
      color: white;
      box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
    }

    .trusted-btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 126, 95, 0.6);
    }

    .trusted-btn-secondary {
      background: transparent;
      color: #2c3e50;
      border: 2px solid #2c3e50;
    }

    .trusted-btn-secondary:hover {
      background: #2c3e50;
      color: white;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
      .trusted-title {
        font-size: 2.5rem;
      }

      .trusted-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
      }

      .trusted-row {
        flex-direction: column;
      }

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

      .trusted-buttons {
        justify-content: center;
      }
    }

    @media (max-width: 576px) {
      .trusted-title {
        font-size: 2rem;
      }

      .trusted-section {
        padding: 50px 0;
      }

      .trusted-subtitle {
        font-size: 0.8rem;
      }

      .trusted-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
      }

      .trusted-buttons {
        flex-direction: column;
        gap: 10px;
      }
    }



         .hero {
            padding: 80px 0;
            text-align: center;
            background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffd700, #ffed4e, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            letter-spacing: 2px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 40px;
            color: #b0b0b0;
        }
        
        /* Menu Section */
        .menu-section {
            padding: 60px 0;
        }
        
        .menu-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .menu-card {
               background: rgb(194 42 46);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }
        
        .menu-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #000000, #000000);
        }
        
        .menu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            background: rgb(194 42 46);
        }
        
        .menu-card-content {
            padding: 30px;
            text-align: center;
        }
        
        .menu-icon {
            font-size: 3rem;
            color: #ffd700;
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }
        
        .menu-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .menu-description {
            color: #ffffff;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }
        
        .download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 25px;
            background: linear-gradient(45deg, #ffffff, #ffffff);
            color: #c22a2e;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }
        
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
        }
        
        .download-btn i {
            margin-right: 8px;
        }
        
        /* Decorative Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        .element-1 {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .element-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            left: 80%;
            animation-delay: 3s;
        }
        
        .element-3 {
            width: 70px;
            height: 70px;
            top: 80%;
            left: 10%;
            animation-delay: 6s;
        }
        
        .element-4 {
            width: 120px;
            height: 120px;
            top: 30%;
            left: 85%;
            animation-delay: 9s;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }
        
         
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .menu-container {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .menu-container {
                grid-template-columns: 1fr;
            }
            
            .mobile-menu {
                display: block;
            }
            
        
        
        @media (max-width: 576px) {
            .hero {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .menu-card-content {
                padding: 20px;
            }
            
            .menu-title {
                font-size: 1.5rem;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
        }
    }


        .faqs{
                /* padding: 80px 0; */
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1555244162-803834f70033?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
     
        }





            .gallery-img {
      width: 100%;
      border-radius: 10px;
      cursor: pointer;
    }


    .bg-lights{
      background-color: #c12a2e;
    }





