body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #121212;
    color: #ffffff;
}

header {
    background: #161616;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
    float: right;
    clear: right;
}

nav ul li a:hover {
    color: #ffd700;
}

#hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 20px;
    background-color: #1e1e1e;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3em;
    margin: 0;
    line-height: 1.2;
}

.hero-content p {
    margin: 20px 0;
    font-size: 1.2em;
    color: #d3d3d3;
}

.hero-content .btn {
    background-color: #ffd700;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero-content .btn:hover {
    background-color: #e0c200;
}

.hero-image img {
    max-width: 50%;
    border-radius: 10px;
    float: right;
    clear: right;
}

#about {
    display: flex;
    padding: 60px 20px;
    background-color: #121212;
}

.about-info {
    flex: 1;
    padding-right: 20px;
}

.about-info h2 {
    color: #ffd700;
}

.about-info p {
    color: #d3d3d3;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.stats div {
    text-align: center;
}

.about-services {
    flex: 1;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.service {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service:hover {
    transform: translateY(-10px);
}

#work {
    padding: 60px 20px;
    background-color: #1e1e1e;
    text-align: center;
}

#work h2 {
    color: #ffd700;
}

#work .btn {
    background-color: #ffd700;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    position: relative;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.work-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}


.work-item {
    background-color: #121212;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s;
}

.work-item:hover {
    transform: translateY(-10px);
}

.work-item img {
    max-width: 100%;
    border-radius: 10px;
}

.post {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s;
}

.post:hover {
    transform: translateY(-10px);
}

.post img {
    max-width: 100%;
    border-radius: 10px;
}

#contact {
    padding: 60px 20px;
    background-color: #121212;
    text-align: center;
}

#contact h2 {
    color: #ffd700;
}

#contact p {
    color: #d3d3d3;
}

#contact .btn {
    background-color: #ffd700;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#contact .btn:hover {
    background-color: #e0c200;
}

footer {
    background: #161616;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    color: #d3d3d3;
}

footer .social-media {
    margin-top: 10px;
}

footer .social-media a {
    margin: 0 10px;
    display: inline-block;
}

footer .social-media img {
    width: 30px;
}

#education, #work-experience {
    padding: 60px 20px;
    background-color: #121212;
    text-align: center;
}

#education h2, #work-experience h2 {
    color: #ffd700;
}

.education-list, .experience-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.education-item, .experience-item {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s;
    text-align: left;
}

.education-item:hover, .experience-item:hover {
    transform: translateY(-10px);
}

.education-item h3, .experience-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.education-item p, .experience-item p {
    color: #d3d3d3;
    margin: 5px 0;
}

.education-item span, .experience-item span {
    display: block;
    color: #a0a0a0;
    margin-top: 10px;
}

.education-item .btn {
    background-color: #ffd700;
    color: #000;
    padding: 5px 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}