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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    overflow-x: hidden;
    position: relative;
}

/* Animated background elements */
.bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(124, 255, 124, 0.05);
    animation: float 6s ease-in-out infinite;
}

.bg-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.bg-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.bg-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(124, 255, 124, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: pulse 4s ease-in-out infinite;
}

.bg-dots:nth-child(3) {
    top: 15%;
    left: 5%;
    animation-delay: 1s;
}

.bg-dots:nth-child(4) {
    bottom: 10%;
    right: 20%;
    animation-delay: 3s;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 40px;
    font-weight: bold;
    color: #7cff7c;
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #7cff7c;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #7cff7c;
    transition: width 0.3s ease;
}

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

.nav-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-icon:hover {
    color: #7cff7c;
    background: rgba(124, 255, 124, 0.1);
    transform: translateY(-2px);
}

.social-icon:hover .fab {
    animation: bounce 0.6s ease;
}

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

/* Main Content */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 80px;
}

.content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #7cff7c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #7cff7c 0%, #4ade80 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-description {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
    width: 150%;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.description-line {
    width: 4px;
    height: 80px;
    background: #7cff7c;
    margin-top: 5px;
}

.description-text {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
}

.cta-container {
    width: 130%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #7cff7c;
    color: #7cff7c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 220px;
    text-align: center;
}

.cta-text {
    display: inline-block;
    transition: opacity 0.5s ease;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7cff7c, #4ade80);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 255, 124, 0.3);
}

.decorative-dots {
    position: absolute;
    bottom: 80px;
    left: 5%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, #7cff7c 2px, transparent 2px);
    background-size: 15px 15px;
    animation: slideInLeft 1s ease-out 0.8s both;
}

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

.visual-container {
    position: relative;
    width: 400px;
    height: 400px;
    animation: slideInRight 1s ease-out 0.5s both;
}

.geometric-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(124, 255, 124, 0.1), rgba(74, 222, 128, 0.2));
    border: 1px solid rgba(124, 255, 124, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    transform: rotate(45deg);
    animation: floatShape 4s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 80px;
    right: 60px;
    border-radius: 50%;
    animation: floatShape 4s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 20px;
    right: 20px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: floatShape 3s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.code-snippet {
    position: absolute;
    top: 120px;
    right: 20px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(124, 255, 124, 0.3);
    border-radius: 8px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #7cff7c;
    animation: typewriter 2s steps(20) 1s both;
    overflow: hidden;
    white-space: nowrap;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 200px; }
}

/* Skills floating animation */
.floating-skills {
    position: absolute;
    font-size: 12px;
    color: rgba(124, 255, 124, 0.6);
    animation: floatSkill 8s linear infinite;
    pointer-events: none;
}

.skill-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.skill-2 {
    top: 30%;
    right: 5%;
    animation-delay: 2s;
}

.skill-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatSkill {
    0% { opacity: 0; transform: translateY(20px); }
    10%, 90% { opacity: 1; transform: translateY(0px); }
    100% { opacity: 0; transform: translateY(-20px); }
}

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

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}
/* Live Typing Code Snippet Styles - Inside Diagonal Shape */
.live-code-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 20, 25, 0.95);
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(124, 255, 124, 0.3);
    backdrop-filter: blur(15px);
    width: 180px;
    font-family: 'Courier New', 'Monaco', 'Lucida Console', monospace;
    z-index: 5;
    opacity: 0;
    animation: fadeInCode 1s ease-out 1.2s forwards, 
               gentleFloat 4s ease-in-out infinite 2.5s;
}

@keyframes fadeInCode {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
    }
}

.code-terminal-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(124, 255, 124, 0.2);
}

.code-terminal-dots {
    display: flex;
    gap: 4px;
    margin-right: 10px;
}

.code-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27ca3f; }

.code-terminal-title {
    color: #7cff7c;
    font-size: 10px;
    font-weight: bold;
}

.code-content {
    font-size: 10px;
    line-height: 1.4;
    color: #e5e7eb;
}

.code-line {
    min-height: 16px;
    margin: 3px 0;
    white-space: nowrap;
    overflow: hidden;
}

.code-comment {
    color: #6b7280;
    font-style: italic;
}

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

.code-string {
    color: #7cff7c;
}

.code-function {
    color: #60a5fa;
}

.code-variable {
    color: #f59e0b;
}

.code-operator {
    color: #ffffff;
}

.code-bracket {
    color: #ffffff;
}

.typing-cursor {
    display: inline-block;
    background: #7cff7c;
    width: 2px;
    height: 14px;
    animation: cursorBlink 1s infinite;
    margin-left: 1px;
    vertical-align: text-bottom;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.code-status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(124, 255, 124, 0.2);
}

.code-status-dot {
    width: 6px;
    height: 6px;
    background: #7cff7c;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.code-status-text {
    color: #9ca3af;
    font-size: 9px;
}

/* Hover effects for the container */
.live-code-container:hover {
    border-color: rgba(124, 255, 124, 0.5);
    box-shadow: 0 12px 40px rgba(124, 255, 124, 0.2);
    transform: translate(-50%, -50%) translateY(-3px);
    transition: all 0.3s ease;
}

/* Typing animation classes */
.typing-active {
    border-right: 2px solid #7cff7c;
    animation: typeWriter 0.1s steps(1) infinite;
}

@keyframes typeWriter {
    from { border-right-color: #7cff7c; }
    to { border-right-color: transparent; }
}

/* Gentle floating animation for the container inside diagonal */
@keyframes gentleFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) translateY(0px); 
    }
    50% { 
        transform: translate(-50%, -50%) translateY(-5px); 
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .live-code-container {
        width: 140px;
        padding: 10px;
        transform: translate(-50%, -50%);
    }
    
    .code-content {
        font-size: 9px;
    }
    
    .code-terminal-title {
        font-size: 8px;
    }
    
    .code-dot {
        width: 6px;
        height: 6px;
    }
    
    .typing-cursor {
        height: 12px;
    }
    
    .code-status-text {
        font-size: 8px;
    }
    
    @keyframes fadeInCode {
        from {
            opacity: 0;
            transform: translate(-50%, -50%) translateY(20px);
        }
        to {
            opacity: 1;
            transform: translate(-50%, -50%) translateY(0);
        }
    }
    
    @keyframes gentleFloat {
        0%, 100% { 
            transform: translate(-50%, -50%) translateY(0px); 
        }
        50% { 
            transform: translate(-50%, -50%) translateY(-3px); 
        }
    }
    
    .live-code-container:hover {
        transform: translate(-50%, -50%) translateY(-2px);
    }
}

/* Progress indicator */
.progress-bar {
    position: fixed;
    bottom: 50px;
    left: 5%;
    width: 100px;
    height: 2px;
    background: rgba(124, 255, 124, 0.2);
    border-radius: 1px;
    overflow: hidden;
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7cff7c, #4ade80);
    width: 0%;
    animation: progressLoad 3s ease-out 1s forwards;
}

@keyframes progressLoad {
    to { width: 100%; }
}

/* ABOUT SECTION */
.about-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 5% 80px 5%;
    z-index: 1;
}

.about-container {
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 80px;
    gap: 60px;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #7cff7c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.about-subtitle {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #7cff7c 0%, #4ade80 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.about-description {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.about-text {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
}

.about-text p {
    margin-bottom: 20px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.skill-card {
    background: rgba(124, 255, 124, 0.05);
    border: 1px solid rgba(124, 255, 124, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-card:hover {
    transform: translateY(-10px);
    background: rgba(124, 255, 124, 0.1);
    border-color: rgba(124, 255, 124, 0.5);
    box-shadow: 0 15px 40px rgba(124, 255, 124, 0.2);
}

.skill-icon {
    font-size: 2.5rem;
    color: #7cff7c;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon {
    transform: scale(1.2);
}

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

.skill-card p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease;
}

.diagonal-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.diagonal-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 350px;
    background: linear-gradient(135deg, rgba(124, 255, 124, 0.1), rgba(74, 222, 128, 0.2));
    border: 1px solid rgba(124, 255, 124, 0.3);
    transform: skew(-15deg);
    animation: floatShape 4s ease-in-out infinite;
}

.profile-images {
    position: absolute;
    width: 100%;
    height: 100%;
}

.image-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(124, 255, 124, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-card:hover {
    transform: scale(1.05);
    border-color: rgba(124, 255, 124, 0.6);
    box-shadow: 0 10px 30px rgba(124, 255, 124, 0.3);
}

.card-1 {
    width: 120px;
    height: 120px;
    top: 50px;
    left: 20px;
    animation: floatShape 3s ease-in-out infinite;
}

.card-2 {
    width: 100px;
    height: 100px;
    top: 200px;
    right: 50px;
    animation: floatShape 3s ease-in-out infinite reverse;
}

.card-3 {
    width: 90px;
    height: 90px;
    bottom: 80px;
    left: 80px;
    animation: floatShape 3s ease-in-out infinite;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(124, 255, 124, 0.5);
    background: linear-gradient(135deg, rgba(124, 255, 124, 0.05), rgba(74, 222, 128, 0.1));
}

.stats-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 20px;
}

.stat-item {
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(124, 255, 124, 0.3);
    border-radius: 10px;
    padding: 15px;
    min-width: 80px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    background: rgba(124, 255, 124, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7cff7c;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    color: #cccccc;
    font-weight: 500;
}

.about-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    font-size: 20px;
    color: rgba(124, 255, 124, 0.15);
    animation: floatSkill 6s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 3s;
}

.element-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 4.5s;
}

/* Animation states */
.about-section.animate .about-title {
    opacity: 1;
    transform: translateX(0);
}

.about-section.animate .about-subtitle {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.about-section.animate .about-description {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.about-section.animate .about-visual {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.about-section.animate .skills-grid {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* SERVICES SECTION */
.services-section {
    position: relative;
    min-height: 50vh;
    padding: 100px 5% 80px 5%;
    z-index: 1;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.services-header {
    margin-bottom: 60px;
}

.services-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #7cff7c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease;
}

.services-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #7cff7c 0%, #4ade80 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease;
}

.services-description {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease;
}

.services-description .description-text {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 20px;
}

.services-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.services-cta {
    display: flex;
    align-items: center;
}

.github-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #7cff7c;
    color: #7cff7c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.github-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7cff7c, #4ade80);
    transition: left 0.3s ease;
    z-index: -1;
}

.github-button:hover::before {
    left: 0;
}

.github-button:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 255, 124, 0.3);
}

.github-button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.github-button:hover i {
    transform: scale(1.1);
}

/* Tech Stack Slider */
.tech-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(124, 255, 124, 0.02);
    border: 1px solid rgba(124, 255, 124, 0.1);
    border-radius: 20px;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.tech-track {
    display: flex;
    gap: 60px;
    animation: techSlide 30s linear infinite;
    white-space: nowrap;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 100px;
    padding: 20px;
    background: rgba(124, 255, 124, 0.05);
    border: 1px solid rgba(124, 255, 124, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(124, 255, 124, 0.1);
    border-color: rgba(124, 255, 124, 0.4);
    box-shadow: 0 15px 30px rgba(124, 255, 124, 0.2);
}

.tech-item i {
    font-size: 2.5rem;
    color: #7cff7c;
    transition: all 0.3s ease;
}

.tech-item:hover i {
    color: #4ade80;
    transform: scale(1.2);
}

.tech-item span {
    font-size: 14px;
    font-weight: 600;
    color: #cccccc;
    transition: color 0.3s ease;
}

.tech-item:hover span {
    color: #ffffff;
}

@keyframes techSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Animation states for services */
.services-section.animate .services-title {
    opacity: 1;
    transform: translateY(0);
}

.services-section.animate .services-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.services-section.animate .services-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.services-section.animate .tech-slider {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* CONTACT SECTION */
.contact-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 5% 80px 5%;
    z-index: 1;
}

.contact-container {
    display: flex;
    align-items: flex-start;
    padding: 0 5%;
    margin-top: 80px;
    gap: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    flex: 1;
    max-width: 600px;
}

.contact-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #7cff7c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.contact-subtitle {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #7cff7c 0%, #4ade80 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.contact-description {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.contact-description .description-text {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
}

/* Contact Form */
.contact-form {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(124, 255, 124, 0.05);
    border: 1px solid rgba(124, 255, 124, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(124, 255, 124, 0.5);
    background: rgba(124, 255, 124, 0.1);
    box-shadow: 0 0 20px rgba(124, 255, 124, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(204, 204, 204, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #7cff7c;
    color: #7cff7c;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7cff7c, #4ade80);
    transition: left 0.3s ease;
    z-index: -1;
}

.submit-button:hover::before {
    left: 0;
}

.submit-button:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 255, 124, 0.3);
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

/* Contact Info */
.contact-info {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease;
}

.contact-visual {
    position: relative;
    width: 400px;
    height: 500px;
}

.contact-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, rgba(124, 255, 124, 0.1), rgba(74, 222, 128, 0.2));
    border: 1px solid rgba(124, 255, 124, 0.3);
    border-radius: 20px;
    animation: floatShape 4s ease-in-out infinite;
}

.contact-details {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 18px;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(124, 255, 124, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateX(-5px);
    background: rgba(124, 255, 124, 0.08);
    border-color: rgba(124, 255, 124, 0.5);
    box-shadow: 0 8px 25px rgba(124, 255, 124, 0.2);
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7cff7c, #4ade80);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.contact-text h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-text p {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.4;
    word-break: break-all;
}

.contact-item:hover .contact-text h4 {
    color: #7cff7c;
}

.contact-item:hover .contact-text p {
    color: white;
}

/* Contact Social */
.contact-social {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    text-align: center;
    padding: 18px;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(124, 255, 124, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-social h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 15px;
}

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

.contact-social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 255, 124, 0.1);
    border: 1px solid rgba(124, 255, 124, 0.3);
    border-radius: 50%;
    color: #7cff7c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    background: linear-gradient(135deg, #7cff7c, #4ade80);
    color: #1a1a1a;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(124, 255, 124, 0.3);
}

/* Contact Background Elements */
.contact-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.contact-bg-elements .floating-element {
    position: absolute;
    font-size: 20px;
    color: rgba(124, 255, 124, 0.15);
    animation: floatSkill 6s ease-in-out infinite;
}

.contact-bg-elements .element-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.contact-bg-elements .element-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.contact-bg-elements .element-3 {
    bottom: 35%;
    left: 8%;
    animation-delay: 3s;
}

.contact-bg-elements .element-4 {
    bottom: 15%;
    right: 20%;
    animation-delay: 4.5s;
}

/* Animation states for contact */
.contact-section.animate .contact-title {
    opacity: 1;
    transform: translateX(0);
}

.contact-section.animate .contact-subtitle {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.contact-section.animate .contact-description {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.contact-section.animate .contact-form {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.contact-section.animate .contact-info {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container,
    .about-container,
    .contact-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        gap: 40px;
    }

    .hero-title,
    .about-title,
    .contact-title {
        font-size: 3rem;
    }

    .hero-subtitle,
    .about-subtitle,
    .contact-subtitle {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .visual-container,
    .diagonal-container,
    .contact-visual {
        width: 300px;
        height: 300px;
        margin-top: 50px;
    }

    .decorative-dots {
        display: none;
    }

    .nav-icons {
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .cta-button,
    .submit-button {
        min-width: 200px;
        padding: 12px 30px;
        font-size: 14px;
    }

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

    .stats-container {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 30px;
    }

    .about-description,
    .contact-description {
        flex-direction: column;
        gap: 15px;
    }

    .floating-element {
        display: none;
    }
    
    /* Services mobile styles */
    .services-section {
        padding: 80px 4% 60px 4%;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1.5rem;
    }
    
    .services-description {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-text-content {
        align-items: center;
        text-align: center;
    }
    
    .services-cta {
        justify-content: center;
        width: 100%;
    }
    
    .tech-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .tech-item i {
        font-size: 2rem;
    }
    
    .tech-item span {
        font-size: 12px;
    }
    
    .tech-track {
        gap: 40px;
    }
    
    /* Contact mobile styles */
    .contact-section {
        padding: 80px 4% 60px 4%;
    }
    
    .contact-visual {
        width: 300px;
        height: 400px;
    }
    
    .contact-shape {
        width: 250px;
        height: 320px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-item:hover {
        transform: translateY(-5px);
    }
    
    .contact-details {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
    }
    
    .contact-social {
        position: relative;
        bottom: auto;
        left: 0;
        right: 0;
        margin-top: 20px;
    }
}