body {
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    background-color: #FFFFFF;
    color: #4A5568;
    overflow-x: hidden;
}

.hiring-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    line-height: 1.875rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Hero Section */
.hiring-hero {
    padding: 2rem 2rem 6rem 2rem;
    background-color: #FFFFFF;
}

.hiring-hero .hiring-container {
    max-width: 1350px;
}

.hiring-hero-box {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(0deg, #F8F6FE 0%, #F5E7F7 55.65%, #E6DFFB 100%);
    border-radius: 40px;
    padding: 2rem 4rem;
    min-height: 500px;
}

.hiring-hero-content {
    flex: 1;
}

.hiring-heading-primary {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    background: var(--Text-gradient-1, linear-gradient(87deg, #8253C2 18.3%, #F45346 80.97%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hiring-paragraph{
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: var(--Subheading, #514F6E);
    font-weight: 400;
}

.hiring-paragraph span{
    font-size: 1.125rem;
    color: black;
    font-weight: 400;
    padding-top: 5rem;
}

.hiring-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hiring-btn-primary {
    background-color: #611F69;
    color: #fff;
    box-shadow: 0 4px 15px rgba(88, 28, 135, 0.2);
}

.hiring-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(88, 28, 135, 0.3);
    color: #fff;
}

.hiring-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.hiring-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* 1. Added separator between hero stats */
.hiring-stat-item:nth-child(2){
    padding-left: 2rem;
    border-left: 1px solid #d0c2e8;
}

.hiring-stat-icon {
    font-size: 1.5rem;
}

.hiring-stat-item p {
    margin: 0;
    line-height: 1.3;
}

.hiring-hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px; 
}

.hiring-hero-image {
    position: relative;
    z-index: 5;
    max-width: 45%;
    border-radius: 24px;
}

/* 3. New animation for rotating path */
@keyframes rotate-path {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-path {
    position: absolute;
    width: 80%;
    max-width: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: rotate-path 30s linear infinite; /* Applied new animation */
}

.orbit-path circle {
    fill: none;
    stroke: #d0c2e8;
    stroke-width: 0.5;
    stroke-dasharray: 2 2;
}

/* 3. Positioned icons statically */
.orbit-item {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

#orbit-item-1 { top: 5%; left: 50%; transform: translateX(-50%); animation: float 4s ease-in-out infinite;} /* Recruiter */
#orbit-item-2 { top: 35%; left: 70%; transform: translateX(-50%); animation: float 4s ease-in-out infinite; } /* Enabled Hiring */
#orbit-item-3 { top: 65%; left: 73%; transform: translate(-50%, -50%); animation: float 4s ease-in-out infinite;} /* Handshake */
#orbit-item-4 { top: 85%; left: 20%; transform: translateX(-50%); animation: float 4s ease-in-out infinite;} /* 100% Automated */
#orbit-item-5 { top: 40%; left: 10%; transform: translateX(-50%); animation: float 4s ease-in-out infinite;} /* College */


.orbit-item > img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.orbit-text-item {
    background: #FFFFFF;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    gap: 0.5rem;
    font-weight: 600;
    color: #4A4459;
    white-space: nowrap;
}

.orbit-text-item > img {
    width: 24px;
    height: 24px;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

/* Trusted By Section */
.hiring-trusted-by {
    margin-bottom: -4rem;
    position: relative;
    z-index: 10;
    padding: 0;
}

.hiring-trusted-by .hiring-container {
    max-width: 1167px;
    padding: 0;
    margin: 0 0 0 auto;
}

.hiring-trusted-by-box {
    display: flex;
    align-items: center; 
    gap: 2rem;
    padding: 2.5rem;
    height: 130.091px;
    flex-shrink: 0;
    border-radius: 7.375px 0px 0px 7.375px;
    border-left: 2.95px solid #611F69;
    background: #FFF;
    box-shadow: 0px 0px 18.437px 0px rgba(56, 152, 226, 0.30);
    top:-60px;
}

.hiring-trusted-by-title {
    position: relative;
    font-weight: 600;
    padding-top: 1rem;
    font-size: 1.2rem;
    color: #334155;
    text-align: center;
    white-space: nowrap;
}

.hiring-trusted-by-title strong{
    color: #7b2c84;
}

.hiring-logos-container {
    flex-grow: 1;
    overflow: hidden;
}

.hiring-logos {
    display: flex;
    gap: 4rem;
    animation: scroll 20s linear infinite;
}

.hiring-logos img {
    height: 50px;
    flex-shrink: 0;
    opacity: 0.8;
    object-fit: contain;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* Common Section Styles */
.hiring-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hiring-process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.hiring-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}
.hiring-section-header .hiring-paragraph {
    margin-left: auto;
    margin-right: auto;
}
.hiring-heading-secondary {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    background: linear-gradient(90deg, #611F69, #F45346);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hiring-reach-out {
    padding: 6rem 0 0;
    background-color: #F8F6FE;
    overflow: hidden;
    height: 512px;
}

.hiring-reach-out .hiring-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: end;
}

.hiring-reach-out-image img {
    width: 120%;
    display: block;
    left: -50px;
}

.hiring-reach-out-content {
    padding-bottom: 3rem; 
    text-align: left;
}

/* On-Campus & Off-Campus Sections */
.hiring-on-campus, .hiring-off-campus {
    padding: 6rem 0;
}
.hiring-off-campus {
    background-color: #F8F6FE;
}
.hiring-process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}
.hiring-process-image img {
    border-radius: 24px;
    width: 100%;
}
.hiring-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.hiring-step:last-child {
    margin-bottom: 0;
}
.hiring-step-icon {
    color: #8253C2;
    flex-shrink: 0;
}

.hiring-step-icon img {
    width: 28px;
    height: 28px;
}

.hiring-step h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: #1E293B;
    font-weight: 600;
}
.hiring-step p {
    margin: 0;
    color: #4A4459;
}
.hiring-stats-bar-oncampus {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #FFFFFF;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #C2B8EE;
    background: linear-gradient(10deg #E9E4FF 30%, #C2B8EE 70%);
}

.hiring-stats-bar-offcampus {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #FFFFFF;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #C2B8EE;
    background: #ffffff;
}

.hiring-stat-item-bar {
    border-right: 2px solid #C2B8EE;
    padding: 1rem;
    font-size: 1rem;
    color: #170F49;
}
.hiring-stat-item-bar:last-child {
    border-right: none;
}
.hiring-stat-item-bar strong {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: #8F65C8;
    margin-bottom: 0.25rem;
}

/* 6. Why Choose Us Section - Redesigned */
.hiring-why-choose-us {
    padding: 6rem 0;
    background-color: #FFFFFF;
}
.hiring-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 18px;
}
.hiring-why-card {
    background: #F8F6FE;
    padding: 24px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.30), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.hiring-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(88, 28, 135, 0.1);
}
.hiring-why-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem 0;
    background-color: #FFFFFF;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
}
.hiring-why-icon img {
    width: 24px;
    height: 24px;
}
.hiring-why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #5B0D5C;
    margin-bottom: 0.5rem;
}
.hiring-why-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #4A5568;
}

/* CTA Section */
.hiring-cta {
    padding: 6rem 2rem;
    background: var(--12, linear-gradient(35deg, rgba(225, 244, 255, 0.60) 12%, rgba(249, 225, 255, 0.80) 27%, rgba(255, 230, 233, 0.60) 100%));;
}
.hiring-cta-box {
    background: #FFFFFF;
    padding: 4rem;
    border-radius: 40px;
    text-align: center;
}
.hiring-cta-box h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(90deg, #611F69, #F45346);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.hiring-cta-subtitle {
    max-width: 500px;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 auto 2rem auto;
    color: var(--Neutral-2, #514F6E);
}
.hiring-cta-subtext {
    font-size: 1.1rem;
    margin-top: 1rem !important;
    opacity: 0.8;
    color: var(--Neutral-2, #514F6E);
}

@media (max-width: 992px) {
    .hiring-heading-primary, .hiring-heading-secondary, .hiring-cta-box h2 { font-size: 2rem; }
    .hiring-paragraph { font-size: 1rem; }
    .hiring-on-campus, .hiring-off-campus, .hiring-why-choose-us, .hiring-cta, .hiring-reach-out, .hiring-trusted-by { padding: 4rem 0; }
    
    .hiring-hero-box {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        min-height: auto;
    }
    .hiring-hero-content { order: 1; }
    .hiring-hero-image-wrapper { order: 2; }
    .hiring-hero-stats { justify-content: center; }

    .hiring-trusted-by .hiring-container {
        max-width: 100%;
        padding: 0 1.5rem;
        margin: 0 auto;
    }
    .hiring-trusted-by-box { 
        flex-direction: column; 
        height: auto;
        padding: 1.5rem;
        border-radius: 7.375px;
        border-left: none;
        border-top: 2.95px solid #611F69;
    }

    .hiring-reach-out {
        height: auto;
        padding: 4rem 0;
    }
    .hiring-reach-out .hiring-grid-2col {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
    }
    .hiring-heading-secondary {
        order: 1;
        padding-bottom: 0;
        text-align: center;
    }

    .hiring-reach-out-image{
        order: 2;
        text-align: center;
    }

    .hiring-paragraph{
        order: 3;
        text-align: center;
    }

     .hiring-reach-out-image img {
        width: 100%;
        left: 0;
    }

    .hiring-process-grid,
    .hiring-stats-bar-oncampus,
    .hiring-stats-bar-offcampus,
    .hiring-why-grid {
        grid-template-columns: 1fr;
    }

    .hiring-process-image { order: 2; }
    .hiring-process-grid > div[data-aos="fade-right"] { order: 1; }
    .hiring-process-grid > div[data-aos="fade-left"] { order: 3; }
    
    .hiring-stat-item-bar {
        border-right: none;
        padding: 1rem 0;
        border-bottom: 1px solid #E2E8F0;
    }
    .hiring-stat-item-bar:last-child { border-bottom: none; }
    
    .hiring-why-card {
        text-align: center;
    }
    .hiring-why-icon { margin: 0 auto 1rem auto; }

    .hiring-cta { padding: 4rem 1rem; }
    .hiring-cta-box { padding: 2.5rem 1.5rem; }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    .hiring-container {
        padding: 0 1rem;
    }
    .hiring-heading-primary, .hiring-heading-secondary, .hiring-cta-box h2 {
        font-size: 1.75rem; /* Smaller headings for mobile */
    }

    /* Hero Section */
    .hiring-hero {
        padding: 1.5rem;
        margin: 0;
    }
    .hiring-hero-box {
        background: linear-gradient(0deg, #F8F6FE 0%, #F5E7F7 55.65%, #E6DFFB 100%);
        border-radius: 30px;
    }
    .hiring-hero-image-wrapper {
        min-height: 350px;
        width: 100%;
    }
    .hiring-hero-image {
        max-width: 55%;
    }
    .orbit-path {
        width: 100%;
    }
    .orbit-item > img {
        width: 60px;
        height: 60px;
    }
    .orbit-text-item {
        transform: scale(0.9);
    }
     #orbit-item-2 { top: 45%; left: 85%; visibility: hidden;}
     #orbit-item-3 { top: 50%; left: 80%;}
     #orbit-item-4 { top: 80%; left: 35%;}
     #orbit-item-5 { top: 25%; left: -7%;}

    /* Hiding Trusted By Section on mobile */
    .hiring-trusted-by {
        display: none;
    }

    /* Reach Out Section: Stacked layout with text on top */
    .hiring-reach-out {
        height: auto;
        padding: 3rem 1rem;
    }
    .hiring-reach-out .hiring-grid-2col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: center;
    }
    .hiring-heading-secondary {
        order: 1;
    }

    .hiring-reach-out-image{
        order: 2;
        text-align: center;
    }

    .hiring-paragraph{
        order: 3;
        text-align: center;
    }

    /* On-Campus & Off-Campus Sections */
    .hiring-on-campus, .hiring-off-campus {
        padding: 3rem 0;
    }
    .hiring-process-steps {
        text-align: left;
    }
    .hiring-process-image {
        padding: 1rem 0;
    }
    /* Stats bars stacked vertically */
    .hiring-stats-bar-oncampus, .hiring-stats-bar-offcampus {
        grid-template-columns: 1fr;
        border: 1px solid #E2E8F0;
        border-radius: 16px;
        padding: 1rem;
        gap: 1rem;
        background: #FFFFFF; /* Consistent background */
    }
    .hiring-stat-item-bar {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding-bottom: 1rem;
    }
    .hiring-stat-item-bar:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .hiring-stat-item-bar strong {
        font-size: 2.25rem;
    }

    /* Why Choose Us Section: Cards stacked vertically */
    .hiring-why-choose-us {
        padding: 3rem 0;
    }
    .hiring-why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hiring-why-card {
        text-align: center;
        padding: 1.5rem;
    }

    /* CTA Section */
    .hiring-cta {
        padding: 3rem 1rem;
    }
    .hiring-cta-box {
        padding: 2rem 1.5rem;
        border-radius: 30px;
    }
}


@media (max-width: 576px) {
    .hiring-hero-image-wrapper {
        min-height: 320px;
    }
    .hiring-hero-image {
        max-width: 50% !important;
    }
    .orbit-item { 
        transform: scale(0.8);
    }

    .hiring-heading-secondary {
        order: 1;
        padding-bottom: 0;
        text-align: center;
    }

    .hiring-reach-out-image{
        order: 2;
        text-align: center;
    }

    .hiring-paragraph{
        order: 3;
        text-align: center;
    }
}