@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(0,128,0,0.3), rgba(0,0,0,0.9));
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 25px;
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slideTop 1s ease forwards;
}

.navbar {
    display: flex;
}

.navbar a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    position: relative;
    opacity: 0;
    animation: slideTop .5s ease forwards;
    animation-delay: calc(.2s * var(--i));
    transition: color 0.3s;
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #0f0;
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
}

.navbar a:hover::after {
    width: 100%;
}

.navbar a:hover {
    color: #0f0;
}

.mobile-menu-toggle {
    display: none;
    font-size: 30px;
    color: #0f0;
    cursor: pointer;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.lang-switch a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s;
}

.lang-switch a.active {
    color: #0f0;
    background: rgba(0,255,0,0.1);
}

.lang-switch span {
    color: #0f0;
}

.home {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 10% 50px;
}

.home-content {
    max-width: 600px;
}

.home-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: .7s;
}

.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1s;
    min-height: 40px;
}

.mu {
    margin-bottom: 10px;
}

.home-content h1, .home-content h3 {
    text-shadow: 0 0 10px #0f0;
}

.home-content h3 span {
    color: #0f0;
}

.home-content p {
    font-size: 16px;
    margin: 20px 0;
    text-align: left;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1.3s;
    line-height: 1.6;
}

.home-sci {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #000;
    border: 2px solid #0f0;
    border-radius: 50%;
    font-size: 20px;
    color: #0f0;
    text-decoration: none;
    opacity: 0;
    animation: zoomIn 1s ease forwards;
    animation-delay: 1.6s;
    transition: all 0.3s;
}

.home-sci a:hover {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 20px #0f0;
    transform: translateY(-5px);
}

.btn-box {
    display: inline-block;
    padding: 12px 28px;
    background: #0f0;
    border-radius: 40px;
    font-size: 16px;
    color: #000;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: zoomIn 1s ease forwards;
    animation-delay: 1.8s;
    transition: all 0.3s;
}

.btn-box:hover {
    box-shadow: 0 0 5px #0f0, 0 0 25px #0f0, 0 0 50px #0f0;
    transform: scale(1.05);
}

.home-img {
    width: 410px;
    height: 410px;
    opacity: 0;
    animation: zoomIn 1s ease forwards, floatImage 4s ease-in-out infinite;
    animation-delay: 2.1s, 3.1s;
}

.home-img .glowing-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-img .glowing-circle::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background-color: #000;
    border-radius: 50%;
}

.glowing-circle span {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(#000, rgba(0,255,0,0.4));
    border-radius: 50%;
    animation: circleRotate 5s linear infinite;
}

.glowing-circle span:nth-child(1) {
    filter: blur(10px);
}

.glowing-circle .image {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image img {
    max-width: 350px;
    object-fit: contain;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section {
    padding: 100px 10%;
    min-height: 50vh;
}

.section h2 {
    font-size: 42px;
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
    margin-bottom: 30px;
    text-align: center;
}

.section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    display: block;
    background: rgba(0,255,0,0.05);
    border: 2px solid #0f0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s;
}

.service-card:hover {
    background: rgba(0,255,0,0.1);
    box-shadow: 0 0 20px rgba(0,255,0,0.3);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 48px;
    color: #0f0;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 22px;
    color: #0f0;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    text-align: center;
}

.intro {
    font-size: 20px;
    font-weight: 500;
    color: #0f0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.related {
    margin-top: 50px;
    font-size: 18px;
}

.related a {
    color: #0f0;
    text-decoration: underline;
    transition: color 0.3s;
}

.related a:hover {
    text-decoration: none;
    color: #fff;
}

.expertise-list {
    list-style: none;
    max-width: 800px;
    margin: 50px auto;
}

.expertise-list li {
    font-size: 18px;
    padding: 15px;
    border-left: 3px solid #0f0;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.expertise-list li:hover {
    background: rgba(0,255,0,0.1);
    padding-left: 25px;
}

.expertise-list i {
    color: #0f0;
    margin-right: 10px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.tech-item {
    background: rgba(0,255,0,0.05);
    border: 2px solid #0f0;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.tech-item:hover {
    background: rgba(0,255,0,0.1);
    box-shadow: 0 0 15px rgba(0,255,0,0.3);
}

.contact {
    text-align: center;
}

.contact .btn-box {
    margin-top: 30px;
    font-size: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(0,255,0,0.05);
    border: 2px solid #0f0;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0,255,0,0.3);
}

.contact-form button {
    width: 100%;
    cursor: pointer;
    border: none;
}

#formMessage {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

.success-message {
    background: rgba(0,255,0,0.2);
    border: 2px solid #0f0;
    color: #0f0;
}

.error-message {
    background: rgba(255,0,0,0.2);
    border: 2px solid #f00;
    color: #f00;
}

.page-header {
    padding: 150px 10% 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
}

.legal-page {
    padding: 150px 10% 50px;
}

.legal-page h1 {
    font-size: 42px;
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 28px;
    color: #0f0;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page p,
.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 30px;
}

.legal-page a {
    color: #0f0;
    text-decoration: underline;
}

.footer {
    background: rgba(0,255,0,0.05);
    border-top: 2px solid #0f0;
    padding: 50px 10% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3, .footer-section h4 {
    color: #0f0;
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 10px;
    text-align: left;
}

.footer-section i {
    color: #0f0;
    margin-right: 10px;
}

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

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #000;
    border: 2px solid #0f0;
    border-radius: 50%;
    font-size: 20px;
    color: #0f0;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 15px #0f0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #0f0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0f0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #0f0;
}

@keyframes slideTop {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes circleRotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 20px 5%;
    }
    
    .home {
        padding: 100px 5% 50px;
    }
    
    .section {
        padding: 80px 5%;
    }
    
    .footer {
        padding: 40px 5% 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .lang-switch {
        position: absolute;
        top: 20px;
        right: 60px;
    }
    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        padding: 20px 0;
        display: none;
    }
    
    .navbar.active {
        display: flex;
    }
    
    .navbar a {
        margin: 10px 0;
        font-size: 20px;
        text-align: center;
    }
    
    .home {
        flex-direction: column;
        text-align: center;
        padding: 100px 5% 30px;
    }
    
    .home-content {
        max-width: 100%;
    }
    
    .home-content h1 {
        font-size: 36px;
    }
    
    .home-content h3 {
        font-size: 24px;
    }
    
    .home-img {
        width: 300px;
        height: 300px;
        margin-top: 40px;
    }
    
    .glowing-circle .image,
    .home-img .glowing-circle::after {
        width: 280px;
        height: 280px;
    }
    
    .image img {
        max-width: 250px;
    }
    
    .section h2 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section p {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .legal-page h1 {
        font-size: 32px;
    }
    
    .legal-page h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .home-content h1 {
        font-size: 28px;
    }
    
    .home-content h3 {
        font-size: 20px;
    }
    
    .home-content p {
        font-size: 14px;
    }
    
    .home-img {
        width: 250px;
        height: 250px;
    }
    
    .glowing-circle .image,
    .home-img .glowing-circle::after {
        width: 230px;
        height: 230px;
    }
    
    .image img {
        max-width: 200px;
    }
    
    .section h2 {
        font-size: 26px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
}


/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-top: 2px solid #0f0;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 255, 0, 0.2);
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: #0f0;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: 2px solid #0f0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.cookie-btn-accept {
    background: #0f0;
    color: #000;
}

.cookie-btn-accept:hover {
    box-shadow: 0 0 15px #0f0;
}

.cookie-btn-decline {
    background: transparent;
    color: #0f0;
}

.cookie-btn-decline:hover {
    background: rgba(0, 255, 0, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}