* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    color: #fff;

    background: linear-gradient(to bottom, #2D2D2D, #C33F2A ,#E98144);
    background-attachment: fixed;
    background-size: 200% 200%; /* Make the gradient larger */
    animation: gradientMove 5s ease infinite; /* Add animation */
}

/* Define the animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}


.card-icon {
    position: relative;
    top: -50px;
    opacity: 0;
    transition: top 0.5s ease, opacity 0.5s ease;
}

.card-icon.visible {
    top: 0;
    opacity: 1;
}




#galaxyCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}



.next-step-section {
    text-align: center;
}

.next-step-subtitle {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.1rem;
}

.next-step-get-started-btn {
    background-color: #C53E29;
    /* Orange button color */
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.next-step-get-started-btn:hover {
    background-color: #e66a4d;
}


.frame-container {
    padding-top: 60px;
    align-items: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.next-step-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #fff;
}

.logo {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

header {
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-size: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

nav ul li a:hover {
    opacity: 1;
}

.get-started-btn {
    background-color: #C53E29;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.get-started-btn:hover {
    background-color: #e66a4d;
}

.has-submenu {
    position: relative;
}

.submenu {
    display: none;
    list-style-type: none;
    padding: 0;
    background-color: #c53e29;
    position: absolute;
    top: 100%;
    left: -53px;
    width: 200px;
    z-index: 10;
}

@media (max-width: 768px) {
    .submenu {
        display: none;
        list-style-type: none;
        padding: 0;
        background-color: #c53e29;
        position: relative;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 10;
    }
}

.has-submenu:hover .submenu,
.has-submenu.active .submenu {
    display: block;
}

.submenu li {
    padding: 10px;
    text-align: center;
}

.submenu li a {
    color: white;
    text-decoration: none;
    display: block;
}

.frame-container {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 30vh;
    padding: 20px;
    text-align: left;
    padding-top: 80px;
}

.employee-risc-assessment-parent .lets-have-a {
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    font-size: 50px;
    margin-top: 0;
}

.mitigate-hiring-risks-container .mitigate-hiring-risks {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.hire-with-confidence {
    font-size: 30px;
    font-weight: 500;
}

.we-capitalize-on {
    font-size: 14px;
    margin-top: 2%;
    color: #B0A69E;
    line-height: 1.6;
    width: 100%
}

.mitigate-hiring-risks-container .hire-with-confidence {
    font-size: 20px;
    margin-bottom: 20px;
    /* margin-left: 24%; */
    text-align: center;
    text-align: center;
    width: 100%;
}

.swipe-down-parent {
    background-color: #C53E29;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.swipe-down-parent .services {
    font-size: 20px;
    margin-top: 0;
}

.discover-section {
    padding: 80px 0;
}

.discover-title {
    font-size: 30px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 40px;
}

.card-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;

}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    flex: 1;
    min-width: 250px;
    border: 1px solid rgb(245 245 220);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.card-description {
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.card-arrow-btn {
    background-color: #FFA552;
    ;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    transition: background-color 0.3s ease;
}

.card-arrow-btn:hover {
    background-color: #e66a4d;
}

.card-arrow-btn::after {
    content: '\2192';
    font-size: 1.2rem;
}

.web-portal-section {
    padding: 30px 0px 0px 0px;
}

.web-portal-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.web-portal-text {
    flex: 1;
    text-align: left;
}

.web-portal-text h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: normal;
}

.web-portal-text p {
    color: #B0A69E;
    ;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.learn-more-btn {
    background-color: #C53E29;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.learn-more-btn:hover {
    background-color: #e66a4d;
}

.web-portal-image {
    flex: 1;
    max-width: 50%;
}

.web-portal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 300px;
}

.frame-parent7 {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 0;
}

.vuesax500timer-parent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 600px;
    width: 100%;
    margin-left: -20px
}

.educational-qualification-veri {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.ensure-your-team-is-built-on-a-wrapper,
.using-cutting-edge-technologie-wrapper {
    color: #ddd;
    font-size: 0.9rem;
    line-height: 1.5;
}

.get-started-parent {
    border-radius: 20px;
    background-color: #c53e29;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    gap: 10px;
    width: 170px;
    font-size: 1rem;
}

.get-started-parent .services {
    font-size: inherit;
}



.call-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}


.contact-us-btn {
    background-color: ffa552;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: background-color 0.3s;
}

.hamburger.active .bar {
    background-color: #ccc;
}

.hamburger.active .hamburger-menu {
    display: block !important;
    background-color: #c53e29;
    position: absolute;
    top: 86px;
    height: 100%;
    right: 0;
    width: 100%;
    padding: 10px 0;
    transition: background-color 0.3sease;
}

.hamburger-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #333;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.hamburger-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hamburger-menu ul li {
    padding: 10px 20;
}

.hamburger-menu ul li a {
    color: white;
    text-decoration: none;
    display: block;
}

.hamburger-menu ul li a.get-started-btn {
    margin: 10px 20px;
    display: inline-block;
}


@media (max-width: 1024px) {
    .frame-container {
        padding-top: 60px;
        align-items: center;

    }

    .next-step-title {
        font-size: 2.8rem;
        font-weight: 500;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .employee-risc-assessment-parent .lets-have-a {
        font-size: 45px;
        margin-top: 30px;
    }

    .mitigate-hiring-risks-container .mitigate-hiring-risks,
    .mitigate-hiring-risks-container .hire-with-confidence {
        font-size: 18px;
        width: 70%;
        font-size: 30px;
        font-weight: 500;

    }

    /* .mitigate-hiring-risks-container .mitigate-hiring-risks{
        margin-left:220px
    } */
    .hire-with-confidence {
        font-size: 2.2rem;
    }

    .we-capitalize-on {
        font-size: 1rem;
        color: #B0A69E;
        ;
        line-height: 1.6;
        width: 100%
    }

    .frame-parent7 {
        margin-left: -360px;
    }

    .swipe-down-parent .services {
        font-size: 25px;
        margin-left: 5px;

    }

    .discover-title {
        font-size: 2.2rem;
    }

    .web-portal-text h2 {
        font-size: 20px;
        font-weight: normal;
    }

}


@media (max-width: 960px) {

    .discover-title {
        font-size: 2rem;
    }

    .web-portal-text h2 {
        font-size: 20px;
        font-weight: normal;
    }



    nav ul {
        display: none;
    }

    .header-container {
        justify-content: space-between;
        padding: 0px 25px;
    }

    .web-portal-container {
        flex-direction: column;
        text-align: center;
    }

    .web-portal-text {
        text-align: left;
    }

    .web-portal-image {
        max-width: 80%;
        margin: 20px auto 0;
    }

    .call-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

}

@media (min-width: 961px) {
    .hamburger {
        display: none !important;
    }
}

@media (max-width: 430px) {
    .stair-text {
        font-size: 9px;
        margin-left: -350px;
    }

    .mitigate-hiring-risks-container {
        padding-left: 2%;
    }



    .next-step-title {
        font-size: 2.8rem;
    }

}

@media (max-width: 768px) {
    .frame-container {
        padding-top: 40px;
        min-height: auto;
    }



    @media (max-width: 768px) {
        .frame-container {
            padding-top: 40px;
            min-height: auto;
        }

        .next-step-title {
            font-size: 2rem !important;
        }

        .next-step-get-started-btn {
            font-size: 12px;
        }

        .get-started-btn {
            display: none;
        }

        .next-step-section .next-step-subtitle {
            width: 100%;
        }

        .buller-points {
            list-style-type: none;
        }

        .employee-risc-assessment-parent .lets-have-a {
            font-size: 25px;
            margin-left: 10px;
        }

        .mitigate-hiring-risks-container .mitigate-hiring-risks {
            font-size: 16px;
        }

        .hire-with-confidence {
            font-size: 20px;
        }

        .we-capitalize-on {
            font-size: 14px;
            width: 100%;
        }

        .swipe-down-parent .services {
            margin-left: 10px;
            font-size: 16px;
        }
    }

    .swipe-down-parent {
        margin-top: 10px;
    }

    .discover-section,
    .web-portal-section,
    .frame-parent7 {
        padding: 60px 0;
    }

    .discover-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .web-portal-text h2 {
        font-size: 20px;
        font-weight: normal;
    }

    .card-container {
        flex-direction: column;
        gap: 30px;
    }

    .card {
        margin-bottom: 0;
    }

    .web-portal-image {
        max-width: 100%;
    }

    .frame-parent7 {
        padding: 40px 15px;
        gap: 30px;
        margin: 0px;
    }

    .vuesax500timer-parent {
        gap: 15px;
    }

    .educational-qualification-veri {
        font-size: 20px;
    }

    .ensure-your-team-is-built-on-a-wrapper,
    .using-cutting-edge-technologie-wrapper {
        font-size: 0.85rem;
    }


    .hamburger {
        display: flex;
    }

    nav.navbar {
        display: none;
    }

    nav.navbar.active {
        display: block;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background-color: #333;
        z-index: 100;
    }

    nav.navbar.active ul {
        display: block;
        padding: 15px 0;
    }

    nav.navbar.active ul li {
        margin-left: 0;
        padding: 10px 0;
    }

    nav.navbar.active ul li a {
        display: block;
        padding: 10px 20px;
        text-align: center;
    }

    nav.navbar.active .get-started-btn {
        display: inline-block;
        margin: 10px 20px;
    }

    nav.navbar.active .submenu {
        position: static;
        width: auto;
        box-shadow: none;
    }

    .mitigate-hiring-risks-container .mitigate-hiring-risks,
    .mitigate-hiring-risks-container .hire-with-confidence {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }


    .has-submenu>a:after {
        content: "▼";
        margin-left: 5px;
    }

    .has-submenu.active>a:after {
        content: " ▲";
    }

    .has-submenu>a i,
    .has-submenu.active>a i {
        font-weight: 900;
    }

    @media (max-width: 1025px) {
        .stair-text {
            font-size: 15px;
            line-height: 1.5;
            white-space: nowrap;
            display: inline-block;
            position: relative;
            color: #B0A69E;
            margin-left: -370px;
            margin-top: 5%;
        }
    }

    @media (min-width: 1025px) {
        .container {
            max-width: 1400px;
        }

        .hire-with-confidence {
            font-size: 30px;
            font-weight: 500;

        }

        header {
            padding: 30px 0;
        }

        nav ul li {
            margin-left: 35px;
        }

        nav ul li a {
            font-size: 17px;
        }

        .get-started-btn {
            padding: 14px 30px;
            font-size: 1.1rem;
        }

        .frame-container {
            padding-top: 100px;
            min-height: 80vh;
        }

        .employee-risc-assessment-parent .lets-have-a {
            font-size: 40px;
            margin-bottom: 30px;
        }

        .mitigate-hiring-risks-container .mitigate-hiring-risks,
        .mitigate-hiring-risks-container .hire-with-confidence {
            font-size: 30px;
            font-weight: 500;
        }

        .swipe-down-parent {
            margin-top: 30px;
        }

        .swipe-down-parent .services {
            font-size: 22px;
        }

        .discover-section,
        .web-portal-section,
        .frame-parent7 {
            padding: 100px 0;
        }

        .discover-title {
            font-size: 3rem;
            margin-bottom: 50px;
        }

        .web-portal-text h2 {
            font-size: 20px;
            font-weight: normal;
        }

        .card-container {
            gap: 30px;
        }

        .card {
            min-width: 300px;
            padding: 40px;
        }

            /* {
            font-size: 3rem;
            margin-bottom: 25px;
        } */

        .card-title {
            font-size: 1.7rem;
            margin-bottom: 20px;
        }

        .card-description {
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .web-portal-container {
            gap: 80px;
        }

        .web-portal-text h2 {
            font-size: 20px;
            margin-bottom: 30px;
            font-weight: normal;
        }

        .web-portal-text p {
            font-size: 1.1rem;
            margin-bottom: 40px;
        }

        .learn-more-btn {
            padding: 14px 35px;
            font-size: 1.1rem;
        }

        .web-portal-image {
            max-width: 60%;
        }

        .frame-parent7 {
            padding: 80px 20px;
            gap: 50px;
        }

        .vuesax500timer-parent {
            gap: 25px;
        }

        .educational-qualification-veri {
            font-size: 28px;
        }

        .ensure-your-team-is-built-on-a-wrapper,
        .using-cutting-edge-technologie-wrapper {
            font-size: 1rem;
        }

        .get-started-parent {
            padding: 12px 25px;
            font-size: 1.1rem;
        }





.services-last-portion {
    text-align: center;
    padding-top: 2%;

}

.stair-text {
    font-size: 9px;
    line-height: 1.5;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    color: #B0A69E;
    margin-left: -350px;
    margin-top: 5%;
}

.stair-text p {
    margin: 0;
    position: absolute;
    left: 50%;

}

.stair-text p:nth-child(1) {
    top: 0;
}

.stair-text p:nth-child(2) {
    top: 20px;
}

.stair-text p:nth-child(3) {
    top: 40px;
}

.portion-btn {
    margin-top: 30%;
    border-radius: 20px;
    background-color: #c53e29;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    gap: 10px;
    font-size: 1rem;
}


.next-step-title {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}

.next-step-subtitle {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.1rem;
}

.next-step-get-started-btn {
    background-color: #C53E29;
    /* Orange button color */
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.next-step-get-started-btn:hover {
    background-color: #e66a4d;
}

.next-step-section .next-step-subtitle {
    width: 100%;
}
    }
}

    /* General Page Styling */


    /* Main Wrapper */
    .text-image-wrapper {
      display: flex;
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 20px;
      position: relative;
      margin-left:10%
    }

    /* Left Section: Text Blocks */
    .text-container {
      flex: 1;
      padding-right: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .text-block {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      opacity: 0.3;
      transform: translateY(50px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .text-block.active {
      opacity: 1;
      transform: translateY(0);
    }

    h2 {
      font-size: 36px;
      font-weight: bold;
    }

    p {
      font-size: 18px;
      line-height: 1.6;
      color: #d3d3d3;
    }

    .cta-button {
    background-color: #C53E29;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    width:30%;
    border: none;
    margin-top: 10px
    }

    .cta-button:hover {
     background-color: #e66a4d;
    }

    /* Right Section: Sticky Image */
    .image-section {
      flex: 1;
      position: sticky;
      top: 20%;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .image-container {
      position: relative;
      width: 400px;
      border-radius: 50%;
      height: 400px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .image-container img {
      position: absolute;
      width: 80%;
      height: 80%;
      border-radius: 50%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.1);
      transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    }

    .image-container img.active {
      opacity: 1;
      transform: scale(1);
    }
    @media (max-width: 768px) {
    .cta-button {
        width: 300px;
    }
    .text-container{
    margin-left: -40px;
}
.text-image-wrapper {
    display: flex;
    flex-direction: column
}
/* .image-section {
        top: 10%;  /* Adjust top position for mobile */
         /* Reduce the height for mobile */
     */

    .image-container {
        width: 250px; /* Reduce width for mobile */
        height: 250px; /* Reduce height for mobile */
    }

    .text-container {
        flex-direction: column;
        text-align: left;
    }


    .image-container img {
        transform: scale(1); /* Make the image size fit the container */
    }
    .text-block {
      min-height: 50vh;

    }
    h2 {
      font-size: 20px;
    }

    }
@media (max-width: 430px) {


    /* .image-section {
        top: 0;
        height: auto;
        display: block;

    } */
    .image-section {

        display: block;
    }

    .image-container {
        width: 200px;
        height: 200px;
        margin: 0;
    }

    .image-container img {
    transform: scale(1);
    transition: none;
    width: 100%;  /* Ensure the image is responsive */
    height: auto;  /* Maintain aspect ratio */
    display: none;  /* Make sure the image is a block element (good for alignment) */
    margin-left: 0;  /* Left-align the image */
}


    .image-container img.active {
        opacity: 1;
    }
}


