body {
    font-family: "Poppins", sans-serif;
    color: #444444;
}

a {
    text-decoration: none;
    color: #05374bd0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Satisfy", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #05374b;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #000000;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    padding: 0;
    font-size: 15px;
    height: 50px;
    transition: all 0.5s;
    background: rgba(26, 24, 22, 0.8);
    z-index: 996;
    color: rgba(255, 255, 255, 0.7);
}

#topbar.topbar-transparent {
    background: transparent;
}

#topbar.topbar-scrolled {
    top: -50px;
}

#topbar i {
    color: #fff;
    line-height: 0;
}

#topbar i span {
    color: #fff;
    font-style: normal;
    padding-left: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    top: 50px;
    height: 70px;
    z-index: 997;
    transition: all 0.5s;
    padding: 10px 0;
    background: rgba(26, 24, 22, 0.85);
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    top: 7px;
    margin-left: 5%;
    margin-right: 5%;
    background: linear-gradient(100deg, rgba(5, 55, 75, 0.98), #094e68);
    border-radius: 10px;
    box-shadow: 0px 1px 4px #ffffff;
}

#header .logo img {
    max-height: 60px;
    margin-left: 50px;
}

#header.header-scrolled .logo img {
    max-height: 50px;
    margin-left: 50px;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
#book-a-table-btn {
    font-size: 13px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 600;
    transform: translateX(-50%);
    padding: 10px 20px;
    color: white;
    border-radius: 10px;
    box-shadow: 0px 3px 4px #ffffff;
}

#book-a-table-btn:hover {
    box-shadow: 0px 0px 4px #ffffff;
}

.book-a-table-btn:hover:after {
    opacity: 12;
    /* Show arrow on hover */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 24px;
    font-size: 15px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    font-size: larger;
    font-weight: bold;
}

.navbar a:hover {
    color: #fffcf7;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #433f39;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #05374b;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 1000;
    display: none;
}

@media (max-width: 1085px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(39, 37, 34, 0.9);
    height: 600%;
    transition: 0.3s;
    z-index: 100;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1000;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #433f39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #05374b;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #05374b;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(39, 37, 34, 0.8);
    overflow: hidden;
    padding: 0;
}

#hero .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* carousel front light */
#hero .carousel-item::before {
    content: "";
    background-color: rgba(12, 11, 10, 0.274);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .carousel-content {
    text-align: center;
}

#hero h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
}

#hero h2 span {
    color: #05374b;
}

#hero p {
    width: 80%;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
    list-style-type: none;
}

#hero .btn-menu,
#hero .btn-book {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 0 10px;
    animation-delay: 0.5s;
    color: #fff;
    background-color: #05374be0;
    -webkit-clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
    clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
    color: #fff;
    background: linear-gradient(135deg, #05374b, #031c25);
}

#hero #booked.btn-book:hover {
    color: #fff;
    background: linear-gradient(135deg, #682e1c, #68401C);
}

#hero #booked.btn-menu:hover {
    color: #fff;
    background: linear-gradient(135deg, #68401C, #682e1c);
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    #hero p {
        width: 50%;
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    background-color: white;
}

.section-title {
    text-align: center;
}

.section-title h2 {
    margin: 15px 0 0 0;
    font-size: 32px;
    font-weight: 700;
    color: #5f5950;
}

.section-title h2 span {
    color: #05374b;
}

.section-title p {
    margin: 15px auto 0 auto;
    font-weight: 300;
}

@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #f2f1ef;
    min-height: 40px;
    margin-top: 0px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 40px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: white;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    background: #fffaf3;
}

.about .content {
    padding: 0 80px;
}

.about .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #5f5950;
}

.about .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.about .content p {
    font-size: 15px;
    color: #848484;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li+li {
    margin-top: 15px;
}

.about .content ul li {
    position: relative;
    padding-left: 26px;
}

.about .content ul i {
    font-size: 20px;
    color: #05374b;
    position: absolute;
    left: 0;
    top: 2px;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .video-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
    position: relative;
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#05374b 50%, rgba(255, 176, 59, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 176, 59, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
    border-left: 15px solid #05374b;
    transform: scale(20);
}

.about .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

@media (max-width: 1024px) {

    .about .content,
    .about .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .about .content {
        padding-top: 30px;
    }

    .about .accordion-list {
        padding-bottom: 30px;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Whu Us
--------------------------------------------------------------*/
.why-us .box {
    padding: 70px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    height: 80%;
}

.why-us .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #ffcf88;
}

.why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: #6c665c;
}

.why-us .box p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.why-us .box:hover {
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
    transform: scale(1.03);
    transition: all ease-in-out 0.8s;
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
    color: #ffc56e;
    transition: color ease-in-out 0.3s;
}

#boxc {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    height: 100%;
    padding: 10px 30px;
}

/* .why-us .boxc span {
   display: block;
   font-size: 28px;
   font-weight: 700;
   color: #ffcf88;
 }
 .why-us .boxc h4 {
   font-size: 24px;
   font-weight: 600;
   padding: 0;
   margin: 20px 0;
   color: #6c665c;
 }
 .why-us .boxc p {
   color: #aaaaaa;
   font-size: 15px;
   margin: 0;
   padding: 0;
 }
 .why-us .boxc:hover {
   background: #05374b41;
   padding: 30px 30px 70px 30px;
   box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
 }
 .why-us .boxc:hover span,
 .why-us .boxc:hover h4,
 .why-us .boxc:hover p {
   color: #fff;
 } */
/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
    padding: 0;
    margin: 0 auto 0 auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

.menu #menu-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px 10px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #444444;
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border: 2px solid #05374b;
    border-radius: 50px;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
    color: #fff;
    background: #05374b;
}

.menu #menu-flters li:last-child {
    margin-right: 0;
}

.menu .menu-content {
    margin-top: 30px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.menu .menu-content::after {
    content: "......................................................................""....................................................................""....................................................................";
    position: absolute;
    left: 20px;
    right: 0;
    top: -4px;
    z-index: 1;
    color: #dad8d4;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
    padding-right: 10px;
    background: #fff;
    position: relative;
    z-index: 3;
    font-weight: 700;
    color: #ff9b08;
}

.menu .menu-content span {
    background: #fff;
    position: relative;
    z-index: 3;
    padding: 0 10px;
    font-weight: 600;
}

.menu .menu-ingredients {
    font-style: italic;
    font-size: 14px;
    font-family: "Comic Neue", sans-serif;
    color: #948c81;
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
    overflow: hidden;
}

.specials .nav-tabs {
    border: 0;
}

.specials .nav-link {
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: #433f39;
    border-radius: 0;
    border-right: 2px solid #e7e4db;
    font-weight: 600;
    font-size: 15px;
}

.specials .nav-link:hover {
    color: #05374b;
}

.specials .nav-link.active {
    color: #05374b;
    background-color: rgba(105, 105, 105, 0.233);
    -webkit-clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%);
}

.specials .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #433f39;
}

.specials .details p {
    color: #777777;
}

.specials .details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .specials .nav-link {
        border: 0;
        padding: 15px;
    }
}

/* Events Section */
.t_events {
    /* Changed from .events */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../img/bgorganize.png') center center no-repeat;
    background-size: cover;
    object-fit: contacdin;
    position: relative;
    padding: 80px 0;
    height: 510px;
}

.t_events .section-title h1 {
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.t_divider {
    /* Added t_ prefix */
    background: linear-gradient(90deg, #ffcf88, transparent);
    width: 40%;
    height: 3px;
    margin: 0 auto 40px;
}

/* Swiper Container */
.t_events-slider {
    /* Added t_ prefix */
    position: relative;
    padding: 20px 0 60px;
}

.t_event-item {
    /* Added t_ prefix */
    color: #fff;
    padding: 20px;
}

.t_event-item h3 {
    font-weight: 600;
    font-size: 26px;
    color: rgba(255, 255, 255, 0.497);
    margin-bottom: 15px;
}

.t_event-item p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.t_event-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.t_event-item ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.t_event-item img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    object-fit: cover;
}

/* Pagination */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #ffcf88;
}

/* Navigation Arrows */
.t_events-button-prev,
.t_events-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #282c34;
    /* Dark color to match the vibe */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    /* Soft glow */
}

.t_events-button-prev:hover,
.t_events-button-next:hover {
    background: #3a3f47;
    box-shadow: 0 0 10px rgba(107, 106, 106, 0.4);
}

.t_events-button-prev {
    left: 10px;
}

.t_events-button-next {
    right: 10px;
}

/* --- FIX: Swiper Navigation Icon Content --- */
/* The default Swiper content is NOT 'prev' or 'next' as text, 
   but specific Unicode characters (or SVG). 
   You must either include the swiper-icons font/CSS, 
   or use standard Unicode characters. 
   I've switched the font family to a generic one and used 
   Unicode characters for compatibility.
*/
.t_events-button-prev::after,
.t_events-button-next::after {
    /* font-family: 'Arial', sans-serif;  - Removed specific swiper-icons */
    font-size: 24px;
    color: #e2e1e1;
    font-weight: bold;
    /* Resetting default Swiper content */
    content: '';
}

/* Using Unicode or a simple HTML entity for the arrow shapes */
.t_events-button-prev::after {
    content: '\276E';
    /* Heavy Black Leftwards-Pointing Angle Quotation Mark (‹) */
}

.t_events-button-next::after {
    content: '\276F';
    /* Heavy Black Rightwards-Pointing Angle Quotation Mark (›) */
}

/* --- END FIX --- */
/* Responsive adjustments */
@media (max-width: 768px) {
    .t_events {
        padding: 50px 0;
    }

    .t_events .section-title h1 {
        font-size: 2rem;
    }

    .t_events-button-prev,
    .t_events-button-next {
        width: 40px;
        height: 40px;
    }

    .t_events-button-prev {
        left: 5px;
    }

    .t_events-button-next {
        right: 5px;
    }
}

@media (min-width: 992px) {
    .t_events-button-prev {
        left: -60px;
    }

    .t_events-button-next {
        right: -60px;
    }
}

@media (min-width: 1200px) {
    .t_events-button-prev {
        left: -80px;
    }

    .t_events-button-next {
        right: -80px;
    }
}

/* --- Pagination & Bullets --- */
/* Ensures the pagination dots are visible at the bottom of the slider area */
.t_events-slider .swiper-pagination {
    bottom: 0px !important;
    /* Forces it to the bottom of the slider container */
    padding-top: 20px;
    /* Optional: adds a little space above the dots */
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
}

/* Styles for all individual bullets (inactive/default state) */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    /* Ensures space between dots */
    background-color: rgba(255, 255, 255, 0.5);
    /* Semi-transparent white */
    opacity: 1;
    /* Reset default opacity behavior */
    transition: background-color 0.3s ease;
}

/* Styles for the currently active bullet */
.swiper-pagination-bullet-active {
    background-color: #ffcf88;
    /* Your accent color */
    width: 14px;
    /* Optional: slightly larger for emphasis */
    height: 14px;
    opacity: 1;
}

/* Optional: Improves hover state for better user experience */
.swiper-pagination-bullet:hover {
    background-color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
    margin-top: 50px;
}

.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

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

/*--------------------------------------------------------------
# Chefs - New Side-by-Side Design
--------------------------------------------------------------*/
.chefs {
    background: url("../img/trip.jpg") center center no-repeat;
    background-size: cover;
    padding: 60px 0;
    position: relative;
}

.chefs::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.534);
    z-index: 9;
}

.chefs .container {
    position: relative;
    z-index: 10;
}

.chefs .member-side {
    text-align: left;
    /* Adjust alignment for side-by-side text */
    margin-bottom: 50px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    overflow: hidden;
}

/* Image Styling: Make the image large and fill its column */
.chefs .member-side .pic-container {
    /* UPDATED: Increased height for a more prominent image */
    height: 420px;
}

.chefs .member-side .pic {
    overflow: hidden;
    height: 100%;
}

.chefs .member-side .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Info Styling: Text block on the right */
.chefs .member-side .info-container {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.chefs .member-side .member-info {
    position: static;
    padding: 20px 0;
    background: none;
    box-shadow: none;
    color: #433f39;
    width: 100%;
}

.chefs .member-side h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.chefs .member-side h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #ffcf88;
    bottom: 0;
    left: 0;
}

.chefs .member-side span {
    font-style: italic;
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
}

.chefs .member-side .description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    padding: 0;
    margin: 0;
    text-align: left;
}

.chefs .member-side .social {
    margin-top: 20px;
}

.chefs .member-side .social a {
    transition: color 0.3s;
    color: #7a7368;
    margin-right: 10px;
}

.chefs .member-side .social a:hover {
    color: #05374b;
}

.chefs .member-side .social i {
    font-size: 18px;
}

@media (max-width: 767px) {

    /* Stack the content vertically on small screens */
    .chefs .member-side .pic-container {
        height: 280px;
        /* Adjusted height for smaller screens */
    }

    .chefs .member-side .info-container {
        padding: 20px 15px;
    }

    .chefs .member-side h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .chefs .member-side .member-info {
        text-align: center;
    }

    .chefs .member-side .description {
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .chefs {
        background-attachment: fixed;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 60px 0;
    background: url("../img/thanks.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(12, 11, 10, 0.7);
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.testimonials .section-header h2 {
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.testimonials .section-header .divider {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, #05374b, #0a5c7a);
    margin: 0 auto;
    border-radius: 2px;
}

.testimonials .testimonials-slider {
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 10px 0;
}

.testimonials .testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    max-width: 700px;
    margin: 0 auto;
    height: auto;
}

.testimonials .testimonial-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.151);
}

/* Larger rectangular testimonial images */
.testimonials .testimonial-img-container {
    margin-bottom: 25px;
}

.testimonials .testimonial-img {
    width: 580px;
    height: 280px;
    border-radius: 12px;
    margin: 0 auto;
    object-fit: cover;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
}

.testimonials .testimonial-item:hover .testimonial-img {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.09);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0 12px 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.testimonials .stars {
    margin-bottom: 20px;
    color: #ffc107;
    font-size: 16px;
}

.testimonials .stars i {
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -3px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -3px;
    position: relative;
    top: 8px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto;
    color: #eee;
    line-height: 1.6;
    font-size: 15px;
    max-width: 550px;
}

/* Swiper Pagination */
.testimonials .swiper-pagination {
    margin-top: 25px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #05374b;
    transform: scale(1.1);
}

/* Swiper Navigation */
.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonials .swiper-button-next:after,
.testimonials .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.testimonials .swiper-button-next:hover,
.testimonials .swiper-button-prev:hover {
    background: #535454;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials {
        padding: 50px 0;
    }

    .testimonials .section-header {
        margin-bottom: 30px;
    }

    .testimonials .section-header h2 {
        font-size: 1.7rem;
    }

    .testimonials .testimonial-item {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .testimonials .testimonial-img {
        width: 150px;
        height: 150px;
        border-radius: 10px;
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
    }

    .testimonials .testimonial-item p {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonials .stars {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .testimonials .swiper-button-next,
    .testimonials .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 40px 0;
    }

    .testimonials .testimonial-item {
        padding: 20px 15px;
        margin: 0 10px;
    }

    .testimonials .testimonial-img {
        width: 130px;
        height: 130px;
        border-radius: 8px;
    }

    .testimonials .section-header h2 {
        font-size: 1.5rem;
    }

    .testimonials .testimonial-item h3 {
        font-size: 17px;
    }

    .testimonials .testimonial-item p {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
body {
    color: #433f39;
    background-color: rgb(250, 249, 246);
}

/* Section title styling */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    height: 4px;
    background: linear-gradient(90deg, #333, #05374bd3 50%, transparent 100%);
    border-radius: 2px;
}

.section-title span {
    color: #ffcf88;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #7a7368;
    line-height: 1.6;
}

/* Map container styling */
.map-container {
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(5, 55, 75, 0.1);
    margin: 50px auto;
    max-width: 90%;
    position: relative;
    z-index: 2;
}

.map-container:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #05374b;
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

iframe {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

iframe:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Info section styling */
.info-wrap {
    box-shadow: 0px 5px 10px #05374b7a;
    padding: 40px;
    border-radius: 20px;
    background: white;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.info-wrap:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #ff8888;
    border-radius: 15px;
    z-index: -1;
    opacity: 0.2;
    pointer-events: none;
}

.info {
    text-align: center;
    padding: 15px 15px;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #fff6e8 0%, #fff 100%);
}

.info i {
    font-size: 28px;
    margin-bottom: 20px;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: linear-gradient(100deg, rgba(5, 55, 75, 0.98), #126888);
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease;
}

.info:hover i {
    background: linear-gradient(100deg, rgba(5, 55, 75, 0.98), #06536e);
    color: white;
    transform: scale(1.02);
}

.info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #05374b;
}

.info p {
    color: #7a7368;
    line-height: 1.3;
    margin-bottom: 0;
    font-size: 16px;
}

/* Form styling */
.php-email-form {
    width: 100%;
    box-shadow: 0px 5px 10px #05374b7a;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.php-email-form:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #ffcf88;
    border-radius: 15px;
    z-index: -1;
    opacity: 0.2;
    pointer-events: none;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    height: 55px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    border: 0.5px solid #00138127;
    background: #fcfcfc;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3c5ef5;
    box-shadow: 0 0 0 3px rgba(255, 207, 136, 0.3);
    background: #ffffff;
}

textarea.form-control {
    height: auto;
    padding: 15px 20px;
}

.php-email-form button[type="submit"] {
    background: #05374b;
    border: 0;
    padding: 14px 40px;
    color: #ffffff;
    transition: all 0.4s ease;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.php-email-form button[type="submit"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #05374b, #0a122c);
    transition: all 1s ease;
    z-index: -1;
    border-radius: 50px;
}

.php-email-form button[type="submit"]:hover:before {
    width: 100%;
}

.php-email-form button[type="submit"]:hover {
    color: #ffffff;
}

/* Footer logo */
.footer-logo {
    margin-top: 50px;
    text-align: center;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.02);
}

.footer-logo img {
    max-width: 390px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 2.3rem;
    }

    .info-wrap,
    .php-email-form {
        padding: 30px;
    }

    .img-fluid.rounded {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .map-container {
        padding: 20px;
    }

    .info {
        margin-bottom: 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* Footer Styles */
#footer {
    background: linear-gradient(180deg, #0a1929 4%, #05374b 90%);
    color: white;
    padding: 40px 0 25px;
    position: relative;
    overflow: hidden;
}

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    animation: twinkle 5s infinite ease-in-out;
}

/* Generate 100 stars with random positions and sizes */
.star:nth-child(1) {
    top: 15%;
    left: 5%;
    width: 2px;
    height: 2px;
    animation-delay: 0.5s;
}

.star:nth-child(2) {
    top: 25%;
    left: 15%;
    width: 1px;
    height: 1px;
    animation-delay: 1.2s;
}

.star:nth-child(3) {
    top: 35%;
    left: 25%;
    width: 2px;
    height: 2px;
    animation-delay: 0.8s;
}

.star:nth-child(4) {
    top: 45%;
    left: 35%;
    width: 1px;
    height: 1px;
    animation-delay: 2.1s;
}

.star:nth-child(5) {
    top: 55%;
    left: 45%;
    width: 3px;
    height: 3px;
    animation-delay: 1.5s;
}

.star:nth-child(6) {
    top: 65%;
    left: 55%;
    width: 1px;
    height: 1px;
    animation-delay: 0.3s;
}

.star:nth-child(7) {
    top: 75%;
    left: 65%;
    width: 2px;
    height: 2px;
    animation-delay: 2.4s;
}

.star:nth-child(8) {
    top: 85%;
    left: 75%;
    width: 1px;
    height: 1px;
    animation-delay: 1.8s;
}

.star:nth-child(9) {
    top: 20%;
    left: 85%;
    width: 2px;
    height: 2px;
    animation-delay: 0.7s;
}

.star:nth-child(10) {
    top: 30%;
    left: 95%;
    width: 1px;
    height: 1px;
    animation-delay: 2.7s;
}

.star:nth-child(11) {
    top: 10%;
    left: 30%;
    width: 2px;
    height: 2px;
    animation-delay: 1.1s;
}

.star:nth-child(12) {
    top: 40%;
    left: 10%;
    width: 1px;
    height: 1px;
    animation-delay: 0.4s;
}

.star:nth-child(13) {
    top: 60%;
    left: 20%;
    width: 3px;
    height: 3px;
    animation-delay: 2.2s;
}

.star:nth-child(14) {
    top: 80%;
    left: 30%;
    width: 1px;
    height: 1px;
    animation-delay: 1.3s;
}

.star:nth-child(15) {
    top: 50%;
    left: 80%;
    width: 2px;
    height: 2px;
    animation-delay: 0.9s;
}

.star:nth-child(16) {
    top: 70%;
    left: 90%;
    width: 1px;
    height: 1px;
    animation-delay: 2.5s;
}

.star:nth-child(17) {
    top: 25%;
    left: 50%;
    width: 2px;
    height: 2px;
    animation-delay: 1.6s;
}

.star:nth-child(18) {
    top: 45%;
    left: 60%;
    width: 1px;
    height: 1px;
    animation-delay: 0.6s;
}

.star:nth-child(19) {
    top: 65%;
    left: 70%;
    width: 2px;
    height: 2px;
    animation-delay: 2.3s;
}

.star:nth-child(20) {
    top: 85%;
    left: 80%;
    width: 1px;
    height: 1px;
    animation-delay: 1.4s;
}

.star:nth-child(21) {
    top: 5%;
    left: 20%;
    width: 2px;
    height: 2px;
    animation-delay: 0.5s;
}

.star:nth-child(22) {
    top: 15%;
    left: 40%;
    width: 1px;
    height: 1px;
    animation-delay: 1.7s;
}

.star:nth-child(23) {
    top: 35%;
    left: 70%;
    width: 2px;
    height: 2px;
    animation-delay: 0.9s;
}

.star:nth-child(24) {
    top: 55%;
    left: 90%;
    width: 1px;
    height: 1px;
    animation-delay: 2.6s;
}

.star:nth-child(25) {
    top: 75%;
    left: 10%;
    width: 3px;
    height: 3px;
    animation-delay: 1.2s;
}

.star:nth-child(26) {
    top: 95%;
    left: 30%;
    width: 1px;
    height: 1px;
    animation-delay: 0.8s;
}

.star:nth-child(27) {
    top: 10%;
    left: 60%;
    width: 2px;
    height: 2px;
    animation-delay: 2.4s;
}

.star:nth-child(28) {
    top: 30%;
    left: 80%;
    width: 1px;
    height: 1px;
    animation-delay: 1.5s;
}

.star:nth-child(29) {
    top: 50%;
    left: 5%;
    width: 2px;
    height: 2px;
    animation-delay: 0.7s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.3s ease-in-out;
}

.social-links a i {
    font-size: 18px;
    vertical-align: middle;
}

.social-links a:hover {
    background-color: white;
    color: #05374b;
    transform: translateY(-5px);
}

.copyright,
.credits {
    text-align: center;
    font-size: 14px;
}

.credits a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.credits a:hover {
    color: #b2b2b2;
}

/* start offers section */
.offers {
    background: #176fc7;
}

.containered {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 200px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 992px) {
    .containered {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .containered {
        grid-template-columns: 1fr;
    }
}

/* Start offers section */
.package {
    background-color: transparent;
    box-shadow: 10px 10px 25px 2px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    max-width: 100%;
    flex: 1 1 300px;
    /* Allow packages to grow */
}

.package:hover {
    transform: scale(1.001);
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.3);
}

.preview {
    width: 100%;
    height: 220px;
    /* Fixed height for the preview area */
    overflow: hidden;
    position: relative;
}

.preview iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: auto;
    border-radius: 0px;
}

.package-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btnpdf {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    animation-delay: 0.5s;
    color: #fff;
    background: linear-gradient(135deg, #05374b, #042633);
    cursor: pointer;
    -webkit-clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

.btnpdf:hover {
    background: #05374be0;
    color: white;
}

.btnpdfall {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    animation-delay: 0.5s;
    color: #fff;
    background: linear-gradient(135deg, #05374b, #042633);
    cursor: pointer;
    -webkit-clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

.btnpdfall:hover {
    background: linear-gradient(135deg, #05374b, #042633);
    color: white;
}

/* Additional media queries for responsiveness */
@media (max-width: 768px) {
    .package {
        flex: 1 1 100%;
        /* Full width on smaller screens */
        margin: 10px 0;
        /* Adjust margin for smaller screens */
    }

    .preview iframe {
        height: 180px;
        /* Adjust height for smaller screens */
    }
}

/* end offers section */
/* ===== COMPLETE RESPONSIVE STYLES ===== */
/* Large Devices (Desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container-fluid {
        max-width: 1140px;
        margin: 0 auto;
    }
}

/* Medium Devices (Tablets, 768px to 1199px) */
@media (max-width: 1199px) {

    /* Header & Navigation */
    #header .logo img {
        max-height: 50px;
        margin-left: 20px;
    }

    .navbar a {
        padding: 10px 0 10px 15px;
        font-size: 14px;
    }

    /* Hero Section */
    #hero h2 {
        font-size: 36px;
    }

    .carousel-content p {
        width: 90%;
    }

    /* About Section */
    .about .content {
        padding: 0 40px;
    }

    /* Packages Grid */
    .p_packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Events */
    .t_events {
        padding: 60px 0;
    }

    /* Testimonials */
    .testimonials .testimonial-img {
        width: 450px;
        height: 250px;
    }
}

/* Small Devices (Tablets, 768px to 991px) */
@media (max-width: 991px) {

    /* Header */
    #header {
        padding: 15px 0;
    }

    #organizedimage {
        width: 40% !important;
        height: 50% !important;
        margin: 0 auto;
    }

    .t_events {
        height: 800px !important;
    }

    .t_events-navigation {
        display: none !important;
    }

    .mobile-nav-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .navbar {
        display: none;
    }

    .navbar-mobile {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(39, 37, 34, 0.95);
        z-index: 999;
        overflow-y: auto;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
    }

    /* Hero Section */
    #hero h2 {
        font-size: 32px;
    }

    #hero .btn-menu,
    #hero .btn-book {
        padding: 10px 25px;
        font-size: 12px;
        margin: 5px;
    }

    /* About Section */
    .about .row {
        flex-direction: column;
    }

    .about .video-box {
        min-height: 400px;
        margin: 0;
        width: 100%;
    }

    .about .content-col {
        padding: 40px 30px;
    }

    /* Why Us Section */
    .why-us .box {
        margin-bottom: 20px;
    }

    /* Packages */
    .p_packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .containered {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px 15px;
    }

    /* Events */
    .t_event-item {
        text-align: center;
    }

    .t_event-item .content {
        padding-top: 20px;
    }

    /* Gallery */
    .gallery .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Testimonials */
    .testimonials .testimonial-img {
        width: 350px;
        height: 200px;
    }

    /* Contact */
    .contact .info-wrap {
        padding: 30px 20px;
    }

    .php-email-form {
        padding: 30px 20px;
    }

    /* Footer */
    .social-links {
        margin-bottom: 20px;
    }
}

/* Extra Small Devices (Phones, 576px to 767px) */
@media (max-width: 767px) {

    /* Global */
    section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    /* Top Bar */
    #topbar {
        font-size: 13px;
    }

    #topbar i {
        font-size: 13px;
    }

    /* Header */
    #header .logo img {
        max-height: 45px;
        margin-left: 15px;
    }

    #book-a-table-btn {
        padding: 8px 16px;
        font-size: 12px;
        transform: none;
        margin-right: 50px;
    }

    /* Hero Section */
    #hero {
        height: 70vh;
        min-height: 500px;
    }

    #hero .carousel-item {
        height: 70vh;
        min-height: 500px;
    }

    #hero h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    #hero h3 {
        font-size: 18px;
    }

    #hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    #hero .btn-menu,
    #hero .btn-book {
        padding: 8px 20px;
        font-size: 11px;
        display: block;
        margin: 10px auto;
        width: 200px;
    }

    /* About Section */
    .about-revised .content-col {
        padding: 30px 20px;
    }

    .about-revised h2 {
        font-size: 2rem;
    }

    .about .row .col-md-4 {
        width: 100%;
        border-right: none !important;
        border-bottom: 2px solid #00000028;
        padding: 20px;
    }

    .about .row .col-md-4:last-child {
        border-bottom: none;
    }

    /* Why Us Section */
    .why-us .section-title h3 {
        font-size: 2rem;
    }

    .why-us .box {
        padding: 40px 20px;
        margin-bottom: 15px;
    }

    /* Packages */
    .containered {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 15px;
    }

    .package {
        max-width: 100%;
    }

    .preview {
        height: 200px;
    }

    /* Events */
    .t_events {
        padding: 40px 0;
        max-height: none;
    }

    .t_events .section-title h1 {
        font-size: 2rem;
    }

    .t_events-button-prev,
    .t_events-button-next {
        width: 35px;
        height: 35px;
    }

    /* Gallery */
    .gallery .col-lg-3,
    .gallery .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .btnpdfall {
        width: 90% !important;
        position: relative !important;
        margin: 20px auto !important;
    }

    /* Specials/FAQ */
    .specials .nav-tabs {
        margin-bottom: 20px;
    }

    .specials .nav-link {
        border-right: none;
        border-bottom: 2px solid #e7e4db;
        margin-bottom: 5px;
    }

    /* Chefs */
    .chefs .member-side .pic-container {
        height: 300px;
    }

    /* Testimonials */
    .testimonials .testimonial-img {
        width: 100%;
        height: 180px;
        max-width: 300px;
    }

    .testimonials .testimonial-item {
        padding: 25px 20px;
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
    }

    .testimonials .testimonial-item p {
        font-size: 14px;
    }

    /* Contact */
    .map-container {
        padding: 20px 15px;
        margin: 30px auto;
    }

    .contact .info {
        margin-bottom: 20px;
        padding: 20px 10px;
    }

    .contact .info i {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }

    .form-row-spacing .form-group {
        margin-bottom: 20px;
    }

    .sendbtn {
        width: 100%;
        padding: 12px;
    }

    /* Footer */
    .footer-logo img {
        max-width: 250px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        margin: 0 5px;
    }

    .copyright,
    .credits {
        font-size: 13px;
    }
}

/* Extra Extra Small Devices (Small Phones, 575px and down) */
@media (max-width: 575px) {

    /* Hero Section */
    #hero {
        height: 60vh;
        min-height: 400px;
    }

    #hero .carousel-item {
        height: 60vh;
        min-height: 400px;
    }

    #hero h2 {
        font-size: 24px;
    }

    #hero h3 {
        font-size: 16px;
    }

    #hero p {
        font-size: 13px;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 1.8rem;
    }

    /* About Section */
    .about-revised h2 {
        font-size: 1.8rem;
    }

    /* Why Us Section */
    .why-us .section-title h3 {
        font-size: 1.8rem;
    }

    .why-us .box h4 {
        font-size: 20px;
    }

    /* Packages Modal */
    .p_modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    .p_carousel-container {
        height: 30vh;
    }

    .p_modal-body-content {
        padding: 1rem;
    }

    .p_modal-title {
        font-size: 1.5rem;
    }

    /* Events */
    .t_events .section-title h1 {
        font-size: 1.8rem;
    }

    /* Testimonials */
    .testimonials .section-header h2 {
        font-size: 1.5rem;
    }

    /* Contact */
    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title h2:after {
        width: 150px;
    }

    /* Footer */
    .footer-logo img {
        max-width: 200px;
    }
}

/* Orientation Specific Styles */
@media (max-width: 767px) and (orientation: landscape) {
    #hero {
        height: 100vh;
        min-height: 400px;
    }

    #hero .carousel-item {
        height: 100vh;
        min-height: 400px;
    }

    .carousel-content {
        padding-top: 50px;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .footer,
    .back-to-top,
    #book-a-table-btn,
    .mobile-nav-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .p_card-hover-effect:hover {
        transform: none;
        box-shadow: 10px 10px 30px -3px rgba(0, 0, 0, 0.1);
    }

    .why-us .box:hover {
        transform: none;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }

    .gallery .gallery-item:hover img {
        transform: none;
    }

    .navbar-mobile a {
        padding: 15px 20px;
        font-size: 16px;
    }

    .btn-menu,
    .btn-book,
    .btnpdf,
    .btnpdfall {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form-control {
        font-size: 16px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #ffffff;
    }

    .why-us .box {
        border: 1px solid #000;
    }
}

/* Fix for mobile navigation dropdown */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        background-color: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    .dropdown-menu li {
        padding-left: 20px;
    }

    .dropdown-menu a {
        color: #433f39 !important;
        padding: 10px 20px !important;
    }
}

/* Fix for package titles on mobile */
@media (max-width: 767px) {
    .package-title {
        height: auto;
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px;
        font-size: 14px;
    }
}

/* Fix for airline marquee on mobile */
@media (max-width: 767px) {
    .airlinecontained img {
        width: 100px;
        height: 70px;
        margin: 0 10px;
    }
}

/* Fix for modal on mobile */
@media (max-width: 575px) {
    .p_modal-close-button {
        top: 0.5rem;
        right: 0.5rem;
        width: 2rem;
        height: 2rem;
        font-size: 1.5rem;
    }

    .p_nav-button {
        padding: 0.5rem;
        font-size: 1.2rem;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Improve button touch targets on mobile */
@media (max-width: 767px) {

    button,
    a.btnpdf,
    a.btnpdfall {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Fix for form elements on iOS */
input,
select,
textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

@media (max-width: 767px) {

    input,
    select,
    textarea {
        font-size: 16px;
    }
}

/* Mobile navigation active state */
@media (max-width: 991px) {
    .navbar-mobile .nav-link.active {
        color: #05374b !important;
        font-weight: bold;
    }
}

/* Fix for carousel indicators on mobile */
@media (max-width: 767px) {
    .carousel-indicators {
        bottom: 10px;
    }

    .carousel-indicators li {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
}

/* Fix for floating labels on mobile */
@media (max-width: 767px) {
    .floating-label {
        font-size: 14px;
    }

    .form-control:focus+.floating-label,
    .form-control:not(:placeholder-shown)+.floating-label {
        font-size: 12px;
    }
}

/* Fix for chef section on mobile */
@media (max-width: 767px) {
    .chefs .member-side .row {
        flex-direction: column;
    }

    .chefs .member-side .pic-container {
        order: -1;
    }
}

/* Fix for testimonial slider navigation on mobile */
@media (max-width: 767px) {

    .testimonials .swiper-button-next,
    .testimonials .swiper-button-prev {
        display: none;
    }
}

/* Fix for contact form layout on mobile */
@media (max-width: 767px) {
    .form-row-spacing .col-lg-6 {
        margin-bottom: 20px;
    }
}

/* Fix for footer social links on mobile */
@media (max-width: 575px) {
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-links a {
        margin: 5px;
    }
}

/* Final responsive image fix */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive iframe fix */
iframe {
    max-width: 100%;
}

/* Smooth scrolling for mobile */
@media (max-width: 767px) {
    html {
        scroll-behavior: smooth;
    }
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Responsive utility classes for quick fixes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
}

/* Text size adjustments for readability on mobile */
@media (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.9rem;
    }
}

/*
  Media query for small devices (less than 992px)
  This targets tablets and mobile phones.
  The 992px break point is based on Bootstrap's 'lg' breakpoint,
  which is where the 'col-lg-*' classes in your HTML take effect.
*/
@media (max-width: 991.98px) {

    /* --- General Layout Adjustments --- */
    .about .row {
        /* Ensure rows allow content to stack on smaller screens */
        flex-direction: column;
    }

    .about .col-lg-5.video-box {
        /* Adjust image box for full width on small screens */
        width: 100% !important;
        margin-left: 0 !important;
        /* Remove the large left margin */
        margin-right: 0 !important;
        /* Ensure no residual margins */
        max-height: 400px !important;
        /* Reduce the height of the background image for mobile view */
        min-height: 300px;
        /* Ensure some visibility on very small screens */
        margin-bottom: 20px;
        /* Add space below the image before the text starts */
    }

    .about .col-lg-6 {
        /* Adjust the content column for full width and mobile padding */
        width: 100% !important;
        padding: 30px 20px !important;
        /* Adjust padding for better look on small screens */
    }

    /* --- Feature Boxes (01, 02, 03) Adjustments --- */
    .about .row>div[id="rowborder"] {
        /* Make the feature boxes take full width on mobile */
        width: 100% !important;
        /* Remove the vertical border between boxes 02 and 03 */
        border-right: none !important;
        /* Add a bottom border to all boxes for separation, consistent with box 01's original style */
        border-bottom: 2px solid #00000028 !important;
    }

    /* Target the last feature box to remove its bottom border */
    .about .row>div[id="rowborder"]:last-child {
        border-bottom: none !important;
    }

    /* Ensure text alignment is centered consistently if needed, though 'text-center' is already set */
    .about .col-lg-6 p {
        text-align: center;
    }
}

/*
  Base CSS for the section boxes (assuming a default box style is used)
  This ensures boxes look good at all sizes, particularly for the margins.
*/
.why-us .box {
    text-align: center;
    /* Assuming the box content is centered */
    padding: 30px;
    margin-bottom: 25px;
    /* Add vertical space between boxes when stacked */
}

/*
  Media query for small devices (less than 992px)
  This targets tablets and mobile phones.
*/
@media (max-width: 991.98px) {

    /* --- General Section Adjustments --- */
    #why-us {
        padding: 60px 0;
        /* Adjust overall section padding for mobile */
    }

    .why-us .section-title {
        padding: 0 15px;
        /* Ensure title doesn't hug screen edges */
    }

    .why-us .section-title p {
        /* Remove the <br> introduced in the HTML for better mobile flow */
        margin-bottom: 30px;
        text-align: center;
    }

    /* --- Service Box (col-lg-4) Adjustments --- */
    /* The col-lg-4 will naturally become full width, but we ensure consistent spacing. */
    .why-us .col-lg-4,
    .why-us .col-lg-5 {
        /* Reset horizontal padding if necessary, and ensure full width stacking. */
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
    }

    /* Remove specific margin-top for stacked elements, relying on the box's margin-bottom */
    .why-us .col-lg-4.mt-4,
    .why-us .col-lg-5.mt-4 {
        margin-top: 0 !important;
    }

    /* --- Special Fix for the Last Box (07) Alignment --- */
    /* The HTML uses <center> and col-lg-5 which is a complex way to center one box.
       We'll ensure it takes up full width and remove the center tag's effect (if any)
       while ensuring it retains its box-specific styles. */
    .why-us center .col-lg-5 {
        display: block;
        /* Ensure it behaves like a standard block element */
        margin-left: auto;
        margin-right: auto;
        width: 100% !important;
        float: none;
        text-align: center;
    }

    /* Make sure all boxes have consistent vertical spacing on mobile */
    .why-us .box {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/*
  Media query for medium devices (992px to 1200px)
  This may be useful if the 'col-lg-5' for the last box causes issues on desktops.
*/
@media (min-width: 992px) and (max-width: 1199.98px) {

    /* Fix the centering of the last box on the 'lg' breakpoint by overriding the col-lg-5 width
       to be a bit smaller if needed, but the current HTML is already centered with <center> */
    .why-us center {
        /* Ensure the center tag does not cause issues on desktop */
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Alternatively, you may want to display this as a standard col-lg-4 to match others,
       but this depends on your design intent for the 7th box. */
}

@media (max-width: 327px) {
    .book-a-table-btn {
        display: none;
    }
}