/* General Styles */

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background: transparent;
    box-shadow: none;
}

.navbar-brand .logo {
    width: 50px;
    height: auto;
}

.nav-link {
    color: black;
    margin-right: 20px;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.review-title {
    text-align: center;
    margin: 0px;
    font-weight: 800;
    font-size: 58px;
    color: rgb(0, 191, 255);
    text-shadow: 2px 12px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    /* Text shadow effect */
}

.typing {
    display: inline;
    /* Inline for wrapping */
    border-right: 2px solid white;
    /* Cursor effect */
    animation: blink-caret 0.75s step-end infinite;
    /* Cursor blink */
    white-space: pre-wrap;
    /* Allow text to wrap */
    color: white;
}

@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: white;
        /* Blink effect */
    }
}


/*   <!-- Reviews Css --> */

.review-section {
    padding: 50px 20px;
    text-align: center;
}

.heading p {
    font-size: 18px;
    color: #333;
}

.heading h2 {
    font-size: 36px;
    margin: 10px 0 30px;
    color: #222;
    font-weight: 700;
}

.reviews-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.review-card-1 {
    background-color: black;
    /* Card background */
    color: white;
    /* Text color */
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    /* Set a max width for better layout */
    margin: 20px auto;
    /* Center the card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review-card-1:hover {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.review-card {
    background-color: white;
    border: 2px solid #009879;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 10px;
    margin-top: 20px;
}

.review-card:hover {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.review-card h3 {
    font-size: 24px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: gold;
}

.rating span {
    font-size: 22px;
    color: rgb(255, 200, 61);
    border: 1px bold;
}

.rating p {
    margin-left: 10px;
    font-size: 18px;
    color: #555;
}

.review-card p {
    font-size: 16px;
    /* Keep the font size */
    color: #666;
    line-height: 1.6;
    margin-bottom: 0px;
    /*min-height: 60px;
    /* Set a minimum height to ensure all paragraphs are the same size */
}

.review-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #009879;
    margin-top: auto;
    /* Push the name down to align at the bottom */
}

@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }
    .review-card {
        width: 100%;
        max-width: 500px;
    }
}

footer a {
    text-decoration: none;
    color: #ff5722;
    transition: color 0.3s ease, transform 0.3s ease;
}

footer a:hover {
    text-decoration: none;
    /* Change to your desired hover color */
    transform: scale(1.1);
    /* Slightly enlarges the link */
    text-shadow: 0 0 5px lightskyblue;
}