:root {
    --primary-color: #1d561f; /* Green */
    --primary-light: #81C784;
    --primary-dark: #388E3C;
    --secondary-color: #9E9E9E; /* Gray */
    --secondary-light: #BDBDBD;
    --secondary-dark: #616161;
    --accent-color: #FF5722; /* Accent color */
    --text-color: #333333; /* Dark text for white background */
    --light-text: #666666; /* Medium gray text */
    --white-bg: #FFFFFF; /* White background */
    --light-bg: #F5F5F5; /* Very light gray background */
    --lighter-bg: #FAFAFA; /* Even lighter background */
    --border-color: #E0E0E0; /* Light border color */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --content-width: 1200px;
    --header-height: 90px; /* Increased header height */
    --z-index-header: 1000;
    --z-index-modal: 1500;
    --stripe-size: 50px;
    --slider-transition: 1.5s; /* Slow transition for slider */
}

/* Base Styles with Modern Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white-bg);
    /* Updated background with subtle stripes on white */
    background-image: 
        /* White stripes with very subtle shadows */
        linear-gradient(135deg, transparent 0%, transparent 40%, 
                       rgba(0, 0, 0, 0.02) 40%, rgba(0, 0, 0, 0.02) 60%, 
                       transparent 60%, transparent 100%),
        /* Green and gray stripes with very low opacity */
        linear-gradient(45deg, transparent 0%, transparent 25%, 
                       rgba(76, 175, 80, 0.03) 25%, rgba(76, 175, 80, 0.03) 50%, 
                       transparent 50%, transparent 75%, 
                       rgba(158, 158, 158, 0.03) 75%, rgba(158, 158, 158, 0.03) 100%);
    background-size: var(--stripe-size) var(--stripe-size), var(--stripe-size) var(--stripe-size);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Advanced Button Styles */
.btn {
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid transparent;
    overflow: hidden;
    z-index: 1;
    user-select: none;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-icon i {
    transition: transform 0.3s ease;
}

.btn-icon:hover i {
    transform: translateX(3px);
}

/* Advanced Header Styles */
header {
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-index-header);
    transition: var(--transition);
    height: var(--header-height);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

header.scrolled {
    background-color: rgba(243, 243, 243, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo section with Call Now button */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Call Now button on the left */
.call-now-left {
    margin-left: 1rem;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(29, 86, 31, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.call-now-left:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(29, 86, 31, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 70px; /* Increased logo size */
    height: 70px; /* Increased logo size */
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.2); /* Added glow effect */
}

header.scrolled .logo img {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.6rem; /* Increased font size */
    color: var(--primary-color);
    transition: var(--transition);
    font-family: var(--font-secondary);
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.2); /* Added glow effect */
}

header.scrolled .logo-text {
    font-size: 1.3rem;
}

nav ul {
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Header Social Icons - Right Side */
.header-social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 1rem;
}

.header-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(29, 86, 31, 0.3);
}

.header-social-icon:hover {
    transform: scale(1.15);
    background-color: var(--primary-dark);
    box-shadow: 0 6px 12px rgba(29, 86, 31, 0.4);
}

.header-social-icon i {
    transition: transform 0.3s ease;
}

.header-social-icon:hover i {
    transform: scale(1.1);
}

/* Add pulse animation for initial load */
@keyframes pulse-once {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-once {
    animation: pulse-once 0.8s ease-in-out;
}

/* Responsive adjustments for social icons and call now button */
@media (max-width: 992px) {
    .header-social-icons {
        gap: 0.75rem;
        margin-right: 0.75rem;
    }

    .logo-section {
        gap: 1rem;
    }

    .call-now-left {
        margin-left: 0.75rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header-social-icons {
        gap: 0.5rem;
        margin-right: 0.5rem;
    }

    .header-social-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .call-now-left {
        display: none; /* Hide on smaller screens */
    }
}

@media (max-width: 576px) {
    .header-social-icons {
        display: none; /* Hide on very small screens */
    }
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

/* Advanced Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white-bg);
    z-index: var(--z-index-modal);
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid rgba(76, 175, 80, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.close-btn {
    text-align: right;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav ul li a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav ul li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Enhanced Hero Slider Section */
.hero-slider {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity var(--slider-transition) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 1.25rem;
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    font-family: var(--font-secondary);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.3s;
    color: white; /* Keep white text on dark overlay */
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.6s;
    color: white; /* Keep white text on dark overlay */
}

.slide-content .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.9s;
}

/* Slider Navigation - Fixed to be more visible on white theme */
.slider-navigation {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5); /* Darker background for better visibility */
    border: 2px solid rgba(255, 255, 255, 0.8); /* More visible border */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem; /* Larger icon */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
}

.slider-nav-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3); /* Darker for better visibility */
    border: 1px solid rgba(255, 255, 255, 0.8); /* Add border */
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add shadow */
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(0, 0, 0, 0.5);
}/* Menu Categories Tabs */
.menu-categories {
    margin-top: 2rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-color);
}

.category-tab:hover {
    background-color: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.category-tab.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.2);
}

.menu-category-content {
    display: none;
}

.menu-category-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.view-full-menu {
    text-align: center;
    margin-top: 3rem;
}

.view-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.view-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.view-menu-btn i {
    transition: transform 0.3s ease;
}

.view-menu-btn:hover i {
    transform: translateX(3px);
}

/* Contact Form Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form-container {
    background-color: var(--white-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--light-bg);
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
    outline: none;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
}

.contact-info-card {
    background-color: var(--white-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.contact-info-item {
    display: flex;
    gap: 1rem;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.contact-info-item p {
    color: var(--light-text);
}

.contact-info-item a {
    color: var(--light-text);
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive adjustments for the menu section */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
    }
    
    .category-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
}
/* Advanced Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Enhanced CTA Banner */
.cta-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 25%, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.1) 50%, transparent 50%, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 20px 20px;
    animation: moveStripes 20s linear infinite;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 500;
}

.cta-btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Enhanced Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    font-family: var(--font-secondary);
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 1rem;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-divider::before {
    left: -15px;
}

.section-divider::after {
    right: -15px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

/* Enhanced Order Section */
#order-online {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

#order-online::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(76, 175, 80, 0.03);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

#order-online::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(158, 158, 158, 0.03);
    border-radius: 50%;
    transform: translate(-100px, 100px);
}

.delivery-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.partner-card {
    background-color: var(--white-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    transform: translateY(0);
    border: 1px solid var(--border-color);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.delivery-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.partner-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: var(--white-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: var(--transition);
}

.partner-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.order-btn {
    margin-top: auto;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 500;
    transition: var(--transition);
}

.delivery-link:hover .order-btn {
    background-color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
}

/* Enhanced Menu Highlights */
.menu-highlights {
    background-color: var(--lighter-bg);
    position: relative;
}

.menu-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234CAF50' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.menu-item {
    background-color: var(--white-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--box-shadow-hover);
}

.menu-item-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.menu-item-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 1.5rem;
    position: relative;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.menu-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: var(--font-secondary);
}

.menu-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.menu-item-description {
    color: var(--light-text);
    margin-bottom: 1.25rem;
    min-height: 50px;
}

.menu-item-footer {
    display: flex;
    justify-content: center;
}

.view-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem auto 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.view-menu-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.view-menu-btn:hover::after {
    left: 100%;
}

/* Enhanced About Section */
.about-section {
    background-color: var(--white-bg);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(76, 175, 80, 0.03);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: var(--font-secondary);
}

.about-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    border: 1px solid var(--border-color);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, var(--primary-color), transparent);
    opacity: 0.1;
    z-index: 1;
    transition: var(--transition);
}

.about-image:hover::before {
    opacity: 0.2;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Enhanced Testimonials */
.testimonials {
    background-color: var(--lighter-bg);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234CAF50' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1000px;
    z-index: 1;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial {
    min-width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .testimonial {
        min-width: 50%;
    }
}

@media (min-width: 992px) {
    .testimonial {
        min-width: 33.333%;
    }
}

.testimonial-inner {
    background-color: var(--white-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.testimonial-inner:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.testimonial-inner::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(76, 175, 80, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-style: italic;
    min-height: 100px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--light-bg);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.testimonial-author-info p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
}

.testimonial-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.testimonial-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.testimonial-btn:hover i {
    transform: scale(1.2);
}

/* Enhanced Location Section */
.location-section {
    background-color: var(--white-bg);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(158, 158, 158, 0.03);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.location-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.location-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-family: var(--font-secondary);
}

.location-card h3 i {
    background-color: rgba(76, 175, 80, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-address {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.map-container {
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid var(--border-color);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.03);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.map-container:hover::before {
    opacity: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hours-list {
    margin-bottom: 2rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--border-color);
    transition: var(--transition);
    color: var(--text-color);
}

.hours-list li:hover {
    padding-left: 0.5rem;
    color: var(--primary-color);
}

.contact-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.contact-info h3 {
    margin-bottom: 0.75rem;
}

.contact-info p {
    margin-bottom: 1.25rem;
    color: var(--light-text);
}
/* Enhanced Footer with Background Image - No Blur */
footer {
    color: var(--text-color);
    padding: 5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    /* Remove background-color */
    background-color: transparent;
}

/* Background image without blur */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://media-hosting.imagekit.io/048a33d812f945e8/7d1ba203-865c-435e-8fd2-122e2a74a5f4.jpg?Expires=1841430449&Key-Pair-Id=K2ZIVPTIP2VGHC&Signature=1ugorB~0yF3O~m0ndvmhUyXMA-5~Aj13Etn9bt7fYhyXp9k8PjeA0J-VWQzx~nrLFHlSQLT6xCgT36elSq~TCf-m~K2MexKdq6tQ0T2TqpCK0k~HOo7fWznxGIdBg87JxIGO5rL~7OGSsiONGCKOmucbbJuKnMgq9-vjjcXBUc4kDtFx52IobIHYnpeUrYvIjBRT0pMLeX91LvPhzql0C9EqHboK4rL4cKTJ5EVQjjExVLklQtOIlaX-ysLTfzdQnBSlQjij5jW1epDt~HFzx1ROrkBeLPvN66F2m2DSo0orrFbQQPJje~qkQ~fRogsCVNGRV4JN8vyeqyN1-qCEJg__');
    background-size: cover;
    background-position: center;
    /* Remove the blur filter */
    /* filter: blur(5px); */
    z-index: -2;
}

/* Semi-transparent overlay for text readability */
footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 245, 245, 0.75); /* Slightly more transparent to see image better */
    z-index: -1;
}

/* Gradient line at the top */
.footer-gradient-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    color: var(--text-color);
    font-family: var(--font-secondary);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-color);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.footer-social a i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
}

.footer-links li {
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links li a {
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--primary-color);
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-contact-item:hover .footer-contact-icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
    color: white;
}

.footer-contact-text {
    color: var(--text-color);
    line-height: 1.6;
}

.footer-contact-text a {
    color: var(--text-color);
    transition: var(--transition);
}

.footer-contact-text a:hover {
    color: var(--primary-color);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    padding: 0.25rem 0;
    transition: var(--transition);
}

.footer-hours li:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.03);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
    position: relative;
    z-index: 1;
}
/* Enhanced Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Enhanced Order Popup */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.order-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    background-color: var(--white-bg);
    border-radius: var(--border-radius-lg);
    z-index: 1600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.order-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.order-popup-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
}

.order-popup-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-secondary);
}

.close-popup {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: white;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-popup:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.order-popup-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-option {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border-radius: var(--border-radius);
    background-color: var(--light-bg);
    transition: var(--transition);
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.delivery-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.delivery-option:hover::before {
    transform: scaleY(1);
}

.delivery-option:hover {
    background-color: var(--white-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.delivery-option img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
}

.delivery-option:hover img {
    transform: scale(1.1);
}

.delivery-option span {
    flex: 1;
    font-weight: 500;
    color: var(--text-color);
}

.delivery-action {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.delivery-option:hover .delivery-action {
    background-color: var(--primary-dark);
    padding: 0.5rem 1.25rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slide-content h1 {
        font-size: 3.5rem;
    }
    
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .slide-content h1 {
        font-size: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-content {
        order: 2;
    }

    .about-image {
        order: 1;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 3rem 0;
    }

    .hero-slider {
        height: 80vh;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .slide-content .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .header-actions .btn {
        display: none;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .delivery-partners {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

/* Fallback for missing testimonial images */
.testimonial-author-image {
    position: relative;
}

.testimonial-author-image:empty::before {
    content: attr(alt);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Fix for testimonial images */
.testimonial-author-image:nth-child(1):empty::before {
    content: "SJ";
    background-color: var(--primary-light);
}

.testimonial-author-image:nth-child(2):empty::before {
    content: "MT";
    background-color: var(--primary-color);
}

.testimonial-author-image:nth-child(3):empty::before {
    content: "ER";
    background-color: var(--secondary-color);
}

/* Enhanced animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Accessibility improvements */
:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}.social-icon-img {
    width: 24px;  /* Adjust size as needed */
    height: auto;
    display: inline-block;
}

