body a {
    text-decoration: none;
}

nav {
    background-color: #e5097f;
    height: 90px;
    display: flex;
    align-items: center;
}

nav img {
    width: 200px;
    height: 80px;
}

nav ul {
    display: flex;
    min-width: 60%;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    margin: 0;
    margin-left: auto;
    padding: 0;
    font-size: 20px;
    color: white;
    font-weight: bolder;
    height: 90px;
}

nav li {
    margin: 0 10px;
}

nav li:hover {
    transform: scale(1.25);
    cursor: pointer;
}

/* ------------- Home Page -------------- */

.home-page .image-slider {
    white-space: nowrap;
    overflow: hidden;
}
.image-slider img {
    display: inline-block;
    width: 100%;
    height: 80vh;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(0);
    }
    60% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.image-slider img {
    animation: slide 10s linear infinite;
}

/* ------------- Daignostic Page  ------------------------------ */

.daignostic-page {
    display: none;
    padding-bottom: 10vh;
}

.daig-info {
    font-size: 20px;
    padding: 20px 50px;
}

.daig-note {
    font-size: 20px;
    padding: 10px 50px;
    color: red;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 50px;
}

.card {
    background-color: rgb(253, 222, 222);
    border-radius: 15px;
    /* width: 30%; */
    height: 100%;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
    padding: 20px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Set 3 equal columns */
    grid-gap: 10px;
    row-gap: 20px;
}

.card:hover {
    transform: scale(1.05);
}

.card .name {
    grid-row: 1 / span 1;
    grid-column: 1 / span 2;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 20px;
    text-align: start;
    margin-left: 10px;
    color: black;
    font-weight: 600;
}

.card .cardinfo {
    grid-row: 2 / span 1;
    grid-column: 1 / span 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 20px;
    color: rgb(3, 117, 121);
}

.cardinfo .orrate {
    display: none;
}

.card .cardinfo2 {
    grid-row: 2 / span 1;
    grid-column: 2 / span 1;
    display: grid;
    grid-gap: 10px;
    grid-template-rows: repeat(2, 1fr);
}

.cardinfo2 button {
    background-color: red;
    color: white;
    width: auto;
    border-radius: 10px;
    border: 0;
}

.cardinfo2 span {
    text-align: center;
    color: rgb(3, 117, 121);
}

.footer {
    display: flex;
    justify-content: center;
    height: 6vh;
    width: 100%;
    position: fixed;
    background-color: grey;
    bottom: 0;
    left: 0;
    padding-top: 15px;
}

.footer img {
    height: 70%;
    margin: 0 30px;
}

.footer a {
    font-size: 20px;
    /* margin: 0 30px; */
}
