body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: white;
}

.full-body {
    width: 100%;
    overflow-x: hidden;
}

header {
    padding: 20px 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    margin-left: 25px;
    width: 70px;
    height: auto;
}

nav.navhider {
    text-align: right;
    padding: 10px 0;
    padding-right: 100px;
}

nav.navhider a {
    color: black;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.8em;
    transition: color 0.3s ease;
}

nav.navhider a:hover {
    color: #004080;
    font-weight: 600;
}

.slider {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    padding: 20px;
    text-align: center;
}

.info {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 5px;
    background-color: #fff;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-bottom: 30px;
    color: #004080;
}

.bgc {
    background-color: #f5f5f5;
    padding: 50px 0;
}

footer {
    background: #004080;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.card-desc {
    text-align: left;
    font-size: 1.2em;
    padding: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.side-menu a {
    padding: 15px;
    text-decoration: none;
    font-size: 22px;
    color: white;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover {
    color: #00ffff;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.twosideC {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.twosideC img {
    width: 500px;
    height: auto;
    margin-right: 50px;
    border-radius: 5%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.text-content {
    max-width: 600px;
}

.text-content h1 {
    color: #000;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.text-content p {
    color: #333;
    line-height: 1.8;
}

p {
    font-size: 1.2em;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.text-content strong {
    color: #FF0000;
    font-weight: 600;
}

.spacer {
    width: 100%;
    height: 50px;
    background-color: #f5f5f5;
}

.phone-side {
    display: none;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    padding: 50px 20px;
}

.phone-side img {
    width: 100%;
    max-width: 390px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 5%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.phone-side h1 {
    color: #000;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.phone-side strong {
    color: #FF0000;
    font-weight: 600;
}

.facilities-container {
    padding: 50px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.facilities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.facility {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 30px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.facility:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.facility h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #004080;
}

.facility p {
    font-size: 1.2em;
    color: #333;
    text-align: left;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .navhider {
        display: none;
    }

    .phone-side {
        display: block;
    }

    .twosideC {
        display: none;
    }

    .card-container {
        width: 100%;
        padding: 0 10px;
    }

    .card {
        min-width: 200px;
        max-width: 240px;
    }

    .facilities {
        flex-direction: column;
        align-items: center;
    }

    .facility {
        width: 250px;
        max-width: none;
    }

    .section-title {
        font-size: 2em;
    }

    header img {
        margin-left: 10px;
    }
}

.gallery {
    border: 1px solid #ccc;
}

* {
    box-sizing: border-box;
}

.gallery:hover {
    border: 1px solid #777;
}

.gallery img {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 1280px) and (max-width: 1920px) {
    .gallery img {
        max-width: 420px;
        width: 100%;
        height: auto;
    }
}

@media screen and (min-width: 1920px) {
    .gallery img {
        max-width: 470px;
        width: 100%;
        height: auto;
    }
}
