/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000000;
    color: white;
}

/* Navbar */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    opacity: 1;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff6600;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background: url('https://source.unsplash.com/1600x900/?man,portrait') no-repeat center center/cover;
    padding: 0 50px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 span {
    color: #c54205ef;
}

.hero p {
    font-size: 18px;
    margin: 20px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #7600a5b6;
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 15px;
    transition: 0.3s;
}

.btn:hover {
    background: #ffffff77;
}

.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #020096e1;
    color: #e4e4e4;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #000000be;
    color: rgb(231, 231, 233);
}

h2 {

    font-family: 'poppins', sans-serif;
    font-size: 30px;
    text-transform:
    uppercase ;
    text-align:center;
    background: linear-gradient(to right, #fc72ff, #Bf68ff, #487bff,
    #8f68ff, #fc72ff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradiant 2.5s linear infinite;
}
@keyframes animate-gradiant{
    to{
        background-position: 200%;
    }
}

.site-footer {
    background-color: #1616168a;
    color: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #444444;
}



/* About Section */

.about {
    padding: 100px 50px;
    background: #0a0a0a;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.about-image img {
    width: 100%;
    height: 80%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.skills li {
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    position: relative;
}

.skills li:before {
    content: "▹";
    color: #4ecdc4;
    position: absolute;
    left: -20px;
}

.software-icons {
    display: flex;
    gap: 25px;
    font-size: 2.5rem;
    color: #666;
    margin-top: 15px;
}

.software-icons i {
    transition: color 0.3s ease;
}

.fa-adobe:hover { color: #FF0000; }
.fa-figma:hover { color: #F24E1E; }
.fa-palette:hover { color: #4ecdc4; }
.fa-cube:hover { color: #6c5ce7; }

.bio {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 100px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}