@import url("animationstyle.css");

/* Job Header Section */
.job-header {
    text-align: center;
    margin-bottom: 20px;
    /* Space below the title */
}

.search-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    /* More spacing */
}

/* Search Bar Container */
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Space between rectangles */
    padding: 20px 0;
    /* Increased spacing above and below */
}

/* Left & Right Search Boxes */
.search-box-left,
.search-box-right {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    padding: 15px;
}

.search-box-left {
    flex: 1;
    border-radius: 30px 0 0 30px;
}

.search-box-right {
    flex: 1;
    border-radius: 0 30px 30px 0;
    margin-left: -1px;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    outline: none;
}

.search-icon,
.location-icon {
    margin-right: 10px;
    color: #888;
}

/* Search Button */
.search-btn {
    background-color: #007bff;
    border: none;
    padding: 15px 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: 10px;
}

.partner-list {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    background-color: #f99b28cc;
}

.aviation-partner-list {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    background-color: #1eb7f8fb;
}

.tech-partner-list {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    background-color: #163172e4;
}

.healthcare-partner-list {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    background-color: #3e84d4fb;
}


.partner-list-thumbnail {
    background-color: #FFFFFF;
    width: 250px;
    height: 200px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0 auto;
    padding: 5px;
}

.profile-container {
    display: flex;
    align-items: center;
}

.profile-box {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    /* Ensures equal height for both columns */
}

.profile-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.profile-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-box.color-1 {
    background-color: #25f393;
    /* Example: Red */
}

.info-box.color-2 {
    background-color: #ff82a1ee;
    /* Example: Green */
}

.info-box.color-3 {
    background-color: #71c2fc;
    /* Example: Blue */
}

.info-box.color-4 {
    background-color: #f4da7d;
    /* Example: Yellow */
}

.info-box.color-5 {
    background-color: #ffc15d;
    /* Example: Purple */
}

.info-box.color-6 {
    background-color: #1ABC9C;
    /* Example: Teal */
}

.categories-list {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    background-color: #645df1b2;
}

.category {
    display: inline-block;
    padding: 10px 20px;
    background-color: #cf39a5;
    /* You can modify the background color */
    border-radius: 25px;
    /* This makes the h6 tag a rounded rectangle */
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 10px;
    /* Adds spacing between categories */
    cursor: pointer;
    transition: background-color 0.3s;
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 8px;
}