/* General Styles */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background: #F5F7FA;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 20px;
    background: #0066CC;
    color: white;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero h1 {
    font-style: italic;
    font-size: 55px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.hero p {
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #FFD700;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 55px;
    margin-top: 20px;

}

/* Featured Section */
#features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.feature {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.feature img {
    width: 80px;
}

.feature h3 {
    font-size: 20px;
    margin-top: 10px;
}

/* Layanan Kami Section */
#services {
    text-align: center;
    padding: 60px 20px;
    background: white;
}

#services h2 {
    font-size: 32px;
    color: #0066CC;
    margin-bottom: 30px;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.market-box {
    flex-wrap: flex;
    width: 300px;
    padding: 25px;
    background: #F5F7FA;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.market-box img {
    width: 80px;
    margin-bottom: 15px;
}

.market-box h3 {
    font-size: 20px;
    color: #0066CC;
}

.service-box {
    flex-wrap: flex;
    width: 300px;
    padding: 25px;
    background: #F5F7FA;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.service-box img {
    width: 80px;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 20px;
    color: #0066CC;
}

/* Responsive Design */
@media (max-width: 768px) {
    #features {
        flex-direction: column;
        align-items: center;
    }
    .feature {
        width: 90%;
    }
    .service-box {
        width: 90%;
    }
}

/* Footer */
footer {
    background: #0066CC;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Hover Effects for Service Box */
.service-box img {
    width: 80px;
    transition: transform 0.3s ease;
}

.service-box:hover img {
    transform: scale(1.2);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.feature img {
    width: 60px;
    animation: float 3s infinite ease-in-out;
}

/* Button Hover Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    left: -100%;
    transition: left 1s;
}

.btn:hover::after {
    left: 100%;
}

/* Navbar Mobile Dropdown */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-links li {
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
    }

    .feature, .service-box {
        width: 90%;
    }
}

body {
    margin: 0;
    font-family: poppins, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0066CC;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    text-decoration: none;
    color: inherit; 
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: 0.3s ease;
}


.nav-links a:hover {
    color: #ffcc00;
}

.login-btn {
    background-color: #ffcc00;
    padding: 8px 15px;
    border-radius: 5px;
    color: black !important;
    font-weight: bold;
}

.login-btn:hover {
    background-color: #ff9900;
}
