/* ===================================
   ZA Air Solutions Inc. - Custom CSS
   =================================== */

:root {
    --primary-dark: #1a3a4a;
    --primary-blue: #0d6efd;
    --success-green: #28a745;
    --cta-orange: #ff6b35;
    --emergency-red: #dc3545;
    --whatsapp-green: #25d366;
    --light-gray: #f8f9fa;
    --text-gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* ===================================
   HEADER STYLES
   =================================== */

.main-header {
    background: var(--primary-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.main-header.scrolled {
    padding: 12px 0;
    background: rgba(26, 58, 74, 0.98);
    backdrop-filter: blur(10px);
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    user-select: none;
}

.logo-text:hover {
    transform: scale(1.02);
    color: white;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), #0dd2ff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: logoShimmer 3s ease-in-out infinite;
}

@keyframes logoShimmer {
    0%, 100% { transform: translate(-30%, -30%) rotate(0deg); }
    50% { transform: translate(10%, 10%) rotate(180deg); }
}

.logo-icon:hover {
    box-shadow: 0 6px 25px rgba(13, 110, 253, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.15);
    transform: rotate(-3deg) scale(1.05);
}

.za-logo-letters {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
    padding: 10px 20px !important;
    transition: all 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--cta-orange) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--cta-orange);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.btn-quote-header {
    background: linear-gradient(135deg, var(--cta-orange), #ff8555);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-quote-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    color: white;
}

/* ===================================
   GALLERY SLIDER STYLES
   =================================== */

.gallery-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.gallerySwiper {
    width: 100%;
    height: 100%;
}

.gallerySwiper .swiper-slide {
    position: relative;
}

.gallerySwiper .swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px;
    color: white;
}

.slide-overlay h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(255,107,53,0.8);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--cta-orange) !important;
    opacity: 1;
}

/* ===================================
   HERO SECTION STYLES
   =================================== */

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 58, 74, 0.95), rgba(13, 110, 253, 0.85));
    background-attachment: fixed;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23ffffff" opacity="0.05" d="M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,58.7C960,64,1056,64,1152,58.7L1200,56L1200,120L1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z"/></svg>');
    background-position: bottom;
    background-repeat: no-repeat;
    animation: wave 15s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons .btn {
    margin: 10px;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--cta-orange), #ff8555);
    color: white;
    border: none;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.6);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===================================
   CONTACT BAR STYLES
   =================================== */

.contact-bar {
    background: white;
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0050c5, #0d6efd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.contact-info h6 {
    margin: 0;
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 600;
}

.contact-info p {
    margin: 0;
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 700;
}

/* ===================================
   SECTION STYLES
   =================================== */

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--cta-orange));
    border-radius: 2px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 700px;
    margin: 20px auto 0;
}

/* ===================================
   SERVICES SECTION STYLES
   =================================== */

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue), #2cf9f9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: white;
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.5);
}

.service-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-service {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-service:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

/* ===================================
   ABOUT SECTION STYLES
   =================================== */

.about-section {
    background: var(--light-gray);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.5s;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 24px;
    margin-top: 3px;
}

.feature-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.feature-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-gray);
}

/* ===================================
   WHY CHOOSE US STYLES
   =================================== */

.why-choose-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--primary-blue), var(--cta-orange));
}

.why-choose-card:hover h4,
.why-choose-card:hover p,
.why-choose-card:hover i {
    color: white !important;
}

.why-icon {
    font-size: 50px;
    color: var(--cta-orange);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.why-choose-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.why-choose-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ===================================
   PORTFOLIO SECTION STYLES
   =================================== */

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.4s;
    height: 350px;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.15);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 58, 74, 0.95), transparent);
    padding: 30px;
    transform: translateY(60px);
    transition: all 0.4s;
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 10px;
}

.portfolio-overlay .badge {
    background: var(--cta-orange);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
}

/* ===================================
   TESTIMONIALS STYLES
   =================================== */

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin: 20px;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    color: rgba(13, 110, 253, 0.1);
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-blue);
}

.author-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.rating {
    color: #ffc107;
    font-size: 18px;
    margin-top: 10px;
}

/* ===================================
   CTA SECTION STYLES
   =================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23ffffff" opacity="0.05" d="M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,58.7C960,64,1056,64,1152,58.7L1200,56L1200,0L1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"/></svg>');
    background-position: top;
    background-repeat: no-repeat;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: var(--cta-orange);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-cta:hover {
    background: white;
    color: var(--cta-orange);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

/* ===================================
   FOOTER STYLES
   =================================== */

.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 0;
}

.footer h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.footer p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--cta-orange);
    padding-left: 10px;
}

.footer-links a i {
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--cta-orange);
    transform: translateY(-5px);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    margin-top: 50px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* ===================================
   FLOATING BUTTONS STYLES
   =================================== */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

.btn-emergency-float {
    background: linear-gradient(135deg, #dc3545, #c82333);
    animation: emergencyPulseFloat 2s infinite;
    width: 70px;
    height: 70px;
}

@keyframes emergencyPulseFloat {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(220, 53, 69, 0.4);
    }
    50% {
        box-shadow: 0 6px 40px rgba(220, 53, 69, 0.8), 0 0 0 15px rgba(220, 53, 69, 0.15);
    }
}

.btn-emergency-float::before {
    content: '';
    position: absolute;
    font-size: 32px;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
}

.btn-support {
    background: var(--primary-blue);
}

.floating-btn-text {
    position: absolute;
    right: 75px;
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.floating-btn:hover .floating-btn-text {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* ===================================
   MODAL STYLES
   =================================== */

.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--emergency-red), #c82333);
    color: white;
    padding: 25px 30px;
    border: none;
}

.modal-header h5 {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-body {
    padding: 40px;
}

.emergency-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.emergency-option {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.emergency-option:hover {
    background: white;
    border-color: var(--emergency-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.emergency-option i {
    font-size: 48px;
    color: var(--emergency-red);
    margin-bottom: 15px;
}

.emergency-option h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.emergency-option p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.form-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 18px;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
    
    .emergency-options {
        grid-template-columns: 1fr;
    }

    .gallery-slider {
        height: 400px;
    }

    .gallerySwiper .swiper-slide img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .btn-emergency-float {
        width: 65px;
        height: 65px;
    }

    .gallery-slider {
        height: 300px;
    }

    .gallerySwiper .swiper-slide img {
        height: 300px;
    }

    .slide-overlay h3 {
        font-size: 20px;
    }

    .contact-item {
        justify-content: center;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}/* ===================================
   Modal Z-Index Fix
   Fix: Make modals appear above header
   =================================== */

.modal {
    z-index: 10000 !important;
}

.modal-backdrop {
    z-index: 9999 !important;
}

.modal-dialog {
    z-index: 10001 !important;
}

.modal-content {
    position: relative;
    z-index: 10002 !important;
}

.modal-header {
    position: relative;
    z-index: 10003 !important;
}