*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
}

img{
    width: 100%;
    display: block;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}


.hero{
    width: 80%;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content{
    width: 50%;
}

.tag{
    background: orange;
    color: white;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero h1{
    font-size: 40px;
    margin-bottom: 20px;
}

.hero h1 span{
    color: orange;
}

.hero p{
    line-height: 25px;
}

.hero-image{
    width: 40%;
}

.hero-image img{
    border-radius: 10px;
}


.about{
    width: 80%;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-image{
    width: 40%;
}

.about-image img{
    border-radius: 10px;
}

.about-content{
    width: 50%;
}

.about-content span{
    color: orange;
    font-weight: bold;
}

.about-content h2{
    margin: 15px 0;
}

.about-content p{
    margin-bottom: 20px;
}

.about-content ul li{
    margin-bottom: 10px;
}

.skills{
    width: 80%;
    margin: 40px auto;
    text-align: center;
}

.skills h2{
    margin-bottom: 30px;
}

.skills-grid{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.skill-card{
    width: 30%;
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}
.skill-card:hover{
    box-shadow: #333;
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.skill-card h3{
    margin-bottom: 10px;
    color: orange;
}

.projects{
    width: 80%;
    margin: 40px auto;
}

.projects h2{
    text-align: center;
    margin-bottom: 30px;
}

.project-grid{
    display: flex;
}

.project-card{
    width: 350px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.project-info{
    padding: 20px;
}

.project-info span{
    color: orange;
}

.project-info h3{
    margin: 10px 0;
}

.project-info p{
    margin-bottom: 15px;
}

.project-info a{
    color: blue;
}


.creative-work{
    width: 80%;
    margin: 40px auto;
}

.creative-work h2{
    text-align: center;
    margin-bottom: 30px;
}

.gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery-item{
    width: 32%;
    margin-bottom: 20px;
}

.gallery-item img{
    border-radius: 8px;
}


.journey{
    width: 80%;
    margin: 40px auto;
}

.journey h2{
    text-align: center;
    margin-bottom: 30px;
}

.timeline-item{
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}


.contact{
    width: 80%;
    margin: 40px auto;
    text-align: center;
}

.contact p{
    margin: 20px 0;
}

.contact-links{
    display: flex;
    justify-content: center;
}

.contact-links a{
    background: orange;
    color: white;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
}

.contact-links a:hover{
    background: darkorange;
}


footer{
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}