/*
Theme Name: MyVectorFile Portfolio
Theme URI: https://myvectorfile.com
Author: Expert Vector Team
Author URI: https://myvectorfile.com
Description: A fast, responsive, and SEO-optimized portfolio theme for vector tracing agencies and freelancers.
Version: 1.0.0
License: GNU General Public License v2 or later
Tags: responsive, portfolio, vector-tracing, seo-friendly
*/

/* Basic Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #111827;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

header nav a:hover {
    color: #3b82f6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn-primary {
    background: #f59e0b;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d97706;
}

/* Team & Portfolio Section */
.team-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #111827;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #3b82f6;
}

.team-card h3 {
    font-size: 20px;
    color: #111827;
}

.team-card .designation {
    color: #3b82f6;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
}

.team-card .skills {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.team-card .skill-badge {
    background: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
}

/* Footer */
footer {
    background: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h2 { font-size: 28px; }
    header .nav-container { flex-direction: column; gap: 10px; }
    header nav a { margin: 0 10px; }
}
