body {
    font-family: "Comfortaa", sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(rgba(20, 4, 91, 0.05) 2px, transparent 2px),
        radial-gradient(rgba(20, 4, 91, 0.05) 2px, transparent 2px);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
    pointer-events: none;
    z-index: -1;
}

.main-wrapper {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;    
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 30px;
    gap: 100px;
}
.hero-text {
    max-width: 600px;
}
.hero-text h1 {
    font-size: 2.8rem;
    margin: 0;
    color: #1a1a1a;
}

.hero-text h1 span {
    color: #f26522;
}

.hero-text p {
    margin: 1rem 0 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
}
.hero-buttons a {
    text-decoration: none;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.contact-btn {
    background: #14045b;
    color: white;
    box-shadow: 0px 0px 15px 1px rgba(20,4,91,0.5);
    transition: 0.3s;
}

.contact-btn:hover {
    background: #f26522;
    color: white;
    box-shadow: 0px 0px 15px 1px #f26522;
}

.portfolio-btn {
    background: #f5f5f5;
    color: #14045b;
    border: 2px solid #14045b;
}

.portfolio-btn:hover {
    border: 2px solid #f26522;
    color: #f26522;
}

.hero-image-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 16px solid #14045b;
    box-shadow: inset 0px 0px 15px 1px rgba(20,4,91,0.7);
    z-index: 0;
    top: 11px;
}

.hero-image {
    position: relative;
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
}


@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

#particles-js {
    position: fixed;
    top: 90;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    pointer-events: none; 
}

@media screen and (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }    
}