:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f1f5f9;
    color: var(--dark);
}

/* Navbar */
.navbar {
    background-color: rgba(30, 41, 59, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: var(--secondary);
}

/* Cards & Components */
.tech-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.profile-header {
    padding: 10px;
    height: 220px;
    background: linear-gradient(120deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.tech-gradient {
    background: linear-gradient(120deg, var(--primary), var(--primary-dark));
}

.employee-img-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    z-index: 99;
}

.employee-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employee-content {
    padding-top: 60px;
    padding-bottom: 20px;
}

.tech-badge {
    background-color: var(--primary);
    color: white;
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 15px;
}

.tech-pill {
    display: inline-block;
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

.skill-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 8px;
    margin-right: 15px;
}

.selector-container {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.employee-selector {
    width: 100%;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1rem;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.employee-selector:hover {
    border-color: var(--primary);
}

.company-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 50px;
}

.section-header {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background-color: var(--secondary);
}

.code-bracket {
    font-family: 'Consolas', monospace;
    color: var(--secondary);
    font-weight: bold;
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 0;
    margin-top: 80px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;
    background-color: var(--secondary);
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 18px;
    background-color: var(--secondary);
    animation: blink 1s infinite;
    margin-left: 5px;
    vertical-align: middle;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.tech-stack {
    padding: 15px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}

.stack-title {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
}

.projects-section {
    padding: 20px 0;
}

.project-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border-top: 3px solid #6366f1;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.project-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.project-title {
    color: #1e293b;
    margin-bottom: 12px;
    padding-right: 75px;
}

.project-description {
    color: #64748b;
    margin-bottom: 15px;
    flex-grow: 1;
}

.tech-used {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
}

.tech-pill {
    display: inline-block;
    background-color: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    margin-right: 8px;
    margin-bottom: 8px;
    font-weight: 500;
}

.project-results {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 12px;
}

.result-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.result-item:last-child {
    margin-bottom: 0;
}

.result-item i {
    width: 24px;
    margin-right: 8px;
}

.section-header {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
    color: #1e293b;
    font-weight: 600;
}

.section-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background-color: #10b981;
}
.skills-section {
    padding: 15px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.skill-category {
    padding: 15px;
    background-color: rgba(248, 250, 252, 0.8);
    border-radius: 8px;
    margin-bottom: 20px;
}

.skill-category-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.skill-item {
    margin-bottom: 15px;
}

.skill-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.skill-years {
    font-size: 0.8rem;
    color: #64748b;
}

.soft-skills-container {
    padding: 15px;
    background-color: rgba(16, 185, 129, 0.05);
    border-radius: 8px;
}

.soft-skill-item {
    padding: 8px 15px;
    background-color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.soft-skill-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}