* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0d0d0d;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    align-items: center;
    background-color: #0d0d0d;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo span {
    color: #ff4500;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.hire {
    background-color: #ff4500;
    border: none;
    padding: 8px 16px;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

.hero:hover {
    display: flex;
    justify-content: space-between;
    padding: 60px 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.tag:hover {
    color: white;
}

.buttons .btn,
.buttons .btn-outline {
    padding: 12px 20px;
    margin-right: 10px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.btn {
    background-color: #ff4500;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid #ff4500;
}

.hero-image img {
    width: 10px;
    border-radius: 10px;
    object-fit: cover;
}

.about {
    display: flex;
    padding: 60px 40px;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.about-img img {
    width: 10px;
}

.skills {
    margin-top: 20px;
}

.skills p {
    margin-bottom: 5px;
}

.bar {
    height: 10px;
    border-radius: 4px;
    background-color: #333;
    margin-bottom: 10px;
}

.wp {
    width: 100%;
    background-color: #ff4500;
}

.html {
    width: 75%;
    background-color: #ff4500;
}

.stats {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background-color: #111;
}

.stat {
    text-align: center;
    font-size: 24px;
}

.stat span {
    display: block;
    font-size: 14px;
    color: gray;
}

.portfolio {
    padding: 60px 40px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.card {
    background-color: #1a1a1a;
    padding: 40px;
    color: white;
    border-radius: 6px;
}

.highlight {
    background-color: #ff4500;
}

.testimonials {
    padding: 60px 40px;
    text-align: center;
}

.testimonial img {
    border-radius: 50%;
    margin-bottom: 20px;
}

footer {
    padding: 20px;
    background-color: #0d0d0d;
    text-align: center;
    color: gray;
}
