/* Custom Stylesheet hash:17426316271742632583 dated 07 Feb, 2026 08:59:37+Asia/Karachi */
/* ==========================================================================
   General Settings
========================================================================== */
.branding__logo {
  width: 150px !important;
  max-width: 400px !important;
  max-height: none !important;
}

.ace_scroller {
  color:white;
}
.ace_gutter-cell {
  color:white;
}

.hero-heading {
  color:white;
}

.search--home .h1{
  text-align: center !important;;
  font-size: 32px !important;;
}

.search--home {
    padding: 2.4em 2.5% 0.5em !important;
}

.footer-inner {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color:black;
}
.footer a {
  color:black !important;
}

.footer {
  padding-top:0em !important;
  padding-bottom:0em !important;
}

.tools-card {
  padding-top:2em;
  padding-bottom:0.5em;
  width:100%;
  height:100%;
}

.tools-card-content {
  display: inline-block;
  width:24%;
  height:100%;
  vertical-align:top;
  margin-right:0.1em;
}

a.tools-card-button:link, a.tools-card-button:visited {
  background-color: #000000;
  color: white;
  padding: 6px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
a.tools-card-button:hover, a.tools-card-button:active {
  background-color: #202080;
}

.tools-card-content-option {
  display:flex;
  flex-direction:column;
  flex-grow:1;
  vertical-align:baseline;
  padding-bottom:1em;
}

a.by-campus:link,  a.by-campus:visited{
  display: inline-block;
  padding-bottom:0.5em;
  width:30%;
  vertical-align:top;
  text-align:center;
  text-decoration: none;
  color:black;
}
.by-campus-content {
  text-align:center
  width:80%;
  margin:0.5em;
}

/* ==========================================================================
   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: #202020;
    color: #f0f0f0;
    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;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

/* Footer Columns */
.footer-logo-column {
    flex: 2; /* Increase the width */
    min-width: 300px;
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack logo and slogan vertically */
    align-items: center; /* Center align logo and slogan */
    text-align: center; /* Center the text */
}

.footer-logo-column img {
    max-width: 200px;
    height: auto;
}

.footer-slogan {
    font-size: 14px;
    color: #ffffff;
    margin-top: 15px;
    text-align: center;
}

.footer-contact-column {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.footer-contact-column h4 {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-contact-column .school-details {
    margin-bottom: 15px;
}

.footer-contact-column .school-details b {
    font-size: 14px;
    color: #ffffff;
}

.footer-contact-column .school-details {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

/* Footer Bottom Section */
.copyright-area {
    border-top: 1px solid #444444;
    color: #cccccc;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
}

/* ==========================================================================
   Responsive Design
========================================================================== */
.footer-top {
    display: grid; /* Switch to grid layout */
    grid-template-columns: 2fr 1fr 1fr 1fr; /* Define column sizes */
    gap: 20px;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr; /* Stack columns vertically on small screens */
        text-align: center;
    }

    .footer-contact-column, .footer-logo-column {
        text-align: center; /* Center text for smaller screens */
    }
}