/*******************************/
/********* General CSS *********/
/*******************************/

/*******************************/
/********* Single Line H1 *********/
/*******************************/
.single-line {
    white-space: nowrap;       /* Prevent text from wrapping */
    overflow: hidden;          /* Hide overflow if it exceeds container */
    text-overflow: ellipsis;   /* Optional: show "..." if too long */
    font-size: 48px;           /* Adjust font size as needed */
}

@media (max-width: 768px) {
    .single-line {
        font-size: 32px;       /* Shrink on smaller screens */
    }
}

body {
    color: #757575;
    background: #ffffff;
    font-family: 'sans-serif', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #454545;
    font-family: 'sans-serif', sans-serif;
}

a {
    font-family: 'sans-serif', sans-serif;
    font-weight: 600;
    color: #fbaf32;
    transition: .3s;
}



.btn.custom-btn {
    padding: 12px 25px;
    font-family: 'sans-serif', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #fbaf32;
    border: 2px solid #fbaf32;
    border-radius: 5px;
    transition: .5s;
}

.btn.custom-btn:hover {
    color: #fbaf32;
    background: transparent;
}

.btn.custom-btn:focus,
.form-control:focus,
.custom-select:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #fbaf32;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    border-radius: 5px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #0a0157;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

/* Sticky navbar */
.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

/* Navbar Brand (Logo) */
.navbar .navbar-brand {
    margin: 0;
    font-family: 'sans-serif', sans-serif;
    transition: .5s;
    display: flex;
    align-items: center; /* vertical center */
}

/* Logo Style - Bara but navbar height same */
.navbar .navbar-brand img {
    height: 170px;      /* large logo */
    width: auto;
    max-height: none;
    display: block;
    object-fit: contain;
    margin-top: -20px;   /* adjust vertical position */
}

/* Sticky navbar smaller logo */
.navbar.nav-sticky .navbar-brand img {
    height: 120px;
    margin-top: -10px;
}

/* Navbar links */
.navbar .navbar-nav .nav-link,
.navbar .navbar-nav .nav-link:focus {
    font-family: 'sans-serif', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    padding: 10px 10px 8px 10px;
    transition: .3s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #fbaf32;
}

/* Dropdown Menu */
.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #454545;
}

/* Sticky navbar links */
.navbar.nav-sticky .navbar-nav .nav-link,
.navbar.nav-sticky .navbar-nav .nav-link:focus {
    color: #666666;
}

.navbar.nav-sticky .navbar-nav .nav-link:hover,
.navbar.nav-sticky .navbar-nav .nav-link.active {
    color: #fbaf32;
}

/* Large screens */
@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        padding: 10px 60px;
        background: #291e020e!important;
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 1px 90px;
        background: #ffffff !important;
    }
}

/* Mobile screens */
@media (max-width: 991.98px) {
    .navbar {
        padding: 5px 0;
        background: rgba(255, 255, 255, 0.881) !important; /* transparent background */
        justify-content: center; /* center content horizontally */
    }

    /* Mobile logo slightly smaller and centered */
    .navbar .navbar-brand {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .navbar .navbar-brand img {
        height: 50px;      /* adjust logo size */
        width: auto;
        margin: 0;         /* reset margin for center */
    }

    /* Hide all nav links */
    .navbar .navbar-nav {
        display: none !important;
    }

    /* Hide dropdown toggler if any */
    .navbar .navbar-toggler {
        display: none !important;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/

.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    background: #ffffff;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
}

.carousel .carousel-text h1 span {
    color: #fbaf32;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 35px;
}

.carousel .carousel-btn .btn:last-child {
    margin-left: 10px;
    background: #0a0157; /* Blue */
    border-color: #0a0157;
    color: white;        /* Text color default */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover */
}

.carousel .carousel-btn .btn:last-child:hover {
    background: #fbaf32; /* Yellow */
    color: rgb(255, 255, 255);         /* Text color on hover */
    border-color: #fbaf32; /* Optional: border matches background */
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@media (max-width: 991.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 105px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 35px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 70px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 150px 0 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/page-header.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    color: #fbaf32;
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -1px;
    right: -7px;
    text-align: center;
    color: #fbaf32;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    color: #000558;
    margin-bottom: 5px;
    position: relative;
    font-size: 20px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 40px;
        font-weight: 600;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 35px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 30px;
        font-weight: 600;
    }
}



/*******************************/
/********** Menu CSS ***********/
/*******************************/

.food {
    position: relative;
    width: 100%;
    padding: 90px 0 60px 0;
    margin: 45px 0;
    background: rgba(0, 0, 0, .04);
}

.food .food-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 50px 30px 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.food .food-item:hover {
    box-shadow: none;
}

.food .food-item i {
    position: relative;
    display: inline-block;
    color: #fbaf32;
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    transition: .3s;
}

.food .food-item:hover i {
    color: #0a0157;
}

.food .food-item i::after {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -20px;
    left: -15px;
    border: 3px dotted #fbaf32;
    border-right: transparent;
    border-bottom: transparent;
    border-radius: 100px;
    transition: .3s;
}

.food .food-item:hover i::after {
    border: 3px dotted #0a0157;
    border-right: transparent;
    border-bottom: transparent;
}

.food .food-item h2 {
    font-size: 30px;
    font-weight: 700;
}

.food .food-item a {
    position: relative;
    font-size: 16px;
}

.food .food-item a::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    bottom: 0;
    left: calc(50% - 25px);
    background: #fbaf32;
    transition: .3s;
}

.food .food-item a:hover::after {
    width: 100%;
    left: 0;
    background: #0a0157;
}
/* Menu prices smaller font */
.menu-text h3 strong {
    font-size: 16px;   /* default heading se chhota */
    color: #fbaf32;    /* optional: golden color for prices */
}

/* Optional: responsive adjustment for smaller screens */
@media (max-width: 991.98px) {
    .menu-text h3 strong {
        font-size: 14px;  /* mobile me aur thoda chhota */
    }
}



/*******************************/
/********** About CSS **********/
/*******************************/

.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
}

.about .about-img img {
    position: relative;
    width: 100%;
    border-radius: 15px;
}

.about .btn-play {
    position: absolute;
    z-index: 1;
    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;
}

.about .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: #fbaf32;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.about .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: #fbaf32;
    border-radius: 50%;
    transition: all 200ms;
}

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

.about .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #ffffff;
    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 {
    padding-left: 17px;
}

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

.about .about-content {
    position: relative;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
}

@media (max-width: 991.98px) {
    .about .about-img {
        margin-bottom: 30px;
    }
}



/*******************************/
/*********** Menu CSS **********/
/*******************************/
/* Main Dishes Right Side Image */
#main-dishes .col-lg-5 img {
    width: 100%;           /* container ke width ke hisaab se stretch */
    height: auto;          /* aspect ratio maintain */
    display: block;
    object-fit: contain;   /* poori image dikhe, cropped na ho */
    border-radius: 1.5rem; /* optional rounded corners */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* optional shadow */
}

/* Optional: Large screen height adjustment */
@media (min-width: 992px) {
    #main-dishes .col-lg-5 img {
        max-height: 1800px; /* adjust as needed */
         margin-top: 90px;
    }
}
/* Combos & Deals image */
#combos .col-lg-5 img,
#beverages .col-lg-5 img {
    width: 100%;           /* container ke width ke hisaab se stretch */
    height: auto;          /* aspect ratio maintain */
    display: block;
    object-fit: contain;   /* poori image dikhe, cropped na ho */
    border-radius: 1.5rem; /* optional rounded corners */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* optional shadow */
    margin-top: 50px;      /* thodi neeche se start ho */
}

/* Optional: Large screen height adjustment */
@media (min-width: 992px) {
    #combos .col-lg-5 img,
    #beverages .col-lg-5 img {
        max-height: 1200px; /* adjust as needed */
        margin-top: 90px;   /* same spacing for large screens */
    }
}

.menu {
    position: relative;
    padding: 45px 0 15px 0;
}

.menu .menu-tab {
    position: relative;
}

.menu .menu-tab img {
    max-width: 100%;
    border-radius: 15px;
}

.menu .menu-tab .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #fbaf32;
    border-radius: 5px;
    margin: 0 5px;
}

.menu .menu-tab .nav.nav-pills .nav-link:hover,
.menu .menu-tab .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #0a0157;
}

.menu .menu-tab .tab-content {
    padding: 30px 0 0 0;
    background: transparent;
}

.menu .menu-tab .tab-content .container {
    padding: 0;
}

.menu .menu-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.menu .menu-img {
    width: 100px;
    margin-right: 20px;
}

.menu .menu-img img {
    width: 100%;
    border-radius: 100px;
}

.menu .menu-text {
    width: calc(100% - 100px);
}

.menu .menu-text h3 {
    position: relative;
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.menu .menu-text h3::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 13px;
    left: 0;
    border-top: 2px dotted #cccccc;
    z-index: -1;
}

.menu .menu-text h3 span {
    display: inline-block;
    float: left;
    padding-right: 5px;
    background: #ffffff;
}

.menu .menu-text h3 strong {
    display: inline-block;
    float: right;
    padding-left: 5px;
    color: #fbaf32;
    background: #ffffff;
}

.menu .menu-text p {
    position: relative;
    margin: 5px 0 0 0;
    float: left;
    display: block;
}

@media(max-width: 575.98px) {
    .menu .menu-text p,
    .menu .menu-text h3,
    .menu .menu-text h3 span,
    .menu .menu-text h3 strong {
        display: block;
        float: none;
        padding: 0;
        margin: 0;
    }
    
    .menu .menu-text h3 {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .menu .menu-text h3 span {
        margin-bottom: 3px;
    }
    
    .menu .menu-text h3::after {
        display: none;
    }
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    background: #ffffff;
}

.team .team-img {
    position: relative;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.team .team-img img {
    position: relative;
    width: 100%;
    margin-top: 15px;
    transform: scale(1.1);
    transition: .3s;
}

.team .team-item:hover img {
    margin-top: 0;
    margin-bottom: 15px;
}

.team .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team .team-social a {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 16px;
    color: #ffffff;
    background: #fbaf32;
    opacity: 0;
}

.team .team-social a:hover {
    color: #ffffff;
    background: #0a0157;
}

.team .team-item:hover .team-social {
    background: rgba(256, 256, 256, .5);
}

.team .team-item:hover .team-social a:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .3s;
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-top: none;
    border-radius: 0 0 15px 15px;
}

.team .team-text h2 {
    font-size: 22px;
    font-weight: 700;
}

.team .team-text p {
    margin: 0;
    font-size: 16px;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 90px 0;
    margin: 45px 0;
    background: rgba(0, 0, 0, .04);
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .08);
    transition: .3s;
    overflow: hidden;
}

.testimonial .testimonial-item:hover {
    box-shadow: none;
}

.testimonial .testimonial-img {
    position: relative;
    width: 100px;
    border-radius: 100px;
    margin-bottom: 20px;
    overflow: hidden;
}

.testimonial .testimonial-img img {
    width: 100%;
    border-radius: 100px;
}

.testimonial .testimonial-item p {
    text-align: center;
    margin-bottom: 10px;
}

.testimonial .testimonial-item h2 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial .testimonial-item h3 {
    color: #999999;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.testimonial .owl-dots {
    margin-top: 10px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fbaf32;
}

.testimonial .owl-dot.active {
    background: #0a0157;
}




/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #fbaf32;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #fbaf32;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #0a0157;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #fbaf32;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #0a0157;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fbaf32;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #fbaf32;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #fbaf32;
    border-color: #fbaf32;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/* RESET */
* { margin: 0; padding: 0; }
.pg-footer { font-family: "Montserrat", sans-serif; }
a { text-decoration: none; color: #fff; }

/* MAIN FOOTER */
.footer {
    background-color: #0a0157; /* dark blue */
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    width: 100%;
}

/* WAVE */
.footer-wave-svg {
    width: 100%;
    height: 30px;  /* wave height */
    display: block;
}
.footer-wave-path {
    fill: #ffffff; /* orange wave */
}

/* CONTENT BOX */
.footer-content {
    max-width: 1500px;
    margin: auto;
    padding: 40px 20px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

/* COLUMNS */
.footer-content-column {
    flex: 1 1 23%;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* HEADINGS */
.footer-menu-name {
    color: #f7941d; /* orange */
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
    position: relative;
}

/* Small underline */
.footer-menu-name::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50%;  /* smaller underline */
    height: 2px;
    background: #f7941d;
}

/* LIST ITEMS */
.footer-menu-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-menu-list li {
    margin: 5px 0;
    color: #ffffff;
    font-size: 16px;
}

/* Phone icons */
.footer-menu-list li i {
    margin-right: 6px;
    color: #f7941d;
}

/* COPYRIGHT */
.footer-copyright {
    background-color: #FFA733; /* orange background */
    color: #ffffff;
    text-align: center;
    padding: 12px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright-text {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.footer-copyright-link {
    color: #0a0157; /* dark blue */
    text-decoration: none;
    font-weight: 700;
}

.footer-copyright-link:hover {
    color: #f7941d; /* orange on hover */
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-content-column {
        flex: 1 1 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        padding-bottom: 100px;
    }
    .footer-content-column {
        flex: 1 1 100%;
        margin-bottom: 15px;
    }
    .footer-menu-name {
        font-size: 18px;
    }
    .footer-menu-list li {
        font-size: 15px;
    }
    .footer-wave-svg {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 30px 15px 60px;
    }
    .footer-menu-name {
        font-size: 16px;
    }
    .footer-menu-list li {
        font-size: 14px;
    }
    .footer-wave-svg {
        height: 30px;
    }
}

.stars {
    color: #ffb400;  /* Gold color */
    font-size: 20px;
    margin-bottom: 10px;
}

.feedback-btn {
    background: #ffb400;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.feedback-btn:hover {
    background: #e09c00;
    color: #fff;
}
/* Star Rating */
.star-rating {
    direction: rtl;
    display: inline-flex;
    margin-bottom: 15px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 35px;
    color: #ccc;
    cursor: pointer;
    transition: 0.2s;
    padding: 0 5px;
}

.star-rating input:checked ~ label {
    color: #ffb400;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffcc33;
}

/* Comment Box */
.feedback-input {
    width: 80%;
    max-width: 600px;
    height: 120px;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    resize: none;
}

.feedback-input:focus {
    border-color: #ffb400;
    box-shadow: 0 0 5px rgba(255,180,0,0.5);
}

/* Button */
.feedback-submit {
    margin-top: 15px;
    background: #ffb400;
    color: #fff;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.feedback-submit:hover {
    background: #e09c00;
}

   
.carousel-btn i{
  margin-right:8px;
  font-size:18px;
}
