/* Reset & Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    min-height: 100vh;
    padding: 40px 20px;
    color: white;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* Optimize images for performance */

img {
    content-visibility: auto;
}

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

/* Header */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
    animation: fadeInDown 0.8s ease-out;
}

.logo {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    user-select: none;
    -webkit-user-select: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    color: #fbbf24;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: #6b7280;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover,
nav a:active {
    color: #ffffff;
}

/* Hero Section */

.hero {
    display: flex;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 60px;
}

/* Profile Card - Apple Glass Effect */

.profile-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    contain: layout style paint;
}

/* Reflection Effect */

.profile-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
    pointer-events: none;
    border-radius: 28px 28px 0 0;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgb(134, 122, 92) 0%, transparent 100%);
    pointer-events: none;
    filter: blur(40px);
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgb(251, 191, 36) 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: scale(1.1) rotate(5deg);
}

.greeting {
    font-size: 14px;
    color: #d1d5db;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.social-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.social-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0.8;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin: -8px;
}

.social-links a:hover,
.social-links a:active {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-2px);
}

.profile-content {
    position: relative;
    z-index: 1;
}

.profile-content h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -1.5px;
}

.highlight-yellow {
    color: #fbbf24;
}

.profile-content .tagline {
    font-size: 16px;
    line-height: 1.6;
    color: #fbbf24;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: -0.2px;
}

.about-section {
    margin-top: 32px;
}

.about-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.about-section strong {
    color: #fbbf24;
    font-weight: 600;
}

.about-section ul {
    list-style: none;
    margin-top: 16px;
    padding-left: 0;
}

.about-section ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #9ca3af;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    letter-spacing: -0.2px;
}

.about-section ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #fbbf24;
    font-weight: bold;
}

/* Illustration Card - Apple Glass Effect */

.illustration-card {
    width: 300px;
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    min-height: 500px;
    contain: layout style paint;
}

/* Reflection Effect for Illustration Card */

.illustration-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 40%, transparent 100%);
    pointer-events: none;
    border-radius: 28px 28px 0 0;
}

.illustration-placeholder {
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.25));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ========================================
   SKILLS SCROLLING SECTION
   ======================================== */

.skills-section {
    margin-top: 60px;
    margin-bottom: 60px;
    overflow: hidden;
    position: relative;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInDown 0.6s ease-out forwards;
}

.skills-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.skills-marquee::before,
.skills-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.skills-marquee::before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.skills-marquee::after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, transparent 100%);
}

.skills-track {
    display: flex;
    gap: 50px;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.skill-item {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 191, 36, 0.5);
    transform: scale(1.1) translateY(-5px);
    opacity: 1;
}

.skill-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.skill-item:hover img {
    transform: scale(1.1);
}

/* Pause animation on hover */

.skills-marquee:hover .skills-track {
    animation-play-state: paused;
}

/* ========================================
   LINKEDIN POSTS INFINITY SCROLL SECTION
   ======================================== */

.linkedin-posts-section {
    margin-top: 60px;
    margin-bottom: 60px;
    overflow: hidden;
    position: relative;
}

.linkedin-posts-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.linkedin-posts-marquee::before,
.linkedin-posts-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.linkedin-posts-marquee::before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.linkedin-posts-marquee::after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, transparent 100%);
}

.linkedin-posts-track {
    display: flex;
    gap: 30px;
    animation: scrollPosts 30s linear infinite;
    will-change: transform;
}

@keyframes scrollPosts {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.linkedin-post-item {
    flex-shrink: 0;
    width: 504px;
    height: 668px;
    min-height: 668px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.linkedin-post-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    pointer-events: none;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.linkedin-post-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

.linkedin-post-item iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    position: relative;
    z-index: 0;
}

/* LinkedIn Post Card Styling */

.post-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    padding: 24px;
}

.post-header {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.post-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.post-author h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: -0.2px;
}

.post-author p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0 0 4px 0;
    letter-spacing: -0.1px;
}

.post-author span {
    font-size: 12px;
    color: #6b7280;
}

.post-content {
    margin-top: 12px;
}

.post-content>p {
    font-size: 15px;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.post-image-container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.linkedin-post-item:hover .post-image {
    transform: scale(1.05);
}

.post-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.post-image-placeholder span {
    font-size: 14px;
    color: #fbbf24;
    font-weight: 500;
    letter-spacing: -0.1px;
}

.linkedin-post-item:hover .post-image-placeholder {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-color: rgba(251, 191, 36, 0.5);
}

/* Pause animation on hover */

.linkedin-posts-marquee:hover .linkedin-posts-track {
    animation-play-state: paused;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 40px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    pointer-events: none;
    border-radius: 24px 24px 0 0;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 2;
}

.service-features {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.service-features li {
    font-size: 14px;
    line-height: 1.8;
    color: #9ca3af;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    letter-spacing: -0.2px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
}

/* ========================================
   CONTENT FOCUS SECTION
   ======================================== */

.content-section {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 40px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

.content-card:nth-child(1) {
    animation-delay: 0.1s;
}

.content-card:nth-child(2) {
    animation-delay: 0.2s;
}

.content-card:nth-child(3) {
    animation-delay: 0.3s;
}

.content-card:nth-child(4) {
    animation-delay: 0.4s;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    border-color: rgba(251, 191, 36, 0.3);
}

.content-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.content-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
    letter-spacing: -0.2px;
}

.content-why {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

.content-why::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    pointer-events: none;
    border-radius: 24px 24px 0 0;
}

.content-why h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.content-why ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.content-why ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #9ca3af;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    letter-spacing: -0.2px;
}

.content-why ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
}

/* ========================================
   PROJECTS SECTION (PLACEHOLDER)
   ======================================== */

.projects-section {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 40px 0;
}

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 28px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    pointer-events: none;
    border-radius: 28px 28px 0 0;
}

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

.coming-soon-content h3 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.coming-soon-content p {
    font-size: 16px;
    color: #9ca3af;
    letter-spacing: -0.2px;
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.footer-section {
    margin-top: 60px;
    padding: 40px 0 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

/* Footer Cards - Apple Glass Effect */

.footer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.footer-card:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Reflection Effect for Footer Cards */

.footer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    pointer-events: none;
    border-radius: 28px 28px 0 0;
}

/* Focus Card Styling */

.focus-card {
    background: linear-gradient(135deg, rgba(120, 100, 80, 0.15) 0%, rgba(80, 60, 50, 0.15) 100%), rgba(255, 255, 255, 0.05);
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 116, 92, 0.3) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
}

.footer-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.2px;
}

.footer-heading {
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    letter-spacing: -1.2px;
}

.focus-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.focus-list li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    letter-spacing: -0.2px;
}

.focus-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
}

/* Contact Card Styling */

.contact-card {
    background: linear-gradient(135deg, #ff8a5b 0%, #f4754e 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
}

.contact-heading {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.contact-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.2px;
}

.contact-cta {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.2px;
    font-weight: 600;
}

.contact-links {
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.contact-link {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom */

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7280;
    letter-spacing: -0.2px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .container {
        padding: 30px;
    }

    .profile-content h1 {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px 16px;
    }

    .container {
        padding: 20px;
    }

    header {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        margin-bottom: 48px;
    }

    .logo {
        font-size: 18px;
    }

    nav {
        gap: 24px;
        width: 100%;
        justify-content: flex-start;
    }

    nav a {
        font-size: 16px;
    }

    .hero {
        flex-direction: column;
        gap: 20px;
    }

    .illustration-card {
        width: 100%;
        min-height: 320px;
    }

    .profile-card {
        padding: 32px;
    }

    .profile-content h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .profile-header {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .footer-card {
        padding: 32px;
    }

    .footer-heading {
        font-size: 32px;
    }

    .contact-heading {
        font-size: 28px;
    }

    /* LinkedIn Posts Responsive */
    .linkedin-post-item {
        width: 400px;
        height: 550px;
    }

    .linkedin-post-item iframe {
        transform: scale(0.8);
        transform-origin: top left;
    }
}

@media (max-width: 480px) {

    /* Reduce body and container padding for mobile */
    body {
        padding: 12px 12px;
    }

    .container {
        padding: 12px;
    }

    /* Optimize header spacing */
    header {
        margin-bottom: 32px;
        gap: 16px;
    }

    /* Reduce profile card padding */
    .profile-card {
        padding: 20px;
    }

    /* Optimize hero section spacing */
    .hero {
        gap: 16px;
    }

    .profile-content h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .tagline {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .about-section {
        margin-top: 20px;
    }

    .about-section h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .about-section p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .about-section ul {
        margin-top: 12px;
        padding-left: 20px;
    }

    .about-section li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* Optimize section titles and spacing */
    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    /* Reduce skills section spacing */
    .skills-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    /* Optimize services section */
    .services-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .service-card {
        padding: 20px;
    }

    /* Optimize LinkedIn posts section */
    .linkedin-posts-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .linkedin-posts-marquee {
        padding: 12px 0;
    }

    .linkedin-post-item {
        width: 320px;
        height: 450px;
    }

    .linkedin-post-item iframe {
        transform: scale(0.63);
        transform-origin: top left;
    }

    .linkedin-posts-track {
        animation: scrollPosts 40s linear infinite;
        gap: 20px;
    }

    .post-link {
        padding: 16px;
    }

    .post-header {
        margin-bottom: 12px;
    }

    .post-avatar {
        width: 40px;
        height: 40px;
    }

    .post-author h4 {
        font-size: 14px;
    }

    .post-author p {
        font-size: 12px;
    }

    .post-content>p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .post-image-container {
        height: 250px;
    }

    /* Optimize footer spacing */
    .footer-section {
        margin-top: 40px;
    }

    .footer-card {
        padding: 24px;
    }

    .footer-heading {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .contact-heading {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .contact-description {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .focus-list li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* Reduce illustration card height */
    .illustration-card {
        min-height: 280px;
    }

    /* Optimize social links spacing */
    .social-links {
        gap: 16px;
    }

    /* Reduce coming soon section padding */
    .coming-soon {
        padding: 40px 20px;
    }

    .coming-soon-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .coming-soon-content p {
        font-size: 14px;
    }

    /* Optimize scroll speeds for mobile - make them faster */
    .skills-track {
        animation: scroll 12s linear infinite;
    }

    .linkedin-posts-track {
        animation: scrollPosts 12s linear infinite;
        gap: 20px;
    }
}

/* Smooth Scroll */

html {
    scroll-behavior: smooth;
}

/* Selection */

::selection {
    background: rgba(251, 191, 36, 0.3);
    color: #ffffff;
}

/* Better backdrop-filter support for older browsers */

@supports not (backdrop-filter: blur(40px)) {

    .profile-card,
    .service-card,
    .content-card,
    .footer-card {
        background: rgba(20, 20, 20, 0.95);
    }
}