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

/* Custom Cursor Styles */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: cursorPulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
}

.cursor-outline {
    display: none;
}

.custom-cursor.hover .cursor-dot {
    transform: translate(-50%, -50%) scale(1.3);
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.9);
}

.custom-cursor.click .cursor-dot {
    transform: translate(-50%, -50%) scale(0.7);
    background: linear-gradient(135deg, #047857, #065f46);
}

@keyframes cursorPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.9;
    }
}


/* Hide default cursor */
* {
    cursor: none !important;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-scale.animate {
    opacity: 1;
    transform: scale(1);
}

.scroll-animate-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-rotate.animate {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Stagger animations */
.scroll-animate-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-stagger.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-stagger:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate-stagger:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate-stagger:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate-stagger:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate-stagger:nth-child(5) { transition-delay: 0.5s; }
.scroll-animate-stagger:nth-child(6) { transition-delay: 0.6s; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: #000;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 81, 63, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(30, 81, 63, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 40% 60%, rgba(30, 81, 63, 0.20) 0%, transparent 60%),
        radial-gradient(circle at 60% 30%, rgba(30, 81, 63, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 10% 70%, rgba(30, 81, 63, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(30, 81, 63, 0.10) 0%, transparent 50%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 20%, rgba(30, 81, 63, 0.08) 50%, transparent 80%),
        linear-gradient(-45deg, transparent 20%, rgba(30, 81, 63, 0.05) 50%, transparent 80%),
        linear-gradient(90deg, transparent 30%, rgba(30, 81, 63, 0.03) 50%, transparent 70%);
    z-index: -1;
}


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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #0F3A2A;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: none;
}

.nav-logo-text {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    z-index: 1001;
    line-height: 1;
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.logo-line-1 {
    font-size: 1.54rem;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.logo-line-2 {
    font-size: 1.54rem;
    font-weight: 700;
    color: #1E513F;
    letter-spacing: -1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

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

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
}

.nav-link:hover,
.nav-link.active {
    color: #1E513F;
    background: rgba(45, 90, 71, 0.2);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #1E513F;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bar {
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.geo-shape {
    position: absolute;
    background: rgba(30, 81, 63, 0.1);
    animation: geometricFloat 15s ease-in-out infinite;
}

.geo-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0s;
}

.geo-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 5%;
    border-radius: 50%;
    animation-delay: -5s;
}

.geo-3 {
    width: 100px;
    height: 100px;
    top: 25%;
    right: 12%;
    transform: rotate(45deg);
    animation-delay: -10s;
}

.geo-4 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 8%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: -7s;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.hero-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shape {
    position: absolute;
    background: rgba(30, 81, 63, 0.1);
    border: 2px solid rgba(30, 81, 63, 0.3);
    animation: heroShapeFloat 8s ease-in-out infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.hero-shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    border-radius: 50%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: -2s;
}

.hero-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    transform: rotate(45deg);
    animation-delay: -4s;
}

.hero-code {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(30, 81, 63, 0.3);
    border-radius: 16px;
    padding: 30px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: codeGlow 3s ease-in-out infinite;
    will-change: box-shadow;
}

.code-line {
    display: block;
    margin-bottom: 8px;
}

.code-line.indent {
    padding-left: 20px;
}

.code-keyword {
    color: #ff6b6b;
    font-weight: bold;
}

.code-variable {
    color: #4ecdc4;
}

.code-operator {
    color: #ffe66d;
}

.code-string {
    color: #95e1d3;
}

.code-function {
    color: #a8e6cf;
}

.code-bracket {
    color: #ffe66d;
}

.typing {
    opacity: 0;
    animation: typeIn 0.8s ease-in-out forwards;
    will-change: opacity, transform;
}

.typing:nth-child(1) { animation-delay: 0.5s; }
.typing:nth-child(2) { animation-delay: 1.2s; }
.typing:nth-child(3) { animation-delay: 1.8s; }
.typing:nth-child(4) { animation-delay: 2.4s; }

@keyframes typeIn {
    0% { 
        opacity: 0; 
        transform: translate3d(-10px, 0, 0); 
    }
    100% { 
        opacity: 1; 
        transform: translate3d(0, 0, 0); 
    }
}

@keyframes heroShapeFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate3d(0, -10px, 0);
        opacity: 0.5;
    }
}

@keyframes codeGlow {
    0%, 100% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 20px 40px rgba(30, 81, 63, 0.15);
    }
}



.hero-right {
    display: flex;
    align-items: center;
}

.hero-text-content {
    width: 100%;
}

.hero-greeting {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.greeting-line {
    width: 60px;
    height: 2px;
    background: #1E513F;
}

.greeting-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-name {
    margin: 0 0 40px 0;
    line-height: 0.9;
}

.name-line-1 {
    display: block;
    font-size: 6rem;
    font-weight: 900;
    color: white;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.name-line-2 {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    color: #1E513F;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-description {
    margin-bottom: 50px;
}

.desc-main {
    font-size: 1.4rem;
    color: white;
    margin: 0 0 10px 0;
    font-weight: 400;
}

.desc-sub {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1E513F;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.action-btn {
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.action-btn.primary {
    background: #1E513F;
    color: white;
    border: 2px solid #1E513F;
}

.action-btn.primary:hover {
    background: transparent;
    color: #1E513F;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 81, 63, 0.3);
}

.action-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-line {
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.action-btn.primary:hover .btn-line {
    width: 80%;
}


/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #1E513F;
    color: white;
    border: 2px solid #1E513F;
}

.btn-primary:hover {
    background: transparent;
    color: #1E513F;
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 8px 25px rgba(30, 81, 63, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translate3d(0, -2px, 0);
}

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

@keyframes geometricFloat {
    0%, 100% { 
        transform: translate3d(0, 0, 0);
        opacity: 0.1;
    }
    50% { 
        transform: translate3d(0, -15px, 0);
        opacity: 0.2;
    }
}

@keyframes gridMove {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(25px, 25px, 0); }
}



@keyframes pulse {
    0%, 100% { transform: scale3d(1, 1, 1); }
    50% { transform: scale3d(1.05, 1.05, 1); }
}

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

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

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.125rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #111;
    border-top: 1px solid #1E513F;
    border-bottom: 1px solid #1E513F;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    min-height: 700px;
}

.about-text {
    padding-right: 40px;
}

.about-intro {
    margin-bottom: 40px;
}

.about-name {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -2px;
}

.about-role {
    font-size: 1.4rem;
    color: #1E513F;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-description {
    font-size: 1.1rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 25px;
}


.tech-scroll-container {
    margin: 40px 0 0 0;
    height: 80px;
    position: relative;
    overflow: hidden;
}

.tech-scroll-track {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
    height: 100%;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: transparent;
    border-radius: 30px;
    border: 1px solid rgba(30, 81, 63, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tech-item:hover {
    background: rgba(30, 81, 63, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 81, 63, 0.2);
}

.tech-item i {
    font-size: 1.8rem;
    color: #1E513F;
}

.tech-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fade effect on edges */
.tech-scroll-container::before,
.tech-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.tech-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #111 0%, #111 50%, transparent 100%);
}

.tech-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #111 0%, #111 50%, transparent 100%);
}

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

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
}

.about-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    object-position: center bottom;
    transition: transform 0.6s ease;
}

.about-photo:hover {
    transform: scale(1.05);
}

/* Portfolio Main Section */
.portfolio-main {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-top: 1px solid #1E513F;
    border-bottom: 1px solid #1E513F;
    position: relative;
    overflow: hidden;
}

.portfolio-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 81, 63, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 81, 63, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.portfolio-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.portfolio-item-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(30, 81, 63, 0.2);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    will-change: transform;
}

.portfolio-item-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 81, 63, 0.4);
    border-color: rgba(30, 81, 63, 0.5);
}

.portfolio-link-main {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.portfolio-video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #000;
}

.portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    transform-origin: center center;
}

.portfolio-item-main:hover .portfolio-video {
    transform: scale(1.08);
}

.portfolio-overlay-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 81, 63, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
    will-change: opacity;
}

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

.portfolio-overlay-content {
    text-align: center;
    padding: 40px;
    color: white;
}

.portfolio-overlay-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.portfolio-overlay-content p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.6;
}

.portfolio-link-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 12px 24px;
    background: rgba(30, 81, 63, 0.3);
    border: 2px solid rgba(30, 81, 63, 0.6);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    will-change: transform;
}

.portfolio-item-main:hover .portfolio-link-text {
    transform: translateX(8px);
    background: rgba(30, 81, 63, 0.5);
    box-shadow: 0 4px 20px rgba(30, 81, 63, 0.4);
    border-color: rgba(30, 81, 63, 0.8);
}

.portfolio-link-text i {
    transition: transform 0.3s ease;
}

.portfolio-item-main:hover .portfolio-link-text i {
    transform: translateX(5px);
}

.portfolio-info {
    padding: 30px;
    background: rgba(17, 17, 17, 0.6);
}

.portfolio-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.portfolio-info p {
    font-size: 1rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.6;
}

.portfolio-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-features span {
    padding: 6px 14px;
    background: rgba(54, 150, 116, 0.15);
    border: 1px solid rgba(54, 150, 116, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #369674;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-item-main:hover .portfolio-features span {
    background: rgba(54, 150, 116, 0.25);
    border-color: rgba(54, 150, 116, 0.5);
    color: #369674;
    transform: translateY(-2px);
}

.portfolio-cta-main {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(30, 81, 63, 0.3);
}

.portfolio-cta-main p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

@media (max-width: 1024px) {
    .portfolio-grid-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portfolio-video-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .portfolio-main {
        padding: 80px 0;
    }
    
    .portfolio-grid-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-video-wrapper {
        height: 300px;
    }
    
    .portfolio-overlay-content {
        padding: 30px 20px;
    }
    
    .portfolio-overlay-content h3 {
        font-size: 1.5rem;
    }
    
    .portfolio-info {
        padding: 25px;
    }
}

/* Portfolio Preview Section - Keep for backward compatibility */
.portfolio-preview {
    padding: 80px 0;
    background: #111;
    border-top: 1px solid #1E513F;
    border-bottom: 1px solid #1E513F;
}

.portfolio-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.portfolio-text {
    padding-right: 40px;
}

.portfolio-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.portfolio-description {
    font-size: 1.2rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 40px;
}

.code-scroll-container {
    margin: 40px 0 0 0;
    height: 80px;
    position: relative;
    overflow: hidden;
}

.code-scroll-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scrollCode 30s linear infinite;
    white-space: nowrap;
    height: 100%;
}

.code-snippet {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: transparent;
    border-radius: 8px;
    border: 1px solid rgba(30, 81, 63, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

.code-snippet:hover {
    background: rgba(30, 81, 63, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 81, 63, 0.2);
}

.code-keyword { color: #ff79c6; font-weight: bold; }
.code-variable { color: #8be9fd; }
.code-operator { color: #f8f8f2; }
.code-bracket { color: #f8f8f2; }
.code-property { color: #50fa7b; }
.code-number { color: #bd93f9; }
.code-string { color: #f1fa8c; }
.code-function { color: #8be9fd; font-weight: bold; }

/* Fade effect on edges */
.code-scroll-container::before,
.code-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.code-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #111 0%, #111 50%, transparent 100%);
}

.code-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #111 0%, #111 50%, transparent 100%);
}

@keyframes scrollCode {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.portfolio-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-btn {
    display: inline-block;
    padding: 20px 40px;
    background: #1E513F;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 81, 63, 0.4);
    text-align: center;
    letter-spacing: 1px;
}

.portfolio-btn:hover {
    background: #2d5a47;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 81, 63, 0.5);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #111;
    border-top: 1px solid #1E513F;
    border-bottom: 1px solid #1E513F;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #1E513F;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border-color: #2A6B5A;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    transform: scale(1.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 90, 71, 0.2);
    background: #222;
    border-color: #2A6B5A;
}

.service-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #1E513F;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #1E513F;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(45, 90, 71, 0.3);
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-content p {
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

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


.services-cta {
    text-align: center;
    background: #1a1a1a;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid #1E513F;
}

.services-cta h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Skills Section */
.skills {
    padding: 100px 0;
    background: #000;
    border-top: 1px solid #1E513F;
    border-bottom: 1px solid #1E513F;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-name {
    display: block;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.skill-progress {
    height: 100%;
    background: #1E513F;
    border-radius: 4px;
    width: 0;
    transition: width 2s ease;
    box-shadow: 0 2px 8px rgba(45, 90, 71, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #111;
    border-top: 1px solid #1E513F;
    border-bottom: 1px solid #1E513F;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 81, 63, 0.8);
    border: 2px solid rgba(30, 81, 63, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: rgba(30, 81, 63, 1);
    border-color: #1E513F;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(30, 81, 63, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.carousel-btn:hover i {
    transform: scale(1.1);
}

/* Responsive carousel buttons */
@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-btn i {
        font-size: 1rem;
    }
}

.testimonial-card {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid #1E513F;
    color: white;
    text-align: center;
    display: none;
    position: relative;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
}

.quote-accent {
    width: 12px;
    height: 12px;
    background: #1E513F;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: 20%;
    box-shadow: 0 0 10px rgba(45, 90, 71, 0.5);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(45, 90, 71, 0.3);
}

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

.author-avatar i {
    width: 100%;
    height: 100%;
    background: #1E513F;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.author-info h4 {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.author-info span {
    color: #1E513F;
    font-size: 1rem;
    font-weight: 500;
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pagination-dot.active {
    background: #1E513F;
    box-shadow: 0 0 10px rgba(45, 90, 71, 0.5);
}

.pagination-dot.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #1E513F;
    border-radius: 2px;
}

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

/* Contact Section */
.contact {
    padding: 100px 0 40px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-top: 1px solid #1E513F;
    position: relative;
    overflow: visible;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 81, 63, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 81, 63, 0.03) 0%, transparent 50%);
    z-index: 1;
}

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

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(30, 81, 63, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1E513F, #2d5a47, #1E513F);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    background: rgba(30, 81, 63, 0.1);
    border-color: rgba(30, 81, 63, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E513F, #2d5a47);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(30, 81, 63, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(30, 81, 63, 0.4);
}

.contact-details h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-details p {
    color: white;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-link {
    color: #1E513F;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.contact-link:hover {
    color: #2d5a47;
    transform: translateX(5px);
}

.contact-status {
    background: rgba(30, 81, 63, 0.2);
    color: #1E513F;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.whatsapp-button-contact {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(30, 81, 63, 0.2);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 0;
}

.whatsapp-button-contact svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;
    min-height: 24px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.whatsapp-button-contact svg path {
    fill: #25D366 !important;
}

.whatsapp-button-contact:hover {
    background: rgba(30, 81, 63, 0.15);
    border-color: rgba(30, 81, 63, 0.4);
    transform: translateY(-2px);
}

.whatsapp-button-contact span {
    color: white;
}

.contact-form-container {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(30, 81, 63, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-header p {
    color: white;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(17, 17, 17, 0.8);
    border: 2px solid rgba(30, 81, 63, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E513F;
    box-shadow: 0 0 0 3px rgba(30, 81, 63, 0.1);
    background: rgba(17, 17, 17, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.form-group label {
    position: absolute;
    top: -8px;
    left: 15px;
    background: rgba(26, 26, 26, 0.9);
    color: #1E513F;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0 8px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    opacity: 1;
    transform: translateY(0);
}

.btn.btn-primary {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #1E513F, #2d5a47);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(30, 81, 63, 0.3);
}

.btn.btn-primary:hover {
    background: linear-gradient(135deg, #2d5a47, #1E513F);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(30, 81, 63, 0.4);
}

.social-links {
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    padding: 30px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.social-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(30, 81, 63, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
    pointer-events: auto;
    z-index: 100;
    position: relative;
}

.social-link:hover {
    background: rgba(30, 81, 63, 0.1);
    border-color: #1E513F;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 1.2rem;
    color: #1E513F;
}

.social-link span {
    font-size: 0.9rem;
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 0 35px 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .whatsapp-button-contact {
        padding: 16px 24px;
        font-size: 0.95rem;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .social-grid {
        gap: 20px;
    }
    
    .social-links {
        margin-top: 30px;
        margin-bottom: 15px;
        padding: 25px 0;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0 25px 0;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px;
    }
    
    .social-links {
        margin-top: 25px;
        margin-bottom: 10px;
        padding: 20px 0;
    }
    
    .social-grid {
        gap: 15px;
    }
}

/* Portfolio Page Styles */
.portfolio-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.portfolio-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.portfolio-filter {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.portfolio-grid-section {
    padding: 80px 0;
    background: #f9fafb;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #9ca3af;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-actions {
    display: flex;
    gap: 1rem;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.portfolio-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: white;
    padding: 60px 0 30px 0;
    border-top: 1px solid #1E513F;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 81, 63, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 81, 63, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(135deg, #1E513F, #2d5a47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.footer-tagline {
    margin-top: 20px;
    padding: 20px;
    background: rgba(30, 81, 63, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(30, 81, 63, 0.2);
}

.footer-tagline p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    text-align: center;
    font-style: italic;
}

.footer-shapes {
    margin-bottom: 40px;
    height: 80px;
    position: relative;
    overflow: visible;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(30, 81, 63, 0.3), rgba(30, 81, 63, 0.1));
    animation: floatShapes 8s ease-in-out infinite;
}

.shape-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, #1E513F, rgba(30, 81, 63, 0.3));
}

.shape-2 {
    width: 28px;
    height: 28px;
    top: 60%;
    left: 20%;
    animation-delay: 1s;
    background: linear-gradient(45deg, rgba(30, 81, 63, 0.4), rgba(30, 81, 63, 0.1));
    border-radius: 8px;
}

.shape-3 {
    width: 25px;
    height: 25px;
    top: 30%;
    left: 50%;
    animation-delay: 2s;
    background: linear-gradient(45deg, rgba(30, 81, 63, 0.2), rgba(30, 81, 63, 0.4));
    border-radius: 0;
    transform: rotate(45deg);
}

.shape-4 {
    width: 32px;
    height: 32px;
    top: 10%;
    left: 70%;
    animation-delay: 3s;
    background: linear-gradient(45deg, rgba(30, 81, 63, 0.3), rgba(30, 81, 63, 0.2));
    border-radius: 50%;
}

.shape-5 {
    width: 18px;
    height: 18px;
    top: 70%;
    left: 80%;
    animation-delay: 4s;
    background: linear-gradient(45deg, #1E513F, rgba(30, 81, 63, 0.3));
    border-radius: 50%;
}

.shape-6 {
    width: 35px;
    height: 35px;
    top: 40%;
    left: 90%;
    animation-delay: 5s;
    background: linear-gradient(45deg, rgba(30, 81, 63, 0.1), rgba(30, 81, 63, 0.4));
    border-radius: 12px;
}

@keyframes floatShapes {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Text highlighting */
.highlight {
    color: #369674;
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(54, 150, 116, 0.5);
}

.highlight-tech {
    color: #369674;
    font-weight: 600;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 0.95em;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(54, 150, 116, 0.5);
}

/* Enhanced highlighting for better visibility */
.highlight:hover {
    color: #3fa882;
    text-shadow: 0 0 12px rgba(54, 150, 116, 0.7);
}

.highlight-tech:hover {
    color: #3fa882;
    text-shadow: 0 0 12px rgba(54, 150, 116, 0.7);
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.tag {
    background: rgba(30, 81, 63, 0.1);
    color: #1E513F;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(30, 81, 63, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(30, 81, 63, 0.2);
    transform: translateY(-1px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #1E513F, #2d5a47);
    border-radius: 1px;
}

.footer-section a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #1E513F;
    transform: translateX(5px);
}

.footer-section a i {
    width: 16px;
    color: #1E513F;
    font-size: 0.9rem;
}

.social-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    font-size: 0.95rem;
}

.social-footer:hover {
    color: #1E513F;
    transform: translateX(5px);
}

.social-footer i {
    width: 16px;
    color: #1E513F;
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(30, 81, 63, 0.2);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #1E513F;
}

/* Privacy Policy Styles */
.privacy-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.privacy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 81, 63, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(30, 81, 63, 0.1) 0%, transparent 60%);
    z-index: 1;
}

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

.privacy-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1E513F, #2d5a47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.privacy-content {
    padding: 80px 0;
    background: #000;
}

.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-text {
    color: white;
    line-height: 1.8;
}

.privacy-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1E513F;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(30, 81, 63, 0.3);
}

.privacy-text h2:first-child {
    margin-top: 0;
}

.privacy-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.privacy-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-text li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.privacy-text li::before {
    content: '•';
    color: #1E513F;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

/* Privacy Policy Responsive */
@media (max-width: 768px) {
    .privacy-main-title {
        font-size: 2.5rem;
    }
    
    .privacy-subtitle {
        font-size: 1rem;
    }
    
    .privacy-text h2 {
        font-size: 1.5rem;
    }
    
    .privacy-text p,
    .privacy-text li {
        font-size: 1rem;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
}

/* Terms of Service Styles */
.terms-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.terms-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 81, 63, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(30, 81, 63, 0.1) 0%, transparent 60%);
    z-index: 1;
}

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

.terms-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1E513F, #2d5a47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.terms-content {
    padding: 80px 0;
    background: #000;
}

.terms-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.terms-text {
    color: white;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1E513F;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(30, 81, 63, 0.3);
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.terms-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.terms-text li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.terms-text li::before {
    content: '•';
    color: #1E513F;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

/* Terms of Service Responsive */
@media (max-width: 768px) {
    .terms-main-title {
        font-size: 2.5rem;
    }
    
    .terms-subtitle {
        font-size: 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.5rem;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-content {
        padding: 60px 0;
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px 0;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-shapes {
        height: 70px;
        margin-bottom: 35px;
    }
    
    .footer-tagline {
        margin-top: 15px;
        padding: 15px;
    }
    
    .footer-tagline p {
        font-size: 0.85rem;
    }
    
    .shape-1 { width: 18px; height: 18px; }
    .shape-2 { width: 25px; height: 25px; }
    .shape-3 { width: 22px; height: 22px; }
    .shape-4 { width: 28px; height: 28px; }
    .shape-5 { width: 16px; height: 16px; }
    .shape-6 { width: 30px; height: 30px; }
    
    .highlight {
        font-size: 0.95em;
    }
    
    .highlight-tech {
        font-size: 0.9em;
    }
    
    .footer-tags {
        gap: 6px;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-shapes {
        height: 60px;
        margin-bottom: 30px;
    }
    
    .footer-tagline {
        margin-top: 10px;
        padding: 12px;
    }
    
    .footer-tagline p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .shape-1 { width: 16px; height: 16px; }
    .shape-2 { width: 22px; height: 22px; }
    .shape-3 { width: 20px; height: 20px; }
    .shape-4 { width: 26px; height: 26px; }
    .shape-5 { width: 14px; height: 14px; }
    .shape-6 { width: 28px; height: 28px; }
    
    .highlight {
        font-size: 0.9em;
    }
    
    .highlight-tech {
        font-size: 0.85em;
    }
    
    .footer-tags {
        gap: 5px;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* Language Switcher Styles - Home page version */
.lang-switcher-home {
    position: fixed;
    top: 17px;
    right: 20px;
    z-index: 99999;
    display: flex;
    gap: 4px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 4px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.lang-btn-home {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-btn-home:hover {
    color: #fff;
    background: rgba(30, 81, 63, 0.3);
}

.lang-btn-home.active {
    background: #1E513F;
    color: #fff;
    box-shadow: 0 2px 8px rgba(30, 81, 63, 0.5);
}

/* Original fixed switcher for other pages */
.lang-switcher-fixed {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 4px;
    border: 1px solid rgba(30, 81, 63, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Language transition effects */
[data-pl], [data-en] {
    transition: all 0.4s ease-in-out;
}

/* Smooth language switching animation */
.language-transition {
    animation: languageFadeIn 0.4s ease-in-out;
}

@keyframes languageFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-btn-fixed {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 40px;
    text-align: center;
    position: relative;
    z-index: 100000;
    pointer-events: auto;
    overflow: hidden;
}

.lang-btn-fixed::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;
}

.lang-btn-fixed:hover::before {
    left: 100%;
}

.lang-btn-fixed:not(.active) {
    opacity: 0.6;
}

.lang-btn-fixed:hover {
    opacity: 1;
    background: rgba(30, 81, 63, 0.2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(30, 81, 63, 0.2);
}

.lang-btn-fixed.active {
    background: #1E513F;
    color: #fff;
    box-shadow: 0 4px 16px rgba(30, 81, 63, 0.4);
    transform: scale(1.05);
    animation: activePulse 2s ease-in-out infinite;
}

.lang-btn-fixed.active:hover {
    background: #2a6b4f;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 81, 63, 0.5);
    animation: none;
}

@keyframes activePulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(30, 81, 63, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(30, 81, 63, 0.6);
    }
}

/* Mobile responsive for language switcher */
@media (max-width: 768px) {
    .lang-switcher-home {
        top: 15px;
        right: 15px;
        padding: 3px;
    }
    
    .lang-btn-home {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .lang-switcher-fixed {
        top: 15px;
        right: 15px;
        gap: 6px;
        padding: 3px;
    }
    
    .lang-btn-fixed {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 35px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    .nav-logo {
        display: block;
        margin-left: 10px;
    }

    .hamburger {
        display: flex;
        order: 2;
    }
    
    .nav-logo-text {
        order: 1;
        gap: 6px;
        position: fixed;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .logo-line-1 {
        font-size: 1.26rem;
    }
    
    .logo-line-2 {
        font-size: 1.26rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        z-index: 1000;
        margin: 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu .nav-link {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.3rem;
        font-weight: 500;
        padding: 1.5rem 2rem;
        display: block;
        transition: all 0.3s ease;
        border-radius: 0;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.15), transparent);
        color: #10b981;
        transform: translateX(10px);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-avatar-container {
        width: 280px;
        height: 280px;
    }

    .hero-avatar {
        width: 280px;
        height: 280px;
    }

    .avatar-ring {
        width: 310px;
        height: 310px;
        top: -15px;
        left: -15px;
    }

    .avatar-glow {
        width: 340px;
        height: 340px;
        top: -30px;
        left: -30px;
    }

    .badge {
        position: relative;
        margin: 10px;
        display: inline-block;
    }

    .badge-1, .badge-2, .badge-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .portfolio-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Responsive Design */
@media (max-width: 1200px) {
    .name-line-1 {
        font-size: 5rem;
    }
    
    .name-line-2 {
        font-size: 4rem;
    }
    
    .hero-visual {
        height: 500px;
    }
    
    .hero-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
    }
    
    .name-line-1 {
        font-size: 4rem;
    }
    
    .name-line-2 {
        font-size: 3rem;
    }
    
    .desc-main {
        font-size: 1.2rem;
    }
    
    .desc-sub {
        font-size: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-visual {
        height: 400px;
        margin: 0 auto;
    }
    
    .hero-code {
        font-size: 1rem;
        padding: 25px;
    }
    
    
}

@media (max-width: 480px) {
    .name-line-1 {
        font-size: 3rem;
    }
    
    .name-line-2 {
        font-size: 2.5rem;
    }
    
    .desc-main {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .hero-code {
        font-size: 0.9rem;
        padding: 20px;
    }
    
}

/* About Section Responsive */
@media (max-width: 1200px) {
    .about-content {
        gap: 60px;
        grid-template-columns: 1fr 0.8fr;
    }
    
    .about-name {
        font-size: 3.5rem;
    }
    
    .image-container {
        max-width: 500px;
        height: 600px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-name {
        font-size: 3rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .tech-scroll-container {
        height: 70px;
        margin: 40px 0 0 0;
    }
    
    .tech-scroll-track {
        gap: 40px;
    }
    
    .tech-item {
        padding: 12px 20px;
        gap: 12px;
    }
    
    .tech-item i {
        font-size: 1.5rem;
    }
    
    .tech-item span {
        font-size: 0.9rem;
    }
    
    .tech-scroll-container::before,
    .tech-scroll-container::after {
        width: 100px;
    }
    
    .image-container {
        max-width: 400px;
        height: 500px;
    }
    
}

@media (max-width: 480px) {
    .about {
        padding: 60px 0;
    }
    
    .about-name {
        font-size: 2.5rem;
    }
    
    .about-role {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .tech-scroll-container {
        height: 60px;
        margin: 30px 0 0 0;
    }
    
    .tech-scroll-track {
        gap: 30px;
    }
    
    .tech-item {
        padding: 10px 16px;
        gap: 10px;
    }
    
    .tech-item i {
        font-size: 1.3rem;
    }
    
    .tech-item span {
        font-size: 0.8rem;
    }
    
    .tech-scroll-container::before,
    .tech-scroll-container::after {
        width: 80px;
    }
    
    .image-container {
        max-width: 300px;
        height: 400px;
    }
    
    /* Portfolio Preview Responsive */
    .portfolio-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .portfolio-text {
        padding-right: 0;
    }
    
    .portfolio-title {
        font-size: 2.5rem;
    }
    
    .portfolio-description {
        font-size: 1.1rem;
    }
    
    .code-scroll-container {
        height: 70px;
        margin: 30px 0 0 0;
    }
    
    .code-scroll-track {
        gap: 30px;
    }
    
    .code-snippet {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
}

@media (max-width: 480px) {
    .code-scroll-container {
        height: 60px;
        margin: 25px 0 0 0;
    }
    
    .code-scroll-track {
        gap: 25px;
    }
    
    .code-snippet {
        padding: 10px 16px;
        font-size: 0.75rem;
    }
    
    .code-scroll-container::before,
    .code-scroll-container::after {
        width: 80px;
    }
}

/* Custom Cursor Responsive */
@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
    
    * {
        cursor: auto !important;
    }
}

/* Fix clipping issues */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .about-content {
        gap: 60px;
    }
    
    .contact-content {
        gap: 60px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .scroll-animate-left,
    .scroll-animate-right {
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .contact-content {
        gap: 30px;
    }
}

/* Portfolio Page Styles */
.portfolio-header {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 81, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 81, 63, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.portfolio-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 300;
}

/* Portfolio Industries Section */
.portfolio-industries {
    padding: 100px 0;
    background: #111;
    border-top: 1px solid #1E513F;
    border-bottom: 1px solid #1E513F;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 81, 63, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-bottom: 1px solid rgba(30, 81, 63, 0.3);
}

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

.expertise-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1E513F, #2d5a47);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(30, 81, 63, 0.4);
}

.expertise-badge i {
    font-size: 3rem;
    color: #ffd700;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(30, 81, 63, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(30, 81, 63, 0.6);
    }
}

.expertise-content h2 {
    font-size: 3rem;
    color: white;
    margin: 0 0 25px 0;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise-content > p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 0 60px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.expertise-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.expertise-feature {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(30, 81, 63, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.expertise-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 81, 63, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.expertise-feature i {
    font-size: 2rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 5px;
}

.expertise-feature h4 {
    font-size: 1.2rem;
    color: white;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.expertise-feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}


.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-intro h2 {
    font-size: 3rem;
    color: white;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.section-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.industry-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(30, 81, 63, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

.industry-card:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 81, 63, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E513F, #2d5a47);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(30, 81, 63, 0.4);
}

.industry-icon i {
    font-size: 2rem;
    color: white;
}

.industry-card h3 {
    font-size: 1.6rem;
    color: white;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.industry-card > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.industry-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.industry-features li i {
    color: #10b981;
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.industry-card .btn {
    width: 100%;
    text-align: center;
    padding: 14px 30px;
    font-size: 1rem;
}

.portfolio-cta {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(30, 81, 63, 0.2);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-cta h3 {
    font-size: 2.5rem;
    color: white;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.portfolio-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
    line-height: 1.6;
}

/* Industry Portfolio Pages */
.healthcare-header {
    background: linear-gradient(135deg, rgba(30, 81, 63, 0.95), rgba(16, 185, 129, 0.85));
}

.automotive-header {
    background: linear-gradient(135deg, rgba(30, 81, 63, 0.95), rgba(20, 70, 90, 0.85));
}

.back-link {
    margin-bottom: 30px;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.back-link a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.industry-badge {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.industry-badge i {
    font-size: 3rem;
    color: white;
}

/* Industry Overview Section */
.industry-overview {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.overview-content h2 {
    font-size: 2.5rem;
    color: white;
    margin: 0 0 25px 0;
    font-weight: 600;
}

.overview-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.overview-feature {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(30, 81, 63, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.overview-feature:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 81, 63, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.overview-feature .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E513F, #2d5a47);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.overview-feature .feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.overview-feature h3 {
    font-size: 1.2rem;
    color: white;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.overview-feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: #111;
    border-top: 1px solid rgba(30, 81, 63, 0.3);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: white;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Project Showcase */
.project-showcase {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(30, 81, 63, 0.2);
    overflow: hidden;
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.project-showcase:hover {
    border-color: rgba(30, 81, 63, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.project-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.project-image {
    position: relative;
    min-height: 500px;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.preview-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(30, 81, 63, 0.3), rgba(20, 70, 90, 0.3));
}

.preview-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
}

.preview-placeholder span {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.project-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-info h3 {
    font-size: 2rem;
    color: white;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.project-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0 0 30px 0;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-tag i {
    font-size: 0.8rem;
}

/* Coming Soon Projects */
.projects-coming-soon {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(30, 81, 63, 0.2);
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1E513F, #2d5a47);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: iconPulse 3s ease-in-out infinite;
}

.coming-soon-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(30, 81, 63, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(30, 81, 63, 0.5);
    }
}

.projects-coming-soon h3 {
    font-size: 2rem;
    color: white;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.projects-coming-soon p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0 0 40px 0;
}

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

.placeholder-item {
    height: 150px;
    background: rgba(30, 81, 63, 0.1);
    border: 2px dashed rgba(30, 81, 63, 0.3);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.placeholder-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 81, 63, 0.1), transparent);
    animation: shimmer 2s infinite;
}

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

/* CTA Industry Section */
.cta-industry {
    padding: 100px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(30, 81, 63, 0.3);
}

.cta-industry .cta-content {
    background: linear-gradient(135deg, rgba(30, 81, 63, 0.2), rgba(16, 185, 129, 0.1));
    backdrop-filter: blur(20px);
    padding: 80px 60px;
    border-radius: 30px;
    border: 1px solid rgba(30, 81, 63, 0.3);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-industry h2 {
    font-size: 2.5rem;
    color: white;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.cta-industry p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Portfolio Page Responsive */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .expertise-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .overview-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .project-preview {
        grid-template-columns: 1fr;
    }

    .project-image {
        min-height: 300px;
    }

    .project-info {
        padding: 40px;
    }

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

@media (max-width: 768px) {
    .portfolio-main-title {
        font-size: 2.5rem;
    }
    
    .portfolio-subtitle {
        font-size: 1.2rem;
    }
    
    .section-intro h2 {
        font-size: 2rem;
    }

    .section-intro p {
        font-size: 1rem;
    }

    .expertise-section {
        padding: 60px 0;
    }

    .expertise-content h2 {
        font-size: 2rem;
    }

    .expertise-content > p {
        font-size: 1.1rem;
    }

    .expertise-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
    }

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

    .expertise-features {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .industry-card {
        padding: 30px;
    }

    .overview-content h2 {
        font-size: 2rem;
    }

    .overview-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .project-info {
        padding: 30px;
    }

    .project-info h3 {
        font-size: 1.6rem;
    }

    .projects-coming-soon {
        padding: 40px 30px;
    }

    .project-placeholder {
        grid-template-columns: 1fr;
    }

    .cta-industry .cta-content {
        padding: 60px 40px;
    }
    
    .portfolio-cta {
        padding: 40px 30px;
    }

    .portfolio-cta h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .portfolio-header {
        padding: 100px 0 60px 0;
    }
    
    .portfolio-main-title {
        font-size: 2rem;
    }
    
    .portfolio-industries {
        padding: 60px 0;
    }

    .expertise-section {
        padding: 50px 0;
    }

    .expertise-badge {
        width: 80px;
        height: 80px;
    }

    .expertise-badge i {
        font-size: 2rem;
    }

    .expertise-content h2 {
        font-size: 1.8rem;
    }

    .industry-overview {
        padding: 60px 0;
    }

    .industry-badge {
        width: 80px;
        height: 80px;
    }

    .industry-badge i {
        font-size: 2rem;
    }

    .overview-content h2 {
        font-size: 1.8rem;
    }

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

    .project-image {
        min-height: 250px;
    }

    .project-info {
        padding: 30px 20px;
    }

    .project-info h3 {
        font-size: 1.4rem;
    }

    .projects-coming-soon {
        padding: 40px 20px;
    }

    .projects-coming-soon h3 {
        font-size: 1.6rem;
    }

    .coming-soon-icon {
        width: 80px;
        height: 80px;
    }

    .coming-soon-icon i {
        font-size: 2rem;
    }

    .placeholder-item {
        height: 120px;
    }

    .cta-industry {
        padding: 60px 0;
    }

    .cta-industry .cta-content {
        padding: 50px 30px;
    }

    .cta-industry h2 {
        font-size: 1.8rem;
    }

    .cta-industry p {
        font-size: 1rem;
    }

    .expertise-content > p {
        font-size: 1rem;
    }

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

    .expertise-feature {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .expertise-feature i {
        margin-top: 0;
    }
    
    .industry-card {
        padding: 30px 20px;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
    }
    
    .industry-icon i {
        font-size: 1.5rem;
    }

    .industry-card h3 {
        font-size: 1.3rem;
    }

    .portfolio-cta {
        padding: 40px 20px;
    }

    .portfolio-cta h3 {
        font-size: 1.8rem;
    }
}

/* Spinner animation for form submission */
.fa-spinner.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notification styles */
.notification {
    position: fixed !important;
    top: 80px !important;
    right: 20px !important;
    z-index: 10000 !important;
    max-width: 350px !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.notification-close:hover {
    opacity: 1;
}

/* Mobile notification styles */
@media (max-width: 768px) {
    .notification {
        top: 100px !important;
        right: 10px !important;
        left: 10px !important;
        max-width: none !important;
        font-size: 0.85rem !important;
        padding: 0.8rem 1rem !important;
    }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1E513F, #2d5a47);
    border-radius: 6px;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2d5a47, #1E513F);
    box-shadow: 0 0 10px rgba(30, 81, 63, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #047857, #065f46);
}

/* Firefox scrollbar styles */
* {
    scrollbar-width: thin;
    scrollbar-color: #1E513F #000;
}

/* Smooth scrolling for all elements */
html {
    scroll-behavior: smooth;
}

/* Team Page Styles */
.team-header {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 81, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 81, 63, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.team-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 300;
}

.team {
    padding: 100px 0;
    background: #111;
    border-top: 1px solid #1E513F;
    border-bottom: 1px solid #1E513F;
}

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

.team-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(30, 81, 63, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

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

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 81, 63, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-card-inner {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-photo {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(30, 81, 63, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .team-photo {
    border-color: #1E513F;
    transform: scale(1.05);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 81, 63, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: white;
    color: #1E513F;
    transform: scale(1.1);
}

.team-info {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0 0 10px 0;
}

.team-role {
    font-size: 1rem;
    color: #1E513F;
    font-weight: 500;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill-tag {
    background: rgba(30, 81, 63, 0.2);
    color: #1E513F;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(30, 81, 63, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(30, 81, 63, 0.3);
    transform: translateY(-1px);
}

.team-values {
    margin-bottom: 80px;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0 0 60px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(30, 81, 63, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 81, 63, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E513F, #2d5a47);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(30, 81, 63, 0.4);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-item h4 {
    font-size: 1.3rem;
    color: white;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.value-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.team-cta {
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(30, 81, 63, 0.2);
}

.team-cta h3 {
    font-size: 2.5rem;
    color: white;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.team-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Actions Styles */
.about-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.about-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-actions .btn i {
    font-size: 1.1rem;
}

/* Team Page Responsive */
@media (max-width: 768px) {
    .team-main-title {
        font-size: 2.5rem;
    }
    
    .team-subtitle {
        font-size: 1.2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-card-inner {
        padding: 30px 20px;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-item {
        padding: 30px 20px;
    }
    
    .values-title {
        font-size: 2rem;
    }
    
    .team-cta h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-actions .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .team-header {
        padding: 100px 0 60px 0;
    }
    
    .team-main-title {
        font-size: 2rem;
    }
    
    .team {
        padding: 80px 0;
    }
    
    .team-card-inner {
        padding: 25px 15px;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .value-item {
        padding: 25px 15px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .team-cta {
        padding: 40px 20px;
    }
    
    .team-cta h3 {
        font-size: 1.8rem;
    }
}