* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.sticky-header.visible-header {
    transform: translateY(0);
}

.sticky-header.hidden-header {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo {
    height: 40px;
    width: auto;
}

.second-logo {
    height: 40px;
    width: auto;
    margin-left: auto;
}


.header-navigation a {
    text-decoration: none;
    color: #007bff;
    margin: 0 5px;
}

.header-navigation a:hover {
    text-decoration: underline;
}

.btn-custom {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.btn-custom img {
    width: 100%;
    height: auto;
    max-width: 30px;
    margin-right: 1rem;
}

@media (max-width: 768px) {

    .header-logo,
    .second-logo {
        height: 30px;
    }
}
.form-group {
    position: relative;
    margin-top: 15px;
    margin-bottom: 20px;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-size: 18px;
    transition: border-color 0.3s;
    background-color: #f9f9f9;
    outline: none;
}
.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="number"]:focus,
.form-group input[type="password"]:focus {
    border-color: #007bff;
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 16px;
    color: #555555;
    transition: all 0.3s;
    pointer-events: none;
}

.form-group input[type="text"]:focus ~ label,
.form-group input[type="tel"]:focus ~ label,
.form-group input[type="number"]:focus ~ label,
.form-group input[type="password"]:focus ~ label,
.form-group input[type="text"]:not(:placeholder-shown) ~ label,
.form-group input[type="tel"]:not(:placeholder-shown) ~ label,
.form-group input[type="number"]:not(:placeholder-shown) ~ label,
.form-group input[type="password"]:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: #007bff;
    background-color: #f9f9f9;
    padding: 0 5px;
}
#loader {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 45px;
    aspect-ratio: 1;
    --c: no-repeat linear-gradient(#000000 0 0);
    background:
        var(--c) 0% 50%,
        var(--c) 50% 50%,
        var(--c) 100% 50%;
    background-size: 20% 100%;
    animation: l1 .5s infinite linear;
}

@keyframes l1 {
    0% {
        background-size: 20% 100%, 20% 100%, 20% 100%
    }

    33% {
        background-size: 20% 10%, 20% 100%, 20% 100%
    }

    50% {
        background-size: 20% 100%, 20% 10%, 20% 100%
    }

    66% {
        background-size: 20% 100%, 20% 100%, 20% 10%
    }

    100% {
        background-size: 20% 100%, 20% 100%, 20% 100%
    }
}

.form-section {
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-image-container {
    margin-top: 20px;
    text-align: center;
}

.form-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.banner img,
.footer-banner img {
    width: 100%;
    max-width: 640px;
    display: block;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.marquee span {
    display: inline-block;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}
.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}