.banner-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-bottom: 50px;
}

.banner-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--dark);
    font-weight: 600;
}

/* Homepage Banner */
.homepage-banner {
    border-radius: 15px;
    padding: 40px 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(77, 69, 0, 0.3);
    margin-bottom: 60px;
}

a.banner-btn {
    color: #6a11cb;
}

.homepage-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(135deg, #6a11cb 0%, #ec4899 100%);
    background-size: 100%;
    opacity: 1;
}

.homepage-banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.homepage-banner-text {
    flex: 1;
}

.homepage-banner h2 {
    font-size: 32px;
    font-weight: 900;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #fff !important;
}

.homepage-banner p {
    font-size: 18px;
    margin: 0 0 25px 0;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.homepage-banner-visual {
    flex: 0 0 200px;
    text-align: center;
}

.cv-icon-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cv-icon {
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm-1 1.5L18.5 9H13V3.5zM8 11h8v1H8v-1zm0 2h8v1H8v-1zm0 2h5v1H8v-1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.banner-btn {
    display: inline-block;
    background: #fff;
    color: #006e86;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Profile Banner */
.profile-banner {
    background: linear-gradient(135deg, #6a11cb 0%, #ec4899 100%);
    border-radius: 12px;
    padding: 25px 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(138, 85, 217, 0.25);
    margin-bottom: 60px;
}

.profile-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
}

.profile-banner-content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.profile-banner-icon {
    flex: 0 0 80px;
}

.profile-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.profile-cv-icon {
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9 12H7v5h2v-5zm4 0h-2v5h2v-5zm4 0h-2v5h2v-5zm2-7h-3V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v2H5a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1zM9 4h2v1H9V4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.profile-banner-text {
    flex: 1;
}

.profile-banner h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-banner p {
    font-size: 14px;
    margin: 0 0 15px 0;
    opacity: 0.9;
    line-height: 1.5;
}

.profile-banner-action {
    flex: 0 0 auto;
}

.profile-banner-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.profile-banner-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Service highlights */
.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0 25px 0;
    font-size: 14px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .homepage-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .homepage-banner-visual {
        flex: none;
    }

    .homepage-banner h2 {
        font-size: 24px;
    }

    .profile-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .profile-banner-icon,
    .profile-banner-action {
        flex: none;
    }
}

@media (max-width: 480px) {

    .homepage-banner,
    .profile-banner {
        padding: 25px 20px;
    }

    .profile-banner-content {
        gap: 15px;
    }

    .profile-icon-circle {
        width: 60px;
        height: 60px;
    }

    .profile-cv-icon {
        width: 30px;
        height: 30px;
    }
}

/* Code display styling */
.code-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid var(--accent);
}

.code-section h4 {
    margin: 0 0 15px 0;
    color: var(--dark);
    font-size: 18px;
}

pre {
    background: #2d3748;
    color: #e2e8f0;
    padding: 15px;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.5;
}

.total_cand {
    cursor: pointer;
}
button.done-btn {
    display: none;
}
span.cutit-rj12 i:before {
    font-size: 12px;
}
.tooltip .tooltiptext {

    top: -38px;
    left: -75px;
}
.idicn-rjh3 {
    float: left;
}
.s3-d__card.special-class {
    margin: 0 4vw;
}
.s3-d__img.s3-d__img-123 {
    overflow: hidden;
}

/* Ollie Modifications */

.pt-3 {
    padding-top: 0rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.pt-2 {
    padding-top: 2rem;
}

@property --myColor1 {
  syntax: '<color>';
  initial-value: #6a11cb;
  inherits: false;
}

@property --myColor2 {
  syntax: '<color>';
  initial-value: #ec4899;
  inherits: false;
}


.hiringButton {
    padding: 1em 1.8em;
    border-radius: 0.5em;
    color: white;
    border: 1px solid #ffff;
    background: linear-gradient(135deg, var(--myColor1) 0%, var(--myColor2) 100%);
    font-size: 2rem;
    transition: --myColor1 0.2s, --myColor2 0.2s;
    font-weight: 500;
}

.hiringButton:hover {
    color: #fff;
    --myColor1: #ec4899;
    --myColor2: #6a11cb;
}

.hero-section {
    position: relative;
    display: flex;
    gap: 2rem;
    flex-direction: row;
    align-items: center;
}

.skipPrompt {
    padding-left: 8rem;
    color: #fff;
    font-size: 3rem;
    vertical-align: middle !important;
    font-weight: 600;
}

@media screen and (max-width: 1200px) {
    .skipPrompt {
        padding-left: 3rem;
        text-align: center;
        font-size: 2.5rem;
    } 
    
}

@media screen and (max-width: 1000px) {
    .pt-3 {
    padding-top: 4rem;
    }
    .skipPrompt {
        display: none;
    }

    
}

.featuredsjobs-rjh11 {
    place-self: center !important;
}

.beyondEmph {
    text-decoration: underline;
    font-weight: 600;
}

.candidateCTA {
    padding-bottom: 3rem;
    padding-top: 1rem;
    background-size: auto !important;
    background-repeat: no-repeat !important;
    background-position: center;
    /* background-image: url("/wp-content/uploads/2025/06/nebula2.webp"); */
    background-image: url("/wp-content/uploads/2025/06/nebula3.webp");
    background-color: #ffffff65;
    background-blend-mode: lighten;
}

.candidateCTA-text {
    /* background-color: #ffffffb5; */
    width: min(75rem, 100%);
    border-radius: 4px;
}

.cct-body {
    font-weight: bold !important;

}

.title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px !important;
}

.white-text {
    color: #fff !important;
}

.black-text {
    color: #000 !important;
}


.dark-text {
    color: #1a1a1a !important;
}