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

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #000;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s, box-shadow 0.3s;
}

header.sticky {
    background-color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header nav h1 {
    color: #ffc107;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

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

header nav ul li a:hover {
    color: #ffc107;
}

/* Section Styles */
section {
    padding: 100px 50px;
    text-align: center;
    margin-top: 60px;
}

#home {
    background-color: #333;
    padding: 150px 20px;
    position: relative;
    color: #ffc107;
    transition: background-color 0.5s ease-in-out;
}

#home .home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#home #profile-video {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

#home h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

#home p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#home button {
    background-color: #ffc107;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

#home button:hover {
    background-color: #e6a800;
}

#home #weather {
    margin-top: 20px;
}

#about {
    background-color: #444;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
}

#about .about-content {
    max-width: 800px;
    text-align: left;
}

#about .profile-pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

#services {
    background-color: #555;
    color: #fff;
    padding: 50px 20px;
}

.services-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    background-color: #666;
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    width: 200px;
    transition: transform 0.3s, background-color 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
    background-color: #777;
}

#education {
    background-color: #444;
    color: #fff;
    padding: 50px 20px;
}

.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-item {
    background-color: #666;
    margin: 10px 0;
    padding: 20px;
    border-radius: 8px;
    width: 200px;
}

footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.social-links a {
    color: #ffc107;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3