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

body {
    font-family: 'Poppins', sans-serif;
    background: 
        radial-gradient(ellipse at top left, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 25%, #16213e 50%, #2d1b69 75%, #1a0a2e 100%);
    color: white;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 20, 147, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 40%, rgba(30, 144, 255, 0.2) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: rotate(1deg) scale(1.1);
        opacity: 0.6;
    }
    66% {
        transform: rotate(-1deg) scale(1.05);
        opacity: 0.7;
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 15, 0.4) 100%);
    pointer-events: none;
    z-index: -1;
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

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

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: #ff4757;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.logo a:hover {
    opacity: 0.8;
}

.logo .alex {
    color: white;
}

.logo .stark {
    color: #ff4757;
}

/* Fix logo to display on single line */
.logo {
    white-space: nowrap;
}

.hire-btn {
    background: transparent;
    border: 2px solid #ff4757;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.hire-btn:hover {
    background: #ff4757;
    transform: translateY(-2px);
}

/* Premium Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Column: Text Content */
.hero-text {
    animation: fadeInSlideLeft 1s ease-out;
}

.hero-intro {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    animation: fadeIn 1s ease-out 0.4s both;
}

.name-highlight {
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-role {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeIn 1s ease-out 0.6s both;
}

.role-accent {
    color: #ff1493;
    font-weight: 500;
}

.role-secondary {
    color: white;
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.cta-primary,
.cta-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 20, 147, 0.4);
}

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

.cta-primary:hover::before {
    left: 100%;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Right Column: Profile Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInSlideRight 1s ease-out;
}

.image-card {
    position: relative;
    width: 380px;
    height: 480px;
    animation: float 6s ease-in-out infinite;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff1493, #8a2be2, #1e90ff);
    padding: 4px;
    transform: rotate(3deg);
    box-shadow: 
        0 0 40px rgba(255, 20, 147, 0.4),
        0 20px 60px rgba(138, 43, 226, 0.2);
    animation: neonPulse 4s ease-in-out infinite;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff1493, #8a2be2, #1e90ff, #ff1493);
    border-radius: 26px;
    z-index: -1;
    animation: neonRotate 8s linear infinite;
    opacity: 0.8;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid rgba(10, 10, 15, 0.8);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(255, 20, 147, 0.4),
            0 20px 60px rgba(138, 43, 226, 0.2);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(255, 20, 147, 0.6),
            0 25px 70px rgba(138, 43, 226, 0.3);
    }
}

@keyframes neonRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(255, 20, 147, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 15, 0.3) 100%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
animation: fadeInUp 1s ease-out;
}

.hero-title {
font-size: 56px;
font-weight: 700;
color: white;
margin-bottom: 20px;
line-height: 1.1;
white-space: nowrap;
}

.section-title {
font-size: 42px;
font-weight: 700;
color: white;
margin-bottom: 30px;
position: relative;
}

.section-title::after {
content: '';
position: absolute;
left: 0;
bottom: -10px;
width: 60px;
height: 3px;
background: linear-gradient(135deg, #ff1493, #ff6b6b);
border-radius: 2px;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    border-radius: 2px;
}

.about-intro {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.accent-text {
    color: #ff1493;
    font-weight: 500;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.highlights-title {
    grid-column: 1 / -1;
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
}

.highlights-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    border-radius: 1px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 20, 147, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 20, 147, 0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.highlight-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Professional "What I Deliver" Panel - Replaces decorative elements */

.what-i-deliver {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    max-width: 400px;
    width: 100%;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 20, 147, 0.1);
}

.what-i-deliver h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.what-i-deliver h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    border-radius: 1px;
}

.deliver-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

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

.deliver-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 20, 147, 0.2);
    transform: translateX(5px);
}

.deliver-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.deliver-item:hover .deliver-icon {
    transform: scale(1.1);
}

.deliver-content h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.deliver-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Performance optimized - no infinite animations */
@media (prefers-reduced-motion: reduce) {
    .deliver-item,
    .deliver-icon {
        transition: none;
    }
    
    .deliver-item:hover {
        transform: none;
    }
    
    .deliver-icon:hover {
        transform: none;
    }
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse at 70% 30%, rgba(255, 20, 147, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(10, 10, 15, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 15, 0.3) 100%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05), rgba(138, 43, 226, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 20, 147, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 20, 147, 0.2),
        0 0 60px rgba(138, 43, 226, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff1493, #8a2be2, #1e90ff, #ff1493);
    border-radius: 22px;
    z-index: -1;
    animation: neonRotate 12s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.service-card:hover .service-icon::before {
    opacity: 0.8;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #ff1493;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Fade Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Portfolio Carousel Styles */
.portfolio-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.portfolio-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.portfolio-grid {
    display: flex;
    flex-direction: row;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    padding: 0 60px;
    overflow-x: visible;
}

.portfolio-grid .portfolio-item {
    min-width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.portfolio-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
}

.portfolio-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 8px 30px rgba(255, 20, 147, 0.5),
        0 0 30px rgba(138, 43, 226, 0.3);
}

.portfolio-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.portfolio-arrow-left {
    left: 10px;
}

.portfolio-arrow-right {
    right: 10px;
}

.portfolio-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.portfolio-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 20, 147, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-dot:hover {
    background: rgba(255, 20, 147, 0.5);
    transform: scale(1.2);
}

.portfolio-dot.active {
    background: #ff1493;
    border-color: #ff1493;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

/* Mobile Responsive - Carousel styles only */
@media (max-width: 768px) {
    .portfolio-grid {
        padding: 0 50px;
        gap: 20px;
        flex-direction: row;
    }
    
    .portfolio-grid .portfolio-item {
        min-width: 280px;
    }
    
    .portfolio-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .portfolio-arrow-left {
        left: 5px;
    }
    
    .portfolio-arrow-right {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        padding: 0 45px;
        gap: 15px;
        flex-direction: row;
    }
    
    .portfolio-grid .portfolio-item {
        min-width: 250px;
    }
    
    .portfolio-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .portfolio-arrow-left {
        left: 0;
    }
    
    .portfolio-arrow-right {
        right: 0;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: rgba(15, 52, 96, 0.1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    position: relative;
}

.portfolio-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    border-radius: 2px;
}

/* Old portfolio grid styles - REMOVED for carousel */

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 20, 147, 0.2);
    border-color: rgba(255, 20, 147, 0.3);
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

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

.portfolio-item:hover .portfolio-thumbnail {
    transform: scale(1.05);
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .zoom-overlay {
    opacity: 1;
}

.zoom-overlay i {
    font-size: 24px;
    color: white;
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
    transition: all 0.3s ease;
}

.zoom-overlay:hover i {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
}

.portfolio-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portfolio-content h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 20px;
}

.portfolio-actions {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.portfolio-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
}

.portfolio-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
    background: linear-gradient(135deg, #ff6b6b, #ff1493);
}

.portfolio-link i {
    font-size: 16px;
}

/* Zoom Modal Styles */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: 50px auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    background: rgba(26, 26, 46, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff1493;
}

#modalImage {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
}

#modalTitle {
    color: white;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

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

/* Contact Section */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff4757;
}

.contact-info p {
    color: #b8bcc8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.contact-item i {
    color: #ff4757;
    width: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin-left: 5px;
}

.char-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-top: 4px;
    margin-left: 5px;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05), rgba(138, 43, 226, 0.05));
    border-radius: 20px;
    pointer-events: none;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #b8bcc8;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff1493;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.3),
        inset 0 0 10px rgba(255, 20, 147, 0.1);
}

.contact-form button {
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(255, 20, 147, 0.4),
        0 0 30px rgba(138, 43, 226, 0.3);
}

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

/* CAPTCHA Styles */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(10px);
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

#captchaQuestion {
    color: white;
    font-weight: 500;
    font-size: 16px;
    background: rgba(255, 20, 147, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    min-width: 80px;
    text-align: center;
    letter-spacing: 1px;
}

#captchaAnswer {
    width: 80px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    color: white;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

#captchaAnswer:focus {
    outline: none;
    border-color: #ff1493;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.3);
}

#captchaAnswer::placeholder {
    color: #b8bcc8;
}

.refresh-captcha {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.refresh-captcha:hover {
    background: rgba(255, 20, 147, 0.2);
    border-color: #ff1493;
    transform: rotate(180deg);
}

/* CAPTCHA Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Footer */
footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 30px 0;
    text-align: center;
    color: #b8bcc8;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 
        0 0 20px rgba(255, 20, 147, 0.4),
        0 10px 30px rgba(138, 43, 226, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff1493, #8a2be2, #1e90ff, #ff1493);
    border-radius: 50%;
    z-index: -1;
    animation: neonRotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 30px rgba(255, 20, 147, 0.6),
        0 15px 40px rgba(138, 43, 226, 0.3);
}

.scroll-to-top:hover::before {
    opacity: 0.8;
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:active {
    transform: translateY(-1px);
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover::before {
    opacity: 1;
}

/* Touch device optimizations - disable hover effects */
@media (hover: none) and (pointer: coarse) {
    .cta-primary:hover,
    .cta-secondary:hover,
    .hire-btn:hover,
    .portfolio-item:hover,
    .service-card:hover,
    .highlight-item:hover,
    .deliver-item:hover,
    .whatsapp-button:hover {
        transform: none !important;
        box-shadow: none !important;
        background: initial !important;
    }
    
    .portfolio-item:hover .portfolio-image-wrapper img,
    .service-card:hover .service-icon,
    .deliver-item:hover .deliver-icon {
        transform: none !important;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Disable resource-intensive animations on mobile */
    body::before {
        animation: none !important;
        background: 
            radial-gradient(ellipse at 20% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 20%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
    }
    
    /* Disable floating animation on mobile */
    .image-card {
        animation: none !important;
    }
    
    /* Disable neon pulse animation on mobile */
    .image-wrapper {
        animation: none !important;
        box-shadow: 
            0 0 20px rgba(255, 20, 147, 0.3),
            0 10px 30px rgba(138, 43, 226, 0.15);
    }
    
    /* Disable neon rotate animation on mobile */
    .image-wrapper::before {
        animation: none !important;
    }
    
    /* Disable service card animations on mobile */
    .service-card::before {
        animation: none !important;
    }
    
    /* Simplify backdrop filters for mobile */
    header {
        backdrop-filter: none !important;
        background: rgba(26, 26, 46, 0.98) !important;
    }
    
    .cta-secondary {
        backdrop-filter: none !important;
    }
    
    .highlight-item,
    .what-i-deliver,
    .service-card {
        backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }
    
    /* Simplify shadows for mobile */
    .cta-primary {
        box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3) !important;
    }
    
    .cta-primary:hover {
        box-shadow: 0 6px 16px rgba(255, 20, 147, 0.4) !important;
    }
    
    .image-wrapper {
        box-shadow: 
            0 0 20px rgba(255, 20, 147, 0.3),
            0 10px 30px rgba(138, 43, 226, 0.15) !important;
    }
    
    .highlight-item:hover,
    .what-i-deliver,
    .service-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Optimize transitions for mobile */
    * {
        transition-duration: 0.2s !important;
    }
    
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
        overflow: visible;
    }
    
    .hero-container {
        padding-top: 20px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
        padding-top: 80px !important;
    }
    
    .hero-text {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        animation: fadeIn 1s ease-out;
        padding-top: 30px !important;
    }
    
    .hero-image {
        order: 2;
        animation: fadeIn 1s ease-out;
        padding: 20px 0;
        overflow: visible;
    }
    
    .image-card {
        width: 280px;
        height: 350px;
        transform: scale(0.9);
    }
    
    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    
    /* Add welcome text before hero title */
    .hero-intro {
        font-size: 18px !important;
        font-weight: 400 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        margin-bottom: 0px !important;
        margin-top: 40px !important;
        padding-top: 0 !important;
        animation: fadeIn 1s ease-out 0.2s both;
        order: 1;
        text-transform: none !important;
        letter-spacing: normal !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.2;
        white-space: normal;
        order: 2;
        margin-top: 0px !important;
        padding-top: 0 !important;
        margin-bottom: 5px !important;
    }
    
    .hero-role {
        font-size: 20px;
        order: 3;
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 10px !important;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        order: 4;
        animation: fadeIn 1s ease-out 0.8s both;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-cta .cta-primary,
    .hero-cta .cta-secondary {
        width: auto;
        justify-content: center;
        min-width: 160px;
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-button {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* About Section Responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlights-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .what-i-deliver {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 36px;
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Services Section Responsive */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* Contact Section Responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a {
        font-size: 14px;
    }
    
    .hire-btn {
        order: 2;
        margin-left: 0;
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-container {
        padding-top: 10px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
        padding-top: 50px !important;
    }
    
    .hero-text {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        animation: fadeIn 1s ease-out;
        padding-top: 20px !important;
    }
    
    .hero-intro {
        font-size: 16px !important;
        font-weight: 400 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        text-transform: none !important;
        letter-spacing: normal !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 30px !important;
        padding-top: 0 !important;
        margin-bottom: 0px !important;
    }
    
    .hero-title {
        font-size: 36px;
        margin-top: 0px !important;
        padding-top: 0 !important;
        margin-bottom: 5px !important;
    }
    
    .hero-role {
        font-size: 18px;
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 10px !important;
    }
    
    .image-card {
        width: 240px;
        height: 300px;
        transform: scale(0.85);
    }
    
    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    
    .hero-cta .cta-primary,
    .hero-cta .cta-secondary {
        min-width: 140px;
        font-size: 14px;
    }
    
    .hero-cta {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .what-i-deliver {
        padding: 25px 15px;
    }
    
    .what-i-deliver h3 {
        font-size: 20px;
    }
    
    .highlights-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .deliver-item {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .deliver-icon {
        width: 35px;
        height: 35px;
    }
    
    .deliver-content h4 {
        font-size: 15px;
    }
    
    .deliver-content p {
        font-size: 13px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    nav ul {
        gap: 10px;
    }
    
    nav a {
        font-size: 12px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}
