.desktop-only {
    display: inline;
}
.mobile-only {
    display: none;
}

::-webkit-scrollbar {
    display: none;
}

.white {
    color: #FFF !important;
}
.black {
    color: #000 !important;
}
.dark-blue {
    color: #193452 !important;
}
.orange {
    color: #e57128 !important;
}

body {
    margin: 0;
    overflow-x: hidden;
}

.hero {
    background: #9CECFB;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #0052D4, #65C7F7, #9CECFB);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #0052D4, #65C7F7, #9CECFB); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: white;
    text-align: center;
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.input-group-floating {
    position: relative;
    width: 400px;
    max-width: 100%;
    margin: 20px auto; /* Added top margin for better spacing */
}

.input-group-floating > .input-group-text {
    background-color: #f8f9fa; /* Light background for the prefix */
    color: #193452; /* Dark blue for the prefix text */
    border: 1px solid #ced4da; /* Consistent border */
    border-right: none; /* Remove right border for seamless integration */
}

.input-group-floating > .form-control,
.input-group-floating > .form-select {
    padding: 1rem 0.75rem;
    border: 1px solid #ced4da; /* Consistent border */
    border-left: none; /* Remove left border for seamless integration */
    color: #193452; /* Dark blue for input text */
}

.input-group-floating > .form-control:focus,
.input-group-floating > .form-select:focus {
    border-color: #e57128; /* Orange border on focus */
    box-shadow: 0 0 0 0.25rem rgba(229, 113, 40, 0.25); /* Orange shadow on focus */
}

.input-group-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: all .1s ease-in-out;
    color: #193452; /* Dark blue for label text */
}

.input-group-floating > .form-control:focus ~ label,
.input-group-floating > .form-control:not(:placeholder-shown) ~ label,
.input-group-floating > .form-select:focus ~ label,
.input-group-floating > .form-select:not([value=""]) ~ label {
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
    color: #e57128; /* Orange label on focus/filled */
}

/* Updated button styling */
#customUrlForm button[type="submit"] {
    background-color: #e57128; /* Orange background for button */
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#customUrlForm button[type="submit"]:hover {
    background-color: #d16423; /* Slightly darker orange on hover */
}

/* URL Display Styling */
.url-display {
    background-color: rgba(229, 113, 40, 0.2); /* Light orange background */
    padding: 10px 20px;
    border-radius: 15px;
    margin-top: 20px;
    max-width: 500px;
    margin: auto;
    margin-bottom: 3em;
    color: #193452; /* Dark blue text */
    font-size: 1.5em;
    border: 2px solid #e57128;
}

.url-display strong {
    color: #9CECFB;
}

.benefits h4 {
    margin-bottom: 20px;
}

.benefits ul {
    list-style: none;
    padding: 0;
}

.benefits ul li {
    margin-bottom: 10px;
}

.social-proof {
    text-align: center;
}

.testimonials {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial {
    margin: 0 20px;
    max-width: 400px;
}

.success-stats {
    font-weight: bold;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features ul li {
    margin-bottom: 10px;
}

.call-to-action {
    background-color: #f0f0f0;
}

.bottom-banner {
    position: relative;
    width: 100%;
}

/* Footer */
footer {
    background: transparent;
    text-align: center;
    justify-content: center;
}
footer a {
    text-decoration: none;
    color: #5B7C99;
}
footer a:hover {
    text-decoration: none;
    color: #f4761f;
}
footer a.btn:hover {
    color: #f4761f;
}
footer p {
    font-size: 0.8em;
}

/* SCREEN SIZE ADJUSTMENTS */
@media (max-width: 767px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: inline;
    }
}