/* Custom Stylesheet hash:17389626701742615347 dated 17 Jun, 2025 05:33:28+Asia/Karachi */
/* ==========================================================================
   General Settings
========================================================================== */
.branding__logo {
  width: 200px !important;
  max-width: 400px !important;
  max-height: none !important;
}

.ace_scroller {
  color:white;
}
.ace_gutter-cell {
  color:white;
}

.hero-heading {
  color:white;
}

.search--home.sm-max-hide {
  background-image: url('https://i.imgur.com/KaPg9HX.png') !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* ==========================================================================
   Escalation CSS
========================================================================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark background */
    justify-content: center;
    align-items: center;
    z-index:1;
}
.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    text-align: center;
}
.close-btn {
    background: #ff3b3b;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}
.submit-btn {
    background: #3efa25;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}

.submit-btn:disabled {
    background: #eeeeee;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}

/* ========================================================================== 
   Footer Styling 
========================================================================== */
.footer {
    background-image: url('https://i.imgur.com/KaPg9HX.png') !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    font-size: 14px;
    line-height: 1.6;
    padding: 60px 15px 24px;
}

.footer a {
    color: #ffffff;
}

.footer a:hover {
    color: #cccccc;
    text-decoration: underline;
}

/* Footer Top Section */
.footer-top {
    display: flex; /* Flexbox for layout */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px; /* Spacing between columns */
}

/* Footer Logo Column */
.footer-logo-column {
    flex: 0 1 600px; /* Ensure column has a maximum width of 600px */
    display: flex; /* Use flexbox for logo and text */
    flex-direction: column; /* Stack logo and slogan vertically */
    align-items: center; /* Center content */
    text-align: center; /* Center text */
    margin: 0 auto; /* Center the column itself */
}

.footer-logo-column img {
    max-width: 250px; /* Make the logo larger */
    height: auto; /* Maintain aspect ratio */
}

.footer-slogan {
    font-size: 16px; /* Slightly larger font for readability */
    color: #ffffff;
    margin-top: 15px; /* Space between logo and slogan */
    line-height: 1.8; /* Improve spacing between lines */
    text-align: center;
}

/* Footer Contact Columns (Optional, if needed) */
.footer-contact-column {
    flex: 1; /* Equal space for contact columns */
    min-width: 200px; /* Prevent collapsing too much */
    text-align: left; /* Align text to the left */
}

/* Footer Bottom Section */
.copyright-area {
    border-top: 1px solid #444444;
    color: #cccccc;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
}

/* ========================================================================== 
   Responsive Design 
========================================================================== */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column; /* Stack all columns vertically */
        text-align: center;
    }

    .footer-logo-column {
        flex: 0 1 100%; /* Column takes full width */
        margin-bottom: 30px; /* Add spacing below the column */
    }

    .footer-slogan {
        font-size: 14px; /* Slightly smaller text for smaller screens */
        line-height: 1.6; /* Adjust line height */
    }
}