* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #0a2472; /* Dark blue text */
    background: url('bg10.jpg') no-repeat center center; /* Replace URL with your background image */
    background-size: cover; /* Ensure the image covers the entire page */
    background-attachment: scroll; /* Avoid fixed background if performance issues */
    min-height: 100vh; /* Ensure the body takes up at least the full viewport height */
    background-position: center center; /* Center the background image */
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.8); /* Optional: Add a semi-transparent background to header */
}

.top-links {
    display: flex;
    justify-content: space-between; /* Distribute space evenly between items */
    flex-grow: 1;
    max-width: 600px;
}

.top-links a {
    text-decoration: none;
    color: #0a2472;
    font-weight: 700; /* Bold font */
    font-size: 18px; /* Smaller font */
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    position: relative;
    margin: 0 30px; /* Increase horizontal space between links */
}

.top-links a:hover {
    color: #1d4ed8;
    transform: scale(1.1);
}

.top-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1d4ed8;
    transition: width 0.3s ease-in-out;
}

.top-links a:hover::before {
    width: 100%;
}

.logo-container {
    margin-left: auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 700;
    color: #0a2472;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

/* Review Card Styling */
.review-card {
    width: 30%;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #0a2472;
    margin-top: 8px;
    background-color: #f0f4f8;
   
}

/* Image Styling */
.review-image {
    width: 200px;
    height: 200px;
    border: 3px solid #0a2472;
    border-radius:50%;
    margin: 0 auto 15px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Name, Country, and Review Text */
h3 {
    font-size: 18px;
    color: #0a2472;
}

.client-country {
    font-size: 14px;
    color: #888;
    font-weight:bold;
    margin-bottom: 15px;
}

.review-text {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    color: #0a2472;
    margin-bottom: 15px;
    max-height: none; /* Let JavaScript handle the height */
    overflow: hidden;
    text-align: justify;
    display: block;
}

.read-more-btn {
    color: #0a2472;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: none; /* Hidden unless the text is long */
}

/* Hover Effect for Review Cards */
.review-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .review-card {
        width: 45%;
    }
}

@media screen and (max-width: 480px) {
    .review-card {
        width: 100%;
    }
}
header2 {
    width: 100%;
    height:82px;
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    align-items: center;
    align-content: right;
    padding: 20px 50px;
    padding-left: 1175px;
    background: rgba(255, 255, 255, 0.8); /* Optional: Add a semi-transparent background to header */
}

