

:root{
    --primary-color:#FF5F1F;
    --primary-dark:#E04A00;
    --secondary-color:#FF8C42;
    --accent-color:#FF8C42;
 --light-color:#F8F8F8;
    --dark-color:d#121212;
     --text-color:#333;
     --text-light:#777;
     --card-bg:#FFFFFF;
}

*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}
.container{
    max-width: 1200PX;
    margin: 0 auto;
    padding: 0 20px;

}

header{
    background-color: var(--text-color);
    color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
 nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
 }

 .logo{
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
 }

 .logo-img-container{
    width: 50px;
    height: 50px;
    position: relative;
    perspective: 1000px;
 }


 .logo-img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    transform-style: preserve-3d;
    transition:  all 0.5s ease;
    box-shadow: 0 0 2px rgba(255, 95, 31, 0.4);


 }
 .logo-img:hover{
    transform: rotateY(20deg);
 }
 
 .logo-text{
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color),var(--accent-color));
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

 }

 .nav-links{
    display: flex;
    list-style: none;
    gap: 30px;

 }

 .nav-links a{
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition:  all  0.3s;
    position: relative;
    padding: 5px  0;

 }
 .nav-links a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0,3s;
 }
 .nav-links a :hover::after{
    width: 100px;
 }
 .nav-links a:hover{
    color: var(--primary-color);

 }
 .hamburger{
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
 }

 .hero{
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg , var(--secondary-color) 0%,var(--dark-color)100%);
    color: white;
    position: relative;
    overflow: hidden;
    background-color: #121212;
 }

 .hero::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: ;
    background-size: cover;
    opacity: 0.3;
 }
 .hero-content{
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
 }

 .hero-text{
    flex: 1;
 }

 .hero-image{
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
 }

 .profile-img{
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
 }

 .profile-img:hover{
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);

 }

 .hero-image::before{
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0% ,transparent 70%);
    filter: blue(30px);
    opacity: 0.3;
    z-index: 1;
    animation: pulse 6s infinite alternate;
 }

 @keyframes pulse{
    0%{ transform: scale(1); opacity: 0.3;}
    100%{ transform: scale(1.1);opacity: 0.5;}

 }

 h1{
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;

 }
 h2{
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color),var(--accent-color));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
 }

 .subtitle{
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 300;
 }

 p{
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
 }

 .highlight{
    color: var(--primary-color);
    font-weight: 600;
 }

 .btn{
    display: inline-block;
    padding: 15px 35px;
    background:linear-gradient( 45deg ,var(--primary-color),var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(255, 95,31, 0.3);

 }

 .btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2),transparent);
    transition: 0.5s;

 }
.bth:hover::before{
    left: 100%;
}

.btn:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 95, 31, 0.4);
}

.btn-outline{
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 15px;

}
.btn-outline:hover{
    background: var(--primary-color);
    color: white;

}
section{
    padding: 120px 0;
   
}
.section-tittle{
    text-align: center;
    margin-bottom: 60px;
}

.section-tittle h2{
    position: relative;
    display: inline-block;
    padding-bottom:15px;
    background-color: yellow;

}

.section-tittle h2::after{
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color),var(--accent-color));
    bottom: 0;
    transform: translateY(-50%);
    border-radius: 2px;

}
.about-content{
    display: flex;
    gap: 60px;
    align-items: center;

}
.about-text{
    flex: 2;
}

.about-image{
    flex: 2;
    display: flex;
    justify-content: center;
    position: relative;

}
.about-image::before{
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 10px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-505);
    z-index: -1;
    opacity: 0.2;

}
.skills{
    background-color: var(--card-bg);
}
.skills-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-card{
    background-color: white;
    padding: 40px 30px ;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0,3s;
    text-align: center;
    border-bottom: 4px solid transparent;


}

.skill-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary-color);

}

.skill-card i{
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color),var(--accent-color));
background-clip: text;
-webkit-text-fill-color:transparent;
}

.skill-card h3{
    margin-bottom:15px ;
    font-size: 1.5rem;
}

.projects{
    background-color: var(--secondary-color);
    color: white;
}

.projects-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit minmax(350px,1fr));
    gap: 30px;

}
.project-card{
    background-color: var(--dark-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    position: relative;
}

.project-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, rgba(255,95,31,0.1) 0%,transparent 100%);
    z-index: 1;
}

.project-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-container{
    position: relative;
    padding-bottom:56.25% ;
    height: 0;
    overflow: hidden;

}
.video-container iframe{
    position:absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: none;
}
.project-info{
    padding: 30px;
    position: relative;
    z-index: 2;
}

.project-info h3{
font-size: 1.5rem;
margin-bottom: 15px;
color: white;
}

.project-info p{
    color: var(--text-light);
    margin-bottom: 20px
}

.project-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10PX;
    margin-bottom: 20PX;

}

.project-tag{
    background-color: rgba(255, 95, 31, 0.2);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;

}
.contact{
    background-color: var(--card-bg);
}

.contact-form{
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.form-group{
    margin-bottom: 25px;

}

input,textarea{
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: all 0.3s;
}

input:focus,textarea:focus{
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 95, 31, 0.2);
}

textarea{
    height: 150px;
    resize: vertical;
}

footer{
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 50px 0 30px;
    position: relative;

}

footer::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:2px;
    background: linear-gradient(to right, var(--primary-color),var(--accent-color));

}

.social-links{
    display: flex;
    justify-content:center;
    gap: 25px;
    margin-bottom: 30px;

}
.social-links a{
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    border-radius:50% ;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: rgba(255,255,255,0.1);

}

.social-links a:hover{
    color: white;
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a{
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;

}

.footer-links a:hover{
    color: var(--primary-color);
}

.copyright{
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width:1200px){
    .profile-img{
        width: 300px;
        height: 300px;
    }
}

@media (max-width :992px){
    .hero-content{
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-content{
        flex-direction: column;

    }
    
    .hero-text{
        margin-top: 50px;
    }

    .btn-outline{
        margin-left: 0;
        margin-top: 15px;
        display: inline-block;
    }
}

@media (max-width :768px){
    .nav-links{
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: left 0.3s;

    }

    .nav-links.active{
        left: 0;

    }

    .hamburger{
        display: block;
    }

    h1{
        font-size: 2.8rem;

    }
    h2{
        font-size: 2rem;
    }

    .section-tittle h2 ::after{
        width: 60px;
    }

    .projects-grid{
        grid-template-columns: 1fr;
    }
    
    }

    @media (max-width: 576px){
        .profile-img{
            width: 250px;
            height: 250px;

        }

        h1{
            font-size: 2.2rem;
        }

        h2{
            font-size: 1.8rem;
        }

        .subtitle{
            font-size: 1.1rem;
        }

        .contact-form{
            padding: 30px 20px;
        }
        .footer-links{
            flex-direction: column;
            gap: 15px;
        }
        
    }

