* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#contact {
    scroll-margin-top: 180px;
}

#services {
    scroll-margin-top: 120px;
}

#application {
    scroll-margin-top: 120px;
}

#about {
    scroll-margin-top: 120px;
}

.about {
    width: 80%;

    max-width: 900px;

    margin: auto;

    margin-top: 80px;

    margin-bottom: 80px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    padding: 40px;

    border-radius: 20px;
}

.about p {
    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 20px;
}

.about h3 {
    color: #a855f7;

    margin-top: 30px;

    font-size: 24px;
}

body {
    background-color: #111827;

    background-image:
    linear-gradient(
    rgba(17, 24, 39, 0.85),
    rgba(17, 24, 39, 0.85)
    ),
    url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?q=80&w=1974&auto=format&fit=crop');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    background-attachment: fixed;

    color: white;

    font-family: Arial, sans-serif;

    text-align: center;

    padding-top: 80px;

    margin: 0;
}

h1 {
    color: #a855f7;
    font-size: 48px;
}

.hero {
    padding: 80px 20px 120px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 60px;

    margin-bottom: 20px;

    color: #a855f7;
}

.hero p {
    font-size: 22px;

    margin-bottom: 30px;
}

button {
    background-color: #a855f7;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
}

h2 {
    margin-top: 60px;
    color: #a855f7;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 15px;
    font-size: 20px;
}

nav {
    background-color: #1f2937;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 40px;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;
}


nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px;
}

nav a:hover {
    color: #a855f7;
}

form {
    margin-top: 40px;

    display: flex;
    flex-direction: column;

    width: 300px;

    margin-left: auto;
    margin-right: auto;
}


input,
select,
textarea {
    margin-bottom: 15px;

    padding: 12px;

    border: none;

    border-radius: 8px;

    font-size: 16px;

    width: 100%;
}

textarea {
    height: 120px;

    resize: none;
}

.contact {
    margin-top: 80px;
    padding-bottom: 60px;
}

.contact p {
    font-size: 20px;
    margin: 10px;
}

button {
    background-color: #a855f7;

    color: white;

    border: none;

    padding: 15px 30px;

    font-size: 18px;

    border-radius: 10px;

    cursor: pointer;

    transition: 0.3s;
}

button:hover {
    background-color: #9333ea;


    transform: scale(1.05);
}


footer {
    margin-top: 80px;

    padding: 30px;

    background-color: rgba(0,0,0,0.4);

    font-size: 14px;
}

.form-container {
    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    width: 400px;

    margin: auto;

    padding: 30px;

    border-radius: 20px;

    margin-top: 50px;
}

.logo {
    display: flex;

    align-items: center;

    gap: 15px;
}

.logo img {
    width: 60px;

    height: 60px;

    border-radius: 12px;
}