/* ------------------------------
   GLOBAL RESET & TYPOGRAPHY
--------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

body {
    background: #f7f9fb;
    color: #1c1e21;
    line-height: 1.6;
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.hero {
    background: #0A66C2; /* LinkedIn Blue */
    color: white;
    padding: 90px 20px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.contact-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 10px;
}

.contact-bar a {
    color: white;
    font-size: 0.95rem;
    text-decoration: none;
}

.contact-bar i {
    margin-right: 6px;
}

/* ------------------------------
   MAIN CONTENT WRAPPER
--------------------------------*/
main {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
}

/* ------------------------------
   SECTION HEADERS
--------------------------------*/
.section h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #0A66C2;
    border-bottom: 2px solid #e3e6ea;
    padding-bottom: 6px;
}

/* ------------------------------
   VISITOR COUNTER
--------------------------------*/
.visitor-counter {
    text-align: right;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

/* ------------------------------
   PILL GROUPS (Skills)
--------------------------------*/
.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.pill-group span {
    padding: 7px 14px;
    background: #e9f3ff;
    border: 1px solid #d5e7ff;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #0A66C2;
}

/* ------------------------------
   EXPERIENCE CARDS
--------------------------------*/
.experience-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e3e6ea;
    margin-top: 20px;
}

.experience-card .header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.experience-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.company {
    color: #555;
    font-weight: 500;
    margin-bottom: 12px;
}

.experience-card ul {
    margin-left: 20px;
    margin-top: 8px;
}

.experience-card li {
    margin-bottom: 6px;
}

/* ------------------------------
   EDUCATION + CERTIFICATIONS GRID
--------------------------------*/
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.two-column ul li {
    margin-bottom: 6px;
}

/* ------------------------------
   PROJECT GRID
--------------------------------*/
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project-card {
    background: white;
    border: 1px solid #e3e6ea;
    padding: 20px;
    border-radius: 10px;
    transition: 0.2s ease;
}

.project-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.project-card a {
    display: inline-block;
    margin-top: 10px;
    color: #0A66C2;
    text-decoration: none;
    font-weight: 600;
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    color: #666;
}
