body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #f8fafc;
    color: #1e293b;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #020617, #0f172a, #020617);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero-content {
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.highlight {
    color: #38bdf8;
}

.hero-left h2 {
    font-size: 20px;
    font-weight: 500;
    color: #cbd5f5;
    margin-bottom: 20px;
}

.intro {
    font-size: 16px;
    line-height: 1.7;
    color: #e5e7eb;
    max-width: 520px;
}

.hero-buttons {
    margin-top: 25px;
}

.hero-buttons .btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 10px;
    font-size: 15px;
}

.primary {
    background: #38bdf8;
    color: #020617;
}

.secondary {
    border: 1px solid #38bdf8;
    color: #38bdf8;
}

.hero-socials {
    margin-top: 25px;
}

.hero-socials a {
    color: #94a3b8;
    margin-right: 15px;
    text-decoration: none;
    font-size: 14px;
}

.hero-socials a:hover {
    color: #38bdf8;
}

.hero-right img {
    width: 280px;
    border-radius: 50%;
    border: 5px solid #38bdf8;
    box-shadow: 0 0 40px rgba(56,189,248,0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-right img {
        width: 220px;
        margin-bottom: 20px;
    }

    .intro {
        margin: auto;
    }
}


.profile-pic {
    width: 140px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #38bdf8;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
}

.buttons {
    margin: 20px 0;
}

.btn {
    padding: 10px 18px;
    border-radius: 6px;
    margin: 5px;
    text-decoration: none;
    color: white;
    border: 1px solid #38bdf8;
}

.primary {
    background: #38bdf8;
    color: #0f172a;
}

.links a {
    color: #38bdf8;
    margin: 0 10px;
    text-decoration: none;
}

.card {
    background: white;
    width: 80%;
    margin: 30px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* PHOTO GALLERY */
.gallery {
    display: flex;
    gap: 15px;
    overflow-x: auto;              /* horizontal scrolling */
    padding-bottom: 10px;
    scrollbar-width: thin;         /* Firefox */
}

/* Chrome / Edge scrollbar */
.gallery::-webkit-scrollbar {
    height: 6px;
}

.gallery::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.gallery img {
    width: 220px;                  /* fixed smaller size */
    height: 150px;
    object-fit: cover;             /* crop nicely */
    border-radius: 10px;
    flex-shrink: 0;                /* prevent wrapping */
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}


/* PROJECT CARDS */
.project-card {
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 10px;
    background: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.project-card h3 a {
    text-decoration: none;
    color: #0f172a;
}

.project-card h3 a:hover {
    color: #0284c7;
}

.project-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background: #0284c7;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}


.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills li {
    list-style: none;
    background: #e2e8f0;
    padding: 8px 14px;
    border-radius: 20px;
}

footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 15px;
}
