* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.logo img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.title h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a237e;
}

.title p {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.navigator {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a237e;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 6px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links a:hover {
    color: #1a237e;
    background-color: #ffffff;
}

.mobile-menu-toggle {
    display: none;
}


.content {
    display: flex;
    gap: 25px;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
}

.content1, .content2 {
    flex: 1;
    min-width: 300px;
}
.content1 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-button.prev { left: 15px; }
.carousel-button.next { right: 15px; }

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    border: none;
}

.dot.active, .dot:hover {
    background-color: #ffffff;
}

.contact-info {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    font-size: 22px;
    color: #1a237e;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #444;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: #1a237e;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.contact-item p {
    font-size: 14px;
    margin: 0;
}


.content2 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.content3 {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.content3 h2 {
    font-size: 22px;
    color: #1a237e;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.content3 p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.content3 ul {
    list-style-position: inside;
    padding-left: 0;
    margin-top: 10px;
}

.content3 li {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 10px;
}


.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.content4 {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content4:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.content4 h3 {
    font-size: 16px;
    color: #1a237e;
    margin-top: 10px;
}

.content4 svg {
    width: 24px;
    height: 24px;
    stroke: #1a237e;
}

.kampus-merdeka-logo {
    background-color: #ffffff;
    padding: 2px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.kampus-merdeka-logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
}


.footer {
    text-align: center;
    padding: 25px;
    margin-top: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    color: #777;
    font-size: 14px;
}

@media (max-width: 992px) {
    .content {
        flex-direction: column;
    }
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .header {
        flex-direction: column;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .title {
        text-align: center;
        margin-top: 15px;
    }


    .navigator {
        justify-content: flex-end;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        background: none;
        border: none;
        color: white;
        font-size: 16px;
        font-weight: 600;
        padding: 5px;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        margin-left: 8px;
    }

    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a237e;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 1000;
        gap: 0;
    }
    
    .nav-links.active a {
        padding: 12px 20px;
        width: 100%;
        border-radius: 0;
    }
    
    .nav-links.active a:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

}

