:root {
    --primary-color: #ffffff;
    --secondary-color: #1a1a2e;
    --accent-color: #d4af37;
    --hover-color: #f5a623;
    --band-hover-color: #8bc34a;
    --shadow-color: rgba(0, 0, 0, 0.15);
    --border-radius: 12px;

    --bg-light: #f8f9fd;
    --bg-dark: #0f1419;
    --gradient-start: #1a1a2e;
    --gradient-end: #0f1419;

    /* Success Colors */
    --success-color: #2ecc71;
    --warning-color: #f39c12;

    /* Border Styles */
    --border-radius: 12px;
    --border-radius-lg: 20px;

    --text-color: #2d3748;
    --input-bg: #f7fafc;
    --input-border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-color);
    /* font-family: Arial, sans-serif; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--secondary-color);
    line-height: 1.6;
}


/* ------------------------------------------ Header Styling ------------------------------------ */

.main-header {
    width: 100%;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
}

.top-left {
    flex: 1;
}

.top-left p {
    margin: 0;
}

.top-left span {
    color: var(--accent-color);
}

.top-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.top-right .top-social a {
    color: var(--primary-color);
    margin: 0 0.5rem;
    text-decoration: none;
    font-size: 1rem;
}

.top-right .top-social a:hover {
    color: var(--hover-color);
}

.top-menubar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 0.8rem 2rem;
    position: relative;
}

.top-logo {
    display: flex;
    align-items: center;
}

.top-logo a {
    text-decoration: none;
}

.top-logo img {
    max-height: 60px;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    border: 1px solid var(--secondary-color);
    border-radius: 6px;
    padding: 6px;
    background: transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: var(--hover-color);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.top-menuitems {
    display: flex;
    align-items: center;
    position: relative;
}

.top-menuitems ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.top-menuitems ul li {
    margin: 0 1rem;
}

.top-menuitems ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
    transition: color 0.3s;
}

.top-menuitems ul li a:hover {
    color: var(--hover-color);
}

.search-container {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%) scaleX(0);
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-container input {
    width: 200px;
    padding: 0.5rem;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    outline: none;
}

.search-container button {
    padding: 0.5rem;
    background-color: var(--accent-color);
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 5px;
    margin-left: 0.5rem;
    transition: background-color 0.3s ease;
}

.search-container button:hover {
    background-color: var(--hover-color);
}

.search-container.active {
    transform: translateY(-50%) scaleX(1);
    width: 250px;
    opacity: 1;
}

.top-menuitems .search-icon {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-left: 1rem;
    transition: opacity 0.3s ease;
}

.top-menuitems .search-icon.hidden {
    display: none;
}

.top-menubar.search-active .top-menuitems ul {
    transform: translateX(-150px);
}

/* ---------------------------------------------- Footer Styling ----------------------------------------------- */

footer.main-footer {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    position: relative;
    border-top: 5px solid var(--accent-color);
}

footer.main-footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

footer.main-footer a:hover {
    color: var(--hover-color);
    transform: scale(1.1);
}

/* Footer Grid Container */
footer .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: left;
}

/* Footer Columns */
footer .footer-column {
    padding: 10px;
}

footer .footer-column h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--accent-color);
}

footer .footer-column ul {
    list-style: none;
    padding: 0;
}

footer .footer-column ul li {
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .footer-column ul li i {
    color: var(--hover-color);
    font-size: 18px;
}

footer .footer-column ul li:hover i {
    transform: rotate(20deg);
}

/* Social Media Links */
footer .social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .social-links a {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 10px;
    padding: 5px 0;
}

footer .social-links a i {
    color: var(--hover-color);
    font-size: 20px;
    transition: color 0.3s ease;
}

footer .social-links a:hover i {
    color: var(--accent-color);
}

/* Footer Bottom Section */
footer .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--shadow-color);
}

footer .footer-bottom p {
    margin: 5px 0;
    font-size: 14px;
}

footer .footer-bottom a {
    color: var(--accent-color);
}

footer .footer-bottom a:hover {
    color: var(--hover-color);
}

/* Back to Top Button */
footer .scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 18px;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

footer .scroll-to-top:hover {
    background-color: var(--hover-color);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    footer.main-footer {
        text-align: center;
    }

    footer .footer-container {
        grid-template-columns: 1fr;
    }

    footer .footer-column {
        margin-bottom: 20px;
    }
}

/* ---------------------------------------------- INDEX PAGE --------------------------------------------------- */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.section-title h2 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title p {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Slider Style Start */
.home-images-container {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: var(--primary-color);
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    /* border-radius: 10px; */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.slider {
    display: flex;
    height: 500px;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 5px;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.slider-arrow:hover {
    background-color: var(--hover-color);
    /* transform: scale(1.1); */
}

.slider-arrow-left {
    left: 1rem;
}

.slider-arrow-right {
    right: 1rem;
}

.slide-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.indicator.active {
    opacity: 1;
    transform: scale(1.2);
}

.indicator:hover {
    opacity: 0.8;
}

/* Service Option Section Start */

.service-option-container {

    padding: 50px 20px;
    background-color: var(--primary-color);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
    width: 100%;
}

.grid-item {
    background-color: #2c3e50;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow-color);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
    border-top: 3px solid #d4af37;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.image-container {
    width: 100%;
    height: 250px;
    background-color: var(--hover-color);
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.image-container:hover .grid-image {
    transform: scale(1.1);
}

.content h3 {
    font-size: 24px;
    color: #f5a623;
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.button {
    font-size: 16px;
    padding: 12px 18px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(135deg, #d4af37, #f5a623);
    color: var(--primary-color);
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    font-weight: 600;
}

.button:hover {
    background: linear-gradient(135deg, #f5a623, #d4af37);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.button i {
    margin-left: 5px;
}


/* Food items container */
.food-items-container {
    padding: 50px 20px;
    background-color: var(--primary-color);
    text-align: center;
}

.food-items-container .menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Changed to always show 4 columns */
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 1400px; /* Added max-width for better control */
    margin: 0 auto;
}

.food-items-container .menu-item {
    width: 100%;
    margin: 0;
    background-color: #2c3e50;
    border-radius: 20px;
    box-shadow: 0 8px 20px var(--shadow-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    border-top: 3px solid #d4af37;
}

/* Add responsive breakpoints */
@media (max-width: 1200px) {
    .food-items-container .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .food-items-container .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .food-items-container .menu-grid {
        grid-template-columns: 1fr;
    }
}

.food-items-container .image-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease-in-out;
}

.food-items-container .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease-in-out;
}

.food-items-container .menu-item:hover .image-container img {
    transform: rotate(20deg) scale(1.1);
}

.food-items-container .menu-item h3 {
    font-size: 1.2rem;
    color: #f5a623;
    margin-bottom: 10px;
}

.food-items-container .menu-item p {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 5px 0;
}

.food-items-container .menu-item .price {
    font-size: 1rem;
    color: #f5a623;
    font-weight: bold;
    margin: 15px 0;
}

.food-items-container .order-now {
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(135deg, #d4af37, #f5a623);
    color: var(--primary-color);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px var(--shadow-color);
    font-weight: 600;
}

.food-items-container .order-now:hover {
    background: linear-gradient(135deg, #f5a623, #d4af37);
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .food-items-container .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .food-items-container .image-container {
        width: 120px;
        height: 120px;
    }

    .food-items-container .menu-item h3 {
        font-size: 1rem;
    }

    .food-items-container .menu-item .price {
        font-size: 0.9rem;
    }

    .food-items-container .order-now {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .food-items-container .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .food-items-container .menu-item {
        padding: 15px;
    }

    .food-items-container .image-container {
        width: 100px;
        height: 100px;
    }
}


/* Offer Container */
.offer-container {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e, #0f1419);
    padding: 30px 0;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

/* Offer Images */
.offer-images {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.offer-images-collection {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

/* Each Slide */
.offerSlide {
    min-width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offerSlide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 8px 30px var(--shadow-color);
    transition: transform 0.3s ease-in-out;
}

/* Arrows - Enhanced Design */
.offerSlider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    cursor: pointer;
    background: linear-gradient(135deg, #d4af37, #f5a623);
    color: var(--primary-color);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.offerSlider-arrow:hover {
    background: linear-gradient(135deg, #f5a623, #d4af37);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
}

.offerSlider-arrow.left {
    left: 20px;
}

.offerSlider-arrow.right {
    right: 20px;
}

/* Indicators (Dots) - Enhanced Design */
.offerSlider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 1000;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.offerSlider-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offerSlider-indicator.active {
    background-color: #d4af37;
    transform: scale(1.3);
    border-color: #f5a623;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.offerSlider-indicator:hover {
    background-color: #f5a623;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .offer-images {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .offer-images {
        height: 250px;
    }
    
    .offerSlider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .offer-container {
        padding: 25px 0;
    }

    .offer-images {
        height: 220px;
    }

    .offerSlider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .offerSlider-indicators {
        padding: 6px 10px;
    }

    .offerSlider-indicator {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .offer-images {
        height: 180px;
    }

    .offerSlider-arrow {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .offerSlider-indicators {
        padding: 5px 8px;
        gap: 6px;
    }

    .offerSlider-indicator {
        width: 5px;
        height: 5px;
    }
}

/* Hotel features */
.hotel-features {
    text-align: center;
    padding: 50px 20px;
    background: #2c3e50;
    color: var(--primary-color);
    font-family: Arial, sans-serif;
}

.hotel-features .section-title h1 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hotel-features .section-title p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: var(--primary-color);
    border-radius: 15px;
    box-shadow: 0px 4px 10px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px var(--shadow-color);
}

.feature-card .image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 4px solid #d4af37;
}

.feature-card h2 {
    font-size: 1.5rem;
    margin: 15px 0;
    color: var(--secondary-color);
}

.feature-card p {
    font-size: 1rem;
    padding: 0 15px 15px 15px;
    color: var(--secondary-color);
}

.explore-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f5a623);
    color: var(--primary-color);
    padding: 10px 20px;
    margin-bottom: 15px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.explore-btn:hover {
    background: linear-gradient(135deg, #f5a623, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
}


/* My Staffs */
.my-staffs-container {
    text-align: center;
    padding: 50px 20px;
    background: var(--primary-color);
    color: #2c3e50;
    font-family: Arial, sans-serif;
}

.my-staffs-container .section-title h1 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.my-staffs-container .section-title p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.staff-card {
    background: #2c3e50;
    color: var(--primary-color);
    border-radius: 15px;
    box-shadow: 0px 4px 10px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-top: 3px solid #d4af37;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px var(--shadow-color);
}

.staff-card .image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.staff-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.staff-card:hover .image-container img {
    transform: scale(1.1);
}

.staff-info {
    padding: 15px;
}

.staff-info h2 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #f5a623;
}

.staff-info .role {
    font-size: 1rem;
    font-weight: bold;
    color: #d4af37;
}

/* Customer review*/

.customer-reviews-container {
    padding: 50px 20px;
    background: var(--primary-color);
    color: #2c3e50;
    text-align: center;
    font-family: Arial, sans-serif;
}

.customer-reviews-container .section-title h1 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.customer-reviews-container .section-title p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--primary-color);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.reviewer-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #d4af37;
    transition: transform 0.3s ease;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

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

.review-card:hover .reviewer-image {
    transform: scale(1.1);
}

.review-content {
    text-align: center;
}

.review-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.review-stars i {
    font-size: 1.5rem;
    color: #f5a623;
    margin: 0 2px;
}

.review-text {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.reviewer-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d4af37;
}