@font-face {
            font-family: "Akira Expanded";
            src: (local)"Akira Expanded", url("Akira Expanded.otf") format("opentype");
        }
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #1a1a1a;
            color: #e0e0e0;
        }
        header {
            background: linear-gradient(to right, #000, #ff0000);
            color: white;
            text-align: center;
            padding: 2rem 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        header img {
            max-width: 150px;
            margin-bottom: 0rem;
            }
        header h1 {
            font-family: 'Akira Expanded', sans-serif;
            font-size: 1em;
            margin: 0;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3);
        }
        #slogan {
            place-self: center;
	        background: linear-gradient(90deg, #333, white, #333) -100%/ 200%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
	        font:'Roboto', sans-serif;
            font-size:1rem;
            animation: shimmer 4s linear infinite;
        }
        
        @keyframes shimmer { to { background-position: 100% } }
        
        .language-toggle {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(to top, #ff0000,  #2a2a2a);
            color: #fff;
            border: 1px solid #555;
            padding: 0.35rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: bold;
            box-shadow: 0 0 5px rgba(255, 0, 0, 0.15);
            transition: all 0.3s ease;
        }
        .language-toggle:hover {
            background: linear-gradient(to top, #2a2a2a,#ff0000);
            color: #fff;
            border-color: #ff4444;
            box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
        }
        nav {
            display: flex;
            justify-content: center;
            background-color: #222;
            padding: 1rem 0;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 1rem;
            font-size: 1.1rem;
        }
        nav a:hover {
            color: #444;
            transition: 1s ease;
        }
        section {
            padding: 2rem;
            text-align: center;
        }
        #about {
            background-color: #333;
            text-align: justify-center;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        .services {
    	     display: grid;
             grid-template-columns: repeat(1, 1fr); /* Mobile default */
             gap: 1.5rem;
             padding: 2rem;
        }

        @media (min-width: 600px) {
        .services {
             grid-template-columns: repeat(2, 1fr); /* Tablet */
           }
        }

        @media (min-width: 1024px) {
        .services {
             grid-template-columns: repeat(3, 1fr); /* Desktop */
           } 
        }
        .service {
            background-color: #333;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            text-align: center;
        }
        .service:hover {
            background-color: #1a1a1a;
            transition: 1s ease;
        }
        .service img {
            width: 100%;
            height: auto;
        }
        .service-content {
            padding: 1rem;
        }
        footer {
            background-color: #222;
            color: #fff;
            text-align: center;
            padding: 1rem;
            margin-top: 2rem;
        }
        .youtube-button {
            display: inline-block;
            background-color:  #ff0000;
            color: white;
            padding: 10px 20px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 5px;
            text-decoration: none;
            transition: 1s ease;
        }
        .youtube-button:hover {
            background-color: #333;
            transition: 1s ease;
            
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #333;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        .contact-form input, .contact-form textarea, .contact-form button {
            width: 100%;
            margin: 0.5rem 0;
            padding: 0.75rem;
            border: 1px solid #555;
            border-radius: 4px;
            background-color: #444;
            color: #e0e0e0;
        }
        .contact-form button {
            background-color: #ff0000;
            color: #fff;
            cursor: pointer;
            transition: 1s ease;
        }
        .contact-form button:hover {
            background-color: #333;
            transition: 1s ease;
        }