/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Profile Button */
.profile {
    position: absolute;
    top: 20px;
    left: 20px;
}

.profile a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    background: #2ecc71; /* Lime Green */
    padding: 15px 25px;
    font-size: 1.2rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.profile a:hover {
    transform: scale(1.1);
    background: #27ae60; /* Slightly darker lime green */
}

/* Navigation Menu */
.navigation {
    position: absolute;
    top: 20px;
    right: 20px;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.navigation ul li a {
    text-decoration: none;
    color: #fff;
    background: #27ae60; /* Lime Green */
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.navigation ul li a:hover {
    transform: scale(1.1);
    background: #16a085; /* Slightly darker green */
}

/* Contact Section */
.contact {
    text-align: center;
    margin-top: 150px;
}

.contact h1 {
    font-size: 2.5rem;
    color: #2ecc71; /* Lime Green */
    margin-bottom: 10px;
}

.contact p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* Contact Icons */
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-methods a {
    text-decoration: none;
    color: #333;
    font-size: 3rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-methods a:hover {
    transform: scale(1.2);
    color: #2ecc71; /* Lime Green on Hover */
}
