
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
}


.nav {
    background-color: #333;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    position: fixed;
    width: 100%;

}

nav a {
    color: white;
    margin-right: 20px;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff9900;
}

nav .active {
    color: #ff9900;
}

/* Photo Section */
.photo {
    text-align: center;
    padding: 50px 0;
}

.profile-img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.name {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}


.about {
    padding: 50px 20px;
    background-color: #fff;
    margin-top: 20px;
    text-align: center;
}

.about h2 {
    font-size: 32px;
    color: #333;
}

.about p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}


.socialmedia {
    background-color: #333;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.socialmedia h2 {
    font-size: 32px;
}

.social-link {
    display: inline-block;
    margin: 10px;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #ff9900;
}

.facebook {
    background-color: #3b5998;
}

.instagram {
    background-color: #e4405f;
}

.tiktok {
    background-color: #000000;
}


.contact {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    color: #333;
}

.contact label {
    font-size: 18px;
    color: #333;
}

.contact input, .contact textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact button {
    background-color: #ff9900;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

.contact button:hover {
    background-color: #e68900;
}


footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 16px;
}
