body {
    background: radial-gradient( circle at top left, rgba(255,193,7,0.12), transparent 35% ), radial-gradient( circle at top right, rgba(59,130,246,0.12), transparent 35% ), radial-gradient( circle at bottom left, rgba(34,197,94,0.10), transparent 35% ), radial-gradient( circle at bottom right, rgba(168,85,247,0.10), transparent 35% ), #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.hero {
    text-align: center;
    padding: 15px 20px;
}

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

.tagline {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    color: #64748b;
}

.badge {
    display: inline-block;
    padding: 12px 24px;
    background: #0f766e;
    color: white;
    border-radius: 30px;
    margin: 25px 0;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient( 90deg, #04172b, #1e3a8a, #4c1d95 );
    color: #d4af37;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
}
.services {
    padding: 20px;
    overflow: hidden;
}

.service-slider {
    overflow: hidden;
    position: relative;
}

.service-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollServices 25s linear infinite;
}

.service-card {
    width: 350px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    flex-shrink: 0;
}
    .service-card:hover {
        transform: translateY(-5px);
        transition: .3s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,.12);
    }

/*.services {
    padding: 0 20px 20px;
}

    .services h2 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 1.8rem;
    }*/

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

    .card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .card p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

.page {
    padding: 60px 20px;
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.success {
    background: #dcfce7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.site-header {
    width: calc(100% - 80px);
    max-width: 1550px;
    margin: 15px auto;
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient( 90deg, #04172b, #1e3a8a, #4c1d95 );
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 130px;
    height: auto;
}

.company-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-links a {
        color: #d4af37;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: all .3s ease;
    }

        .nav-links a:hover {
            color: #d4af37;
        }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
}

    .hamburger span {
        width: 28px;
        height: 3px;
        margin: 3px 0;
        background: white;
        border-radius: 2px;
    }

@media (max-width: 768px) {

    .landing-page {
        min-height: auto;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }
    .logo {
        width: 90px;
    }

    .navbar {
        min-height: 75px;
    }
    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient( 90deg, #04172b, #1e3a8a, #4c1d95 );
        flex-direction: column;
        padding-top: 120px;
        transition: right .3s ease;
    }

        .nav-links.active {
            right: 0;
            display: flex;
        }
    .hamburger {
        display: flex;
    }
}
.landing-page {
    min-height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.site-footer {
    margin-top: 60px;
    background: linear-gradient( 90deg, #04172b, #1e3a8a, #4c1d95 );
    color: white;
    padding-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px 30px;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.8;
    margin: 8px 0;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
}

    .footer-section a:hover {
        color: #d4af37;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    text-align: center;
    padding: 20px;
}
.text-danger {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.input-validation-error {
    border: 2px solid #dc2626;
}

.field-validation-valid {
    display: none;
}
@keyframes scrollServices {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
.service-track:hover {
    animation-play-state: paused;
}
