
* {
    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;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    text-align: left;
    padding: 80px 8%;
}

.contact-info {
    flex: 1;
}

.contact-title span {
    color: #4da6ff;
}

.contact-details {
    margin: 20px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons .icon {
    width: 40px;
    height: 40px;
    border: 1px solid #4da6ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4da6ff;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons .icon:hover {
    background: #4da6ff;
    color: white;
    box-shadow: 0 0 10px #4da6ff;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    outline: none;
}

.btn-submit {
    padding: 15px;
    border-radius: 30px;
    border: none;
    background: #00ffff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6); 
}

.btn-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}