html{
    height: 100%;
}
body {
    position: relative;
    margin: 0;
    color: #4d4d4d;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    min-height: 100vh;
    overflow-y: auto;
    padding-bottom: 70px; /* Space for the footer */
    
}
.form-control{
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}
.ticket-form-row {
    max-height: calc(100vh - 220px);
    overflow-y: auto;
    padding-right: 10px;

    /* Hide scrollbar */
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* IE & Edge (legacy) */
}

/* Chrome, Safari, Edge (Chromium) */
.ticket-form-row::-webkit-scrollbar {
    width: 0;
    height: 0;
}

#footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    height: 50px;
    padding: 1rem;
    background-color: #EFEFEF;
    color: #88837F;
    font-size: 13px;
    z-index: 10;
}
#footer a{
    color: #88837F;
}
#footer a:hover{
    color: #999;
}
a:hover{
    text-decoration: none;
}
.static_link, .static_link:hover{
    color: #0077FF;
}
.inactive_link, .inactive_link:hover{
    color: #6BAFFF;
}
/* Navbar */
.navbar{
    font-weight: 400;
    -webkit-box-shadow: -1px 2px 9px 0px rgba(221,221,221,1);
    -moz-box-shadow: -1px 2px 9px 0px rgba(221,221,221,1);
    box-shadow: -1px 2px 9px 0px rgba(221,221,221,1);
    padding-top: 20px;
    padding-bottom: 20px;
    height: 85px;
}
.navbar-light .navbar-nav .nav-link {
    color: #03363D;
}
.navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #2276D2;
    text-decoration: underline;
}
/* Heading */
.heading{
    font-weight: 200;
    font-size: 60px;
    line-height: 48px;
    padding-top: 10px;
}
.submit-ticket-title {
    font-weight: 500; /* or 700 for bold */
}
.sub_heading{
    font-weight: 200;
    font-size: 36px;
    margin-top: 5px;
    line-height: 35px;
}
.sub-head{
    font-size: 25px;
    margin-bottom: 30px;
}
.form-dep{
    margin-bottom: 30px;
    font-size: 20px;
}
/* Knowledge base */
.slider-block{
    background: url("../images/slider.jpg") no-repeat;
    background-position: top;
    background-size: cover;
    color: #1b1e21;
}
.slider-block .slider-content{
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
}
.slider-block .slider-content h1{
    font-weight: 300;
    margin-bottom: 50px;
}
a.kb_category{
    font-weight: 400;
    font-size: 20px;
    color: #4C4C4C;
}
a.kb_category:hover{
    color: #0077FF;
}
.kb_total_articles{
    color: #B3B3B3;
}
.kb_article_icon{
    color: #C7C7C7;
}
.kb_article_icon_lg{
    color: #E5E5E5;
    font-size: 40px;
}

.article_description{
    color: #999;
    font-size: 14px;
}

.pointer{
    cursor: pointer;
}
.bg-staff{
    background-color: #FFF5E5;
}

.login-container{
    height: calc(100% - 135px);
    display: flex;
    align-items: center;
}

@media (max-width: 1024px){
    .left-container {
        display:none
    }

    .right-container{
        width: 100%;
    }
}

.left-container{
    width: 100%;
    height: 100%;
}
.left-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.client-login-page #footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}
.right-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.right-container .logo-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 0 50px;
    align-items: start;
}

.office-logo {
    width: 170px !important;
    height: 59px;
}

.logo-header .logo-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logo-header .heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 10px;
}

.logo-header .info {
    font-size: 18px;
    font-weight: 500;
    color: #6E6E6E;
}

.login-box{
    margin-top: 10px;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.small-box {
    width: 100%;
    padding: 0 50px;
}

.input-div, .form-control{
    height: 50px;
}

input:focus {
    outline: none;
}

.form-group {
    margin-bottom: 2rem !important;
}

.btn{
    width:190px;
}

.department-card input:checked + .department-box {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13,110,253,.2);
}

.department-box {
    transition: all 0.2s ease;
    cursor: pointer;
    padding: 22px 24px;
}

.department-box:hover {
    border-color: #0d6efd;
}

.radio-circle {
    width: 18px;
    height: 18px;
    border: 2px solid #c5c9d3;
    border-radius: 50%;
    position: relative;
}

.department-card input:checked + .department-box .radio-circle {
    border-color: #0d6efd;
}
.department-box .d-flex {
    gap: 14px;   /* space between radio circle and text */
}

.department-card input:checked + .department-box .radio-circle::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #0d6efd;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}

.container {
    max-width: 900px;
}

/* Apply same style to ALL selects inside custom fields */
.col-md-6 select {
    height: 50px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 10px 40px 10px 12px;
    background-color: #fff;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23666' height='18' viewBox='0 0 20 20'%3E%3Cpath d='M5 7l5 5 5-5'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

/* Also match input height */
.col-md-6 input,
.col-md-6 textarea {
    border-radius: 6px;
    height: 50px;
}


.ticket-success-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 26px 28px;
    border: 1px solid #e5ecf6;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    max-width: 700px;
}

.ticket-subject {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #03363D;
}

.ticket-info-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 6px;
    border-bottom: 1px dashed #e5ecf6;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: #6b7280;
}

.info-value {
    font-weight: 500;
    color: #111827;
}




