@import url("https://fonts.googleapis.com/css?family=IBM%20Plex%20Sans:500|IBM%20Plex%20Sans:300");
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #0a0a0a;
            color: white;
            overflow-x: hidden;
        }

        /* Grid Decorations - FIXED */
        .grid-decoration {
            position: absolute;
            z-index: 1;
            pointer-events: none;
            opacity: 0.15;
        }

        .grid-top-left {
            top: 0;
            left: 0;
            width: 600px;
            height: 600px;
            background-image: 
                linear-gradient(rgba(154, 255, 138, 0.4) 2px, transparent 1px),
                linear-gradient(90deg, rgba(154, 255, 138, 0.4) 1px, transparent 1px);
            background-size: 150px 150px;
            z-index: 0;
        }

        .grid-bottom-right {
            bottom: 0;
            right: 0;
            width: 650px;
            height: 500px;
            background-image: 
                linear-gradient(rgba(154, 255, 138, 0.4) 1px, transparent 1px),
                linear-gradient(90deg, rgba(154, 255, 138, 0.4) 2px, transparent 2px);
            background-size: 200px 200px;
            z-index: 0;
        }

        /* Header - FLOATING NAVBAR */
        .header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            padding: 15px 30px;
            background: rgba(10, 10, 10, 0.411);
            backdrop-filter: blur(20px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 50px;
            border: 2.8px solid rgba(255, 255, 255, 0.3);
            width: calc(100% - 80px);
            max-width: 1200px;
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
        }

        .nav {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            padding: 12px 20px;
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav a:hover {
            color: #9AFF8A;
            background: rgba(255, 255, 255, 0.1);
        }

        .nav a.active {
            color: #0a0a0a;
            background: rgba(255, 255, 255, 0.9);
            font-weight: 600;
        }

        .contact-btn {
            background: linear-gradient(135deg, #9AFF8A 0%, #7ee06a 100%);
            color: #0a0a0a;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            margin-left: 15px;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(154, 255, 138, 0.4);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            border-radius: 10px;
            background: none;
            border: none;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 100px;
            left: -100%;
            width: calc(100% - 40px);
            margin: 0 20px;
            background: rgba(1, 74, 1, 0.851);
            backdrop-filter: blur(20px);
            border-radius: 50px;
            border: 1px solid rgba(116, 115, 115, 0.775);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            padding: 30px 20px;
            transition: left 0.3s ease;
            z-index: 999;
        }

        .mobile-nav.active {
            left: 1px;
        }

        .mobile-nav a {
            color: rgba(181, 177, 177, 0.8);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
            width: 80%;
            text-align: center;
        }

        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: #72c70a;
            background: rgba(255, 255, 255, 0.9);
            font-weight: 600;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #1a4d3a 0%, #0d2818 50%, #000 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-content {
            z-index: 2;
            max-width: 800px;
            padding: 0 40px;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .hero h1 em {
            font-style: italic;
            color: #9AFF8A;
        }

        .hero p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .hero-btn {
            background: #9AFF8A;
            color: #0a0a0a;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .hero-btn:hover {
            background: #7ee06a;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(154, 255, 138, 0.3);
        }

        /* Floating Icons */
        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .floating-icon {
            position: absolute;
            width: 80px;
            height: 80px;
            background: rgba(154, 255, 138, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
            font-size: 24px;
        }

        .floating-icon:nth-child(1) {
            top: 20%;
            right: 15%;
            animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
            top: 40%;
            right: 25%;
            animation-delay: -2s;
        }

        .floating-icon:nth-child(3) {
            bottom: 30%;
            right: 10%;
            animation-delay: -4s;
        }

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

        /* Trust Section */
        .trust-section {
            background: #0a0a0a;
            padding: 60px 40px;
            text-align: center;
        }

        .trust-text {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 40px;
            font-size: 14px;
        }

        .trust-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            opacity: 0.6;
        }

        .trust-logo {
            font-size: 18px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.4);
        }

        /* Services Section */
        .services-section {
            background: #0a0a0a;
            padding: 100px 50px;
            text-align: center;
        }

        .services-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .services-badge {
            background: rgba(154, 255, 138, 0.1);
            color: #9AFF8A;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 25px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .services-content h2 {
            font-size: 2.8rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.3;
        }

        /* Portfolio Section */
        .portfolio-section {
            background: linear-gradient(135deg, #1a4d3a 0%, #0d2818 100%);
            padding: 100px 40px;
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .portfolio-header h2 {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .portfolio-header h2 em {
            font-style: italic;
            color: #9AFF8A;
        }

        .portfolio-header p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Portfolio Cards with Flip Effect */
        .portfolio-card {
            background: transparent;
            width: 100%;
            height: 300px;
            perspective: 1000px;
            cursor: pointer;
        }

        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }

        .portfolio-card:hover .card-inner {
            transform: rotateY(180deg);
        }

        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .card-back {
            background: rgba(154, 255, 138, 0.05);
            border-color: rgba(154, 255, 138, 0.3);
            transform: rotateY(180deg);
        }

        .portfolio-icon {
            width: 80px;
            height: 80px;
            background: #27e709;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #0a0a0a;
        }

        .card-front h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
            color: white;
        }

        .card-front p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .card-back h3 {
            color: #f4f7f3;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
            justify-content: center;
        }

        .tech-tag {
            background: rgba(154, 255, 138, 0.2);
            color: #9AFF8A;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 500;
        }

        .project-stats {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .project-link {
            background: #9AFF8A;
            color: #0a0a0a;
            padding: 8px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 12px;
            margin-top: 15px;
            transition: all 0.3s ease;
        }

        .project-link:hover {
            background: #7ee06a;
            transform: translateY(-2px);
        }

        /* Languages Infinite Scroll */
        .languages-scroll-section {
            background: #0a0a0a;
            padding: 60px 0;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .languages-scroll-container {
            display: flex;
            animation: scroll-infinite 35s linear infinite;
            gap: 60px;
        }

        .language-item {
            display: flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
            color: rgba(255, 255, 255, 0.7);
            font-size: 18px;
            font-weight: 500;
        }

        .language-icon {
            width: 60px;
            height: 60px;
            background: rgba(154, 255, 138, 0.1);
            border: 1px solid rgba(154, 255, 138, 0.3);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

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

        /* About Section */
        .about-section {
            background: #0a0a0a;
            padding: 100px 40px;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.3;
        }

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

        .skills-list {
            margin-bottom: 30px;
        }

        .skill-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .skill-item::before {
            content: "✓";
            color: #9AFF8A;
            font-weight: bold;
            margin-right: 15px;
            font-size: 18px;
        }

        .experience-section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
        }

        .experience-item {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .experience-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .experience-title {
            color: #9AFF8A;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .experience-company {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            margin-bottom: 3px;
        }

        .experience-period {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .experience-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Contact Section */
        .contact-section {
            background: #0a0a0a;
            padding: 100px 40px;
            text-align: center;
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-content h2 {
            font-size: 2.5rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }

        .contact-form {
            display: flex;
            gap: 15px;
            margin-top: 40px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-input {
            flex: 1;
            padding: 15px 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 16px;
        }

        .contact-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .contact-submit {
            background: #9AFF8A;
            color: #0a0a0a;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-submit:hover {
            background: #7ee06a;
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1a4d3a 0%, #0d2818 100%);
            padding: 60px 40px 40px;
            color: white;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            color: #9AFF8A;
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 20px;
        }

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

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: #9AFF8A;
        }

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

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

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

        .social-icon:hover {
            background: #9AFF8A;
            color: #0a0a0a;
            transform: translateY(-3px);
            border-color: #9AFF8A;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

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

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #9AFF8A;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .header {
                width: calc(100% - 40px);
            }
            
            .about-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .header {
                top: 15px;
                width: calc(100% - 30px);
                padding: 12px 20px;
            }
            
            .hero {
                padding-top: 100px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .portfolio-card {
                height: 280px;
            }
            
            .contact-form {
                flex-direction: column;
                max-width: 300px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .social-icons {
                justify-content: center;
            }
            
            .grid-top-left, .grid-bottom-right {
                width: 150px;
                height: 150px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .services-content h2 {
                font-size: 2rem;
            }
            
            .portfolio-header h2 {
                font-size: 2rem;
            }
            
            .header {
                width: calc(100% - 20px);
                padding: 10px 15px;
            }
            
            .mobile-nav {
                width: calc(100% - 20px);
                margin: 0 10px;
            }
            
            .portfolio-card {
                height: 250px;
            }
        }