.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-primary{
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}
.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.d-none{
    display: none;
}
.not-found{
    color: red;
    text-align: center;
}

.active{
    font-weight: bold !important;
    color: #03c !important;
}

.banner-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/*
 * Header
 */
 /* ── Help Dropdown Wrapper ── */
 .help-dropdown {
     position: relative;
     list-style: none;
 }

 .help-dropdown .tlinks-wrap>a {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-decoration: none;
     color: #fff;
     font-size: 13px;
     gap: 2px;
 }

 .help-dropdown .tlinks-wrap>a figure {
     margin: 0;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* ── Dropdown Menu ── */
 .help-dropdown-menu {
     display: none;
     position: absolute;
     top: calc(100% + 12px);
     right: 50%;
     transform: translateX(50%);
     background: #fff;
     border: 1px solid #e0e0e0;
     border-radius: 6px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
     min-width: 210px;
     width: max-content;
     list-style: none;
     padding: 0 !important;
     margin: 0 !important;
     z-index: 9999;
     overflow: visible;
 }

 .help-dropdown:hover .help-dropdown-menu {
     display: block;
 }

 /* ── Arrow ── */
 .help-dropdown-menu::before {
     content: '';
     position: absolute;
     top: -9px;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 0;
     border-left: 9px solid transparent;
     border-right: 9px solid transparent;
     border-bottom: 9px solid #e0e0e0;
 }

 .help-dropdown-menu::after {
     content: '';
     position: absolute;
     top: -7px;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 0;
     border-left: 8px solid transparent;
     border-right: 8px solid transparent;
     border-bottom: 8px solid #fff;
 }

 /* ── List Items ── */
 .help-dropdown-menu>li {
     padding: 0 !important;
     margin: 0 !important;
     width: 100% !important;
     display: block !important;
     list-style: none !important;
 }

 .help-dropdown-menu>li+li {
     border-top: 1px solid #f0f0f0 !important;
     margin: 0 !important;
 }

 /* ── Menu Links ── */
 .help-dropdown-menu>li>a,
 .help-dropdown-menu li a {
     display: block !important;
     width: 100% !important;
     padding: 10px 12px !important;
     font-size: 13px !important;
     color: #333 !important;
     text-decoration: none !important;
     white-space: nowrap !important;
     box-sizing: border-box !important;
     transition: background 0.12s, color 0.12s;
     border-radius: 0 !important;
     background: transparent !important;
     float: none !important;
     line-height: normal !important;
     text-align: left !important;
 }

 .help-dropdown-menu>li>a:hover,
 .help-dropdown-menu li a:hover {
     background: #f7f7f7 !important;
     color: #f47920 !important;
 }

 .help-dropdown-menu>li:first-child>a {
     border-radius: 6px 6px 0 0 !important;
 }
/* ── Contact Info Group ── */
/* ── Contact Info Group ── */
.help-dropdown-menu>li.contact-info-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 12px !important;
    background: #fff8f0 !important;
    border-top: 1px solid #f0f0f0 !important;
    border-radius: 0 0 6px 6px !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

/* Phone icon */
.help-dropdown-menu>li.contact-info-group .contact-phone-icon {
    display: inline-flex !important;
    flex-shrink: 0 !important;
    align-self: center !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    background: #fff !important;
    border: 1.5px solid #ddd !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
}

.help-dropdown-menu>li.contact-info-group .contact-phone-icon svg {
    width: 14px !important;
    height: 14px !important;
    display: block !important;
}

/* Numbers */
.help-dropdown-menu>li.contact-info-group .contact-numbers {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.help-dropdown-menu>li.contact-info-group .contact-numbers a {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    font-size: 12.5px !important;
    color: #555 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    line-height: 1.6 !important;
    background: transparent !important;
    border-radius: 0 !important;
    float: none !important;
}

.help-dropdown-menu>li.contact-info-group .contact-numbers a:hover {
    color: #f47920 !important;
    background: transparent !important;
}
 /* ════════════════════════════
   RESPONSIVE — Tablet
════════════════════════════ */
 @media (max-width: 991px) {
     .help-dropdown-menu {
         right: 0 !important;
         left: auto !important;
         transform: none !important;
     }

     .help-dropdown-menu::before {
         left: auto !important;
         right: 14px !important;
         transform: none !important;
     }

     .help-dropdown-menu::after {
         left: auto !important;
         right: 15px !important;
         transform: none !important;
     }
 }

 /* ════════════════════════════
   RESPONSIVE — Mobile
════════════════════════════ */
 @media (max-width: 575px) {
     .help-dropdown-menu {
         position: fixed !important;
         top: auto !important;
         bottom: 0 !important;
         left: 0 !important;
         right: 0 !important;
         width: 100% !important;
         min-width: unset !important;
         transform: none !important;
         border-radius: 14px 14px 0 0 !important;
         box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15) !important;
         overflow: hidden !important;
     }

     .help-dropdown-menu::before,
     .help-dropdown-menu::after {
         display: none !important;
     }

     .help-dropdown-menu>li:first-child::before {
         content: '';
         display: block;
         width: 36px;
         height: 4px;
         background: #ddd;
         border-radius: 2px;
         margin: 10px auto 6px;
     }

     .help-dropdown-menu>li>a,
     .help-dropdown-menu li a {
         padding: 13px 16px !important;
         font-size: 14px !important;
     }

     .help-dropdown-menu>li:first-child>a {
         border-radius: 0 !important;
     }

     .contact-info-group {
         padding: 12px 16px !important;
         border-radius: 0 !important;
     }

     .contact-numbers a {
         font-size: 13px !important;
     }

     .contact-phone-icon {
         width: 34px !important;
         height: 34px !important;
         min-width: 34px !important;
     }

     .contact-phone-icon svg {
         width: 16px !important;
         height: 16px !important;
     }
 }


