
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f172a; 
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(146, 94, 111, 0.4), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 100, 255, 0.4), transparent 40%);
    filter: blur(120px);
    z-index: -1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: sticky;
    top: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    z-index: 10;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

nav a:hover, nav a.active {
    color: #4da6ff;
    border-bottom: 2px solid #4da6ff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(50px);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

footer {
    padding: 25px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    margin-top: auto;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
}

.hero-text {
    max-width: 500px;
}

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

.hero-text p {
    margin: 20px 0px;
    line-height: 1.6;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    margin-right: 10px;
}

.btn-primary {
    background-image: linear-gradient(45deg, #ff4d6d, #ff0066);
    color: white;
}

.btn-secondary {
    border: 1px solid #4da6ff;
    color: #4da6ff;
}

.btn-primary:hover {
    transform: scale(1.1);
}

.image-box {
    width: 250px;
    height: 250px;
    border: 2px solid #4da6ff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        margin-top: 40px;
    }
}