/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100;
    color: black;
    background-color: red;
    z-index: 1000;
}
.navbar ul {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 10px 0;
}
.navbar li {
    margin: 0 15px;
}
.navbar a {
    color: white;
    text-decoration: none;
    font-size: 12px;
}
  /* Logo */
    .navbar .logo {
    text-align: center; /* Center the logo */
    margin-left: 100px;
}
    .navbar .logo img {
    height: 10px; 
    width: 10px;
}
/* Hero Section (Video Background) */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
#video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}
.hero-text h1 {
    font-size: 50px;
    margin-bottom: 10px;
}
.hero-text p {
    font-size: 24px;
}
.wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background-image: url('wave.png');
    background-repeat: repeat-x;
}

/* Content Sections */
.content-section {
    display: flex;
    padding: 60px 20px;
    justify-content: space-between;
}
.content-section .left,
.content-section .right {
    width: 38%;
}
.content-section .left img {
    width: 50%;
    height: auto;
    border-radius: 10px;
}
.reversed .left {
    order: 2;
    text-align: left;
}
.reversed .right {
    order: 1;
    text-align: right;
}

/* Achievements Section */
.achievements {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}
.achievements-content {
    font-size: 18px;
}

/* News Section (Slider) */
.news-section {
    background-color: #e9ecef;
    padding: 60px 20px;
    text-align: center;
}
.news-slider {
    display: flex;
    overflow: hidden;
    justify-content: center;
    margin-bottom: 20px;
}
.news-item {
    min-width: 300px;
    margin: 0 10px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
}
.slider-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
    margin: 10px;
}
.prev {
    float: left;
}
.next {
    float: right;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.footer-wave {
    position: relative;
    width: 100%;
    height: 100px;
    background-image: url('wave-footer.png');
    background-repeat: repeat-x;
}
.footer-content p {
    margin-top: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
        text-align: center;
    }
    .content-section .left,
    .content-section .right {
        width: 100%;
        margin-bottom: 20px;
    }
}
