
    /* Color tone => Golden Sands */
    /* General Styles */
    body {
        font-family: Arial, sans-serif;
        background-color: #ffffff; 
        margin: 0;
        padding: 0;
    }

    /* Navbar Styles */
    nav {
        background: linear-gradient(45deg, #f9e79f, #f7dc6f);
        padding: 1em;
        display: flex;
        justify-content: center;
        align-items: center;
        position: sticky;
        top: 0;
        transition: top 0.3s;
        box-shadow: 2px 2px 2px #f39c12;
        z-index: 100;
    }

    h2 {
        font-size: 50px;
    }

    h2, p, a, label {
        color: #f39c12;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }
    nav ul li {
        display: inline;
    }
    nav ul li a {
    display: inline-block;
    text-decoration: none;
    color: #f39c12;
    font-size: 1.2em;
    padding: 10px 20px;
    border-radius: 50px;
    background: #f9e79f;
    transition: transform 0.2s ease, background 0.3s ease;
}
nav ul li a:hover {
    transform: scale(1.15);
    background: #f9e79f;
}

    #home img {border-radius: 15px; width: 60%; box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5); border: 2px solid #555;}
.hover-effect {transition: transform 0.3s ease, filter 0.3s ease; filter: brightness(0.9);}
.hover-effect:hover {transform: scale(1.15) rotate(3deg); filter: brightness(1.2);}
    #about {background: #FAFAFA; padding: 50px; color: #333333; text-align: center; position: relative; overflow: hidden;}
#about::before {content: ''; position: absolute; width: 200%; height: 200px; top: 20%; left: -100%; background: linear-gradient(45deg, rgba(0, 0, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(0, 0, 255, 0.1) 50%, rgba(0, 0, 255, 0.1) 75%, transparent 75%, transparent); background-size: 50px 50px; animation: diagonal-stripes 6s linear infinite;}
@keyframes diagonal-stripes {0%: {'transform': 'translateX(0)'}; 100%: {'transform': 'translateX(100%)'};}
#about .gallery {display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; position: relative; z-index: 1;}
#about .gallery img {width: 100%; border-radius: 10px; transition: transform 0.3s ease, filter 0.3s ease; filter: brightness(0.9);}
#about .gallery img:hover {transform: scale(1.05); filter: brightness(1.1);}
    #requirements .low, #requirements .req {background: #E3F2FD; padding: 40px; border-radius: 20px; font-family: 'Poppins', sans-serif; font-size: 16px; color: #1A237E; text-align: center; position: relative; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); overflow: hidden;}
#requirements .low::before, #requirements .req::before {content: '☁️'; position: absolute; font-size: 40px; top: -20px; left: 20%; animation: floatCloud 3s infinite ease-in-out;}
@keyframes floatCloud {0%, 100%: transform: translateX(0); 50%: transform: translateX(20px);}
    #contact {display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, #ffccbc 0%, #ffe0b2 50%, #ffe0b2 100%); padding: 50px; margin: 30px auto; border-radius: 30px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);}
#contact .card-contact {display: flex; flex-direction: column; align-items: center; background: #fff8e1; padding: 40px; border-radius: 15px; gap: 15px; box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.05);}
#contact .card-contact label {color: #ff7043; font-size: 14px; font-weight: bold;}
button {background: #ffab91; color: #fff; padding: 12px 30px; border-radius: 25px; font-size: 16px; cursor: pointer; transition: transform 0.3s ease, background 0.3s ease;}
button:hover {background: #ff8a65; transform: translateY(-3px);}
    #menu-toggle {
        display: none;
    }

    /* Section Styles */
    section {
        padding: 2em;
        text-align: center;
    }

    /* Contact Form Styles */
    form {
        display: flex;
        flex-direction: column;
        gap: 1em;
        width: 70%;
    }
    form label {
        font-weight: bold;
    }
    form input, form textarea, form button {
        padding: 10px;
        border: 1px solid #e67e22;
        border-radius: 5px;
    }

    /* LINE Contact Styles */
    .line-contact {
        text-align: center;
        margin-top: 2em;
        width: 70%;
    }

    /* Media Query for Mobile */
    @media (max-width: 768px) {
        h2 {
            font-size: 30px;
        }
        nav ul {
            display: none;
            flex-direction: column;
        }
        #menu-toggle {
            display: block;
            margin-left: auto;
        }
        #contact .card-contact {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px 0px;
        }
        a {
            box-shadow: none;
        }
        #about .gallery {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 10px;
        }
    }


    