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

body {
    background: #111;
    color: #fff;
}

.header {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), url('https://source.unsplash.com/random/1920x1080') center/cover;
    padding: 0 8%;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.logo {
    font-size: 30px;
    font-weight: 600;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ff004f;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.header-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.header-content h3 {
    font-size: 25px;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 45px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.btn:hover {
    background: #ff004f;
    border-color: #ff004f;
}

.about {
    padding: 80px 8%;
    text-align: center;
}

.about h2 {
    font-size: 45px;
    margin-bottom: 50px;
    color: #ff004f;
}

.about p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.projects {
    padding: 80px 8%;
    background: #1a1a1a;
}

.projects h2 {
    text-align: center;
    font-size: 45px;
    margin-bottom: 50px;
    color: #ff004f;
}

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

.project-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

.project-card h3 {
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 80px 8%;
    text-align: center;
}

.contact h2 {
    font-size: 45px;
    margin-bottom: 50px;
    color: #ff004f;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-item {
    text-align: center;
}

.contact-item i {
    font-size: 30px;
    color: #ff004f;
    margin-bottom: 15px;
}