        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 20px 0;
            background-color: #000;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .navbar a:hover {
            color: #aaa;
        }

        .logo {
            font-size: 26px;
            font-weight: bold;
            letter-spacing: 2px;
            animation: fadeIn 1s ease-in;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px;
            transition: all 0.3s ease;
        }

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-top: 60px;
        }

        .hero h1 {
            font-size: 60px;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 16px;
            color: #aaa;
            max-width: 600px;
            text-align: center;
        }

        .portfolio {
            padding: 100px 50px;
        }

        .portfolio h2 {
            text-align: center;
            font-size: 40px;
            margin-bottom: 50px;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: auto auto auto;
            gap: 30px;
            margin-bottom: 50px;
            position: relative;
        }

        .portfolio-item {
            position: relative;
            overflow: hidden;
            width: 300px;
            height: 300px;
            border-radius: 5px;
        }

        .portfolio-item:nth-child(1) {
            justify-self: start;
        }

        .portfolio-item:nth-child(2) {
            justify-self: end;
        }

        .portfolio-item:nth-child(3) {
            grid-column: 1 / span 2;
            justify-self: center;
            width: 300px;
        }

        .portfolio-item:nth-child(4) {
            justify-self: start;
        }

        .portfolio-item:nth-child(5) {
            justify-self: end;
        }

        .portfolio-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slider-image.active {
            opacity: 1;
        }

        .services {
            padding: 100px 50px;
            position: relative;
        }

        .services h2 {
            text-align: center;
            font-size: 40px;
            margin-bottom: 50px;
        }

        .service-bg {
            height: 500px;
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .service-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .service-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .service-image.active {
            opacity: 1;
        }

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0 20px;
            text-align: center;
        }

        .service-content {
            display: none;
        }

        .service-content.active {
            display: block;
        }

        .service-tabs {
            position: absolute;
            top: 50%;
            left: 100px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 10;
        }

        .service-tab {
            color: #fff;
            background: none;
            border: none;
            font-size: 24px;
            padding: 10px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-family: 'Times New Roman', serif;
            text-align: left;
        }

        .service-tab:hover {
            transform: scale(1.1);
        }

        .service-tab.active {
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .service-description {
            font-size: 14px;
            font-family: Arial, sans-serif;
            margin-top: 5px;
            display: none;
        }

        .service-tab.active .service-description {
            display: block;
        }

        .contact {
            padding: 80px 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .contact h2 {
            text-align: center;
            font-size: 40px;
            margin-bottom: 30px;
        }

        .contact-flex {
            display: flex;
            gap: 100px;
            max-width: 800px;
            margin: 0px auto;
        }

        .contact-info {
            flex: 0 1 auto;
            min-width: 300px;
            text-align: center;
            transform: translate(-150px, -100px);
        }

        .contact-social {
            flex: 0 1 auto;
            min-width: 300px;
            text-align: center;
            transform: translate(30px, -60px);
        }

        .contact-info h3,
        .contact-social h3 {
            font-size: 32px;
            margin-bottom: 30px;
        }

        .process-item {
            margin-bottom: 20px;
            font-size: 24px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-icons a {
            color: #fff;
            font-size: 32px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            color: #aaa;
        }

        footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 50px;
            background-color: #000;
            border-top: 1px solid #222;
        }

        .footer-logo img {
            width: 120px;
        }

        .footer-text {
            color: #aaa;
            font-size: 14px;
        }

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

            .portfolio-item:nth-child(3) {
                grid-column: auto;
                width: 100%;
            }

            .service-bg {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                justify-content: space-between;
                padding: 20px 30px;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background-color: #111;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                margin: 20px 0;
                font-size: 18px;
            }

            .hamburger {
                display: block;
            }

            .hamburger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

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

            .hamburger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .hero h1 {
                font-size: 40px;
            }

            .portfolio,
            .services,
            .contact {
                padding: 80px 30px;
            }

            .contact-flex {
                flex-direction: column;
            }

            .contact-info,
            .contact-social {
                margin-bottom: 40px;
            }

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

            .footer-logo {
                margin-bottom: 20px;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeOut {
            from {
                opacity: 1;
            }

            to {
                opacity: 0;
            }
        }