/* ===============================
   Progress Bar Styling
   =============================== */
   .progress-bar {
    background-color: #d89a95 !important;
    background-image: linear-gradient(to bottom, #d89a95 0%, #d89a95 100%) !important;
    background-repeat: repeat-x;
}

/* ===============================
   Card Component Styling
   =============================== */
.card {
    display: block !important;
    position: relative !important;
    background-color: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.125) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
    transition: 0.3s !important;
    padding: 1rem !important;
}

.card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
}

.card-title {
    font-size: 1.2rem !important;
    font-weight: bold !important;
}

/* ===============================
   Layout and Grid System
   =============================== */
.container {
    max-width: 1140px !important;
    margin: auto !important;
}

.card-row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
}

.col-md-6 {
    flex: 0 0 calc(50% - 7.5px) !important;
    max-width: calc(50% - 7.5px) !important;
    margin-bottom: 15px !important;
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* ===============================
   FAQ Button Styling with Pulse Animation
   =============================== */
@keyframes faqButtonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(48, 174, 200, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(48, 174, 200, 0.3);
    }
}

.faq-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #30aec8;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    z-index: 1050;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out;
    animation: faqButtonPulse 2.5s infinite ease-in-out;
}

.faq-button:hover {
    background-color: #2cb7ca;
}

/* ===============================
   Custom Switch Checkbox Styling
   =============================== */
input[type="checkbox"] {
    appearance: none;
    width: 40px;
    height: 20px;
    background-color: #ddd;
    border-radius: 10px;
    position: relative;
    transition: background-color 0.3s;
    cursor: pointer;
    outline: none;
}

input[type="checkbox"]:checked {
    background-color: #8ea983 !important;
}

input[type="checkbox"]:checked::before {
    transform: translateX(20px);
}

/* ===============================
   WMS 2025 Loading GIF
   =============================== */
div.splash.big div, div.holding.big div {
    display: block;
    height: 109px;
    width: 109px;
    background-image: url(https://airdrive.eventsair.com/eventsairwesteuprod/production-azuraevents-public/b2da68bdc93442b9acce57ac4dc08f2d);
}