* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}

body {
    -ms-overflow-style: none;
}

button, input, select, textarea{
    outline: none;
}

button{
    border: 0;
    cursor: pointer;
}

:root {
    /*--primary-color: #008d38;*/
    --primary-color: #2277F7;
    --secondary-color: #f5f5f5;
    --accent-color: #0052cc;
    /*--text-dark: #333;*/
    --text-dark: #13053f;
    --text-light: #333;
    --border-color: #ddd;
}

body {
    background-color: #f9f9f9;
    color: var(--text-dark);
}

a{
    text-decoration: none;
}
a, img{
    user-select: none;
}

.container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon img{
    width: 30px;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-text span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.divider-vertical{
    height: 20px;
    border-right: 1px solid #ccc;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 16px;
}

.btn-language-switch {
    padding: 10px 0;
    font-weight: 600;
    border: none;
    font-size: 16px;
    background-color: transparent;
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    /*background-color: #b3000f;*/
    background-color: #004cbf;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    /*color: #b3000f;*/
    color: #004cbf;
}

/* Filter Panel Styles */
.filter-panel {
    width: 280px;
    padding: 25px;
    border-right: 1px solid var(--border-color);
    height: calc(100vh - 80px);
    position: sticky;
    top: 80px;
    overflow-y: auto;
}

.filter-panel .heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-section {
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
}
.filter-section:last-child {
    border-bottom: unset;
}
.filter-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-option {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.filter-option input {
    margin-right: 10px;
}

.filter-option label {
    cursor: pointer;
    color: var(--text-dark);
}

.salary-range {
    width: 100%;
    margin: 15px 0;
}

.salary-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
}

/* Track */
.salary-range::-webkit-slider-runnable-track {
    height: 6px;
    background: #fff;
    border-radius: 5px;
}

/* Thumb */
.salary-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #2196F3;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
}

.salary-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 14px;
    color: var(--text-light);
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Main Content Styles */
.main-content {
    flex: 1;
    padding: 30px;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.results-count {
    font-size: 18px;
    color: var(--text-light);
}

.results-count span {
    color: var(--primary-color);
    font-weight: 600;
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: white;
    color: var(--text-dark);
    font-size: 16px;
}

/* Job Listing Styles */
.job-list {
    display: flex;
    flex-direction: column;
}

.job-card {
    /*background-color: white;*/
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 1px solid #ccc;
}

.job-card:last-child{
    border-bottom: unset;
}

.job-card:hover {
    background-color: #FFFFFF;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-card-heading{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.job-card-heading img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    border: 1px solid #ccc;
    margin-right: 10px;
}

.job-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.job-company {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 500;
}

.job-type {
    background-color: #e8f5e9;
    /*color: #2e7d32;*/
    color: #004cbf;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.job-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.job-detail i {
    color: var(--primary-color);
}

.job-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-salary {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.job-posted {
    color: var(--text-light);
    font-size: 14px;
}


/* About us Page*/

.about-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 30px;
    width: 100%;
}

.hero-section {
    border-radius: 15px;
    padding: 60px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 2;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    width: 150px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 120px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(217, 0, 18, 0.2);
}

/* Content Sections */
.content-section {
    padding: 50px;
    margin-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Our Story Section */
.story-content {
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
    align-items: flex-start;
}

.story-text {
    flex: 2;
}

.story-image {
    flex: 1;
    text-align: center;
}

.story-img-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.mission-card, .vision-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

}


.card-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.card-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* Our Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(217, 0, 18, 0.1);
}

.value-card:hover .value-icon{
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Section */
/*.team-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));*/
/*    gap: 30px;*/
/*    margin-top: 30px;*/
/*}*/

/*.team-member {*/
/*    background-color: white;*/
/*    border-radius: 15px;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);*/
/*    transition: transform 0.3s;*/
/*}*/

/*.team-member:hover {*/
/*    transform: translateY(-10px);*/
/*}*/

/*.member-image {*/
/*    height: 200px;*/
/*    background-color: var(--secondary-color);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 60px;*/
/*    color: var(--primary-color);*/
/*    font-weight: 600;*/
/*}*/

/*.member-info {*/
/*    padding: 25px;*/
/*}*/

/*.member-name {*/
/*    font-size: 22px;*/
/*    font-weight: 600;*/
/*    color: var(--text-dark);*/
/*    margin-bottom: 5px;*/
/*}*/

/*.member-role {*/
/*    color: var(--primary-color);*/
/*    font-weight: 500;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.member-bio {*/
/*    color: var(--text-light);*/
/*    line-height: 1.6;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.member-social {*/
/*    display: flex;*/
/*    gap: 15px;*/
/*}*/

/*.social-link {*/
/*    width: 36px;*/
/*    height: 36px;*/
/*    border-radius: 50%;*/
/*    background-color: #f5f5f5;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: var(--text-dark);*/
/*    text-decoration: none;*/
/*    transition: all 0.3s;*/
/*}*/

/*.social-link:hover {*/
/*    background-color: var(--primary-color);*/
/*    color: white;*/
/*    transform: translateY(-3px);*/
/*}*/

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: calc(50% + 30px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid white;
    box-shadow: 0 0 0 3px rgba(217, 0, 18, 0.2);
    z-index: 2;
}

.timeline-content {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 350px;
}

.timeline-year {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #13053f;
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(217, 0, 18, 0.3);
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/*Companies Page*/

.page-title {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-description {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
}

.companies-list {
    display: flex;
    flex-direction: column;
}

.company-item {
    border-bottom: 1px solid #ccc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
    padding: 20px 25px;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
}

.company-item:last-child{
    border-bottom: unset;
}

.company-item:hover {
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    overflow: hidden;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-main-info {
    flex: 1;
    min-width: 0; /* For text truncation */
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.company-industry {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.company-rating {
    color: #ffc107;
    font-size: 14px;
}

.company-rating span {
    color: var(--text-light);
    margin-left: 5px;
}

.company-details {
    display: flex;
    gap: 25px;
    margin-right: 30px;
}

.company-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 15px;
}

.company-detail i {
    color: var(--primary-color);
    width: 18px;
}

.company-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.open-jobs {
    background-color: #e8f5e9;
    /*color: #2e7d32;*/
    color: #004cbf;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.view-company {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    font-size: 15px;
}

.view-company:hover {
    background-color: #b3000f;
}

/*Contact Page*/

.contact-container {
    flex: 1;
    display: flex;
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 30px;
    width: 100%;
    min-height: calc(100vh - 160px);
}

/* Left Side - Contact Information */
.contact-left {
    flex: 1;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Info Cards */
.contact-info-section {
    margin-bottom: 40px;
}

.contact-info-section .section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-section .section-title i {
    color: var(--primary-color);
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: #f8f9fa;
    transition: all 0.3s;
    border-bottom: 1px solid #ccc;
}

.contact-card:last-child{
    border-bottom: unset;
}

.contact-card:hover {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card:hover .contact-icon{
    background-color: var(--primary-color);
    color: #fff;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: 0.2s ease;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-value a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-section {
    margin-top: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background-color: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    min-width: 150px;
}

.social-link.facebook:hover {
    background-color: #1877F2;
    color: white;
    border-color: #1877F2;
}

.social-link.linkedin:hover {
    background-color: #0A66C2;
    color: white;
    border-color: #0A66C2;
}

.social-link.twitter:hover {
    background-color: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border-color: transparent;
}

.social-icon {
    font-size: 20px;
}

.social-text {
    font-weight: 500;
}

/* Office Hours */
.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
}

.map-container {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 200px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder {
    text-align: center;
    padding: 20px;
}

.map-placeholder i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
    opacity: 0.7;
}

/* Right Side - Contact Form */
.contact-right {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: max-content;
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    width: 100%;
}

.form-group {
    margin-top: 10px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-label span {
    color: var(--primary-color);
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Inquiry Type Selector */
.inquiry-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.inquiry-type {
    position: relative;
}

.inquiry-type input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.inquiry-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    height: 100%;
}

.inquiry-label:hover {
    border-color: var(--accent-color);
}

.inquiry-type input:checked + .inquiry-label {
    border-color: var(--primary-color);
    background-color: rgba(217, 0, 18, 0.05);
}

.inquiry-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.inquiry-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background-color: #f0f7ff;
    border-radius: 10px;
    margin-top: 30px;
}

.success-icon {
    font-size: 60px;
    color: #23d160;
    margin-bottom: 20px;
}

.success-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.success-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-form #submitBtn{
    margin-top: 10px;
    width: 100%;
}

/* FAQ Section */
.faq-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.faq-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-title i {
    color: var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    background-color: #f8f9fa;
    border-bottom: 1px solid #fff;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.form-input.error, .form-textarea.error, .form-select.error {
    border-color: #ff3860;
}

.form-input.success, .form-textarea.success, .form-select.success {
    border-color: #23d160;
}

.error-message {
    color: #ff3860;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.login-container {
    flex: 1;
    display: flex;
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 30px;
    width: 100%;
    min-height: calc(100vh - 160px);
}


/*Registration page*/
.registration-container {
    flex: 1;
    display: flex;
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 30px;
    width: 100%;
}

/* Left Side - Illustration */
.registration-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.illustration-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    width: 280px;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 20px;
}

/* Right Side - Registration Form */
.registration-right {
    flex: 1;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.registration-header {
    margin-bottom: 40px;
    text-align: center;
}

.registration-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.registration-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.registration-subtitle a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.registration-subtitle a:hover {
    text-decoration: underline;
}

/* Registration Form */
.registration-form {
    width: 100%;
}

.account-type-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.account-type-option {
    flex: 1;
    position: relative;
}

.account-type-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.account-type-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    height: 100%;
}

.account-type-label:hover {
    border-color: var(--accent-color);
}

.account-type-option input:checked + .account-type-label {
    border-color: var(--primary-color);
    background-color: rgba(217, 0, 18, 0.05);
}

.account-type-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.account-type-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.account-type-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.terms-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.terms-checkbox {
    margin-top: 5px;
}

.terms-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.terms-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.terms-text a:hover {
    text-decoration: underline;
}

/*Login Page*/
.login-container {
    flex: 1;
    display: flex;
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 30px;
    width: 100%;
    min-height: calc(100vh - 160px);
}
/* Left Side - Illustration */
.login-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 150px;
    padding: 40px;
    position: relative;
    height: max-content;
}

.illustration-text {
    text-align: center;
    max-width: 500px;
}

.illustration-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.illustration-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    position: relative;
}

.testimonial .fa-quote-right {
    font-size: 60px;
    color: #bfbfbf;
    position: absolute;
    top: -30px;
    left: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-light);
}

/* Right Side - Login Form */
.login-right {
    flex: 1;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: max-content;
}

.login-header {
    margin-bottom: 40px;
    text-align: center;
}

.login-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.login-subtitle a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.login-subtitle a:hover {
    text-decoration: underline;
}

/* Login Form */
.login-form {
    width: 100%;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 18px;
}

.input-with-icon .form-input, .input-with-icon .form-select {
    padding-left: 55px;
}

.password-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 18px;
}

/* Remember & Forgot Password */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    width: 18px;
    height: 18px;
}

.remember-me label {
    color: var(--text-dark);
    cursor: pointer;
}

.forgot-password {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-google {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.btn-google:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.login-right .divider, .registration-right .divider{
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: var(--text-light);
}

.login-form #submitBtn, .registration-form #submitBtn{
    width: 100%;
}

.login-right .divider::before, .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
}

.login-right .divider span {
    padding: 0 15px;
    font-size: 14px;
}


/* Alternative Login Options */
.alt-login-options {
    margin-top: 30px;
    text-align: center;
}

.alt-login-title {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.alt-login-buttons {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.alt-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    padding: 7px 15px;
    height: max-content;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text-dark);
}

.alt-login-btn:hover {
    background-color: #f5f5f5;
    border-color: var(--primary-color);
}

.alt-login-btn i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--primary-color);
}

.alt-login-btn span {
    font-size: 12px;
    font-weight: 500;
}

/*Job view Page*/
.post-header {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.post-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.post-main-info {
    flex: 1;
}

.post-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.post-company {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.post-heading-action{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.post-heading-layout{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.post-actions {
    display: flex;
    gap: 15px;
}

.post-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 18px;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.detail-value {
    font-weight: 600;
    color: var(--text-dark);
}

.post-salary-badge {
    background: linear-gradient(135deg, var(--primary-color), #ff4d4d);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
}

.content-columns {
    display: flex;
    gap: 30px;
}

/* Left Column - Job Details */
.left-column {
    flex: 2;
}

/* Right Column - Application Panel */
.right-column {
    flex: 1;
}

/* Info Panel Styles */
.info-panel {
    padding: 25px;
    position: sticky;
    top: 100px;
    overflow-y: auto;
    height: calc(100vh - 120px);
    border-left: 1px solid #ccc;
}

.panel-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.panel-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.panel-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-title i {
    color: var(--primary-color);
}

.company-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.company-logo-small img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
    object-fit: contain;
}

.company-info-small h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.company-info-small p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.view-company-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.view-company-link:hover {
    text-decoration: underline;
}

.post-description {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 25px;
}

.post-description p {
    margin-bottom: 15px;
}

.post-details-card{
    padding: 30px;
    margin-bottom: 25px;
}

.post-details-card .section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ccc;
}

.requirements-list,
.responsibilities-list {
    margin: 20px 0;
    padding-left: 20px;
}

.requirements-list li,
.responsibilities-list li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Benefits Section */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.benefit-item {
    background-color: #e1f8ff;
    padding: 15px;
    border-radius: 8px;
    color: var(--primary-color);
}

.benefit-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}
.application-form {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.form-file {
    padding: 10px 15px;
    background-color: #f8f9fa;
}

.file-hint {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.application-notice {
    background-color: #e1f8ff;
    border-left: 4px solid #7207ff;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    font-size: 14px;
}

.application-notice i {
    color: #7207ff;
    margin-right: 10px;
}

/* Footer Styles */
footer {
    background-color: #13053f;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-logo .logo-text{
    color: #ccc;
}

.footer-logo{
    margin-bottom: 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}


.social-icons{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
}

.social-icons li{
    list-style: none;
}

.social-icons li a{
    color: #FFFFFF;
    font-size: 25px;
    transition: 0.2s ease;
}

.social-icons li a:hover{
    color: #cccccc;
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright .policy-box{
    padding: 20px 30px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

.copyright .policy-box ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }

    .filter-panel {
        width: 100%;
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .job-header {
        flex-direction: column;
        gap: 10px;
    }

    .job-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}