/* Main background image */
body.cust-help {
    background-image: url('../img/main_bg2.jpg');
    background-size: 45% auto;
    background-position: 50% 0;
    background-repeat: repeat;
    background-attachment: fixed;
    position: relative;
}

body.cust-help::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 0;
    pointer-events: none;
}

body.cust-help .wrapper {
    background: transparent;
    position: relative;
    z-index: 1;
}

/* Header styling - Dark blue bar with Help Desk title */
.header {
    background-color: #1a3a5c;
    padding: 15px 0;
}

.header__logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-left: 50px;
    min-height: 40px;
}

.header__logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-image: url('../img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header__logo:hover {
    color: #ffffff;
    text-decoration: none;
}
.main__content{
    margin-top: 0px;
    padding-top: 0px!important;
}
/* Breadcrumb styling */
.breadcrumbs {
    background-color: #f5f5f5;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs__inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
}

.breadcrumbs__inner a {
    color: #1a3a5c;
    text-decoration: none;
}

.breadcrumbs__inner a:hover {
    text-decoration: underline;
}

.breadcrumbs__inner .last {
    color: #666;
}

/* Main content area */
.main__content {
    background-color: transparent;
    padding: 40px 0;
}

/* Main heading styling */
.search__title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 30px;
}

/* Search bar section with dark blue background */
.help-search {
    color: #0c3a5c;
    border-radius: 8px;
    margin-bottom: 40px;
    display: block !important;
    width: 100%;
    box-sizing: border-box;
}
.navlink .navlink__title{
    color: #636569;
    font-size: 15px;
}
.navlink:hover > .icon-in-circle{
    background: #768594;
}

.help-search .search__title {
    color: #0c3a5c;
    margin-bottom: 25px;
    font-size: 33px;
    font-weight: 500;
    margin-top: 50px;
}
.tabbed__tabs .tabbed__tabs_tab.is-visible{
    background: transparent;
    box-shadow: none;
}
.tabbed__head{
    border-bottom: 0px;
}

/* Search form styling - Make it visible and prominent */
.help-search form {
    display: block !important;
    margin: 0 !important;
    width: 100%;
}

.search__form {
    background-color: #0c3a5c;
    max-width: 100%;
    display: none;
    width: 100%;
}

.search__form .form-group {
    display: flex !important;
    align-items: center;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 5px;
    position: relative;
    width: 100%;
    min-height: 50px;
}

.search__form .form-control {
    flex: 1;
    border: none !important;
    padding: 12px 15px;
    font-size: 16px;
    outline: none;
    background: transparent;
    width: 100%;
}

.search__form .form-control::placeholder {
    color: #999;
}

.search__form .search__submit {
    background: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    color: #1a3a5c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search__form .search__submit svg {
    width: 20px;
    height: 20px;
    fill: #1a3a5c;
}

.search__form .search__submit:hover {
    opacity: 0.8;
}

/* Search button if present */
.search__form #search-button {
    background-color: #1a3a5c;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 10px;
    flex-shrink: 0;
}

.search__form #search-button:hover {
    background-color: #0f2a42;
}

/* Navigation cards container */
.nav {
    gap: 20px;
    margin-bottom: 40px;
}

/* Navigation card styling */
.navlink {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navlink:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}
.cust-help .header{
    background: #0c3a5c;
    padding: 5px;
}
/* Orange icon in circle */
.navlink .icon-in-circle {
    width: 60px;
    height: 60px;
    background-color: #ed6e00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.navlink .icon-in-circle svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.navlink__title {
    font-size: 20px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 8px;
    margin-top: 0;
}

.navlink__descr {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Knowledge Base section */
.article__heading a .icon-in-circle + span{
    color: #0c3a5c;
}
.article__heading a {
    display: table;
    margin: auto;
    align-items: center;
    gap: 12px;
    color: #1a3a5c;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.article__heading a:hover {
    text-decoration: none;
    color: #1a3a5c;
}

.article__heading .icon-in-circle {
    width: 50px;
    height: 50px;
    background-color: #ed6e00;
    border-radius: 8px;
}

.article__heading .icon-in-circle svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

/* Article preview styling */
.preview {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
}

.preview:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.preview .icon-in-circle {
    width: 50px;
    height: 50px;
    background-color: #ed6e00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.preview .icon-in-circle svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.preview__text {
    flex: 1;
}

.preview__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 10px;
    margin-top: 0;
}

.preview__text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0;
}

.preview__text .lightgrey {
    color: #999;
}

/* Rating section */
.rate {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

/* Article footer button */
.article__footer {
    text-align: center;
    margin-top: 30px;
}

.btn--blue-border {
    border: 2px solid #1a3a5c;
    color: #fff;
    background: #0c3a5c;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn--blue-border:hover {
    background-color: #1a3a5c;
    color: #ffffff;
    text-decoration: none;
}
.preview .preview__title{
    color: #0c3a5c;
}
/* Responsive design */
@media (max-width: 768px) {
    .nav {
        grid-template-columns: 1fr;
    }
    
    .search__title {
        font-size: 28px;
    }
    
    .help-search {
        padding: 30px 15px;
    }
}

/* Tabbed section styling */
.tabbed__head {
    margin-bottom: 20px;
}

.tabbed__head_tabs {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #e0e0e0;
}

.tabbed__head_tabs li {
    padding: 10px 20px;
    cursor: pointer;
    color: #666;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
}

.tabbed__head_tabs li.current {
    color: #1a3a5c;
    border-bottom-color: #1a3a5c;
    font-weight: 600;
}

/* Additional styling for better visual consistency */
.contr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Service messages and alerts */
.main__content > .contr > div:first-child {
    margin-bottom: 20px;
}

/* Category cards grid layout */
.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

/* Category card styling */
.category-card {
    display: block;
    padding: 25px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    border-color: #4285F4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
    transform: translateY(-2px);
}

.category-card:active {
    transform: translateY(0);
}

.category-card .icon-in-circle {
    display: flex;
}

.category-card .icon-in-circle svg {
    width: 20px;
    height: 20px;
}

.category-card > div {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-card h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    text-align: left;
}
.footer .text-center{
    font-size: 7px;
}
/* Responsive category cards */
@media (max-width: 768px) {
    .category-cards {
        grid-template-columns: 1fr;
    }
}

