/* assets/style.css */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Alexandria', sans-serif;
    background: linear-gradient(135deg, #f1edec 0%, #cdcdcd 50%, #202020 100%);
    color: #202020;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* ENHANCED STARS ANIMATION - More Visible and Dynamic */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(3px 3px at 15% 8%, rgba(32, 32, 32, 0.8), transparent),
        radial-gradient(2px 2px at 35% 18%, rgba(32, 32, 32, 0.6), transparent),
        radial-gradient(4px 4px at 55% 28%, rgba(32, 32, 32, 0.9), transparent),
        radial-gradient(1px 1px at 75% 38%, rgba(32, 32, 32, 0.7), transparent),
        radial-gradient(3px 3px at 25% 48%, rgba(32, 32, 32, 0.8), transparent),
        radial-gradient(2px 2px at 65% 58%, rgba(32, 32, 32, 0.5), transparent),
        radial-gradient(4px 4px at 45% 68%, rgba(32, 32, 32, 0.9), transparent),
        radial-gradient(1px 1px at 85% 78%, rgba(32, 32, 32, 0.6), transparent),
        radial-gradient(3px 3px at 5% 88%, rgba(32, 32, 32, 0.8), transparent),
        radial-gradient(2px 2px at 95% 15%, rgba(32, 32, 32, 0.7), transparent);
    background-size: 180px 180px;
    animation: twinkleStars 10s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(4px 4px at 20% 12%, rgba(205, 205, 205, 0.9), transparent),
        radial-gradient(2px 2px at 40% 22%, rgba(205, 205, 205, 0.6), transparent),
        radial-gradient(3px 3px at 60% 32%, rgba(205, 205, 205, 0.8), transparent),
        radial-gradient(1px 1px at 80% 42%, rgba(205, 205, 205, 0.5), transparent),
        radial-gradient(4px 4px at 10% 52%, rgba(205, 205, 205, 0.7), transparent),
        radial-gradient(2px 2px at 50% 62%, rgba(205, 205, 205, 0.6), transparent),
        radial-gradient(3px 3px at 70% 72%, rgba(205, 205, 205, 0.8), transparent),
        radial-gradient(1px 1px at 30% 82%, rgba(205, 205, 205, 0.9), transparent),
        radial-gradient(4px 4px at 90% 25%, rgba(205, 205, 205, 0.5), transparent);
    background-size: 220px 220px;
    animation: floatStars 12s linear infinite reverse;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* Additional twinkling layer for more sparkle */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 18% 15%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 38% 25%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(3px 3px at 58% 35%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 78% 45%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 28% 55%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 68% 65%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(3px 3px at 48% 75%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 88% 85%, rgba(255, 255, 255, 1), transparent);
    background-size: 300px 300px;
    animation: sparkleEffect 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

@keyframes twinkleStars {
    0% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-80px) translateX(15px) scale(1.2);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-160px) translateX(-10px) scale(0.8);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-240px) translateX(25px) scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-320px) translateX(0px) scale(1);
        opacity: 0.7;
    }
}

@keyframes floatStars {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.5;
    }

    33% {
        transform: translateY(-120px) translateX(-20px) rotate(120deg) scale(1.3);
        opacity: 0.8;
    }

    66% {
        transform: translateY(-240px) translateX(30px) rotate(240deg) scale(0.7);
        opacity: 0.3;
    }

    100% {
        transform: translateY(-360px) translateX(0px) rotate(360deg) scale(1);
        opacity: 0.5;
    }
}

@keyframes sparkleEffect {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }

    25% {
        opacity: 0.8;
        transform: scale(1.2) rotate(90deg);
    }

    50% {
        opacity: 1;
        transform: scale(0.9) rotate(180deg);
    }

    75% {
        opacity: 0.6;
        transform: scale(1.1) rotate(270deg);
    }
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #202020;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 90vh;
}

.hero-text {
    opacity: 0;
    transform: translateX(-50px);
}

.hero-name {
    margin-bottom: 20px;
}

.first-name {
    display: block;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 0.9;
    color: #cdcdcd;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

.last-name {
    display: block;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 0.9;
    color: #4ecdc4;
    text-shadow: 0 2px 4px rgba(78, 205, 196, 0.3);
    color: #f1edec;
}

.hero-title {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 50px;
    color: #cdcdcd;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4ecdc4, transparent);
    animation: titleScan 3s ease-in-out infinite;
}

@keyframes titleScan {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(32, 32, 32, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 120px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(32, 32, 32, 0.1);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(32, 32, 32, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(32, 32, 32, 0.2);
    background: #7a7a7a;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f1edec;
    display: block;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.stat-number::before {
    content: '+';
}

.stat-label {
    font-size: 0.85rem;
    color: #f1edec;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
    order: 2;
}

.profile-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.profile-img {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.profile-container:hover .profile-img {
    transform: scale(1.05);
    padding: 15px;
}

@keyframes profileRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.floating-logos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.logo-item {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(32, 32, 32, 0.3);
    user-select: none;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(32, 32, 32, 0.2);
}

.logo-item:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(32, 32, 32, 0.4);
    background: rgba(32, 32, 32, 0.2);
}

.logo-item:active {
    transform: scale(1.1);
}

.logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.photoshop {
    top: 120px;
    left: 111px;
    animation: float6 6s ease-in-out infinite;
}

.illustrator {
    top: 149px;
    right: 70px;
    animation: float2 7s ease-in-out infinite;
}

.indesign {
    bottom: 125px;
    right: 32px;
    animation: float3 8s ease-in-out infinite;
}

.aftereffects {
    bottom: 36px;
    left: 100px;
    animation: float4 9s ease-in-out infinite;
}

.capcut {

    bottom: 146px;

    left: 21px;

    animation: float1 6s ease-in-out infinite;
}

@keyframes float1 {

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

    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateX(0px) rotate(0deg);
    }

    50% {
        transform: translateX(10px) rotate(-180deg);
    }
}

@keyframes float3 {

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

    25% {
        transform: translateY(-10px) translateX(8px) rotate(90deg);
    }

    50% {
        transform: translateY(0px) translateX(15px) rotate(180deg);
    }

    75% {
        transform: translateY(10px) translateX(8px) rotate(270deg);
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    33% {
        transform: scale(1.05) rotate(120deg);
    }

    66% {
        transform: scale(0.95) rotate(240deg);
    }
}

@keyframes float5 {

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

    25% {
        transform: translateY(-8px) translateX(-8px);
    }

    50% {
        transform: translateY(-15px) translateX(0px);
    }

    75% {
        transform: translateY(-8px) translateX(8px);
    }
}

@keyframes float6 {

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

    25% {
        transform: translateY(-12px) translateX(5px) rotate(45deg);
    }

    50% {
        transform: translateY(-20px) translateX(-5px) rotate(90deg);
    }

    75% {
        transform: translateY(-12px) translateX(8px) rotate(135deg);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #202020;
    opacity: 0;
    transform: translateY(30px);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
}

/* About Section */
.about-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #202020 0%, #404040 50%, #000000 100%);
    color: #ffffff;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 80px;
}

.about-intro {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #e0e0e0;
    line-height: 1.9;
    text-align: center;
}

.skills-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.skill-item {
    flex-basis: calc(25% - 19px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 205, 205, 0.1), transparent);
    transition: left 0.6s ease;
}

.skill-item:hover::before {
    left: 100%;
}

.skill-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.skill-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #cdcdcd, #898989);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: #202020;
    position: relative;
    z-index: 1;
}

.skill-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.skill-item p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Gallery Section - New Category Cards Design */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #202020 50%, #404040 100%);
    position: relative;
    z-index: 1;
    color: #ffffff;
    overflow: hidden;
}

/* Particles Background */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #898989, #cdcdcd);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-10vh) translateX(100px) rotate(360deg) scale(1.5);
        opacity: 0;
    }
}

/* Category Cards */
.category-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.category-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    flex: 0 0 280px;
    min-width: 280px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(137, 137, 137, 0.15), rgba(205, 205, 205, 0.08));
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #cdcdcd, #898989);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #202020;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotateY(360deg);
    background: linear-gradient(135deg, #f1edec, #cdcdcd);
}

.category-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.category-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.category-count {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(32, 32, 32, 0.6);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.category-card:hover .category-count {
    background: rgba(32, 32, 32, 0.8);
    transform: scale(1.05);
}

/* Gallery Slider Modal */
.gallery-slider-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.slider-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(32, 32, 32, 0.8);
    backdrop-filter: blur(10px);
}

.slider-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.close-slider {
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.close-slider:hover {
    color: #cdcdcd;
}

.slider-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slider-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.slider-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slider-slide img:hover {
    transform: scale(1.02);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(32, 32, 32, 0.8);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(137, 137, 137, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-btn i {
    font-size: 20px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(32, 32, 32, 0.8);
    backdrop-filter: blur(10px);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #cdcdcd;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Full Size Image Modal */
.fullsize-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
}

.fullsize-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.close-fullsize {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: #ffffff;
    cursor: pointer;
    z-index: 3001;
    transition: color 0.3s ease;
}

.close-fullsize:hover {
    color: #cdcdcd;
}

.fullsize-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #202020 0%, #404040 50%, #000000 100%);
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 205, 205, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #898989, #cdcdcd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #202020;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.contact-details a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.contact-details a:hover {
    color: #cdcdcd;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-link.linkedin:hover {
    background: linear-gradient(45deg, #898989, #cdcdcd);
    border-color: #898989;
    color: #202020;
}

.social-link.facebook:hover {
    background: linear-gradient(45deg, #898989, #cdcdcd);
    border-color: #898989;
    color: #202020;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #898989, #cdcdcd);
    border-color: #898989;
    color: #202020;
}

.social-link.behance:hover {
    background: linear-gradient(45deg, #898989, #cdcdcd);
    border-color: #898989;
    color: #202020;
}

.social-link i {
    font-size: 22px;
}

.social-link span {
    font-weight: 500;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    padding: 50px 0;
    background: #000000;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer p {
    color: #aaaaaa;
    font-size: 1rem;
}

/* Section Headers for other sections */
.about-section .section-title,
.gallery-section .section-title,
.contact-section .section-title {
    color: #ffffff;
}

.about-section .title-underline,
.gallery-section .title-underline,
.contact-section .title-underline {
    background: linear-gradient(45deg, #898989, #cdcdcd);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .category-cards {
        gap: 25px;
    }

    .category-card {
        flex: 0 0 250px;
        min-width: 250px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .particle {
        display: none;
    }

    .category-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .category-card {
        flex: none;
        width: 100%;
        max-width: 350px;
        min-width: auto;
        padding: 30px 25px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        justify-items: center;
        align-items: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero-image {
        order: -1;
        justify-self: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        width: 100%;
    }

    .stat-box {
        min-width: 100px;
        padding: 20px 15px;
        flex: 1;
        max-width: 120px;
    }

    .profile-container {
        width: 300px;
        height: 300px;
    }

    .logo-item {
        width: 40px;
        height: 40px;
    }

    .logo-img {
        width: 22px;
        height: 22px;
    }

    .skills-container {
        flex-direction: column;
    }

    .skill-item {
        flex-basis: 100%;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 15px;
        justify-content: center;
    }

    .social-link {
        padding: 15px 25px;
    }

    /* Slider Mobile Adjustments */
    .slider-header {
        padding: 15px 20px;
    }

    .slider-title {
        font-size: 1.4rem;
    }

    .close-slider {
        font-size: 30px;
    }

    .slider-slide {
        padding: 20px;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }

    .slider-btn i {
        font-size: 16px;
    }

    .fullsize-content {
        padding: 20px;
    }

    .close-fullsize {
        font-size: 40px;
        top: 15px;
        right: 20px;
    }
}

@media(max-width:992px) {
    .photoshop {
        top: 150px;
        left: 0px;
        animation: float6 6s ease-in-out infinite;
    }

    .illustrator {
        top: 149px;
        right: 0px;
        animation: float2 7s ease-in-out infinite;
    }

    .indesign {
        bottom: 125px;
        right: 20px;
        animation: float3 8s ease-in-out infinite;
    }

    .aftereffects {
        bottom: 0px;
        left: 100px;
        animation: float4 9s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 10px;
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .stat-box {
        width: 100%;
        max-width: 150px;
        height: 150px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .profile-container {
        width: 250px;
        height: 250px;
    }

    .logo-item {
        width: 35px;
        height: 35px;
    }

    .logo-img {
        width: 18px;
        height: 18px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .first-name,
    .last-name {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-title {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .category-card {
        padding: 25px 20px;
        max-width: 300px;
    }

    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .category-title {
        font-size: 1.4rem;
    }
}