/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(250, 249, 246, 0.95) 0%, rgba(254, 245, 231, 0.95) 50%, rgba(255, 229, 212, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 154, 139, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.logo-image {
    height: 105px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-logo a:hover .logo-image {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff9a8b;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #ff9a8b 0%, #fecf8d 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #faf9f6 0%, #fef5e7 50%, #ffe5d4 100%);
    color: #1f2937;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="black" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="black" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="black" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="black" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="black" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #1f2937;
}

.highlight {
    background: linear-gradient(135deg, #ff9a8b 0%, #fecf8d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.7;
    font-weight: 300;
    color: #4b5563;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

.profile-card {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-photo {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: block;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #4b5563;
    border-bottom: 2px solid #4b5563;
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 400;
}

/* About Section */
.about {
    background-color: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.skills h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
}

.journey-animation-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.journey-map {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.journey-svg {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
}

.journey-path {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: drawPath 6s ease-in-out forwards;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.journey-dot {
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.5));
}

.country-marker {
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInMarker 1s ease-in-out forwards;
    opacity: 0;
    animation-delay: 0s;
}

.country-marker:nth-child(3) {
    animation-delay: 0s;
}

.country-marker:nth-child(4) {
    animation-delay: 0s;
}

.country-marker:nth-child(5) {
    animation-delay: 0s;
}

@keyframes fadeInMarker {
    to {
        opacity: 1;
    }
}

.marker-ring {
    animation: ringPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes ringPulse {
    0% {
        r: 25;
        opacity: 0.3;
    }
    50% {
        r: 35;
        opacity: 0.1;
    }
    100% {
        r: 25;
        opacity: 0.3;
    }
}

.country-emoji {
    cursor: pointer;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    pointer-events: none;
    transform-origin: center;
}

.country-marker:hover .marker-ring {
    r: 45;
    opacity: 0.2;
    animation: none;
}

.country-background {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    filter: blur(1px);
    transform-origin: center;
}

.country-marker:hover .country-background {
    opacity: 0.4;
    filter: blur(0.5px);
}


.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Journey Map Section */
.journey-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.journey-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.world-map {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.world-svg {
    width: 100%;
    height: 300px;
    display: block;
}

.world-outline {
    opacity: 0.3;
}

.journey-path {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: drawPath 3s ease-in-out forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.country-markers {
    animation: fadeInMarkers 1s ease-in-out 2s forwards;
    opacity: 0;
}

@keyframes fadeInMarkers {
    to {
        opacity: 1;
    }
}

.country-marker {
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.country-marker {
    transform: none;
}

.country-shape {
    transition: all 0.3s ease;
}

.country-marker:hover .country-shape {
    filter: brightness(1.1);
}

.maple-leaf {
    animation: leafFloat 3s ease-in-out infinite;
}

@keyframes leafFloat {
    0%, 100% {
        transform: translate(30px, 20px) scale(0.8) rotate(0deg);
    }
    50% {
        transform: translate(30px, 15px) scale(0.85) rotate(2deg);
    }
}

.country-label {
    font-size: 12px;
    font-weight: 600;
    fill: #374151;
    pointer-events: none;
}

.journey-dot {
    animation: moveAlongPath 4s linear infinite;
}

@keyframes moveAlongPath {
    0% {
        offset-distance: 0%;
    }
    100% {
        offset-distance: 100%;
    }
}

.country-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.country-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
}

.country-card[data-country="ethiopia"]:hover {
    border-color: #f59e0b;
}

.country-card[data-country="mozambique"]:hover {
    border-color: #8b5cf6;
}

.country-card[data-country="canada"]:hover {
    border-color: #ef4444;
}

.country-card.active {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.country-card[data-country="ethiopia"].active {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.country-card[data-country="mozambique"].active {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.country-card[data-country="canada"].active {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.country-flag {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.country-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.country-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.country-year {
    font-size: 0.75rem;
    font-weight: 500;
    color: #9ca3af;
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    display: inline-block;
}

/* Work Section */
.work-folders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.folder {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.folder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.folder:hover::before {
    transform: scaleX(1);
}

.folder:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #e5e7eb;
}

.folder-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.folder:hover .folder-icon {
    transform: scale(1.1);
    color: #1d4ed8;
}

.folder-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.folder-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: italic;
}

.folder-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.folder.active .folder-content {
    max-height: 500px;
}

.project-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.project-item:last-child {
    border-bottom: none;
}

.project-item:hover {
    background: #f9fafb;
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 10px;
}

.project-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.project-item p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Folder category colors */
.folder[data-category="cs"] .folder-icon {
    color: #2563eb;
}

.folder[data-category="cs"]:hover .folder-icon {
    color: #1d4ed8;
}

.folder[data-category="cs"]::before {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
}

.folder[data-category="creative"] .folder-icon {
    color: #8b5cf6;
}

.folder[data-category="creative"]:hover .folder-icon {
    color: #7c3aed;
}

.folder[data-category="creative"]::before {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
}

.folder[data-category="features"] .folder-icon {
    color: #f59e0b;
}

.folder[data-category="features"]:hover .folder-icon {
    color: #d97706;
}

.folder[data-category="features"]::before {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
}

.project-card-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: #2563eb;
}

.project-card-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    flex-grow: 1;
}

.project-problem,
.project-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tag {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #3730a3;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-card:hover .tech-tag {
    background: linear-gradient(135deg, #c7d2fe 0%, #a5b4fc 100%);
    transform: translateY(-2px);
}

.video-placeholder {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.video-placeholder i {
    font-size: 2.5rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    display: block;
}

.video-placeholder p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.project-card:hover .video-placeholder {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    transform: scale(1.05);
}

.video-card {
    cursor: pointer;
}

.media-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.project-card-footer {
    padding: 1rem 1.5rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.project-card:hover .project-card-footer {
    background: #f3f4f6;
}

.project-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    position: relative;
}

.project-link:hover {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(4px);
}

.project-link i {
    font-size: 0.875rem;
}

/* Page-specific styles for work category pages */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Category-specific page headers */
.cs-header {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    background-image: url('Pictures/Code.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cs-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Pictures/Code.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: 0;
    opacity: 0.85;
}

.cs-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cs-header .header-content {
    position: relative;
    z-index: 2;
}

.creative-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    background-image: url('Pictures/Create.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.creative-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Pictures/Create.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: 0;
    opacity: 0.85;
}

.creative-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.creative-header .header-content {
    position: relative;
    z-index: 2;
}

.features-header {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    background-image: url('Pictures/News.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.features-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Pictures/News.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: 0;
    opacity: 0.85;
}

.features-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.features-header .header-content {
    position: relative;
    z-index: 2;
}

.work-category {
    padding: 80px 0;
    background-color: #f9fafb;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #e5e7eb;
}

.project-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-link {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    text-decoration: none;
}

.project-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-link:hover .project-thumbnail {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-overlay i {
    font-size: 2rem;
    color: white;
    margin-left: 4px;
}

.image-link:hover .play-overlay {
    background: rgba(239, 68, 68, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.project-placeholder {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.image-link:hover .project-placeholder {
    opacity: 1;
    transform: scale(1.1);
}

.project-card:hover .project-placeholder {
    transform: scale(1.1);
    opacity: 1;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.project-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-bottom 0.4s ease;
}

.project-card:hover .project-content p {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.project-link:hover {
    color: #1d4ed8;
}

.project-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.project-link:hover::after {
    width: 100%;
}

.back-to-work {
    text-align: center;
    margin-top: 3rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-secondary:hover {
    background: #374151;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(55, 65, 81, 0.2);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #faf9f6 0%, #fef5e7 50%, #ffe5d4 100%);
    color: #1f2937;
}

.contact .section-title,
.contact .section-subtitle {
    color: #1f2937;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #4b5563;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #1f2937;
}

.contact-method i {
    width: 20px;
    color: #ff9a8b;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 154, 139, 0.3);
}

.social-link:hover {
    background: linear-gradient(135deg, #ff9a8b 0%, #fecf8d 100%);
    color: white;
    transform: translateY(-3px);
    border-color: #ff9a8b;
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 154, 139, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 154, 139, 0.3);
    border-radius: 10px;
    background: white;
    color: #1f2937;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff9a8b;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 154, 139, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #faf9f6 0%, #fef5e7 50%, #ffe5d4 100%);
    color: #1f2937;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    color: #4b5563;
    opacity: 0.8;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #faf9f6 0%, #fef5e7 50%, #ffe5d4 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .journey-map {
        padding: 1rem;
    }
    
    .journey-svg {
        max-height: 300px;
    }
    
    .country-info {
        grid-template-columns: 1fr;
    }
    
    .country-info {
        grid-template-columns: 1fr;
    }
    
    .world-svg {
        height: 250px;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .work-folders {
        grid-template-columns: 1fr;
    }
    
    .project-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .work-category-section {
        margin-bottom: 3rem;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .category-tagline {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .stat-item {
        padding: 1rem;
    }
}
