/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #004466;
    color: white;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
	z-index: 1000; /* Make sure it's higher than other elements */
}

.nav-links a {
    color: white;
    text-decoration: none;
}
.nav-links.show {
    display: block;
}

.menu_items {
    display: none;
    font-size: 2em;
    cursor: pointer;
}


.hero {
    text-align: center;
    padding: 100px 20px;
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: white;
}

.hero h1 {
    font-size: 2.5em;
}

.hero .btn {
    background: #ff6600;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}


.research {
    text-align: center;
    padding: 50px 20px;
    background: white;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    padding: 20px;
    background: #ddd;
    border-radius: 8px;
    text-align: center;
}


footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #004466;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 10px;
    }

    .menu_items {
        display: block;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}


.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero-text h1 {
    font-size: 2.5em;
}

.hero-text p {
    font-size: 1.2em;
}


.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5em;
}

.prev { left: 10px; }
.next { right: 10px; }


.fade {
    animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0.5; }
    to { opacity: 1; }
}


@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }

    .hero-text {
        bottom: 15%;
        width: 80%;
    }

    .hero-text h1 {
        font-size: 2em;
    }

    .hero-text p {
        font-size: 1em;
    }

    .prev, .next {
        font-size: 1.2em;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }

    .hero-text {
        bottom: 10%;
        width: 90%;
    }

    .hero-text h1 {
        font-size: 1.8em;
    }

    .hero-text p {
        font-size: 0.9em;
    }

    .prev, .next {
        font-size: 1em;
        padding: 5px 10px;
    }
}
