/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f0f0; /* Warna latar belakang yang lembut */
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

.header {
    background-color: #007bff; /* Warna biru terang */
    padding: 20px 0;
}

.logo {
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

.nav ul {
    list-style: none;
    text-align: center;
}

.nav ul li {
    display: inline;
    margin: 0 15px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #ffdd57; /* Warna kuning cerah saat dihover */
}

.hero {
    background-image: linear-gradient(to right, #007bff, #ff57a1); /* Gradasi warna menarik */
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #ff8800; /* Warna pink cerah */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff; /* Warna kuning cerah saat dihover */
    color: #000;
}

.services {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
    color: #333;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #007bff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
}

.service h3 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 15px;
}

.service p {
    font-size: 16px;
    color: #666;
}

.about {
    background-color: #f5f7fc;
    color: #000000;
    padding: 60px 0;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact {
    background-color: #ffffff;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #000000;
}
.contact p {
    color: #000;
}

.footer {
    background-color: #3700ff;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

.floating-images {
    position: relative;
    text-align: center;
    margin-top: 50px;
}

.floating-images img {
    width: 250px;
    height: auto;
    margin: 0 20px;
    animation: float 4s ease-in-out infinite;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-images img:nth-child(2) {
    animation-delay: 1s;
}

.floating-images img:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@media (max-width: 768px) {
    .nav ul li {
        display: block;
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 32px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}
/* LOGO */
.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-logo {
    width: 50px; /* Sesuaikan ukuran logo */
    height: auto;
    margin-left: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #007bff;
    padding: 20px 0;
}


/* icon */
.service {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
}

.service h3 {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #007bff;
    margin-bottom: 15px;
}

.service-icon {
    width: 30px; /* Ukuran logo lebih kecil untuk di samping teks */
    height: auto;
    margin-right: 10px; /* Ruang antara logo dan teks */
}
