.arrow-link {
    color: #3498db;
    /* Blue color */
    text-decoration: none;
    /* Remove underline */
    font-weight: bold;
    /* Bold font */
    font-size: 18px;
    /* Font size */
    position: relative;
    /* Needed for positioning the arrow */
}

/* Add an arrow after the text */
.arrow-link::after {
    content: ' →';
    /* Unicode arrow symbol */
    font-size: 20px;
    /* Adjust arrow size */
    margin-left: 8px;
    /* Space between text and arrow */
}

/* Style for the anchor tag when it is hovered over */
.arrow-link:hover {
    color: #e74c3c;
    /* Change color on hover to red */
    text-decoration: underline;
    /* Add underline on hover */
}

.scrolling-marquee {
    display: flex;
    align-items: center;
    width: 100%;
    /* Full width of the screen */
    height: 50px;
    background-color: #e0e0e0;
    /* Lighter gray for the marquee background */
    color: #333;
    /* Dark text color for contrast */
    overflow: hidden;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    /* Slower speed (increased time) */
}

.scrolling-marquee img,
.scrolling-marquee b {
    margin: 0 20px;
}

/* Animation for the marquee */
@keyframes marquee {
    0% {
        transform: translateX(-100%);
        /* Starts off-screen from the left */
    }

    100% {
        transform: translateX(100%);
        /* Ends off-screen to the right */
    }
}

.review-card {
    background-color: #f9f9f9;
    /* Light background for each card */
    border: 2px solid #ddd;
    /* Soft border color */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for a lifted look */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transition for hover effect */
}

.review-card:hover {
    transform: translateY(-5px);
    /* Slight lift effect */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    /* Deeper shadow on hover */
}

/* Styling for the review name */
.review-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

/* Styling for the review text */
.review-text {
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
}

/* Add a little spacing between the heading and review cards */
.row h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

