* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    color: #333;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #0f172a;
    position: sticky;
    top: 0;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #38bdf8;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero button {
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    background: #38bdf8;
    color: #0f172a;
    font-size: 16px;
    cursor: pointer;
}

/* SECTIONS */
section {
    padding: 80px 40px;
    text-align: center;
}

.bg-light {
    background: #f1f5f9;
}

.bg-dark {
    background: #0f172a;
    color: white;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.card, .portfolio-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.portfolio-card span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

/* CONTACT */
.bg-dark button {
    margin-top: 20px;
    padding: 12px 30px;
    background: #38bdf8;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: #020617;
    color: white;
    text-align: center;
    padding: 20px;
}

/* PROFILE SECTION */
.profile-section {
    background: #020617;
    color: white;
}

.profile-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.profile-img {
    width: 260px;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    border-radius: 20px;
    background: #020617;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.profile-info {
    max-width: 500px;
}

.profile-info h2 {
    font-size: 32px;
}

.profile-info h4 {
    font-weight: normal;
    color: #38bdf8;
    margin-bottom: 10px;
}

.profile-info .role {
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.profile-info .description {
    line-height: 1.7;
    color: #cbd5f5;
}
