* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

section {
    min-height: 100vh;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

section.curve::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #121212;
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

:root {
    --blue-dark: #0D47A1;
    --blue: #1565C0;
    --blue-light: #42A5F5;
    --dark-bg: #121212;
}

#hero {
    height: 100vh;
    top: -60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(45deg, var(--blue-dark), var(--blue), var(--blue-light));
    background-size: 400% 400%;
    animation: gradientBG 8s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.search-container {
    position: relative;
    width: 320px;
    margin: 0 auto;
}

.search-container input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    position: relative;
    z-index: 2;
}

.suggestions {
    position: absolute;
    top: calc(100% - 20px);
    left: 0;
    padding-top: 20px;
    right: 0;
    color: #000;
    background-color: #fff;
    border-top: none;
    border-radius: 0 0 25px 25px;
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
}

.suggestions li {
    list-style: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.suggestions li:hover {
    background-color: #0002;
}

.next-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    background-color: var(--blue-light);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    margin-top: 20px;
}

.next-btn:hover {
    background-color: var(--blue);
}

#services .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    #services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background-color: #1E1E1E;
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 4px 8px #0003;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px #0000004d;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.service-card button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    background-color: var(--blue-light);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.service-card button:hover {
    background-color: var(--blue);
}

.modalkkk-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000c;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 99999999999999999;
}

.modalkkk-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modalkkk {
    background-color: #1E1E1E;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: left;
    position: relative;
    box-shadow: 0 6px 12px #0000004d;
}

.modalkkk h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.modalkkk p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.modalkkk .modalkkk-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--blue);
    border: none;
    font-size: 1.5rem;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}