/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
#backToTop {
  position: fixed;
  bottom: -60px;
  right: 20px;
  font-size: 18px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 999;
  opacity: 0;
}

#backToTop.show {
  bottom: 20px;
  opacity: 1;
}
#siteFooter
{
position:relative;
}

#backToTop.static-mode {
  position: static;   
}
button.open-lightbox {
    display: none;
}
/* Main wrapper */
.career-filter-wrapper {
    background: #048ccc;
    padding: 20px;
    border-radius: 22px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Top bar */
.top-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.filter-tab {
    background: #32a7e6;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
}

.filter-tab.active {
    border: 2px solid #ffffff;
}

#search-input {
    flex: 1;
    background: #32a7e6;
    border: 2px solid #ffffff;
    padding: 12px 20px;
    border-radius: 40px;
    color: #fff;
    font-size: 15px;
}

#search-input::placeholder {
    color: #e4f3ff;
}

/* Dropdown area */
.filter-dropdown {
    background: #0071a8;
    padding: 25px;
    border-radius: 20px;
}

.filter-col {
    margin-bottom: 25px;
}

.filter-col h4 {
    color: #fff;
    margin-bottom: 10px;
}

/* Select boxes */
.filter-col select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
}

/* Apply Button */
.apply-bar {
    text-align: center;
    margin-top: 20px;
}

#apply-filter {
    background: #32a7e6;
    padding: 15px 60px;
    border-radius: 40px;
    border: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

#apply-filter:hover {
    background: #66c4ff;
}