* {
    /* margin: 2rem; */
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8A2BE2;
    --primary-hover: #7020BD;
}


body {
    font-family: "Montserrat", sans-serif;
    background-color: #0F0F0F;
    color: #fff;
    line-height: 1.6;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    background-color: #0F0F0F;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    color: #FFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.start-project-button {
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.start-project-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

.start-project-button svg {
    transition: transform 0.3s ease;
}

.start-project-button:hover svg {
    transform: translateX(5px);
}

.hero-decoration {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.purple-gradient-circle {
    position: absolute;
    right: -20%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(138, 43, 226, 0.1) 40%, rgba(138, 43, 226, 0) 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.grid-pattern {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(138, 43, 226, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 43, 226, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(138, 43, 226, 0.15);
    border-radius: 10px;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 30%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 60%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.05);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 1rem;
    }

}
