/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Header / Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    padding: 15px 50px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: gold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: gold;
}

nav ul li a.active {
    color: gold;
}

.icons span {
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

/* Customer Reviews Section */
.reviews {
    text-align: center;
    padding: 40px 20px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
}

.blue {
    color: white;
}

.gold {
    color: gold;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Review Cards */
.review-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.5);


}

.quote {
    font-size: 40px;
    color: gold;
}

.review-card p {
    font-size: 14px;
    margin: 10px 0;


}

.review-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 10px 0;
}

.stars {
    font-size: 18px;
    color: gold;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 40px;
    font-size: 22px;
    font-weight: bold;
}


/* Footer */
footer {
    text-align: center;
    background: black;
    padding: 10px;
    margin-top: 40px;
}

.highlight {
    color: gold;
}