.design-hero {
    position: absolute;
    z-index: 1;
    height: 80%;
    animation: moveUpDesign 5s ease-in-out infinite;
}

.hero-img {
    position: relative;
    top: 2rem;
    right: -3rem;
    z-index: 2;
    height: 100%;
    animation: moveDownHero 5s ease-in-out infinite;
}

@keyframes moveUpDesign {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Adjust the distance of movement */
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes moveDownHero {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px); /* Adjust the distance of movement */
    }
    100% {
        transform: translateY(0);
    }
}


.intro-text {
    font-weight: 600;
    padding-inline: 15px;
    font-size: large;
    width: 60%;
}

.signup-btn {
    background-color: var(--dark-blue);
    color: var(--white);
}

.image-container {
    transform: translateY(-35%);
}

.first-box {
    background-color: var(--pink);
}

.third-box {
    background-color: var(--light-blue);
}

.Frame-img {
    width: auto;
}

.card-home-label {
    font-weight: 500;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.card-home {
    flex: 0 0 100%;
    flex-direction: row;
    border: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.card-home img {
    width: 4rem;
    right: -1.7rem;
    position: relative;
    height: auto;
    object-fit: cover;
}

.card-home-title {
    background-color: var(--background-primary-light-gray);
    border-radius: 20px;
    padding-inline-start: 3rem;
    margin-bottom: 0;
    font-weight: bold;
    text-decoration: none;
    color: black;
    align-content: center;
    width: 182px;
    height: 80px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 1rem;
}

.indicator {
    border: none;
    background-color: var(--lime-green);
    padding: 0.3rem;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 5px;
}

.indicator.active {
    background-color: var(--dark-blue);
    color: white;
}

.sharefield img {
    width: 20px;
    right: 0rem !important;
    object-fit: contain !important;
}

.sharefield p {
    margin-bottom: 0;
    font-weight: normal;
}

.sharefield {
    flex-direction: row;
    display: flex;
}

.design-img img {
    width: 6rem;
    z-index: 10;
}

.left-design {
    top: -5rem;
    position: relative;
}

.right-design {
    bottom: -10rem;
    position: relative;
}

.contactus-container {
    background-color: var(--background-primary-light-gray);
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-blue) !important;
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-body-bg) !important;
    border: none;
    border-radius: 15px 0 0 15px !important;
}

.custom-input {
    border: none;
    border-radius: 0 15px 15px 0 !important;
}

.custom-textarea {
    border: none !important;

}

.fa-envelope {
    color: var(--dark-blue);
}


/* Medium screens (min-width: 768px) */
@media (min-width: 768px) {
    .card-home {
        flex: 0 0 25%;
        /* Show 4 cards at a time */
    }
}


@media (max-width: 575.98px) {
    .intro-text {
        width: 90%;
    }

}