/* Corporate Professional Theme - Blue & Grey */

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f8f9fc;
    color: #333;
}

h1, h2, h3 {
    margin: 0 0 10px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

p {
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #0a2a52, #0e3f78);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.name {
    font-size: 3rem;
    font-weight: 700;
}

.title {
    font-size: 1.4rem;
    margin-top: 10px;
}

.buttons {
    margin-top: 25px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 10px;
    font-size: 1rem;
}

.primary {
    background: #2563eb;
    color: white;
}

.secondary {
    background: white;
    color: #0e3f78;
    border: 1px solid #0e3f78;
}

/* Sections */
.section {
    padding: 70px 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.skill-card {
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.skill-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}


.experience-card {
    background: white;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.projects-list li {
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

footer {
    text-align: center;
    padding: 25px;
    background: #0a2a52;
    color: white;
    margin-top: 40px;
}

/* Hero with Photo */
.hero-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-photo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Mobile */
@media(max-width: 800px) {
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }

    .hero-photo img {
        margin-top: 20px;
    }
}
