body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    color: #222;
    scroll-behavior: smooth;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #d40000;
    color: white;
    padding: 15px 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-weight: bold;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

header {
    background: url('https://i.postimg.cc/8jwJD2gd/Bina-Websit-E.png') center/cover no-repeat;
    height: 350px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    animation: fadeIn 2s ease-in-out;
}

header h1 {
    font-size: 40px;
    text-shadow: 2px 2px 5px black;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.list-style {
    text-align: left;
    max-width: 600px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background: #ffd700;
    padding: 15px 25px;
    margin-top: 20px;
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
    border: 2px solid #0047ff;
    transition: 0.3s;
}

.btn:hover {
    background: #ffea4d;
    transform: scale(1.05);
}

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.price-box {
    border: 2px solid #d40000;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.price-box:hover {
    transform: scale(1.05);
    background: #fff5f5;
}

.testimoni-box {
    background: #f3f3f3;
    padding: 20px;
    margin: 15px 0;
    border-left: 5px solid #d40000;
    animation: fadeIn 1.2s;
}

.grid-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.grid-images img {
    width: 100%;
    border-radius: 10px;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 120px;
}

.floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    animation: fadeIn 1.5s;
}

.floating img {
    width: 40px;
}

footer {
    margin-top: 50px;
    padding: 15px;
    background: #0047ff;
    color: white;
    text-align: center;
}
