/**
* Template Name: Restaurantly
* Template URL: https://bootstrapmade.com/restaurantly-restaurant-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    background: #0A1D37; /* Near-blue */
    color: #fff;
    animation: fadeIn 0.5s ease-in-out;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

body.navigating {
    opacity: 0.7;
    transform: scale(0.98);
}

/* Page Transition Effects */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.98); }
}

/* Section transition effects */
section {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

section.aos-animate {
    animation: sectionFadeIn 0.8s ease-out forwards;
}

/* Ensure AOS animations play every time */
[data-aos] {
    transition-duration: 0.8s;
    transition-timing-function: ease-out;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { 
        opacity: 0; 
        transform: translateX(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Hero section background transition animations */
#hero {
    transition: background-image 1.5s ease-in-out;
    background-size: cover;
    padding-top: 80px; /* Add padding-top to compensate for smaller header */
    background-position: center;
    overflow: hidden;
    position: relative;
    will-change: transform; /* Optimize for animations */
    transform-origin: center center;
    backface-visibility: hidden; /* Prevent flickering during animations */
}

/* Ensure the hero section maintains proper aspect ratio */
#hero::before {
    transition: opacity 0.5s ease-in-out;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Slight overlay to improve text readability */
}

/* Zoom in/out animation styles for hero background */
#hero.zoom-in-bg {
    animation: zoomInBackground 4s ease-in-out;
}

#hero.zoom-out-bg {
    animation: zoomOutBackground 4s ease-in-out;
}

/* Optimize background image display for different aspect ratios */
@media (max-aspect-ratio: 16/9) {
    #hero {
        background-size: 99% auto; /* Slightly reduced from 100% to ensure no overflow */
        background-position: center center;
    }
}

@media (min-aspect-ratio: 16/9) {
    #hero {
        background-size: auto 99%; /* Slightly reduced from 100% to ensure no overflow */
        background-position: center center;
    }
}

@keyframes zoomInBackground {
    0% { 
        opacity: 0.98; /* Increased from 0.95 for less dramatic fade */ 
        transform: scale(1.0);
    }
    10% { 
        opacity: 1; 
    }
    100% { 
        transform: scale(1.005); /* Reduced from 1.02 to 1.005 for minimal zoom */
    }
}

@keyframes zoomOutBackground {
    0% { 
        opacity: 0.98; /* Increased from 0.95 for less dramatic fade */
        transform: scale(1.005); /* Reduced from 1.02 to 1.005 for minimal zoom */
    }
    10% { 
        opacity: 1; 
    }
    100% { 
        transform: scale(1.0); 
    }
}

a {
    color: #DC3545; /* Primary red */
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #B02A37; /* Darker red for hover */
    text-decoration: none;
    transform: scale(1.05);
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #1a1814;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #1a1814;
    border-top-color: #DC3545; /* Red */
    border-bottom-color: #007BFF; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    border: 2px solid #DC3545; /* Red */
}

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

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Enhanced Mobile Responsiveness
--------------------------------------------------------------*/

/* Container improvements for mobile */
@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Improved spacing for small devices */
@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    section {
        padding: 30px 0;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    height: 25px; /* Further reduced height from 30px to 25px */
    font-size: 11px; /* Further reduced font size from 12px to 11px */
    transition: all 0.5s;
    z-index: 996;
}

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

#topbar .contact-info i {
    font-style: normal;
    color: #007BFF; /* Blue */
}

#topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}

#topbar .languages ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #DC3545; /* Red */
}

#topbar .languages ul a {
    color: white;
}

#topbar .languages ul li+li {
    padding-left: 10px;
}

#topbar .languages ul li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: rgba(255, 255, 255, 0.5);
    content: "/";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: #003087; /* Blue */
    border-bottom: 1px solid rgba(12, 11, 9, 0.6);
    transition: all 0.5s;
    z-index: 997;
    padding: 3px 0; /* Further reduced padding from 5px to 3px */
    top: 25px; /* Reduced from 35px to 25px to match topbar height */
}

#header.header-scrolled {
    top: 0;
    background: #004aad; /* Blue (matches section-bg) */
    border-bottom: 1px solid #37332a;
    padding: 2px 0; /* Further reduced padding when scrolled from 4px to 2px */
}

#header .logo img {
    height: 30px; /* Further reduced logo height from 35px to 30px */
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/

.book-a-table-btn {
    margin: 0 0 0 10px; /* Further reduced margin from 12px to 10px */
    border: 1px solid #DC3545;
    color: #fff;
    border-radius: 50px;
    padding: 3px 15px; /* Further reduced padding from 5px 20px to 3px 15px */
    text-transform: uppercase;
    font-size: 11px; /* Further reduced font size from 12px to 11px */
    font-weight: 500;
    letter-spacing: 0.5px; /* Reduced letter spacing from 1px to 0.5px */
    transition: 0.3s;
}

.book-a-table-btn:hover {
    background: #DC3545;
    color: #fff;
}

@media (max-width: 992px) {
    .book-a-table-btn {
        margin: 0 10px 0 0; /* Further reduced margin from 12px to 10px */
        padding: 3px 12px; /* Further reduced padding from 5px 15px to 3px 12px */
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.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: 3px 0 3px 15px; /* Further reduced padding from 5px 0 5px 20px to 3px 0 3px 15px */
    color: #FFF;
    white-space: nowrap;
    transition: all 0.4s ease;
    font-size: 11px; /* Further reduced font size from 12px to 11px */
    position: relative;
    overflow: hidden;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px; /* Further adjusted from 20px to 15px to match the padding change */
    width: 0;
    height: 1px;
    background-color: #DC3545;
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: calc(100% - 15px); /* Further adjusted from 20px to 15px to match the padding change */
}

.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 {
    color: #007BFF; /* Blue */
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    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;
    color: #444444;
}

.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: #DC3545; /* Red */
}

.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;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
    
    /* Improved mobile header */
    #header {
        padding: 3px 0;
        top: 25px;
    }
    
    #header .logo img {
        height: 28px;
    }
    
    /* Improved mobile navigation */
    .book-a-table-btn {
        padding: 3px 12px;
        font-size: 11px;
        margin: 0 8px 0 0;
    }
}

@media (max-width: 768px) {
    #header {
        padding: 8px 0;
    }
    
    #header .logo img {
        height: 35px;
    }
    
    #topbar {
        height: 35px;
        font-size: 12px;
    }
    
    #topbar .contact-info i span {
        display: none;
    }
    
    #topbar .contact-info i:after {
        content: "Call Us";
        padding-left: 5px;
        color: #fff;
    }
}

@media (max-width: 576px) {
    #header {
        padding: 5px 0;
    }
    
    #header .logo img {
        height: 30px;
    }
    
    #topbar {
        height: 30px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    #header .logo img {
        height: 28px;
    }
    
    #topbar {
        height: 28px;
        font-size: 10px;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 24px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 15px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 12px 20px;
    font-size: 16px;
    color: #1a1814;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #DC3545; /* Red */
    background-color: rgba(220, 53, 69, 0.05);
}

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

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 0;
    padding: 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #f9f9f9;
    box-shadow: none;
    border-radius: 0;
}

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

.navbar-mobile .dropdown ul a {
    padding: 12px 30px;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.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: #DC3545; /* Red */
}

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

/*--------------------------------------------------------------
# Hero Section - Split Layout Design
--------------------------------------------------------------*/

#hero {
    width: 100%;
    min-height: 100vh;
    background: #f8f9fa;
    position: relative;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

#hero .hero-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: stretch;
}

#hero .hero-image {
    flex: 1;
    background: url("../img/hero-bg4.jpg") center/cover;
    position: relative;
    min-height: 100vh;
}

#hero .hero-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.1) 0%, rgba(220, 53, 69, 0.1) 100%);
    z-index: 1;
}

#hero .hero-content {
    flex: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}



#hero .hero-text {
    max-width: 500px;
    text-align: left;
}

#hero h1 {
    margin: 0 0 25px 0;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
    font-family: "Poppins", sans-serif;
    animation: fadeInUp 1s ease-out;
}

#hero h1 span {
    color: #DC3545;
    display: block;
    font-size: 2.8rem;
    margin-top: 10px;
}

#hero h2 {
    color: #6c757d;
    margin: 0 0 30px 0;
    font-size: 1.3rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.2s both;
}

#hero .hero-description {
    font-size: 1.1rem;
    color: #495057;
    margin: 0 0 40px 0;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s both;
}

#hero .btns {
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

#hero .btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#hero .led-btn {
    background: #DC3545;
    color: #fff;
    border: 2px solid #DC3545;
}

#hero .led-btn:hover {
    background: transparent;
    color: #DC3545;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

/* Mobile responsiveness for split layout */
@media (max-width: 992px) {
    #hero {
        margin-top: 70px;
    }
    
    #hero .hero-container {
        flex-direction: column;
        height: auto;
    }
    
    #hero .hero-image {
        min-height: 50vh;
        order: 1;
    }
    
    #hero .hero-content {
        order: 2;
        padding: 60px 40px;
        text-align: center;
    }
    
    #hero .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    #hero h1 {
        font-size: 2.8rem;
    }
    
    #hero h1 span {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    #hero .hero-content {
        padding: 40px 30px;
    }
    
    #hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    #hero h1 span {
        font-size: 2rem;
    }
    
    #hero h2 {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    #hero .hero-description {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    #hero .btns {
        margin-top: 35px;
    }
}

@media (max-width: 576px) {
    #hero .hero-content {
        padding: 30px 20px;
    }
    
    #hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    #hero h1 span {
        font-size: 1.6rem;
        margin-top: 8px;
    }
    
    #hero h2 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    #hero .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    #hero .btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #hero .hero-image {
        min-height: 40vh;
    }
    
    #hero .hero-content {
        padding: 25px 15px;
    }
    
    #hero h1 {
        font-size: 1.6rem;
    }
    
    #hero h1 span {
        font-size: 1.4rem;
    }
    
    #hero h2 {
        font-size: 1rem;
    }
    
    #hero .hero-description {
        font-size: 0.9rem;
    }
}





/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1600px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #hero .play-btn {
        margin-top: 30px;
    }
}

@media (max-height: 500px) {
    #hero {
        height: auto;
    }
    #hero .container {
        padding-top: 130px;
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

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

/* Book Appointment Button */
.led-btn {
    background: linear-gradient(45deg, #DC3545, #007BFF); /* Red to blue gradient */
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.7), 0 0 10px rgba(0, 123, 255, 0.7); /* Red and blue glow */
    animation: pulse 1.5s infinite ease-in-out;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

/* Enhanced mobile responsiveness for buttons */
@media (max-width: 768px) {
    .led-btn {
        padding: 10px 25px;
        font-size: 14px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 576px) {
    .led-btn {
        padding: 8px 20px;
        font-size: 12px;
        letter-spacing: 0.2px;
        width: auto;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .led-btn {
        padding: 6px 15px;
        font-size: 11px;
        max-width: 180px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(220, 53, 69, 0.7), 0 0 10px rgba(0, 123, 255, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(220, 53, 69, 0.9), 0 0 15px rgba(0, 123, 255, 0.9);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(220, 53, 69, 0.7), 0 0 10px rgba(0, 123, 255, 0.7);
    }
}

.led-btn:hover {
    background: linear-gradient(45deg, #B02A37, #0056B3); /* Darker red to blue */
    box-shadow: 0 0 20px rgba(220, 53, 69, 1), 0 0 20px rgba(0, 123, 255, 1);
    transform: scale(1.15);
    color: #FFFFFF;
}

.led-btn:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(220, 53, 69, 1), 0 0 20px rgba(0, 123, 255, 1);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    animation: sectionTransition 0.8s ease-out;
}

@keyframes sectionTransition {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.section-bg {
    background-color: #004aad; /* Blue */
}

.section-title {
    padding-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 18px;
    font-weight: 700;
    padding: 5px 15px;
    line-height: 1.5;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    background-color: rgba(220, 53, 69, 0.8);
    display: inline-block;
    border-radius: 4px;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    margin: 4px 10px;
}

.section-title p {
    margin: 5px 0 15px 0;
    font-size: 38px;
    font-weight: 800;
    font-family: "Playfair Display", serif;
    color: #ffffff; /* White */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background-color: rgba(0, 48, 135, 0.9);
    padding: 10px 20px;
    display: inline-block;
    border-radius: 4px;
    border-left: 5px solid #DC3545;
}

/* Enhanced mobile responsiveness for section titles */
@media (max-width: 768px) {
    .section-title {
        padding-bottom: 30px;
    }
    
    .section-title p {
        font-size: 28px;
        padding: 8px 15px;
        margin: 5px 0 10px 0;
    }
    
    .section-title h2 {
        font-size: 14px;
        letter-spacing: 1.5px;
        padding: 4px 10px;
    }
    
    .section-title h2::after {
        width: 80px;
        margin: 4px 8px;
        display: none;
    }
}

@media (max-width: 576px) {
    .section-title {
        padding-bottom: 25px;
    }
    
    .section-title p {
        font-size: 24px;
        padding: 6px 12px;
        margin: 4px 0 8px 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .section-title h2 {
        font-size: 13px;
        letter-spacing: 1px;
        padding: 3px 8px;
        width: auto;
        margin: 0 auto 8px auto;
    }
    
    .section-title h2::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-title {
        padding-bottom: 20px;
    }
    
    .section-title p {
        font-size: 20px;
        padding: 5px 10px;
        margin: 3px 0 6px 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .section-title h2 {
        font-size: 12px;
        letter-spacing: 0.8px;
        padding: 3px 6px;
        width: auto;
        margin: 0 auto 6px auto;
    }
    
    .section-title h2::after {
        display: none;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: #1d1b16;
    margin-top: 110px;
}

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

.breadcrumbs h2 {
    font-size: 26px;
    font-weight: 300;
}

.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: #37332a;
    content: "/";
}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    background-size: cover;
    position: relative;
    padding: 80px 0;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about:before {
    content: "";
    background: #003087; /* Solid blue - changed from semi-transparent */
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.about .about-img {
    position: relative;
    transition: 0.5s;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about .about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(220, 53, 69, 0.3), rgba(0, 48, 135, 0.3));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.about .about-img:hover::before {
    opacity: 1;
}

.about .about-img img {
    transition: transform 0.5s ease;
}

.about .about-img:hover img {
    transform: scale(1.05);
}

.about .about-img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.our-Testimonial .about-img {
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.about .about-img img {
    width: 100%;
    height: auto;
    max-height: 435px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.5s ease;
    background-color: #403b34;
    transform-origin: center;
}

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

.our-Testimonial .about-img img {
    width: 100%;
    height: auto;
    max-height: 400px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.5s ease;
    transform-origin: center;
}

.our-Testimonial .about-img:hover img {
    transform: scale(1.1);
}

/* Add zoom indicator */
.about .about-img::before,
.our-Testimonial .about-img::before {
    content: "Click to zoom";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(220, 53, 69, 0.7);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.about .about-img:hover::before,
.our-Testimonial .about-img:hover::before {
    opacity: 1;
}

/*--------------------------------------------------------------
# Our Testimonial Cards
--------------------------------------------------------------*/
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    animation: cardPulse 2s infinite alternate ease-in-out;
}

@keyframes cardPulse {
    0% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
    }
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -15px;
    left: 10px;
    font-size: 80px;
    color: rgba(220, 53, 69, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card h4 {
    color: #2c4964;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Enhanced mobile responsiveness for about images and testimonial cards */
@media (max-width: 768px) {
    .about .content {
        padding: 20px;
        margin-top: 20px;
    }
    
    .about .content h3 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .about .content p {
        text-align: justify;
        font-size: 15px;
        line-height: 1.6;
    }
    
    .about .about-img {
        margin-bottom: 20px;
    }
    
    .about .about-img img {
        max-height: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .our-Testimonial .about-img img {
        max-height: 280px;
        margin: 0 auto;
        display: block;
    }
    
    .about .row {
        text-align: center;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
        padding: 1.75rem !important;
        animation: cardPulse 3s infinite alternate ease-in-out;
    }
    
    .testimonial-card::before {
        font-size: 70px;
        top: -10px;
        left: 8px;
    }
    
    /* Add a subtle border effect on mobile */
    .testimonial-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, #003087, #DC3545);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }
    
    .testimonial-card:hover::after {
        transform: scaleX(1);
    }
    
    /* Mobile testimonial image styling */
    .mobile-testimonial-img {
        margin: 15px 0;
        padding: 0 15px;
    }
    
    .mobile-testimonial-img .about-img {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        margin-bottom: 15px;
        transform: translateY(0);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }
    
    .mobile-testimonial-img .about-img:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-testimonial-img .testimonial-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 48, 135, 0.8), rgba(0, 48, 135, 0));
        padding: 30px 15px 15px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .mobile-testimonial-img .about-img:hover .testimonial-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-testimonial-img .testimonial-overlay span {
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        display: block;
        text-align: center;
    }
    
    .mobile-testimonial-img img {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .mobile-testimonial-img .about-img:hover img {
        transform: scale(1.05);
    }
    
    .testimonial-card h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
    }
    
    .our-Testimonial .row {
        margin-bottom: 20px !important;
    }
    
    /* Add scroll indicator for Your Health, Our Mission section */
    .our-Testimonial .section-title::after {
        content: '← Scroll →';
        display: block;
        font-size: 14px;
        color: #DC3545;
        margin-top: 5px;
        font-weight: normal;
        opacity: 0.8;
        animation: pulse 2s infinite;
    }
}

@media (max-width: 576px) {
    .about .content {
        padding: 15px;
    }
    
    .about .content h3 {
        font-size: 20px;
    }
    
    .about .content p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .about .about-img img {
        max-height: 250px;
    }
    
    .our-Testimonial .about-img img {
        max-height: 230px;
        margin-bottom: 15px;
    }
    
    .testimonial-card {
        padding: 1.5rem !important;
        margin-bottom: 15px;
    }
    
    .testimonial-card::before {
        font-size: 60px;
        top: -8px;
        left: 6px;
    }
    
    .testimonial-card h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }
    
    .our-Testimonial .section-title {
        margin-bottom: 15px;
    }
    
    .about .about-img::before,
    .our-Testimonial .about-img::before {
        font-size: 12px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .about .content {
        padding: 10px;
    }
    
    .about .content h3 {
        font-size: 18px;
    }
    
    .about .content p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .about .about-img img {
        max-height: 200px;
    }
    
    .our-Testimonial .about-img img {
        max-height: 180px;
        margin-bottom: 10px;
    }
    
    .testimonial-card {
        padding: 1rem !important;
        margin-bottom: 10px;
    }
    
    .testimonial-card::before {
        font-size: 50px;
        top: -5px;
        left: 5px;
    }
    
    .testimonial-card h4 {
        font-size: 0.95rem;
    }
    
    .testimonial-card p {
        font-size: 0.85rem;
    }
    
    .about .about-img::before,
    .our-Testimonial .about-img::before {
        font-size: 10px;
        padding: 4px;
    }
}

.about .about-img::before {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    content: "";
    border-left: 5px solid #007BFF; /* Blue */
    border-top: 5px solid #007BFF;
    transition: 0.5s;
}

.about .about-img::after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 2;
    content: "";
    border-right: 5px solid #007BFF; /* Blue */
    border-bottom: 5px solid #007BFF;
    transition: 0.5s;
}

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

.about .about-img:hover::before {
    left: 10px;
    top: 10px;
}

.about .about-img:hover::after {
    right: 10px;
    bottom: 10px;
}

.about .content {
    position: relative;
}

.about .content {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 48, 135, 0.85);
    color: #ffffff;
}

.about .about-content {
    padding: 15px;
}

.about .content h3 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 15px;
    color: #ffffff;
    border-left: 4px solid #FFD700;
    padding-left: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    position: relative;
}

.about .content h3:hover {
    padding-left: 15px;
    color: #FFD700;
}

.about .content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.about .content h3:hover::after {
    width: 50px;
}

.about .content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about .content .mission-vision {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.about .content .mission, 
.about .content .vision {
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(220, 53, 69, 0.15);
    border-left: 3px solid #DC3545;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.3s ease;
}

.about .content .mission:hover, 
.about .content .vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(220, 53, 69, 0.25);
}

.about .content .mission::before, 
.about .content .vision::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../assets/img/hero-bg3.jpg') center center no-repeat;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.about .content .mission h3, 
.about .content .vision h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #FFD700;
    border-left: none;
    padding-left: 0;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.about .content .mission p, 
.about .content .vision p {
    font-size: 15px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about .content i {
    font-size: 22px;
    padding-right: 8px;
    color: #FFD700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

@media screen and (max-width: 768px) {
    .about .about-img img {
        left: 21%;
    }
}

@media screen and (max-width: 587px) {
    .about .about-img img {
        left: 22%;
    }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us .box {
    padding: 40px 25px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    background: #1a1814;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-us .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #007BFF; /* Blue */
    margin-bottom: 15px;
}

.why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.why-us .box p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    flex-grow: 1;
}

.why-us .box:hover {
    background: #DC3545; /* Red */
    padding: 30px 30px 40px 30px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(-10px);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
    color: #fff;
}

/* Enhanced mobile responsiveness for services */
@media (max-width: 768px) {
    .why-us .box {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .why-us .box h4 {
        font-size: 20px;
    }
    
    .why-us .box span {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .why-us .box {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .why-us .box h4 {
        font-size: 18px;
        margin: 15px 0;
    }
    
    .why-us .box span {
        font-size: 22px;
    }
    
    .why-us .box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-us .box {
        padding: 20px 12px;
    }
    
    .why-us .box h4 {
        font-size: 16px;
    }
    
    .why-us .box span {
        font-size: 20px;
    }
}

/* Enhanced mobile responsiveness for services */
@media (max-width: 768px) {
    .why-us .box {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .why-us .box h4 {
        font-size: 20px;
    }
    
    .why-us .box span {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .why-us .box {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .why-us .box h4 {
        font-size: 18px;
        margin: 15px 0;
    }
    
    .why-us .box span {
        font-size: 22px;
    }
    
    .why-us .box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-us .box {
        padding: 20px 12px;
    }
    
    .why-us .box h4 {
        font-size: 16px;
    }
    
    .why-us .box span {
        font-size: 20px;
    }
}

/* Enhanced mobile responsiveness for services */
@media (max-width: 768px) {
    .why-us .box {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .why-us .box h4 {
        font-size: 20px;
    }
    
    .why-us .box span {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .why-us .box {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .why-us .box h4 {
        font-size: 18px;
        margin: 15px 0;
    }
    
    .why-us .box span {
        font-size: 22px;
    }
    
    .why-us .box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-us .box {
        padding: 20px 12px;
    }
    
    .why-us .box h4 {
        font-size: 16px;
    }
    
    .why-us .box span {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# 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 12px 10px 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
    transition: all ease-in-out 0.3s;
    border-radius: 50px;
    font-family: "Playfair Display", serif;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
    color: #DC3545; /* Red */
}

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

.menu .menu-item {
    margin-top: 50px;
}

.menu .menu-img {
    width: 70px;
    border-radius: 50%;
    float: left;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
    margin-left: 85px;
    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: #bab3a6;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
    padding-right: 10px;
    background: #1a1814;
    position: relative;
    z-index: 3;
    font-weight: 700;
    color: white;
    transition: 0.3s;
}

.menu .menu-content a:hover {
    color: #007BFF; /* Blue */
}

.menu .menu-content span {
    background: #1a1814;
    position: relative;
    z-index: 3;
    padding: 0 10px;
    font-weight: 600;
    color: #DC3545; /* Red */
}

.menu .menu-ingredients {
    margin-left: 85px;
    font-style: italic;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/

.specials {
    overflow: hidden;
}

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

.specials .nav-link {
    border: 0;
    padding: 12px 15px;
    transition: 0.3s;
    color: #fff;
    border-radius: 0;
    border-right: 2px solid #007BFF; /* Blue */
    font-weight: 600;
    font-size: 15px;
}

.specials .nav-link:hover {
    color: #DC3545; /* Red */
}

.specials .nav-link.active {
    color: #1a1814;
    background: #DC3545; /* Red */
    border-color: #DC3545;
}

.specials .nav-link:hover {
    border-color: #DC3545;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/

.events {
    background: url(../img/events-bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}

.events::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.events .section-title h2 {
    color: #fff;
}

.events .container {
    position: relative;
}

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

.events .events-carousel {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
}

.events .event-item {
    color: #fff;
}

.events .event-item h3 {
    font-weight: 600;
    font-size: 26px;
    color: #DC3545; /* Red */
}

.events .event-item .price {
    font-size: 26px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.events .event-item .price span {
    border-bottom: 2px solid #007BFF; /* Blue */
}

.events .event-item ul {
    list-style: none;
    padding: 0;
}

.events .event-item ul li {
    padding-bottom: 10px;
}

.events .event-item ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #007BFF; /* Blue */
}

.events .event-item p:last-child {
    margin-bottom: 0;
}

.events .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

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

.events .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #DC3545; /* Red */
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/

.book-a-table .php-email-form {
    width: 100%;
}

.book-a-table .php-email-form .form-group {
    padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.book-a-table .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.book-a-table .php-email-form .error-message br+br {
    margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.book-a-table .php-email-form .loading {
    display: none;
    text-align: center;
    padding: 15px;
}

.book-a-table .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #DC3545; /* Red */
    border-top-color: #1a1814;
    animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: #0c0b09;
    border-color: #625b4b;
    color: white;
}

.book-a-table .php-email-form input::-moz-placeholder,
.book-a-table .php-email-form textarea::-moz-placeholder {
    color: #a49b89;
}

.book-a-table .php-email-form input::placeholder,
.book-a-table .php-email-form textarea::placeholder {
    color: #a49b89;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
    border-color: #007BFF; /* Blue */
}

.book-a-table .php-email-form input {
    height: 44px;
}

.book-a-table .php-email-form textarea {
    padding: 10px 12px;
}

.book-a-table .php-email-form button[type=submit] {
    background: #DC3545; /* Red */
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
    background: #B02A37; /* Darker red */
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: white;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #007BFF; /* Blue */
    font-size: 26px;
}

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

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

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #26231d;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    filter: grayscale(100%); /* Fixed: Moved filter to separate property */
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #DC3545; /* Red */
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/

.Events .container .events-columns {
    position: relative;
    padding: 20px 0;
}

.Events .container .events-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    animation: fadeIn 0.8s ease-in-out;
}

.Events .container .events-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    animation: slideIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.Events .events-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.Events .scroll-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 15px;
}

.Events .scroll-dots .dot {
    width: 16px;
    height: 16px;
    background-color: rgba(220, 53, 69, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
    border: 2px solid transparent;
}

.Events .scroll-dots .dot:hover {
    background-color: rgba(220, 53, 69, 0.6);
    transform: scale(1.1);
}

.Events .scroll-dots .dot.active {
    background-color: rgba(220, 53, 69, 1);
    transform: scale(1.2);
    border: 2px solid white;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.5);
}

.Events .scroll-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(220, 53, 69, 0.8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin: 0 10px;
    border: 2px solid white;
}

.Events .scroll-arrow:hover {
    background-color: rgba(220, 53, 69, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.Events .scroll-arrow.disabled {
    background-color: rgba(220, 53, 69, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: none;
    pointer-events: none;
}

.Events .scroll-arrow.disabled:hover {
    transform: none;
    box-shadow: none;
}

.Events .scroll-arrow i {
    font-size: 24px;
}

.Events-item {
    flex: 0 0 auto;
    width: 300px;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.Events-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    display: block;
    transform-origin: center;
}

.Events-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Add zoom effect container */
.Events-item {
    overflow: hidden;
    position: relative;
}

/* Add caption overlay */
.Events-item::after {
    content: 'Click to zoom';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(220, 53, 69, 0.7);
    color: white;
    text-align: center;
    padding: 5px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.Events-item:hover::after {
    opacity: 1;
}

/* Add title indicator for scrolling */
.Events .section-title {
    position: relative;
}

.Events .section-title::after {
    content: '← Scroll →';
    display: block;
    font-size: 14px;
    color: #DC3545;
    margin-top: 5px;
    font-weight: normal;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

@media screen and (max-width: 1200px) {
    .Events .container .events-row {
        gap: 15px;
    }
    
    .Events-item {
        width: 280px;
        height: 230px;
    }
}

@media screen and (max-width: 991px) {
    .Events .container .events-row {
        gap: 12px;
    }
    
    .Events-item {
        width: 220px;
        height: 180px;
    }
    
    /* Hide the scroll text on larger screens */
    .Events .section-title::after {
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .Events .container .events-row {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .Events-item {
        width: 200px;
        height: 170px;
    }
    
    .Events-item img {
        border-radius: 8px;
    }
    
    /* Add left/right padding to prevent images from touching screen edge */
    .Events .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (max-width: 576px) {
    .Events .container .events-row {
        gap: 8px;
    }
    
    .Events-item {
        width: 160px;
        height: 140px;
    }
    
    /* Make the scroll indicator more prominent */
    .Events .section-title::after {
        font-size: 13px;
        font-weight: bold;
        margin-top: 8px;
    }
    
    /* Adjust the caption text size */
    .Events-item::after {
        font-size: 10px;
        padding: 3px;
    }
}

@media screen and (max-width: 480px) {
    .Events .container .events-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .Events-item {
        width: 220px;
        height: 180px;
    }
    
    .Events-item img {
        border-radius: 6px;
    }
    
    /* Add scroll arrows for the Events section on very small screens */
    .Events {
        position: relative;
    }
    
    /* Ensure container has proper padding */
    .Events .container {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    /* Scroll arrows for Events section */
    .Events .scroll-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 25px;
        height: 25px;
        background-color: rgba(220, 53, 69, 0.8);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .Events .scroll-arrow:hover {
        background-color: rgba(220, 53, 69, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .Events .scroll-arrow.left {
        left: 5px;
    }
    
    .Events .scroll-arrow.right {
        right: 5px;
    }
    
    .Events .scroll-arrow i {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/

.chefs .member {
    text-align: center;
    margin-bottom: 30px;
    background: #343a40;
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border-left: 4px solid #DC3545; /* Red border on the left */
}

.chefs .member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-left: 4px solid #fff; /* White border on hover */
}

.chefs .member img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.chefs .member:hover img {
    transform: scale(1.05);
}

/* Team section scroll arrows */
.chefs {
    position: relative;
}

.chefs .scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(220, 53, 69, 0.8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.chefs .scroll-arrow:hover {
    background-color: rgba(220, 53, 69, 1);
    opacity: 1;
}

.chefs .scroll-arrow.left {
    left: 10px;
}

.chefs .scroll-arrow.right {
    right: 10px;
}

.chefs .scroll-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 3px solid white;
    border-right: 3px solid white;
}

.chefs .scroll-arrow.left::before {
    transform: rotate(-135deg);
    margin-left: 5px;
}

.chefs .scroll-arrow.right::before {
    transform: rotate(45deg);
    margin-right: 5px;
}

/* Enhanced mobile responsiveness for team section */
@media (max-width: 991px) {
    .chefs .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-bottom: 15px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scrollbar-width: thin; /* For Firefox */
        scroll-behavior: smooth;
        position: relative;
        cursor: grab;
        /* Add shadow to indicate more content */
        background: linear-gradient(to right, transparent 0%, transparent 95%, rgba(220, 53, 69, 0.2) 100%);
        background-attachment: local;
        /* Prevent horizontal scrolling from affecting page layout */
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .chefs .row:active {
        cursor: grabbing;
    }
    
    .chefs .row::-webkit-scrollbar {
        height: 6px;
    }
    
    .chefs .row::-webkit-scrollbar-thumb {
        background-color: rgba(220, 53, 69, 0.5);
        border-radius: 10px;
    }
    
    .chefs .row::-webkit-scrollbar-track {
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }
    
    .chefs .row > div {
        flex: 0 0 auto;
        width: 280px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .chefs .member {
        height: 350px;
        margin-bottom: 25px;
        margin-right: 5px;
    }
    
    .chefs .member .member-info-content h4 {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .chefs .member .member-info-content span {
        font-size: 12px;
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .chefs .row > div {
        width: 250px;
    }
    
    .chefs .member {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .chefs .member .member-info-content h4 {
        font-size: 14px;
        margin-bottom: 1px;
        padding: 0 8px;
        line-height: 1.3;
    }
    
    .chefs .member .member-info-content span {
        font-size: 11px;
        padding: 0 8px;
    }
    
    .chefs .member .social i {
        font-size: 16px;
        margin: 0 1px;
    }
    
    .chefs .section-title {
        margin-bottom: 20px;
        position: relative;
    }
    
    .chefs .section-title::after {
        content: '\2190 Scroll \2192';
        display: block;
        text-align: center;
        font-size: 14px;
        color: #DC3545;
        margin-top: 5px;
        font-style: italic;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { opacity: 0.5; }
        50% { opacity: 1; }
        100% { opacity: 0.5; }
    }
}

@media (max-width: 480px) {
    .chefs .row > div {
        width: 220px;
    }
    
    .chefs .member {
        height: 280px;
    }
    
    .chefs .member .member-info-content h4 {
        font-size: 13px;
        padding: 0 5px;
        line-height: 1.2;
    }
    
    .chefs .member .member-info-content span {
        font-size: 10px;
        padding: 0 5px;
    }
    
    .chefs .section-title h2 {
        font-size: 24px;
    }
}

.chefs .member .member-info {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

.chefs .member .member-info-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: bottom 0.4s;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    border-radius: 0 0 15px 15px;
}

.chefs .member .member-info-content h4 {
    font-weight: 400;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
}

.chefs .member .member-info-content span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}

.chefs .member .social {
    position: absolute;
    left: 0;
    bottom: -38px;
    right: 0;
    height: 48px;
    transition: bottom ease-in-out 0.4s;
    text-align: center;
}

.chefs .member .social a {
    transition: color 0.3s;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
}

.chefs .member .social a:hover {
    color: #DC3545; /* Red */
}

.chefs .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.chefs .member:hover .member-info {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(220, 53, 69, 0.3) 100%); /* Red gradient with more visibility */
    opacity: 1;
    transition: 0.4s;
    backdrop-filter: blur(2px);
}

.chefs .member:hover .member-info-content {
    bottom: 60px;
    transition: bottom 0.4s;
}

.chefs .member:hover .social {
    bottom: 0;
    transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
    width: 100%;
    background: rgba(0, 31, 63, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.contact .info i {
    font-size: 20px;
    float: left;
    width: 44px;
    height: 44px;
    background: #DC3545; /* Red */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.4);
    color: #fff;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #f0f0f0;
    line-height: 1.6;
}

.contact .info .open-hours,
.contact .info .email,
.contact .info .phone {
    margin-top: 30px;
}

/* Enhanced mobile responsiveness for contact section */
@media (max-width: 768px) {
    .contact .info {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .contact .info i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .contact .info h4 {
        padding: 0 0 0 55px;
        font-size: 16px;
    }
    
    .contact .info p {
        padding: 0 0 0 55px;
        font-size: 13px;
    }
    
    .contact .info .open-hours,
    .contact .info .email,
    .contact .info .phone {
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    .contact .info {
        padding: 15px;
    }
    
    .contact .info i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .contact .info h4 {
        padding: 0 0 0 50px;
        font-size: 15px;
    }
    
    .contact .info p {
        padding: 0 0 0 50px;
        font-size: 12px;
    }
}

.contact .php-email-form {
    width: 100%;
    background: rgba(0, 31, 63, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.contact .php-email-form .form-group {
    padding-bottom: 15px;
    position: relative;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contact .php-email-form .loading {
    display: none;
    text-align: center;
    padding: 15px;
    color: #fff;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #DC3545; /* Red */
    border-top-color: #fff;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    background: #fff;
    border: 1px solid #007BFF;
    color: #333;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact .php-email-form input::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
    color: #666;
    font-weight: 500;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
    color: #666;
    font-weight: 500;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #007BFF; /* Blue */
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
}

.contact .php-email-form input {
    height: 48px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
    min-height: 150px;
}

.contact .php-email-form button[type=submit] {
    background: #DC3545; /* Red */
    border: 0;
    padding: 12px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    cursor: pointer;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

.contact .php-email-form button[type=submit]:hover {
    background: #B02A37; /* Darker red */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Enhanced mobile responsiveness for contact form */
@media (max-width: 768px) {
    .contact .php-email-form {
        padding: 20px;
    }
    
    .contact .php-email-form input,
    .contact .php-email-form textarea {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .contact .php-email-form input {
        height: 42px;
    }
    
    .contact .php-email-form button[type=submit] {
        padding: 10px 30px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .contact .php-email-form {
        padding: 15px;
    }
    
    .contact .php-email-form .form-group {
        padding-bottom: 10px;
    }
    
    .contact .php-email-form input,
    .contact .php-email-form textarea {
        font-size: 12px;
        padding: 8px 10px;
        border-radius: 6px;
    }
    
    .contact .php-email-form input {
        height: 38px;
    }
    
    .contact .php-email-form textarea {
        min-height: 120px;
    }
    
    .contact .php-email-form button[type=submit] {
        padding: 8px 25px;
        font-size: 13px;
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #003087; /* Blue */
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    background: #0c0b09;
    border-top: 1px solid #37332a;
    border-bottom: 1px solid #28251f;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 300;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Playfair Display", serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #28251f;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #007BFF; /* Blue */
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #FFF;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #DC3545; /* Red */
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #28251f;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    border: 1px solid #454035;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
    background: #28251f;
    color: white;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    background: #DC3545; /* Red */
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #B02A37; /* Darker red */
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/

.our-services .box {
    padding: 40px 25px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    background: #fff;
    height: 100%;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.our-services .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #DC3545; /* Red */
    transition: all 0.3s ease;
}

.our-services .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #DC3545; /* Red */
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
}

.our-services .box h4 {
    font-size: 22px;
    font-weight: 600;
    padding: 0;
    margin: 15px 0;
    color: #2c4964;
    transition: all 0.3s ease;
}

.our-services .box p {
    color: #666;
    font-size: 15px;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.our-services .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.our-services .box:hover::before {
    width: 100%;
    opacity: 0.1;
}

.our-services .box:hover h4 {
    color: #DC3545; /* Red */
}

/* Enhanced mobile responsiveness for services */
@media (max-width: 768px) {
    .our-services .box {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .our-services .box span {
        font-size: 24px;
    }
    
    .our-services .box h4 {
        font-size: 20px;
        margin: 12px 0;
    }
    
    .our-services .box p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .our-services .box {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .our-services .box span {
        font-size: 22px;
    }
    
    .our-services .box h4 {
        font-size: 18px;
        margin: 10px 0;
    }
    
    .our-services .box p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .our-services .box {
        padding: 20px 12px;
    }
    
    .our-services .box span {
        font-size: 20px;
    }
    
    .our-services .box h4 {
        font-size: 16px;
    }
}

/* View All Services Button */
.our-services .btn-primary {
    background: linear-gradient(135deg, #DC3545 0%, #a02834 100%);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
    color: white;
}

.our-services .btn-primary:hover {
    background: linear-gradient(135deg, #a02834 0%, #8b1e2b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    color: white;
    text-decoration: none;
}

.our-services .btn-primary i {
    transition: transform 0.3s ease;
}

.our-services .btn-primary:hover i {
    transform: translateX(3px);
}

/*--------------------------------------------------------------
# Services Page Styles
--------------------------------------------------------------*/

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    background: #f8f9fa;
    min-height: auto;
    margin-top: 96px;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2c4964;
    margin: 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: #6c757d;
    content: "/";
}

.breadcrumbs ol a {
    color: #DC3545;
    text-decoration: none;
}

.breadcrumbs ol a:hover {
    color: #a02834;
}

/* Services Hero Section */
.services-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c4964;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.services-hero .lead {
    font-size: 1.25rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Detail Sections */
.services-detail {
    padding: 80px 0;
}

.services-detail.alt-bg {
    background: #f8f9fa;
}

.service-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #DC3545;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.service-item.emergency-service {
    background: linear-gradient(135deg, #DC3545 0%, #a02834 100%);
    color: white;
}

.service-item.emergency-service::before {
    background: #fff;
}

.service-item.emergency-service h4 {
    color: white;
}

.service-item.emergency-service p {
    color: rgba(255, 255, 255, 0.9);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC3545 0%, #a02834 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-item.emergency-service .service-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-item h4 {
    font-size: 22px;
    font-weight: 600;
    color: #2c4964;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-item:hover h4 {
    color: #DC3545;
}

.service-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

/* Why Choose Services Section */
.why-choose-services {
    padding: 80px 0;
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC3545 0%, #a02834 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 36px;
    color: white;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c4964;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c4964 0%, #1a2f42 100%);
    color: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-buttons .btn-primary {
    background: #DC3545;
    border: 2px solid #DC3545;
    color: white;
}

.cta-buttons .btn-primary:hover {
    background: #a02834;
    border-color: #a02834;
    transform: translateY(-2px);
}

.cta-buttons .btn-outline-primary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-outline-primary:hover {
    background: white;
    color: #2c4964;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .services-hero .lead {
        font-size: 1.1rem;
    }
    
    .service-item {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .service-item h4 {
        font-size: 20px;
    }
    
    .service-item p {
        font-size: 14px;
    }
    
    .feature-box {
        padding: 30px 15px;
        margin-bottom: 30px;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 250px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 60px 0;
    }
    
    .services-hero h1 {
        font-size: 1.8rem;
    }
    
    .services-detail {
        padding: 60px 0;
    }
    
    .service-item {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
}

/* ======= Hero Section Styles ======= */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.hero-content {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
}

.hero-text h1 .highlight {
    color: #27a776;
    display: block;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 35px;
    font-family: 'Open Sans', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 200px;
}

.hero-btn.btn-primary {
    background: linear-gradient(45deg, #27a776, #2ecc71);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(39, 167, 118, 0.3);
}

.hero-btn.btn-primary:hover {
    background: linear-gradient(45deg, #219a69, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 167, 118, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    border: 2px solid #27a776;
    color: #27a776;
}

.hero-btn-secondary:hover {
    background: #27a776;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 167, 118, 0.3);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section .row {
        flex-direction: column-reverse;
    }
    
    .hero-image-container {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-btn {
        min-width: 180px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h1 .highlight {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
}