/* Basic Styling */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: white;
}

.full-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    color: rgb(0, 0, 0);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    margin-left: 25px;
    width: 70px;
    height: auto;
}

nav.navhider {
    text-align: right;
    padding-right: 100px;
}

nav a {
    color: black;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.8em;
    transition: color 0.3s, font-weight 0.3s;
}

nav a:hover {
    color: #004080;
    font-weight: 600;
}

/* Slider */
.slider {
    width: 100%;
    overflow: hidden;
}

.slider img {
    width: 100%;
    height: auto;
    display: block;
}

/* Spacer */
.spacer {
    height: 20px;
}

/* Background Container */
.bgc {
    background-color: #f5f5f5;
    padding: 20px 0;
}

/* Slider Container */
.d-slider {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: auto;
    margin: 20px auto;
    overflow: hidden;
    border: 12px solid #004080;
    border-radius: 24px;
    background-color: #fff;
}

.text-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.slide h1 {
    color: #004080;
    margin-bottom: 20px;
}

.slide img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Dots */
.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.active-dot {
    background-color: #717171;
}

/* Menu Icon and Side Menu */
.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: 10px 15px;
    text-decoration: none;
    font-size: 22px;
    color: white;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover {
    color: cyan;
}

/* Overlay */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

/* International Study */
.international-study {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.international-study h1 {
    color: #004080;
    margin-bottom: 20px;
}

.international-study p {
    margin-bottom: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.international-study img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #004080;
    color: #fff;
    text-align: center;
    padding: 10px 1px;
    margin-top: auto;
}

footer p {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1.2em;
}

footer a {
    color: #fff;
    text-decoration: none;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav.navhider {
        display: none;
    }

    .menu-icon {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .d-slider {
        max-width: 90%;
    }

    .slide {
        font-size: 16px;
    }

    footer {
        padding: 10px;
    }

    .card-container {
        width: 100%;
        padding: 0 10px;
    }

    .card {
        min-width: 200px;
        max-width: 240px;
    }

    .text-slider {
        flex-direction: column;
    }

    .dots {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .dot {
        height: 10px;
        width: 10px;
        margin: 0 5px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
    }

    .active-dot {
        background-color: #717171;
    }
}

.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-desc {
    text-align: left;
    font-size: 1.2em;
    padding: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.card-container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
    margin-bottom: 50px;
}

.container {
    padding: 20px;
    text-align: center;
}

.info {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card h2 {
    color: #004080;
    margin-bottom: 15px;
}

.card-desc ul {
    padding-left: 0;
    margin-bottom: 15px;
}

.card-desc li {
    margin-bottom: 5px;
}

.card {
    min-height: 350px; /* Adjust this value as needed */
}