/* COLORS */

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #121212;
    color: #FAFDF6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    background: #4B0082;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
header div {
    max-width: 1200px;
    padding: 0 20px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    font-weight: bold;
    margin-left: 20px;
}

nav ul li a {
    color: #FAFDF6;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFBF00;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #FFBF00;
}
.services {
    padding: 80px 0;
    background-color: #121212;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #FFBF00;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    background-color: #333333;
}

.service-item h3 {
    color: #ffa500;
}

.hero {
    background-image: linear-gradient(0deg, #121212, #250246, #4b0082);
    color: white;
    text-align: center;
    padding: 100px 0;
    min-height: 250px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.highvis-button {
    background-color: #FFBF00;
    color: #121212;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.highvis-button:hover {
    background-color: #ffbf00c0;
    color: #121212;
}

.about {
    background-color: #121212;
    padding: 80px 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ffa500;
}

footer {
    background-color: #121212;
    text-align: center;
    padding: 20px 0;
}
#transition {
    height: 150px;
    background-color: #121212;
}

.contact a {
    text-decoration: none;
    color: #FFBF00;
}
.contact a:hover {
    text-decoration: underline;
}
.contact {
    text-align: center;
}
.contact h2 {
    margin-bottom: 40px;
    color: #ffa500;
}