/*** 

====================================================================
	Custom CSS
====================================================================

***/

.terms-section, .policy-section {
	margin-top: 50px;
	margin-bottom: 50px;
}

/* JOIN OUR TEAM (CAREERS) CSS */
/* Title Box CSS */
.title-box {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
}

.title-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.title-box .bold-text {
    font-size: 18px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
}

.title-box .text {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
}

/* Info Column CSS */
.info-column {
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-column .inner-column {
    padding: 15px;
}

.info-column .image {
    margin-bottom: 20px;
    text-align: center;
}

.info-column .image img {
    max-width: 100%;
    border-radius: 8px;
}

.info-column h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.info-column .text {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.info-column ul li {
    font-size: 16px;
    color: #34495e;
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
}

.info-column ul li a {
    color: #2980b9;
    text-decoration: none;
}

.info-column ul li a:hover {
    text-decoration: underline;
}

/* Note Box CSS */
.note-box {
    background-color: #f9f9f9;
    border-left: 5px solid #e74c3c;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.note-box p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.note-box strong {
    color: #e74c3c;
}

/* Slider Image Opacity */
/* Position the overlay over the image but behind the captions */
.rev_slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Adjust opacity as needed */
    z-index: 1;
    pointer-events: none; /* Ensure it doesn't interfere with other elements */
}

/* Ensure captions are above the overlay */
.tp-caption {
    position: relative;
    z-index: 2; /* Ensure this is higher than the overlay */
}

/* Hide all steps except the active one */
.form-step {
    display: none;
}
.form-step.active-step {
    display: block;
}

/* Style for buttons */
.next-btn, .prev-btn, .submit-btn {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #910db8;
    color: white;
    border: none;
    cursor: pointer;
}

.next-btn:hover, .prev-btn:hover, .submit-btn:hover {
    background-color: #720a95;
}

.is-invalid {
    border-color: #dc3545; /* Red border color */
    background-color: #f8d7da; /* Light red background color */
}

.is-invalid:focus {
    box-shadow: 0 0 5px rgba(220, 53, 69, 0.5); /* Focus shadow */
}

.is-invalid + .invalid-feedback {
    display: block; /* Show error message */
    color: #dc3545; /* Text color for the error message */
    margin-top: 5px;
    font-size: 14px;
}
