/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Header Section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #111;
    border-bottom: 2px solid #2596be;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #2596be;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background: #111;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #f7ba2b;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Dynamic 2x4 grid */
    gap: 20px;
    justify-content: center;
    align-items: start;
    padding: 20px 0;
}

/* Card Styles */
.card {
    --white: #fff;
    --background-color: #181818;
    --highlight-color: #2596be;

    background: var(--background-color);
    color: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px); /* Lift on hover */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.8);
}

/* Card Title */
.card .card_title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--highlight-color);
    text-transform: uppercase;
}

/* Horizontal Line */
.card .line {
    margin: 10px 0;
    height: 2px;
    background-color: var(--highlight-color);
    border: none;
}

/* Card List */
.card .card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.card .card__list .card__list_item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

/* Check Icon */
.card .card__list .check {
    width: 10px;
    height: 10px;
    background-color: var(--highlight-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* List Text */
.card .card__list .list_text {
    font-size: 1em;
    color: var(--white);
}

/* Contact Us Button */
.card .contact-button {
    background: linear-gradient(90deg, #5e3aee, #c56bf0);
    color: #fff;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card .contact-button:hover {
    background: #c56bf0;
    box-shadow: 0 8px 15px rgba(197, 107, 240, 0.8);
}

/* Footer Section */
.footer {
    background: #111;
    padding: 20px;
    text-align: center;
    color: #fff;
    border-top: 2px solid #2596be;
}

.footer a {
    color: #2596be;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #1a6f8a;
}
