 .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;
        }
    }

/* ===== DISABLED: legacy hiring strip styles (replaced by final hiring system at bottom) =====

    /* HIRING */
/* =========================================================
   FOOTER STYLES — Jobeyze Enterprise
   Single source of truth. No overrides.
   Background: #1A1A2E (brand secondary, solid)
   Links hover: #D0003A (brand red)
   Updated: February 15, 2026 — compact version
   ========================================================= */

/* --- Footer Main --- */
.footer {
    background: #1A1A2E;
    padding: 28px 64px 0;
    color: #ffffff;
    border: none;
    outline: none;
    box-shadow: none;
    display: block;
}

/* --- Footer Columns Grid --- */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 24px;
}

.footer-column {
    display: block;
}

/* --- Column Headers --- */
.main-footer-header {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px;
    padding-bottom: 8px;
    position: relative;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.main-footer-header:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #AB2379, #D0003A);
    border-radius: 1px;
}

/* --- Column Links --- */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 0 0 6px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

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

/* --- Bottom Bar --- */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 16px;
}

.footer-bottom-logo {
    height: 30px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.footer-bottom-copy {
    flex: 1;
    text-align: center;
}

.footer-bottom-copy p {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-copy a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 11px;
    transition: color 0.2s ease;
}

.footer-bottom-copy a:hover {
    color: #D0003A;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
}

.footer-bottom-social {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.footer-bottom-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.footer-bottom-social a:hover {
    opacity: 1;
}

.footer-bottom-social img {
    height: 18px;
    width: auto;
    display: block;
}

/* --- Tablet: 2-column grid --- */
@media (max-width: 1024px) {
    .footer {
        padding: 24px 32px 0;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* --- Mobile: single column, centered --- */
@media (max-width: 768px) {
    .footer {
        padding: 20px 20px 0;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .main-footer-header {
        text-align: center;
        font-size: 13px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .main-footer-header:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column ul {
        text-align: center;
    }

    .footer-column ul li {
        margin: 0 0 5px;
    }

    .footer-column ul li a {
        font-size: 12px;
        display: inline-block;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 12px 0;
        gap: 10px;
    }

    .footer-bottom-logo {
        height: 24px;
    }

    .footer-bottom-copy p {
        font-size: 10px;
    }

    .footer-bottom-copy a {
        font-size: 10px;
    }

    .footer-bottom-social {
        justify-content: center;
        gap: 12px;
    }

    .footer-bottom-social img {
        height: 16px;
    }
}

/* --- Small mobile --- */
@media (max-width: 375px) {
    .footer {
        padding: 16px 14px 0;
    }
}

/* --- Overflow prevention (global) --- */
html, body {
    overflow-x: hidden;
    width: 100%;
}
