.elementor-5005 .elementor-element.elementor-element-944ebad{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-944ebad *//* --- CSS VARIABLES & RESET --- */
        :root {
            --bg-color: #0a0a0a;
            --text-color: #ffffff;
            --accent-color: #3b82f6; /* Bright Blue */
            --secondary-bg: #161616;
            --gray-text: #a1a1aa;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        /* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent-color);
            color: white;
            font-weight: 600;
            border-radius: 50px;
            border: 2px solid var(--accent-color);
        }

        .btn:hover {
            background-color: transparent;
            color: var(--accent-color);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }

        .btn-outline:hover {
            background-color: white;
            color: black;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray-text);
            margin-bottom: 50px;
        }

        section { padding: 80px 0; }

        /* --- HEADER --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: sticky;
            top: 0;
            background-color: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-color);
            letter-spacing: 1px;
        }

        nav ul { display: flex; gap: 30px; }
        nav a:hover { color: var(--accent-color); }

        /* --- HERO SECTION --- */
        .hero {
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 70%);
        }

        .hero h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, #777);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--gray-text);
            max-width: 600px;
            margin: 0 auto 40px auto;
        }

        .hero-btns { display: flex; gap: 20px; justify-content: center; }

        /* --- SERVICES --- */
        .services { background-color: var(--secondary-bg); }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--bg-color);
            padding: 40px;
            border-radius: 12px;
            border: 1px solid #333;
            transition: 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
        }

        .service-icon {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .service-card h3 { margin-bottom: 15px; font-size: 1.5rem; }
        .service-card p { color: var(--gray-text); }

        /* --- WORK / PORTFOLIO --- */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .portfolio-item {
            position: relative;
            height: 300px;
            background-color: #333;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .portfolio-overlay {
            position: absolute;
            bottom: -100%;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, black, transparent);
            transition: 0.3s;
        }

        .portfolio-item:hover .portfolio-overlay { bottom: 0; }
        .portfolio-item:hover img { transform: scale(1.1); }

        /* --- CONTACT --- */
        .contact { background-color: var(--secondary-bg); text-align: center; }
        
        .contact-box {
            max-width: 600px;
            margin: 0 auto;
            background: var(--bg-color);
            padding: 40px;
            border-radius: 12px;
        }

        form input, form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            background: var(--secondary-bg);
            border: 1px solid #333;
            color: white;
            border-radius: 6px;
        }

        form button {
            width: 100%;
            cursor: pointer;
        }

        /* --- FOOTER --- */
        footer {
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid #222;
            color: var(--gray-text);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            nav { display: none; } /* Simplified mobile handling */
            .hero-btns { flex-direction: column; }
        }
    </style>/* End custom CSS */