body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* .container-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}
 */


.image-section {
    flex: 1;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.text-section {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-section h2 {
    color: #000000;
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    text-transform: capitalize;

}

.text-section h3 {
    font-size: 1.5em;
    margin: 0 0 15px;
}

.text-section p {
    margin: 0 0 20px;
    line-height: 1.5;
}

.text-section button {
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 201px;
    border-radius: 34px;
    font-size: 15px;
    height: 47px;
    margin-top: 10px;
}

.text-section button:hover {
    background-color: #333;
}

.about h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    line-height: 50px;
    letter-spacing: -1.44px;
    margin-bottom: 0px;
    margin-top: 8px;
}

.about h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 48px;
    line-height: 50px;
    color: #010101;
    letter-spacing: -1.44px;
}

.about p {
    font-family: 'Montserrat';
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    margin-top: 10px;
    line-height: 25px;
    letter-spacing: 0;
    color: #000000;
}

.about span {
    color: #F26139;
}


@keyframes move-nw {
    0% {
        transform: translate3d(0, 0, 0);
        animation-timing-function: ease-in
    }

    50% {
        transform: translate3d(-10px, 10px, 0);
        animation-timing-function: ease-out
    }

    100% {
        transform: translate3d(0, 0, 0)
    }
}

.move-nw {
    animation-name: move-nw;
    animation-duration: 5s;
    animation-iteration-count: infinite
}


.astronaut {
    max-width: 415px;
    left: 45px;
    top: 1px;
    position: relative;
    z-index: 2;
    animation: floatInSpace 8s ease-in-out infinite;
}

/* Keyframes for multi-direction floating */
@keyframes floatInSpace {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    25% {
        transform: translate(10px, -15px) rotate(2deg);
    }

    50% {
        transform: translate(0px, -25px) rotate(-2deg);
    }

    75% {
        transform: translate(-10px, -15px) rotate(1.5deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

.astronaut {
    filter: drop-shadow(0 5px 20px rgba(255, 255, 255, 0.3));
}

@keyframes floatAstronaut {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}


.fig-hr {
    margin-top: -88px;
    color: #00000057;
    z-index: -1;
    position: relative;
}




.content-wrapper-sec {
    position: relative;
    background-color: #fff;
}

.content-wrapper img {
    position: absolute;
    top: 550px;
    right: -205px;
}