:root {
    --primary-color: #000000;
    --secondary-color: #708090;
    --text-color: #333;
    --bg-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: var(--primary-color);
    color: #ffffff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

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

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

nav ul li a {
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

#showcase {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("backhome.jpg") no-repeat center center/cover;
}

#showcase h1 {
    font-size: 50px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

#showcase p {
    font-size: 20px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: #d3d3d3;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.btn:hover {
    background: #696969;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#our-work {
    padding: 80px 0;
}

#our-work h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: darkgray;
}

#why {
    padding: 50px 0;
    color: white;
    text-align: center;
    font-size: 2em;
}

#why h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5em;
    color: darkgray;
}

#providers {
    padding: 50px 0;
    color: white;
    text-align: center;
    font-size: 2.5em;
}

#solutions {
    padding: 50px 0;
}

#solutions h3 {
    padding: 50px 0;
    font-size: 3em;
    text-align: center;
    color: white;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.work-card {
    background: #d3d3d3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.work-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.work-card-content {
    padding: 20px;
}

.work-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.work-card p {
    margin-bottom: 15px;
}

footer {
    background: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#animated-text {
    font-size: 1.1em;
    font-weight: bold;
}

.highlight {
    color: red;
}

@keyframes slideDown {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-text {
    animation: slideDown 0.5s ease-out;
}
