* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f8f8f8;
    color: #222;
}

/* CONTAINER */
.container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.top-header {
    background: #f8f7fa;
    color: #0d0000;
    padding: 15px 0;
}

.top-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 80px;
}

/* MENU */
.menu {
    background: #004080;
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.menu ul li a {
    color: #fff;
    padding: 14px 22px;
    display: block;
    text-decoration: none;
    font-weight: bold;
}

.menu ul li a:hover {
    background: #0066cc;
}

/* BANNER */
.banner {
    height: 320px;
    background: url("../images/banner.jpg") center/cover no-repeat;
}

.banner-overlay {
    height: 100%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* CONTENT */
.content {
    display: flex;
    gap: 30px;
    padding: 40px 0;
}

.left {
    flex: 3;
    background: #fff;
    padding: 20px;
}

.right {
    flex: 1;
    background: #fff;
    padding: 20px;
}

h3 {
    border-bottom: 2px solid #003366;
    margin-bottom: 10px;
    padding-bottom: 5px;
}


/* Call */
.Call {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

/* unvisited link */
a:link {
  color: green;
}

/* visited link */
a:visited {
  color: pink;
}

/* mouse over link */
a:hover {
  color: red;
}

/* selected link */
a:active {
  color: yellow;
}



h4 {
    Color: #181a18;
    margin-bottom: 10px;
    padding-bottom: 5px;
}


/* SERVICES */
.services {
    margin-top: 10px;
}

.services li {
    margin-left: 18px;
    line-height: 1.8;
}

/* NOTICE */
.notice li {
    font-size: 14px;
    margin-bottom: 10px;
}

/* FACILITIES */
.facilities {
    background: #e9eef3;
    padding: 40px 0;
}

.facilities h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #003366;
}

.facility-grid {
    display: flex;
    gap: 20px;
}

.facility {
    background: #fff;
    padding: 10px;
    text-align: center;
    flex: 1;
}

.facility img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* OUR CLIENTS */
.Clients {
    background: #e9eef3;
    padding: 40px 0;
}

.Clients h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #003366;
}

.Clients-grid {
    display: flex;
    gap: 20px;
}

.Clients {
    background: #fff;
    padding: 10px;
    text-align: center;
    flex: 1;
}

.Clients img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* labs */
.labs {
    background: #14e3b6;
    padding: 10px 0;
}

.labs p {
    text-align: left;
    margin-bottom: 25px;
    color: #fff;
}


.labs {
    background: #14e3b6;
    color: #fff    padding: 10px;
    text-align: left;
    flex: 1;
}

.labs img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}


/* FOOTER */
.footer {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 15px;
}