/* ===== Base Styles ===== */
:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #333;
    --text-light: #7f8c8d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* ===== Header ===== */
.hero-header {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.name-title {
    font-size: 2.5rem;
    margin: 0;
    letter-spacing: 1px;
}

.main-nav {
    margin-top: 1.5rem;
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* ===== Main Content ===== */
.main-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.professional-title {
    font-size: 2rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary), transparent);
    margin: 2rem auto;
    max-width: 300px;
}

/* ===== Buttons ===== */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 200px;
}

.btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .name-title {
        font-size: 2rem;
    }
    
    .nav-links {
        gap: 0.8rem;
    }
    
    .professional-title {
        font-size: 1.5rem;
    }
    
    .btn {
        min-width: 160px;
        padding: 0.7rem 1.5rem;
    }
}
.heroImg{
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
}