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

body {
    font-family: "Space Grotesk", sans-serif; 
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 0px;
    width: 100%;
    z-index: 9999;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 5px;
    background: linear-gradient(45deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav .a {
    position: relative;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    margin-left: 50px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav .a::after {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 2px;
    left: 0%;
    background: #fff;
    transition: width 0.3s;
}

nav .a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #888;
}

.cv {
    border: #fff 2px solid;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    margin-left: 50px;
    font-weight: 500;

    transition: all 0.5s ease;
}

.cv:hover {
    background: #fff;
    color: #0a0a0a;
    box-shadow: 0 0 50px 10px rgba(255, 255, 255, 0.1);
}

.hero {
    padding: 200px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 70px;
}

.hero-badge {
    display: inline-block;
    border: #fff 2px solid;
    background: white;
    padding: 16px 32px;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1.1px;
}

.line {
    display: block;
}

.h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
}

.h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
}

.line.gradient {
    background: linear-gradient(55deg, #fff, #424242);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 5.5rem;
}

.hero-desc {
    max-width: 600px;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #ccc;
}

.btn {
    display: inline-block;
    border: #fff 2px solid;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    width: 200px;
    margin-right: 20px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #fff;
    color: #0a0a0a;
}

.btn-outline {
    background: transparent;
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.hero-visual {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.photo-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #fff;
    position: relative;
    z-index: 2;
    filter: grayscale(100%) contrast(130%);
    transition: all 0.3s ease;
}

.photo-container:hover .profile-photo {
    filter: grayscale(0%) contrast(120%);
    transform: scale(1.02);
}

.photo-frame {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    background-color: #424242;
    transition: all 0.3s ease;
}

.photo-accent {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #fff;
    top: -415px;
    left: -10px;
    z-index: 2;
    transition: all 0.3s ease;
}

.photo-container:hover .photo-accent {
    transform: scale(1.05) translate(-5px, -5px);
}

.photo-container:hover .photo-frame {
    transform: translate(5px, 5px);
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.section-number {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 2px;
}

.about {
    padding: 120px 0;
    background: #111;
}

.about-span {
    font-weight: bolder;
    font-size: 1.5rem;
    display: inline-block;
    background: linear-gradient(180deg, #fff, #0195ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.about-grid {
    display: flex;
    gap: 80px;
}

.about-text {
    width: 60%;
}

.about-text p {
    margin-bottom: 30px;
    opacity: 0.8;
    font-size: 1.1rem;
}

.about-skills {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.skill-tag {
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work {
    padding: 120px 0;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    
}

.work-item{
    border: #312f2f 1px solid;
    width: 400px;
    height: 350px;
    background-color:  #211e1e;
    z-index: 9;
    cursor: pointer;
    transition: all 0.3s ease;  
}

.work-item:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border: #fff 1.5px solid;
}

.project-card{
    margin: 30px;
}

.project-detail{
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.project-title{
    font-size: 1.5rem;
    font-weight: 600;
    margin: 10px 0;
}

.project-tech span{
    position: relative;
    top: 20px;
    border: #403f3f 1px solid;
    background-color: #383737;
    padding: 5px 15px;
}

.contact {
    padding: 120px 0;
    background: #111;
}

.contact-info {
    max-width: 600px;
}

.h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}
.contact-content p{
    margin-bottom: 30px;
    opacity: 0.8;
    font-size: 1.1rem;
}

.contact-details{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link{
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    padding: 0px 10px;
    border-bottom: #fff 2px solid;
}

.contact-content{
    display: flex;
    gap: 50px;   
}
.contact-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.form-input{
    width: 600px;
    padding: 15px;
    background: #1a1a1a;
    border: #333 1px solid;
    color: #fff;
    font-size: 1rem;
}

.contact-link{
    text-decoration: none;
    color: #fff;
}

.mail{
    text-decoration: underline;
    color: rgb(0, 0, 255);
}

.available{
    font-weight: bold;
    color: greenyellow;
}

footer{
    font-family: poppins, sans-serif;
}

footer .container{

    padding: 30px 0;
}
.footer-content{
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.footer-text{
    padding: 20px 0px;
}

.footer-text p{
    font-size: 1.1rem;
}

.footer-links a{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    margin-right: 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.footer-links a:hover{
    color: #888;
    transform: translateY(-2px);
}

.footer-bottom{
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px 0px;
    border-top: #333 1px solid;
}
.logo1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, red , blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
   
}
