/* =====================================================
           BASIC
        ===================================================== */

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: #0a0a0a;
            color: white;
            font-family: Arial, sans-serif;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }


        /* =====================================================
           NAVIGATION
        ===================================================== */

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: #0a0a0a;
            border-bottom: 1px solid #333;
            z-index: 100;
        }

        .nav {
            height: 75px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 20px;
            font-weight: bold;
        }

        .logo img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            font-size: 14px;
            color: #aaa;
        }

        .nav-links a:hover {
            color: #d7ff3f;
        }

        .language-select {
            background: #0a0a0a;
            color: #aaa;
            border: 1px solid #555;
            padding: 8px 10px;
            font-size: 13px;
            cursor: pointer;
        }

        .language-select:hover,
        .language-select:focus {
            border-color: #d7ff3f;
            color: #d7ff3f;
            outline: none;
        }


        /* =====================================================
           HERO
        ===================================================== */

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 75px;
            border-bottom: 1px solid #333;
        }

        .hero-text {
            max-width: 850px;
        }

        .small-title {
            color: #d7ff3f;
            font-size: 14px;
            margin-bottom: 25px;
        }

        .hero h1 {
            font-size: clamp(60px, 10vw, 130px);
            line-height: 0.9;
            margin-bottom: 35px;
        }

        .hero h1 span {
            color: #555;
        }

        .hero p {
            max-width: 650px;
            color: #aaa;
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .button {
            display: inline-block;
            padding: 14px 22px;
            border: 1px solid #555;
            margin-right: 10px;
            font-size: 13px;
        }

        .button:hover {
            border-color: #d7ff3f;
            color: #d7ff3f;
        }

        .button-main {
            background: #d7ff3f;
            color: #0a0a0a;
            border-color: #d7ff3f;
        }

        .button-main:hover {
            color: #0a0a0a;
        }


        /* =====================================================
           SHARED SECTION
        ===================================================== */

        section {
            padding: 100px 0;
            border-bottom: 1px solid #333;
        }

        .section-number {
            color: #d7ff3f;
            font-size: 13px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: clamp(40px, 6vw, 75px);
            margin-bottom: 25px;
        }

        .section-description {
            max-width: 650px;
            color: #888;
            line-height: 1.7;
            margin-bottom: 50px;
        }


        /* =====================================================
           SERVICES
        ===================================================== */

        .services {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            border-top: 1px solid #333;
        }

        .service {
            padding: 35px;
            border-bottom: 1px solid #333;
        }

        .service:nth-child(odd) {
            border-right: 1px solid #333;
        }

        .service h3 {
            font-size: 25px;
            margin-bottom: 15px;
        }

        .service p {
            color: #888;
            line-height: 1.7;
            font-size: 14px;
        }


        /* =====================================================
           WORK / PORTFOLIO
        ===================================================== */

        .work-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .work-card {
            position: relative;
            background: #111;
            border: 1px solid #333;
            overflow: hidden;
            transition: border-color 0.25s ease;
        }

        .work-card:hover,
        .work-card:focus {
            border-color: #d7ff3f;
            outline: none;
        }

        .work-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            display: block;
        }

        .work-content {
            padding: 30px;
        }

        .work-card span {
            color: #d7ff3f;
            font-size: 12px;
        }

        .work-card h3 {
            margin-top: 20px;
            margin-bottom: 15px;
            font-size: 24px;
        }

        .work-card p {
            color: #888;
            line-height: 1.7;
            font-size: 15px;
        }

        .work-tech {
            margin-top: 20px;
            color: #666;
            font-size: 12px;
        }



        /* Portfolio hover details */

        .work-overlay {
            position: absolute;
            inset: 0;
            z-index: 10;
            padding: 34px;
            background: rgba(8, 8, 8, 0.97);

            display: flex;
            flex-direction: column;

            opacity: 0;
            transform: translateY(18px);
            pointer-events: none;

            transition:
                opacity 0.28s ease,
                transform 0.28s ease;
        }

        .work-card:hover .work-overlay,
        .work-card:focus .work-overlay,
        .work-card.show-details .work-overlay {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .work-overlay-tag {
            color: #d7ff3f;
            font-size: 11px;
            letter-spacing: 1px;
        }

        .work-overlay h3 {
            margin: 12px 0 24px;
            font-size: 27px;
            line-height: 1.2;
        }

        .work-detail {
            display: grid;
            grid-template-columns: 110px 1fr;
            gap: 18px;

            padding: 13px 0;
            border-top: 1px solid #333;
        }

        .detail-label {
            color: #777;
            font-size: 11px;
            letter-spacing: 0.5px;
        }

        .detail-value {
            color: #eee;
            font-size: 14px;
            line-height: 1.55;
        }

        .detail-description {
            padding-top: 16px;
            border-top: 1px solid #333;

            color: #aaa;
            font-size: 14px;
            line-height: 1.7;
        }

        .work-overlay-note {
            margin-top: auto;
            padding-top: 18px;

            color: #555;
            font-size: 10px;
            letter-spacing: 0.5px;
        }

        /* =====================================================
           ABOUT
        ===================================================== */

        .about-text {
            max-width: 800px;
            color: #aaa;
            font-size: 18px;
            line-height: 1.9;
        }


        /* =====================================================
           CONTACT
        ===================================================== */

        .contact {
            text-align: center;
        }

        .contact h2 {
            font-size: clamp(50px, 8vw, 100px);
            margin-bottom: 30px;
        }

        .contact p {
            color: #888;
            margin-bottom: 30px;
        }



        /* =====================================================
           CONTACT DETAILS / SOCIAL
        ===================================================== */

        .contact-extra {
            margin-top: 28px;
        }

        .contact-phone {
            margin-bottom: 24px;
            color: #aaa;
            font-size: 15px;
        }

        .contact-phone a {
            color: white;
            margin-left: 8px;
        }

        .contact-phone a:hover {
            color: #d7ff3f;
        }

        .social-title {
            color: #777;
            font-size: 12px;
            margin-bottom: 14px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .social-btn {
            width: 46px;
            height: 46px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #444;
            color: #aaa;
            transition: 0.2s;
        }

        .social-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .social-btn:hover {
            border-color: #d7ff3f;
            color: #d7ff3f;
            transform: translateY(-2px);
        }

        /* =====================================================
           FOOTER
        ===================================================== */

        footer {
            padding: 40px 0;
            color: #666;
            font-size: 13px;
        }

        .footer {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }


        /* =====================================================
           MOBILE
        ===================================================== */

        @media (max-width: 750px) {

            .nav-links {
                display: none;
            }

            .nav-right {
                gap: 12px;
            }

            .language-select {
                font-size: 12px;
                padding: 7px 8px;
            }

            .services,
            .work-grid {
                grid-template-columns: 1fr;
            }

            .service:nth-child(odd) {
                border-right: none;
            }

            .hero h1 {
                font-size: 60px;
            }

            .work-card img {
                height: 220px;
            }


            .work-overlay {
                padding: 24px;
            }

            .work-detail {
                grid-template-columns: 88px 1fr;
                gap: 12px;
            }

            .work-overlay h3 {
                font-size: 23px;
                margin-bottom: 18px;
            }

            .footer {
                flex-direction: column;
            }

        }