/* hero section */


.career-hero-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    opacity: 0.32;
}

.career-hero-content {
    position: absolute;
    text-align: center;
    max-width: 700px;
    padding: 20px;
    margin-top: 60px;
}

.career-cta-btn {
    margin-top: 18px;

    color: var(--theme-color-light);
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
}
html body div.page-wrapper section.career-hero div.career-hero-content h1{
    font-size: 45px;
    color: var(--theme-color-light);
}
/* html body div.page-wrapper section.career-hero div.career-hero-content p{
    color: #f8eded;
} */

/* why section */

/* MAIN SECTION */
.ssc-workwithus {
    position: relative;
    padding: 100px 0;
    color: var(--theme-color-light);
    text-align: center;
    overflow: hidden;
}

/* BACKGROUND IMAGE FROM HTML */
.ssc-work-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* DARK OVERLAY */
.ssc-workwithus::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: -1;
}

/* HEADER */
.ssc-work-header h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--theme-color-light);
}

.ssc-work-header p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 50px;
}

/* GRID OF CARDS */
.ssc-work-cards {
    display: grid;
    grid-template-columns: repeat(4, 400px);
    gap: 30px;
    justify-content: center;
}

.ssc-card {
    width: 350px;
  height: 350px;
    perspective: 1000px;
}


/* CARD INNER */
.ssc-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
    border-radius: 16px;
    margin-left: 20px;
}

/* HOVER EFFECT */
.ssc-card:hover .ssc-card-inner {
    transform: rotateY(180deg);
}

/* FRONT + BACK OF CARD */
.ssc-card-front,
.ssc-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    padding: 25px;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* FRONT STYLE */
.ssc-card-front {
    background: var(--theme-color-light);
    color: var(--theme-color-black);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.ssc-card-back p{
    color: var(--theme-color-light);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ssc-work-cards {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .ssc-work-cards {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}



/* benifits section */

.benefits-section {
    padding: 50px;
    display: flex;
    justify-content: center;
}

.benefits-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;     
}

.benefits-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}


.benefits-grid {
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.benefit-card {
    background: white;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 300px;                
}

.red { --main: #e74c3c; }
.blue { --main: #226CE0; }
.green { --main: #0AA88F; }
.yellow { --main: #F1A412; }

.left-column {
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 20px;
}

        .tag {
            background: var(--main);
            color: var(--theme-color-light);
            padding: 6px 16px;
            font-size: 13px;
            border-radius: 4px;
            margin-bottom: 10px;
            position: relative;
            margin-top: -55px;
            
        }


        .tag::after {
            content: "";
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
        }


        .tag::after {
            right: 82px;
            border-width: 0 0 16px 10px;
            border-color: transparent transparent var(--main) transparent;
            margin-top: -3px;
        }


.number {
    font-size: 50px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 12px;
}


.icon-box {
    background: var(--main);
    color: var(--theme-color-light);
    padding: 18px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    position: relative;
}


.right-column h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
}

.right-column p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}



/* for hire process  */

/* SECTION BACKGROUND */
.hire-process {
    background: #f8f5f2;
    padding: 80px 0;
    text-align: center;
}

/* HEADING */
.hire-process h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 60px;
}

.hire-process .highlight {
    background: var(--ssc-color1);
  padding: 5px 10px;
    border-radius: 4px;
    color: var(--theme-color-light);
}

/* FLEX CONTAINER */
.process-container {
    max-width: 1470px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 120px;
    position: relative;
    
}

/* HORIZONTAL CONNECTING LINE (DESKTOP) */
.process-container::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 52px;
    right: 0;
    height: 3px;
    background: #d1d1d1;
    z-index: 0;
    width: 91%;
}

/* STEP BOX */
.process-step {
    width: 20%;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ICON CIRCLE */
.process-icon {
    width: 120px;
    height: 120px;
    border: 3px dotted #bfbfbf;
    background: var(--theme-color-light);
    border-radius: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    color: var(--ssc-color1);
    position: relative;
}

/* TITLE */
.process-step h4 {
    margin-top: 20px;
    font-size: 21px;
    font-weight: 700;
      line-height: 30px;
}

/* SMALL YELLOW BAR */
.decor {
    width: 60px;
    height: 4px;
    background: var(--ssc-color1);
    margin: 10px auto 15px;
    border-radius: 5px;
    margin-top: -20px;
      margin-bottom: 20px;
}

/* TEXT */
.process-step p {
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width: 1023px) {
    .process-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-step {
        width: 45%;
        margin-bottom: 40px;
    }

    /* Hide horizontal line */
    .process-container::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-step {
        width: 100%;
    }

    .process-container{
        gap: 0;
    }

    /* Vertical line full */
    .process-container::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 60px;
        bottom: 0;
        width: 3px;
        background: #d1d1d1;
        transform: translateX(-50%);
        display: block;
    }

    /* Icon sits on the line */
    .process-icon {
        margin-bottom: 10px;
    }

    /* Remove extra tablet connector */
    .process-step::after {
        display: none !important;
    }
}



/* intro section  */

.ssc-career-intro {
    padding: 80px 0;
    background: #f8fafd;
}

.ssc-career-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.ssc-career-img img {
    width: auto;
    max-width: 550px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}

.ssc-career-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ssc-career-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.ssc-note {
    background:var(--ssc-orange-color);
    color: var(--theme-color-light);
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
}

/* Responsive */
@media(max-width: 991px) {
    .ssc-career-container {
        flex-direction: column;
        text-align: center;
    }

    .ssc-career-img img {
        max-width: 100%;
    }
}

/* paragraph below image */
.career-below-img-text p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
    /* color: #333; */
}

/* spacing adjustments */
.ssc-career-intro .vc_row {
    margin-bottom: 30px;
}

/* responsive alignment */
@media (max-width: 768px) {
    .career-below-img-text {
        text-align: center;
    }
    .career-below-img-text p {
        padding: 0 15px;
    }
}

.ssc-fullwidth-para {
    width: 100%;
    max-width: 1235px;
    margin: 30px auto 0;
    font-size: 17px;
    line-height: 1.8;
}

/* for icon */

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
    color: var(--theme-color-light);
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    width: 110px;
    line-height: 1.5;
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

html body div.page-wrapper section.ssc-career-intro div.ssc-fullwidth-para p{
    margin-bottom: 10px;
}

html body div.page-wrapper section.hire-process div.process-container div.process-step div.process-icon i{
    font-size: 70px;
}

/* for banner  */

 /* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Banner Image */
.hero-section img {
    width: 100%;
    height: 400px;           
    object-fit: cover;       
    display: block;
}

/* Overlay */
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 60, 0.65); 
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Text Over Image */
.hero-content {
    position: absolute;
    top: 50% !important;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: var(--theme-color-light);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.hero-content p {
    font-size: 1.25rem;
    margin-top: 10px;
}