 .navbar{
        background: #fff;
        position:static
    }
    .navbar-light .navbar-nav .nav-link {
        color: #000000 !important;
    }
    .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
        color: #fff;
    }
    .navbar-light .navbar-nav .nav-link{
        padding-top: 10px;
        padding-bottom: 10px;
        transition: 0.3s;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 15px;
    }
    .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{
        background: -webkit-linear-gradient(#E4499C, #6C69F0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: 0.3s;
        color: black;
    }
    .sm-menu{
        border-radius: 20px;
        border: 0px;
        top: 95%;
        box-shadow: rgb(144 90 219 / 29%) 0px 7px 20px 0px;
    }
    .dropdown-item {
        color: #000000;
        font-size: 15px;
        display: flex;
        align-items: center;
        margin: 15px 0px;
    }
    .dropdown-item:focus, .dropdown-item:hover{
        background: -webkit-linear-gradient(#E4499C, #6C69F0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .dropdown-item.active, .dropdown-item:active {
        color: #000;
        text-decoration: none;
        background: -webkit-linear-gradient(#E4499C, #6C69F0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .navbar-toggler{
        outline: none !important;
    }
    .navbar-tog{
        color: #1ebdc2;
    }
    .megamenu-li {
        position: static;
    }

    .megamenu {
        position: absolute;
        width: 80%;
        left: 10%;
        right: 0;
        top: 70%;
        padding: 38px 15px 15px 15px;
        border-top: 0 !important;
        border-radius:20px;
    }
    .megamenu h6{
        font-size: 22px;
        background: -webkit-linear-gradient(#E4499C, #6C69F0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 12px;
    }
    .megamenu i{
        width: 20px;
    }
    img.menuicon {
        max-width: 35px;
        margin-right: 15px;
    }
    .navbar-expand-lg .navbar-collapse{
        display: flex !important;
        flex-basis: auto;
        justify-content: center;
    }
    .topheading {
        padding-bottom: 15px;
        border-bottom: 1px solid #d9d9d9;
    }
    .topheading p{
        font-size: 13px;
        color:black;
    }
    @media only screen and (min-width: 991px){
        .header .main-header .header-left{
            width: 80%;
        }
        .header-nav{
            width:100%;
        }
        .navbar{
            width:100%;
        }
    }
    .dropdown-menu a.dropdown-item {
        display: flex !important;
        align-items: center !important;
        justify-content: start !important;
    }
    .responsive-button {
        display: none;
    }

    /* Show button when screen size is less than 900px */
    @media (max-width: 1000px) {
        .responsive-button {
            display: inline-block; /* or 'block' depending on your design */
        }
    }
    .header-logo img {
    max-height: 60px; /* Adjust logo size to fit reduced height */
}


:root {
        --brand-gradient: linear-gradient(90deg, #D0003A, #B51151, #AB2379);
        --brand-gradient-bottom: linear-gradient(to top, #D0003A, #B51151, #AB2379);
        --brand-gradient-signup: linear-gradient(to bottom, #AC2377 0%, #B90F4E 40%, #800D3A 100%);
        --shadow-color: rgba(0, 0, 0, 0.1);
    }

    body {
        font-family: 'Roboto', sans-serif;
        background-color: #ffffff;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        background: white;
        background-color: #ffffff;
        height: 91px;
    }

    .logo {
        font-size: 24px;
        font-weight: bold;
        color: #aa007f;
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 30px;
        margin-right: 8px;
    }

    .nav {
      display: flex;
      list-style: none;
      padding: 0;
      gap: 20px;
    }

    .nav-item {
      position: static;
    }

    .nav-link {
      text-decoration: none;
      color: #333;
      font-size: 18px;
      cursor: pointer;
    }

    .nav-link:hover {
        color: #aa007f;
    }

    .dropdown {
      display: none;
      position: absolute;
      top: 200px;
      left: 50%;
      transform: translateX(-50%);
      width: 1445px;
      height: 606px;
      background: white;
      box-shadow: 0px 5px 15px var(--shadow-color);
      border-radius: 15px;
      padding: 32px 72px;
      z-index: 1000;
    }

    .dropdown.active {
      display: flex;
      justify-content: space-between;
      /* position: relative; */
    }

    .dropdown-box {
      width: 634.5px;
      height: 542px;
      background: white;
      border-radius: 15px;
      padding: 32px;
      box-shadow: 0px 13px 21px 0 var(--shadow-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .dropdown::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 100%;
        background: var(--brand-gradient);  
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
    }

    .dropdown-box h3 {
      font-size: 24px;
      font-weight: bold;
      background-image: var(--brand-gradient);
      color: transparent;
      background-clip: text;
    }

    .dropdown-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      align-items: center;
    }

    .dropdown-list img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .dropdown-list-item {
      display: flex;
      align-items: center;
      font-size: 14px;
      font-weight: bold;
      padding: 8px;
      border-radius: 5px;
      cursor: pointer;
      text-decoration: none;
      color: black;
    }

    .dropdown-list-item:hover {
        color: unset !important;
        text-decoration: unset !important;
    }

    .dropdown-list-item:hover {
      background-color: #FBE7FF;
    }

    .dropdown-button {
        background: var(--brand-gradient);
        color: white;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        width: 159px;
        height: 47px;
        align-self: flex-end;
    }

    .solutions-box {
      width: 403px;
      height: 457px;
    }

    .resources-box {
        width: 542px;
        height: 245px;
    }

    .resources-blogs {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .resources-blogs p {
        font-size: 18px;
        line-height: 30px;
        padding: 8px;
        margin-bottom: -8px;
    }
    
    .blogs-image {
        height: 100px;
        width: 200px;
        border-radius: 25px;
        background-color: #E1A2BD;
    }

    .read-more {
        text-decoration: none;
        margin-left: auto;
        color: black;
        font-weight: bold;
    }

    .solutions-dropdown {
      gap: 32px;
      align-items: center;
      justify-content: center;
      display: none;
    }

    .resources-dropdown {
        width: 951px;
        height: 351px;
        gap: 32px;
        align-items: center;
        justify-content: center;
        display: none;
    }

    .solutions-testimonial {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 391px;
    }

    .solutions-testimonial img {
      width: 327px;
      height: auto;
    }

    .solutions-testimonial .stars {
      width: 140px;
      height: 28px;
    }

    .testimonial-header {
      font-size: 16px;
      font-weight: 520;
      background-image: var(--brand-gradient);
      color: transparent;
      background-clip: text;
    }

    .top-testimonial {
        display: flex;
        align-items: center;
        gap: 72px;
        margin-bottom: 32px;
    }

    .list-solutions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .btn-signup {
        background: var(--brand-gradient);
        width: 118px;
        height: 47px;
        border: none;
        color: white;
        font-weight: 600;
        border-radius: 16px;
        padding: 8px 16px;
        font-size: 16px;
    }

    /* .btn-login {
        border: 2px solid #aa007f;
        width: 118px;
        height: 47px;
        color: #aa007f;
        font-weight: 600;
        border-radius: 16px;
        padding: 8px 16px;
        font-size: 16px;
        background-color: white;
    } */

    .menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        outline: inherit;
    }

    .nav-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }

    .mobile-menu-dropdown {
        display: none;
        position: absolute;
        top: 97px;
        right: 19px;
        width: 400px;
        /* height: 373px; */
        background: white;
        box-shadow: 0px 5px 15px var(--shadow-color);
        border-radius: 15px;
        padding: 32px;
        padding-left: 52px;
        z-index: 1000;
        gap: 18px; 
    }

    .mobile-menu-dropdown.active {
        display: block;
    }

    .mobile-menu-list {
        list-style: none;
        padding: 32px;
        margin: 0;
        display: flex;
        gap: 18px;
        flex-direction: column;
        justify-content: center;
        box-shadow: 0 13px 21px 0 var(--shadow-color);
    }

    .mobile-menu-dropdown::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 100%;
        background: var(--brand-gradient);  
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
    }

    .mobile-menu-list li {
        display: block;
        align-items: center;
        gap: 15px;
        padding: 16px;
        cursor: pointer;
        border-radius: 15px;
    }

    .mobile-menu-list img {
        width: 24px;
        height: 24px;
    }

    .mobile-menu-list a {
        text-decoration: none;
        font-size: 14px;
        font-weight: bold;
        color: black;
    }

    /* .mobile-menu-list li:hover {
        background-color: #FBE7FF;
    } */

    @media (min-width: 1300px) {
        .menu {
            display: none;
        }
    }

    @media (max-width: 1200px) {
        .nav-item {
            display: none;
        }
        .menu {
            display: block;
        }
    }

    /* HERO */

    .btn-signupnow {
        width: 152px;
    }

    .btn-demo {
        width: 147px;
        background-color: white;
    }

    .hook1 {
        font-size: 60px;
        font-weight: 400;
        color: #333333;
    }

    .with {
        display: none;
        color: #333;
    }

    .hook2 {
        font-size: 60px;
        font-weight: 400;
        background-image: var(--brand-gradient);
        color: transparent;
        background-clip: text;
        margin-bottom: 24px;
    }

    .description {
        font-size: 20px;
        color: #333333;
        margin-bottom: 30px;
    }

    @media (max-width: 1440px) {
        .with {
            display: inline-block;
        }

        .without {
            display: none;
        }
    }

    @media (max-width: 600px) {
        .hero-container {
            margin-bottom: 0;
        }
        .hook1 {
            padding: 0px 32px;
            font-size: 34px;
        }
        .hook2 {
            font-size: 34px;
        }
        .description {
            padding: 0px 32px;
            font-size: 12px;
        }
        .newline {
            display: none;
        }
    }

    /* COMPANIES */
    .companies-container {
        background-color: white;
        margin-bottom: 12px;
    }

    .companies-container p {
        font-size: 24px;
    }

    .company-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 23px;
        /* margin-bottom: 50px; */
    }

    @media (max-width: 600px) {
        .companies-container {
            display: none;
        }
    }

    /* HIRING */
    .hiring-section {
        display: flex;
        flex-direction: column;
        padding: 98px 52px 0px;
        background: var(--brand-gradient-signup);
        height: auto;
        color: white;
    }

    .hiring-text h1 {
      font-size: 64px;
      font-weight: bold;
      margin: 0 0 20px;
    }

    .hiring-text p {
      font-size: 40px;
      margin: 0;
    }

    .hiring-button {
      margin-left: auto;
      width: 152px;
      height: 47px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: white;
      color: #a50050;
      font-size: 16px;
      font-weight: bold;
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 16px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      transition: background 0.3s ease;
    }

    @media (max-width: 1440px) {
        .hiring-section {
            padding: 98px 90px;
        }
    }

    @media (max-width: 1300px) {
        .hiring-section {
            padding: 98px 72px;
        }

        .hiring-button {
            margin-top: 24px;
        }
    }

    @media (max-width: 600px) { 
        .hiring-section {
            text-align: center;
            padding: 0px;
        }
        .hiring-text p {
            font-size: 34px;
            margin-bottom: 32px;
        }
        .hiring-text h1 {
            text-align: center;
            font-size: 24px!important;
        }
        .hiring-button {
            margin-left: 0;
        }
        .hiring-text h6{
            font-size: 24px!important;
            line-height: 30px;
        }
        .footer{
            padding: 20px!important;
            gap: 1%!important;
        }
        .hiring-button-container{
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

    }

    /* FOOTER */




    .footer {
    background: linear-gradient(to bottom, #810B3A 0%, #383838 97%);
    padding: 72px 50px 72px; 
    color: white;
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
   /*  gap: 8%; */
    max-width: 100%; 
    box-sizing: border-box;
    border-top: 0px!important;
    }

    .main-footer-header {
      font-size: 24px;
      margin-bottom: 32px;
      font-weight: bold;
      position: relative;
      line-height: 54px;
    }

    .main-footer-header:after {
      position: absolute;
      content: '';
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
      width: 120px;
      margin-top: 60px;
      left: 0;
    }

    .footer-column {
    display: flex;
    flex-direction: column;
    min-width: 250px; /* Prevents elements from getting too small */
    flex: 1; /* Allow equal distribution */
    text-align: left; /* Ensures all content aligns left */
    }

    .job-seeker {
      margin-top: 56px;
    }

    .automation-benefits {
      margin-top: 56px;
    }

    .automation-benefits:after {
      position: absolute;
      content: '';
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
      width: 216px;
      margin-top: -14rem;
    }

    .about-us {
      margin-top: 32px;
    }

    .footer-column h3 {
      font-size: 18px;
      margin-bottom: 10px;
      padding-bottom: 5px;
      line-height: 54px;
    }

    .footer-column ul {
    list-style: none;
    padding-left: 0; 
    margin: 0;
    text-align: left; 
    }


    .footer-column ul li {
      margin-bottom: 8px;
      font-size: 14px;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: white;
      transition: color 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #ff5e5e;
    }

    .footer-logo {
      grid-column: span 5;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 30px;
    }

    .footer-logo img {
      height: 50px;
    }

    .footer-logo p {
      font-size: 12px;
      opacity: 0.8;
    }

    .social-icons {
      display: flex;
      gap: 24px;
    }

    .social-icons a {
      text-decoration: none;
      font-size: 20px;
      color: white;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: #ff5e5e;
    }

    .social-icons a img {
      height: 24px;
      width: 24px;
    }

    .footer-logo {
        align-items: center;
        text-align: center;
    }

    .legal {
        display: flex;
        flex-direction: row;
        gap: 6px;
    }

    @media (max-width: 1440px) {
        .footer {
            gap: 20px;
            padding: 72px 90px;
        }

        .footer-logo {
            grid-column: span 3;
        }
    }

    @media (max-width: 1300px) {
        .footer {
            grid-template-columns: repeat(2, 1fr); 
            padding: 60px 72px; 
            gap: 40px;
        }

        .footer-logo {
            grid-column: span 2;
            display: grid;
            grid-template-columns: auto 1fr auto;
            grid-template-areas: 
                "logo . . . "
                "legal legal legal social";
            align-items: center;
            width: 100%;
        }

        .footer-logo > img {
            grid-area: logo;
        }

        .legal {
            grid-area: legal;
            flex-direction: row;
            justify-content: flex-start;
            margin-top: 15px;
        }

        .social-icons {
            grid-area: social;
            justify-self: end;
        }
    }

    @media (max-width: 800px) {
        .footer {
            padding: 60px 32px; 
        }
        .main-footer-header {
            display: none;
        }
        .footer-column {
            display: none;
        }
        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: start;
        }
        .legal {
            margin-top: 32px;
            flex-direction: column;
            align-items: start;
            gap: 0;
        }
        .footer-bottom-section {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            padding: 0;
            margin: 0;
        }

        .footer-bottom-logo {
            margin-left: 0;
            height: 40px!important
        }
    }
    html, body {
    overflow-x: hidden;
    width: 100%;
}