
/* Ensure the body and html elements take up the full width and height */

*{
    margin: 0;
    padding: 0;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* Make sure all container elements use the full width */
.container, .wrapper, .content {
    width: 100%;
    max-width: 100%;
}

/* Set the box-sizing to border-box for all elements */
*,
*::before,
*::after {
    box-sizing: inherit;
}

/* Add responsiveness */






/********** 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: #FFFFFF;
}

.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: var(--primary) !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: var(--dark) !important;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url(../img/bg-hero.jpg);
    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: var(--primary);
}

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

.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;
}

.service-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item .p-4 {
    flex-grow: 1;
}


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


/*** 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: var(--primary) !important;
    border-color: var(--primary) !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: var(--primary);
    border-color: var(--primary);
}


/*** 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-link {
    display: block; /* Make each link a block element to ensure vertical alignment */
    text-align: left; /* Align text to the left */
    margin: 5px 0; /* Adjust vertical spacing between links */
    padding: 0; /* Remove default padding */
}

.footer .btn-link:first-child {
    margin-top: 0; /* Ensure no extra top margin for the first link */
}

.footer .btn-link:hover {
    text-decoration: underline; /* Optional: Add underline on hover for better visibility */
}
.footer .btn-link {
    display: block; /* Make each link a block element to ensure vertical alignment */
    text-align: left; /* Align text to the left */
    margin: 5px 0; /* Adjust vertical spacing between links */
    padding: 0; /* Remove default padding */
    color: #fff; /* Set text color to white */
    text-decoration: none; /* Remove underline */
    width: 100%; /* Ensure the links span the full width */
}

.footer .btn-link:hover {
    text-decoration: underline; /* Optional: Add underline on hover for better visibility */
    color: #fff; /* Ensure the color stays white on hover */
}



.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;
}

/*menu items css*/

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item1 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 10px;
    box-sizing: border-box;
}

.nav-item1 a {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background-color: #f9f9f9;
    transition: background-color 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    text-align: left;
    height: 60px; /* Set a fixed height for all items */
    box-sizing: border-box;
}

.nav-item1 a:hover {
    background-color: #e9ecef;
    border-color: #ccc;
}

.nav-item1 a.active {
    background-color: #e9ecef;
    border-color: #007bff;
}

.nav-item1 i {
    margin-right: 10px;
}

.nav-item1 div {
    flex: 1;
}

/* Tablet Styles */
@media (min-width: 576px) and (max-width: 767px) {
    .nav {
        justify-content: flex-start;
    }
    .nav-item1 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile Styles */
@media (max-width: 575px){
    .nav {
        display: flex;
        flex-direction: column; /* Arrange items in columns */
        height: 10vh; /* Make the container take the full viewport height */
        overflow-y: auto; /* Enable vertical scrolling if items overflow */
    }

    .nav-item1 {
        flex: 0 0 50%; /* Each item takes 50% of the height */
        max-width: 100%; /* Ensure items are full-width */
        box-sizing: border-box;
    }
}


@media (max-width: 767px){
    .google-map iframe {
        width: 450px;
        margin: 10px;
    }
}
@media (max-width: 575px){
    .google-map iframe {
        width: 350px;
        margin: 10px;
        justify-content: center;
        align-items: center;
    }
}



.booking-phone {
    background-color:#0F172B;
    text-align: center;
}
.number-setting{
    margin-top: 50px;

}



/* WhatsApp-like phone number and email link CSS */
.whatsapp-link {
    background-color: #25D366; /* WhatsApp green color */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block; /* added to make it center alignable */
    margin-top: 15px;
}
.whatsapp-title{
    margin-right: 15px;
}
.whatsapp-link:hover {
    background-color: #1E865F; /* WhatsApp green hover color */
}


.phone-title{
    margin-top: 120px;
}

.clickable-phone-number {
  cursor: pointer; 
  margin-top: 9px;
}
.clickable-phone-number:hover {
  text-decoration: underline; 
  background-color: #25D366;
}

#phone-number {
  color: inherit; 
}


.email-title{
    margin-top: 110px;
}


.google-map{
    
}
/* Responsive design for mobile view */
@media (max-width: 768px) {
    .number-setting {
        margin-top: 20px;
    }

    .whatsapp-link {
        padding: 10px 15px; /* Adjust padding for smaller screens */
        font-size: 14px; /* Reduce font size for better fit */
        width: 100%; /* Make the button full width */
        margin: 15px auto; /* Center it */
    }

    .whatsapp-title {
        margin-right: 10px; /* Adjust spacing for mobile */
        font-size: 16px;
    }

    .phone-title, .email-title {
        margin-top: 60px; /* Reduce top margin for smaller screens */
        font-size: 16px; /* Adjust font size for readability */
    }

    .clickable-phone-number {
        font-size: 16px; /* Ensure the phone number is readable */
        margin-top: 5px;
    }

    .google-map {
        width: 100%; /* Ensure map takes full width on mobile */
        margin-top: 20px;
    }

    /* Adjust general text alignment */
    .col-md-4 {
        text-align: center;
        margin-bottom: 20px;
    }

    /* Container adjustments for better stacking */
    .booking-phone {
        padding: 15px;
        text-align: center;
    }

    /* Reduce text sizes for small devices */
    h5.section-title {
        font-size: 18px;
    }

    /* Stack content vertically */
    .row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .whatsapp-link {
        font-size: 12px; /* Further reduce font size for very small screens */
        padding: 8px 10px;
    }

    .phone-title, .email-title {
        font-size: 14px; /* Smaller font for very small devices */
    }
}






/* Responsive styles for mobile */
@media (max-width: 768px) {
    .about-images .col-6 {
        width: 100%; 
        padding: 5px;
        /* display:flexbox; */
    }
}
