html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1f2933;
}

/* CONTAINER */
.container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
}

/* ABOUT SECTION */
.about-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #f8fafc;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT SIDE */
.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
}

.about-text h2 {
    color: #2563eb;
    margin: 10px 0 20px;
    font-weight: 500;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #475569;
}

/* RESUME BUTTON */
.resume-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.resume-btn:hover {
    background: #1e40af;
}

/* RIGHT SIDE IMAGE */
.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #2563eb;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* PROJECTS */
.section {
    padding: 20px 0;
}

.section.light {
    background: #eef2f7;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0f172a;
}

.project-card {
    background: white;
    padding: 22px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

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

.project-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}


@media(max-width: 900px){
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-text h1 {
        font-size: 32px;
    }

    .about-image img {
        width: 220px;
        height: 220px;
    }
}

.timeline ul {
    margin-top: 10px;
    padding-left: 20px;
}

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

.skills span {
    background: #2563eb;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
}

.edu {
    margin-bottom: 20px;
}

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

/* Responsive */
@media(max-width:768px){
    .hero h1 {
        font-size: 2rem;
    }
}