* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0e1621;
    color: #ddd;
}

.navbar {
    background: rgba(14, 22, 33, 0.9);
    backdrop-filter: blur(10px);
}

.navbar-brand span {
    color: #ff6b6b;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, #ff6b6b22, transparent),
                linear-gradient(120deg, #0e1621, #101c2c);
}

.hero h1 span {
    color: #ff6b6b;
}

.profile-wrapper {
    position: relative;
}

.profile-wrapper img {
    width: 320px;
    border-radius: 50%;
    border: 5px solid #ff6b6b;
    box-shadow: 0 0 50px rgba(255,107,107,.4);
}

.section {
    padding: 100px 0;
}

.section h2 {
    font-weight: 600;
}

.skills span {
    display: inline-block;
    background: #1c2b3a;
    padding: 8px 14px;
    margin: 6px;
    border-radius: 20px;
    font-size: 14px;
}

.bg-dark {
    background: #0b1320 !important;
}

.project-card {
    background: #131f30;
    padding: 25px;
    border-radius: 18px;
    height: 100%;
    transition: .3s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.project-card h5 {
    color: #fff;
}

.project-card a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
}

.contact-box p, .contact-box a {
    color: #ddd;
    font-size: 18px;
}

footer {
    background: #070d16;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}
