.section-white {
    padding: 80px 0;
    background-color: var(--light-blue);
}
.section-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.section-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    opacity: 0.1;
    background-size: cover;
}

.section-primary .section-title h2, 
.section-primary .section-title p{
    color:#fffcfc;
}



/* Employer Hero Section */
.employer-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-blue) 100%);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.employer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    opacity: 0.1;
    background-size: cover;
}

.employer-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}
.employer-hero-text {
    flex: 1;
}
.employer-hero-image {
    flex: 1;
    position: relative;
}

.employer-hero-image-placeholder {
    background-color: rgba(255,255,255,0.1);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    border: 2px dashed rgba(255,255,255,0.2);
    font-size: 18px;
}

.employer-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.employer-hero h1 span {
    color: var(--secondary);
}

.employer-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 500px;
}
.employer-hero p > span {
    color: var(--secondary);
}

.employer-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.employer-primary-btn {
    background-color: var(--secondary);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    font-size: 16px;
}

.employer-primary-btn:hover {
    background-color: #E67347;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.employer-secondary-btn {
    background-color: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    font-size: 16px;
}
.employer-secondary-btn:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: white;
}

/* Employer Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.benefit-card {
    background: var(--card);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 30px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--text);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

/* Employer Stats */
.stats-grid-employer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-card-employer {
    text-align: center;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    vertical-align: middle;
    height: 150px;
}
.stat-card-employer:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}
.stat-icon-employer {
    color: var(--secondary);
    height: 100%;
}
.stat-value-employer {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}
.stat-label-employer {
    opacity: 0.9;
    font-size: 16px;
}

/* How It Works */
.process-steps-employer {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.process-steps-employer::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 0;
}

.process-step-employer {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 15px;
}

.step-number-employer {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-weight: bold;
    font-size: 24px;
    color: white;
    border: 3px solid var(--light-blue);
}

.step-icon-employer {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary);
}

.process-step-employer h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--text);
}

.process-step-employer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Demo Section */
.demo-content {
    max-width: 700px;
    margin: 0 auto;
}

.demo-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.demo-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.demo-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 500px;
    margin: 0 auto;
}

input[type=radio], input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
}
.form-control::placeholder {
    color: #d1d1d1 !important;
}
.form-control option{
    color: var(--text);
}
.form-control::placeholder{
    color: #727272;
}
.form-control:disabled {
    background-color: #f3f3f3 !important;
    color: #666 !important;
    cursor: not-allowed !important;
    border: 1px solid #ccc !important;
}

.form-row {
    display: flex;
    gap: 15px;
}
.form-row .form-group {
    flex: 1;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}
.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}
.form-group label.form-check-label {
    font-weight: normal !important;
    display: inline-block;
    margin-bottom: 5px;
}

.select2-container--bootstrap4 .select2-selection{
    background-color: var(--bg) !important;
    border: 1px solid var(--border) !important;
}
.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered{
    color: var(--text) !important;
}
.select2-container--bootstrap4 .select2-results>.select2-results__options{
    background: var(--bg) !important;
}


.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.input-group-prepend {
    margin-right: -1px;
}
.input-group-append {
    margin-left: -1px;
}
.input-group-prepend, .input-group-append {
    display: flex;
}
.input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text, .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn, .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text, .input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn, .input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text, .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group .form-control:not(:first-child), .input-group .custom-select:not(:first-child) {
    border-left: 0px;
}
.input-group:not(.has-validation) > .form-control:not(:last-child), .input-group:not(.has-validation) > .custom-select:not(:last-child), .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label, .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child), .input-group > .custom-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group > .form-control:focus, .input-group > .custom-select:focus, .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
    z-index: 3;
}
.input-group > .form-control, .input-group > .form-control-plaintext, .input-group > .custom-select, .input-group > .custom-file {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}

.section-white .form-control{
    border-color: #676767;
    color: var(--border-dark);
}

.demo-btn {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.demo-btn:hover {
    background-color: #E67347;
    transform: translateY(-2px);
}

/* Trusted Companies */
.companies-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.company-logo-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.company-logo-item:hover {
    opacity: 1;
}

.company-logo-item i {
    font-size: 40px;
    color: var(--primary);
}

.company-logo-item span {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--text);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .employer-hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .employer-hero-text {
        text-align: center;
    }
    
    .employer-hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .employer-hero-buttons {
        justify-content: center;
    }
    
    .process-steps-employer {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-steps-employer::before {
        display: none;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .employer-hero h1 {
        font-size: 36px;
    }
    
    .employer-hero p {
        font-size: 18px;
    }
    
    .employer-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .employer-primary-btn, .employer-secondary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .companies-logos {
        justify-content: center;
    }
    
    .company-logo-item {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .employer-hero h1 {
        font-size: 32px;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
    }
    
    .demo-form {
        padding: 30px 20px;
    }
}


/* Client Logo Marquee */
.client-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.client-marquee:before, .client-marquee:after {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    content: "";
    z-index: 2;
}

.client-marquee:before {
    left: 0;
    background: linear-gradient(to right, var(--primary) 0%, transparent 100%);
}

.client-marquee:after {
    right: 0;
    background: linear-gradient(to left, var(--primary) 0%, transparent 100%);
}

.client-marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.client-marquee:hover .client-marquee-content {
    animation-play-state: paused;
}

.client-logo {
    height: 80px;
    width: auto;
    margin: 0 30px;
    filter: grayscale(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}