body {
    margin: 0;
    padding: 0;
    background: #e1e8e3;
    font-family: Arial, sans-serif;
    padding-top: 90px;
}

/* Navigation Bar */
nav {
    background-color: white;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    max-width: 200px;
    padding: 5px 0;
}

.logo img {
    max-width: 200%;
    object-fit: contain;
    border-radius: 5px;
    display: flex;
    justify-self: center;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

li {
    margin-right: 20px;
}

li a {
    display: block;
    padding: 10px;
    /*color: white;*/
    text-decoration: none;
    font-family: Arial, sans-serif;
    text-align: center;
}

li a:hover {
    background: #003087;
    text-transform: uppercase;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 768px) {
    .logo a {
        max-width: 150px;
    }

    .logo img {
        max-height: 40px;
        justify-self: center;
    }

    .menu-icon {
        display: block;
    }

    ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 90px;
        left: 0;
        /*background-color: #0055A4;*/
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    ul.active {
        display: flex;
        max-height: 400px;
    }

    li {
        margin: 0;
    }

    li a {
        padding: 15px;
        /*border-top: 1px solid #003087;*/
    }
}

/* Registration Container */
.registration-container {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 20px;
}

.alert-section {
    text-align: center;
    margin-bottom: 40px;
}

.warning-icon {
    width: 80px;
    height: 80px;
    background-color: #ff0000;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #cc0000;
}

.warning-icon::before {
    content: "!";
    color: white;
    font-size: 48px;
    font-weight: bold;
}

.alert-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.alert-subtext {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    line-height: 1.6;
}

/* Registration Form */
.registration-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: red;
    margin-left: 3px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    box-sizing: border-box;
    background: #f9f9f9;
}

form i {
    margin-left: -30px;
    cursor: pointer;
}

.form-group input:focus {
    outline: none;
    border-color: #0055A4;
    background: white;
}

.submit-button {
    text-align: center;
    margin-top: 40px;
}

.submit-button button {
    background-color: #0055A4;
    color: white;
    border: none;
    padding: 15px 60px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.submit-button button:hover {
    background-color: #003d7a;
}

/* home image */
.home-image-container {
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

.home-image {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .registration-container {
        padding: 0 15px;
        margin: 20px auto;
    }

    .registration-form {
        padding: 25px 20px;
    }

    .alert-text {
        font-size: 16px;
    }

    .alert-subtext {
        font-size: 18px;
    }

    .warning-icon {
        width: 60px;
        height: 60px;
        border: 6px solid #cc0000;
    }

    .warning-icon::before {
        font-size: 36px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="password"],
    .form-group input[type="tel"] {
        padding: 10px 12px;
        font-size: 14px;
    }

    .submit-button button {
        padding: 12px 40px;
        font-size: 16px;
        width: 100%;
    }

    .home-image-container {
        margin: 15px 0;
        padding: 0 10px;
    }

    .home-image {
        max-width: -webkit-fill-available;
    }
}

@media (max-width: 480px) {
    .home-image-container {
        margin: 10px 0;
    }

    .home-image {
        max-width: -webkit-fill-available;
    }
}

/* commercial-ad */
.commercial-ad {
    background-color: #d3d3d3;
    text-align: center;
    padding: 60px 20px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .commercial-ad {
        padding: 30px 15px;
        font-size: 16px;
    }
}

/* Services section */
.user-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.services-section {
    background: linear-gradient(to bottom, #0055A4, #007BFF);
    padding: 60px 20px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    margin-bottom: 100px;
    cursor: pointer;

}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.disabled-div {
    opacity: 0.8;
    pointer-events: none;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 15px;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
        justify-items: center;
    }

    .service-card {
        padding: 15px;
    }

    .user-icon img {
        width: 50px;
        height: 50px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-subtitle {
        font-size: 16px;
    }
}

.service-card {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}

.service-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 5px;
    color: black;
}

.service-subtitle {
    font-size: 17px;
    color: black;
    font-weight: bold;
}

/* Hot jobs Section *

.hot-jobs-container {
    text-align: center;
    padding: 20px;
    background: #fff;
}

.hot-jobs-header {
    margin-bottom: 20px;
}

.hot-jobs-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin: 0 0 10px 0;
}

.hot-jobs-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.job-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    white-space: nowrap;
    cursor: pointer;
}

.job-item {
    background: #fff;
    border: 1px solid #ddd;
    width: 220px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    transition: transform 0.3s ease;
    border-radius: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.job-item:hover {
    transform: translateY(-5px);
}

.job-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.job-title {
    font-size: 15px;
    margin-bottom: 5px;
    color: black;
    font-family: sans-serif;
}

.job-subtitle {
    font-size: 15px;
    color: black;
    font-weight: bold;
    font-family: sans-serif;
}

@media (max-width: 768px) {
    .job-grid {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    .job-item {
        width: 80%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .job-item:last-child {
        margin-bottom: 0;
    }
}
*/

/* Hot jobs Section */
.hot-jobs-container {
    text-align: center;
    padding: 20px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.hot-jobs-header {
    margin-bottom: 20px;
}

.hot-jobs-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin: 0 0 10px 0;
}

.hot-jobs-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.job-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    white-space: nowrap;
}

.job-item {
    background: #fff;
    border: 1px solid #ddd;
    width: 280px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    transition: transform 0.3s ease;
    border-radius: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.job-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
}

.job-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.job-content {
    padding: 15px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.job-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.job-time {
    font-size: 12px;
    color: #888;
}

.job-time i {
    margin-right: 5px;
}

.job-gender {
    font-size: 12px;
    color: #888;
    margin-left: 5px;
}

.job-details {
    margin-bottom: 15px;
}

.job-role {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.job-salary {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.job-amount {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.job-location {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 15px;
}

.job-location img {
    width: 60px;
    /* adjust as needed */
    height: auto;
    object-fit: contain;
}

.job-location .location-text {
    flex: 1;
    text-wrap: auto;
}

.apply-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.apply-button:hover {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    .job-grid {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    .job-item {
        width: 90%;
        max-width: 350px;
        margin-bottom: 20px;
    }

    .job-item:last-child {
        margin-bottom: 0;
    }
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 50px 20px;
    background-color: #e1e8e3;
    margin-top: 20px;
}

.contact-info {
    text-align: left;
    color: #333;
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-info h1 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'sans-serif';
    color: black;
    line-height: 1.2;
}

.contact-info p {
    margin: 15px 0;
    font-size: 1.2em;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: black;
    font-weight: 600;
    line-height: 1.5;
    word-wrap: break-word;
}

.form-container {
    background-color: #4a5fe6;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-row {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-row label {
    color: white;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.form-row input[type="text"],
.form-row select {
    border: none;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    background-color: white;
    color: #333;
}

.form-row select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.form-row select:focus,
.form-row input[type="text"]:focus {
    outline: 2px solid #007bff;
    outline-offset: -2px;
}

.name-labels {
    display: flex;
    gap: 81px;
}

.name-labels input {
    flex: 1;
}

.name-inputs {
    display: flex;
    gap: 10px;
}

.name-inputs input {
    flex: 1;
}

.half-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.half-input {
    display: flex;
    flex-direction: column;
    flex: 1;
}

button {
    background-color: #00d9ff;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    align-self: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #00b8e6;
}

@media (max-width: 768px) {
    .contact-form-section {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
        margin-top: 10px;
    }

    .contact-info {
        text-align: center;
        width: 100%;
        padding: 10px;
    }

    .contact-info h1 {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .contact-info p {
        font-size: 1.1em;
        margin: 12px 0;
        padding: 0 10px;
        line-height: 1.4;
    }

    .contact-info p:last-child {
        margin-bottom: 0;
    }

    .form-container {
        padding: 25px 15px;
        width: 90%;
    }

    .form-row label {
        font-size: 1em;
    }

    .name-inputs {
        flex-direction: column;
        gap: 15px;
    }

    .half-row {
        flex-direction: column;
        gap: 15px;
    }

    button {
        width: 100%;
        padding: 12px 30px;
    }
}

/* Login  */
.login-container {
    padding-top: 90px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    background-color: white;
}

.login-card {
    background-color: white;
    padding: 40px;
    margin: 20px 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.login-card h2 {
    font-size: 30px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 16px;
}

.required-star {
    color: red;
    margin-left: 2px;
}

.login-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.login-actions button {
    background-color: #20b2aa;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.login-actions button:hover {
    background-color: #1a958e;
}

.remember-me {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
}

.remember-me input[type="checkbox"] {
    margin-right: 5px;
    cursor: pointer;
}

.forgot-password a {
    color: #20b2aa;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {

    .login-card {
        padding: 25px;
    }

    .login-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-actions button {
        width: 100%;
        padding: 12px;
    }
}

/* Recruitment Agencies Section */
.recruitment-agencies-container {
    padding: 20px;
    background-color: #e1e8e3;
}

.recruitment-agencies-header {
    background-color: #0056b3;
    color: white;
    text-align: center;
    padding: 15px;
}

.recruitment-agencies-title {
    margin: 0;
    font-size: 24px;
}

.job-opportunities-subtitle {
    text-align: center;
    margin: 20px 0;
    font-size: 16px;
    color: #555;
}

.search-section {
    display: flex;
    justify-content: center;
    align-items: end;
    background-color: #0056b3;
    padding: 15px;
    gap: 10px;
}

.search-input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.search-input::placeholder {
    color: transparent;
}

.search-button {
    padding: 10px 25px;
    background-color: #00aaff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.job-card {
    display: flex;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    max-width: 800px;
    overflow: hidden;
}

.image-link {
    display: block;
    width: 35%;
    text-decoration: none;
    overflow: hidden;
}

.image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-link:hover img {
    transform: scale(1.05);
    cursor: pointer;
}

@media (max-width: 768px) {
    .image-link {
        width: 100%;
    }

    .job-card-image {
        height: 200px;
    }
}

.job-card-image {
    /*height: 180px;*/
    overflow: hidden;
}

.job-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-card-details {
    position: relative;
    padding: 15px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new-tag {
    position: absolute;
    top: 15px;
    left: 20px;
    background-color: #A9A9A9;
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.job-text-content {
    display: flex;
    flex-direction: column;
    /*padding-top: 35px;*/
}

.job-card-location {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.job-card-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 5px 0 10px 0;
}

.job-card-meta {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.meta-item {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.meta-item i {
    margin-right: 5px;
    color: #333;
}

.favorites-link {
    align-self: flex-end;
    margin-top: 10px;
}

.favorites-link a {
    color: #555;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        border-radius: 20px;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
    }

    .job-card-image {
        width: 100%;
        height: 200px;
    }

    .search-section {
        flex-direction: column;
    }

    .search-input {
        width: 100%;
    }

    .search-button {
        width: 100%;
    }

    .job-card-meta {
        flex-direction: column;
        gap: 5px;
    }

    .favorites-link {
        margin-top: 15px;
    }

    .favorites-link a {
        justify-content: flex-start;
    }

    .new-tag {
        top: 10px;
        left: 10px;
    }
}

/* Job Details Page Styles - Add to your style.css */

.job-details-wrapper {
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 20px;
}

.job-details-container {
    display: grid;
    /*grid-template-columns: 1fr 350px;*/
    gap: 20px;
    align-items: start;
}

/* Main Job Card */
.job-main-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.job-header {
    margin-bottom: 20px;
}

.job-listing-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin: 0 0 10px 0;
}

.job-meta-info {
    font-size: 14px;
    color: #666;
}

.job-posted-time,
.job-category {
    margin-right: 5px;
}

.job-content-layout {
    /*display: grid;*/
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

/* Job Image Section */
.job-image-section {
    width: 100%;
}

.job-detail-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Job Info Section */
.job-info-section {
    width: 100%;
}

.salary-badge {
    display: inline;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, #00ffa7, #00724b);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.section-heading {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 20px 0 15px 0;
}

.job-overview-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.overview-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 10px;
    padding: 8px 0;
}

.overview-label {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.overview-value {
    color: #666;
    font-size: 14px;
}

.job-description-area {
    min-height: 150px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    margin-top: 10px;
}

/* Sidebar Styles */
.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-info-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.company-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a2a;
}

.company-logo {
    max-width: -webkit-fill-available;
    border-radius: inherit;
}

.company-avatar {
    width: 60px;
    height: 60px;
    background-color: #ddd;
    border-radius: 50%;
}

.company-name {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 0;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: #f5f5f5;
}

.contact-icon {
    font-size: 24px;
    color: #0055A4;
}

.whatsapp-icon {
    color: #25D366;
}

.contact-hint {
    font-size: 12px;
    color: #888;
    margin: 3px 0 0 0;
}

/* Sidebar Ads */
.sidebar-ad {
    background-color: #d3d3d3;
    border-radius: 10px;
    padding: 80px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #666;
}

/* Safety Alert Card */
.safety-alert-card {
    background: #e8f4f8;
    border: 1px solid #b8dce8;
    border-radius: 10px;
    padding: 20px;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #0066cc;
    font-size: 16px;
}

.alert-header i {
    font-size: 20px;
}

.safety-tips {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: block;
}

.safety-tips li {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.safety-tips li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.safety-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.safety-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .job-details-container {
        grid-template-columns: 1fr;
    }

    .job-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .job-details-wrapper {
        padding: 0 10px;
    }

    .job-main-card {
        padding: 20px 15px;
    }

    .job-content-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .job-listing-title {
        font-size: 24px;
    }

    .overview-item {
        grid-template-columns: 1fr;
        gap: 5px;
        border-bottom: 1px solid #eee;
        padding: 12px 0;
    }

    .overview-label {
        font-size: 13px;
    }

    .overview-value {
        font-size: 13px;
        padding-left: 10px;
    }

    .company-info-card {
        padding: 15px;
    }

    .sidebar-ad {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .job-listing-title {
        font-size: 20px;
    }

    .salary-badge {
        padding: 6px 12px;
        font-size: 14px;
    }

    .section-heading {
        font-size: 18px;
    }

    .contact-item {
        padding: 10px;
    }
}

/* Company Profile Page Styles - Add to your style.css */

.company-profile-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Company Profile Header */
.company-profile-header {
    background: linear-gradient(135deg, #0055A4 0%, #003d7a 100%);
    border-radius: 10px 10px 0 0;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.company-profile-avatar {
    width: 150px;
    height: 150px;
    background-color: #0055A4;
    border: 5px solid white;
    border-radius: 50%;
    flex-shrink: 0;
}

.company-profile-info {
    flex: 1;
    color: white;
}

.company-profile-name {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 20px 0;
    color: white;
}

.company-details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-overview-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.company-overview-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 10px;
    padding: 8px 0;
}

.company-overview-label {
    font-weight: bold;
    color: #ffffff;
    font-size: 14px;
    text-align: right;
}

.company-overview-value {
    color: #ffffff;
    font-size: 14px;
}

/* Company Jobs Section */
.company-jobs-section {
    background: white;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.company-job-card {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 20px;
    padding: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.company-job-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.job-card-link {
    text-decoration: none;
    display: block;
}

.job-card-image-wrapper {
    position: relative;
    width: 200px;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.company-job-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.job-card-link:hover .company-job-image {
    transform: scale(1.05);
}

.job-new-badge {
    position: sticky;
    top: 10px;
    vertical-align: text-bottom;
    background-color: #A9A9A9;
    color: black;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
}

.company-job-details {
    flex: 1;
}

.job-category-tag {
    font-size: 13px;
    color: #888;
    margin: 0 0 8px 0;
}

.company-job-title {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    margin: 0 0 12px 0;
}

.job-listing-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-icon {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-icon i {
    color: #888;
}

.job-favorite-action {
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.favorite-btn {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.favorite-btn:hover {
    color: #0055A4;
}

.favorite-btn i {
    font-size: 18px;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.pagination {
    display: flex;
    gap: 15px;
}

.page-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #0055A4;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.page-number:hover {
    background-color: #003d7a;
}

.page-number.active {
    background-color: #003d7a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .company-job-card {
        grid-template-columns: 180px 1fr auto;
        gap: 15px;
    }

    .job-card-image-wrapper {
        width: 180px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .company-profile-wrapper {
        padding: 0 10px;
    }

    .company-profile-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .company-profile-avatar {
        width: 120px;
        height: 120px;
    }

    .company-profile-name {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .company-overview-item {
        grid-template-columns: 1fr;
        gap: 5px;
        border-bottom: 1px solid #eee;
        padding: 12px 0;
    }

    .company-overview-label {
        font-size: 13px;
        text-align: center;
    }

    .company-overview-value {
        font-size: 13px;
        text-align: center;
    }

    .company-jobs-section {
        padding: 15px;
    }

    .company-job-card {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .job-card-image-wrapper {
        width: 100%;
        height: 200px;
    }

    .company-job-title {
        font-size: 20px;
    }

    .job-listing-meta {
        flex-direction: column;
        gap: 8px;
    }

    .job-favorite-action {
        padding-right: 0;
        justify-content: flex-start;
    }

    .pagination {
        gap: 10px;
    }

    .page-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .company-profile-header {
        padding: 25px 15px;
    }

    .company-profile-avatar {
        width: 100px;
        height: 100px;
    }

    .company-profile-name {
        font-size: 20px;
    }

    .company-overview-item {
        grid-template-columns: 1fr;
        gap: 5px;
        border-bottom: 1px solid #eee;
        padding: 12px 0;
    }

    .company-overview-label {
        font-size: 13px;
        text-align: center;
    }

    .company-overview-value {
        font-size: 13px;
        padding-left: 10px;
    }

    .company-job-card {
        padding: 12px;
    }

    .job-card-image-wrapper {
        height: 180px;
    }

    .company-job-title {
        font-size: 18px;
    }

    .meta-icon {
        font-size: 13px;
    }

    .favorite-btn {
        font-size: 13px;
    }
}

.comming_soon {
    width: 100%;
    max-width: 600px;
    margin: auto;
    display: block;
    border-radius: 30px;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 10.0);
}

/* Footer Styles */
.footer {
    background-color: #333333;
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
    padding: 10px;
}

.footer-social p {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 1.2em;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    position: relative;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons a.facebook {
    background: url('../img/fb.png') no-repeat center center;
    background-size: 60%;
    background-color: #1877F2;
}

.social-icons a.instagram {
    background: url('../img/ins.png') no-repeat center center;
    background-size: 60%;
    background-color: #E4405F;
}

.social-icons a.tiktok {
    background: url('../img/tiktok.png') no-repeat center center;
    background-size: 60%;
    background-color: #000000;
}

.social-icons a.youtube {
    background: url('../img/yt.png') no-repeat center center;
    background-size: 60%;
    background-color: #dc002c;
}

.footer-brand {
    font-family: sans-serif;
    font-size: 2.5em;
    font-weight: bold;
    margin: 0;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    word-wrap: break-word;
}

.footer-nav {
    background-color: #2b2b2b;
    width: 100%;
}

.footer-nav ul {
    justify-content: center;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
}

.footer-nav ul li {
    margin: 0 10px;
}

.footer-nav ul li a {
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
}

.footer-nav ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        padding: 15px 10px;
        gap: 10px;
    }

    .footer-social {
        flex-direction: column;
        gap: 15px;
        padding: 5px;
    }

    .footer-social p {
        font-size: 1em;
        margin-bottom: 5px;
    }

    .social-icons {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 5px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        margin: 0 5px;
    }

    .footer-brand {
        font-size: 1.8em;
        padding: 5px;
        line-height: 1.2;
        margin: 10px 0;
    }

    .footer-nav {
        padding: 5px 0;
        margin-top: 10px;
    }

    .footer-nav ul {
        display: contents;
    }

    .footer-nav ul li {
        margin: 0;
        padding: 3px 0;
    }

    .footer-nav ul li a {
        font-size: 14px;
        padding: 8px;
        display: inline-block;
        width: auto;
    }
}

/* all posts start*/
.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
    padding: 20px;
    border-radius: 8px;
}

.job-salary {
    margin-top: 10px;
    padding: 8px 0;
    border-top: 1px solid #eee;
}

.job-salary strong {
    color: #28a745;
    font-size: 14px;
}

.view-all-btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.view-all-btn:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

/* all posts end*/