* {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
body {
    background: #f5f5f5;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: white;
}
.navbar a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    margin: 0 15px;
}
.navbar a:hover {
    text-decoration: underline;
}

.hero img {
    width: 100%;
    height: 80vh;
}

.services {
    text-align: center;
    padding: 50px 5%;
}

.service-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.service-box {
    width: 19%;
    text-align: center;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-box img {
    width: 100%;
    border-radius: 50%;
    height: 130px;
    object-fit: cover;
}

.service-box h3 {
    margin-top: 15px;
    font-size: 18px;
    color: #000;
}

.service-box ul {
    list-style: none;
    padding-left: 10px;
    text-align: left;
    font-size: 14px;
    border-radius: 5px;
    font-size: 16px;
    list-style-type: disc;
}

.service-box ul li {
    padding-left: 10px;
    display: list-item;
}

/* Custom background colors for each service */
.pd {
    background: #99e6e6;
}

.sta {
    background: #ffff99;
}

.pv {
    background: #b3e6b3;
}

.analog {
    background: #f4c97b;
}

.dv {
    background: #d9b3ff;
}

footer {
    background-color: #2a8b9d;
    color: white;
    padding: 30px 10%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left h2 {
    font-size: 24px;
    margin: 0;
}

.footer-left p {
    font-size: 16px;
    margin-top: 5px;
}

.footer-right p {
    margin: 5px 0;
    font-size: 16px;
}

.footer-right a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}
