/* Modern Inner Page Styles for KUFPEC */
.quick-view-pdf:hover{
    margin-left: 10px;
    transform: scale(1.1);
    color: #007bff !important;
    /* box-shadow: 0 10px 10px rgba(41, 98, 255, 0.1); */ 
}

.quick-view-pdf{
    transition: all 0.5s ease !important;
    margin-left: 0px;
    width: 100%;
    padding: 7px 25px;
    background: #f3f3f3;
    border: none;
    font-size: 1.4rem;
    font-weight: 200;
    cursor: pointer;
    display: flex;
    align-items: center; 
    gap: 10px;
}

.quick-view-pdf i{
    position: inherit !important;
    top: 1px !important;
}
    
/* Modern Hero Banner */
.inner-hero-banner {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.inner-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.inner-hero-content {
    /* text-align: center; */
    color: #fff;
    padding-top: 160px;
    width: 100%;
    margin-left: 50px;
}

.inner-hero-title {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'IBM Plex Sans', sans-serif;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUpHero 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.inner-hero-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUpHero 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    /* justify-content: center; */
}

.inner-hero-breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.inner-hero-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.4);
}

.inner-hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-hero-breadcrumb a:hover {
    color: #426fb6;
}

.inner-hero-breadcrumb .active {
    color: #47c9f5;
}

@keyframes fadeUpHero {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Page Layout */
.inner-page-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

/* Sticky Sidebar Menu */
.sidebar-nav-wrapper {
    position: sticky;
    top: 120px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sidebar-nav-title {
    font-size: 13px;
    margin-top: -5px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    font-family: 'IBM Plex Sans', sans-serif;
    position: relative;
    color: #2e3790;
}

.sidebar-nav-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #426fb6;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav li:last-child {
    margin-bottom: 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
    /* font-weight: 500; */
}

.sidebar-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #426fb6;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.sidebar-nav a:hover {
    color: #1a1a1a;
    background: #fcfcfc;
    padding-left: 25px;
}

.sidebar-nav a:hover::before {
    transform: scaleY(1);
}

.sidebar-nav li.active a {
    background: #f3f3f3;
    color: #2e3790;
    padding-left: 20px; 
    font-weight: 600;
    /* box-shadow: 0 8px 20px rgba(230, 179, 83, 0.25); */
}

.sidebar-nav li.active a::before {
    display: none;
}

/* Main Content Area */
.inner-content-wrapper {
    background: #fff;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.inner-content-title {
    font-size: 36px;
    color: #2e3790;
    margin-bottom: 30px;
    font-weight: 700 !important;
    font-family: 'IBM Plex Sans', sans-serif;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.inner-content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    bottom: -1px;
    background: #426fb6;
}

.inner-content-subtitle {
    font-size: 22px;
    color: #2e3790;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    position: relative;
    padding-bottom: 10px;
}


hr {
    width: 100%;
    height: 1px;
    background: #ebebeb;
    margin: 24px 0px;
}

.inner-content-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 14px;
    font-weight: 400;
}

.inner-content-text.highlight {
    font-size: 20px;
    color: #333;
    border-left: 4px solid #426fb6;
    padding-left: 20px;
    font-weight: 300;
    font-style: italic;
    background: #fdfbf7;
    padding: 20px;
}

.custom-list {
    padding: 0;
    margin: 0px 20px 20px 20px;
}

.custom-list li {
    position: relative;
    margin-bottom: 12px;
    font-size: 18px;
    color: #444;
    /* padding-left: 35px; */
    /* line-height: 1.6; */
    /* display: flex; */
    /* align-items: flex-start; */
}

.custom-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #426fb6;
    font-size: 20px;
}

.image-feature {
    margin: 40px 0px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
}

.image-feature img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-feature:hover img {
    transform: scale(1.05);
}

/* Animations */
.reveal-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .inner-content-wrapper {
        padding: 30px;
        margin-top: 40px;
    }

    .inner-hero-title {
        font-size: 36px;
    }

    .sidebar-nav-wrapper {
        position: relative;
        top: 0;
    }
}
/* Sidebar Dropdown Accordion */
.sidebar-has-dropdown > a i {
    transition: transform 0.3s ease;
    pointer-events: none;
}

.sidebar-has-dropdown .submenu {
    display: none; /* Handled by slideToggle */
    /* padding-left: 15px;
    margin-top: 10px;
    border-left: 2px solid #eee;
    margin-left: 10px; */
}

.sidebar-has-dropdown .submenu li {
    
    /* margin-bottom: -5px; */
    display: block;
}

.sidebar-has-dropdown .submenu li a {
    font-size: 14px;
    padding: 8px 20px;
    margin-left: 10px;
    color: #555;
    line-height: normal;
}

.sidebar-has-dropdown span {
    width: 100%;
    text-align: end;
}

.sidebar-has-dropdown .submenu li a:hover {
    color: #000000; 
    padding: 8px 25px;
}

.sidebar-has-dropdown  ul {
    
        margin: 0 !important;
}


.sidebar-has-dropdown  ul li.active a{
    
         color: #2e3790 !important;; 
    padding: 8px 25px !important;;
}

.procurement-contact{
    padding: 10px 40px; 
    align-content: flex-end;
}

.procurement-contact p{
    margin-bottom: 10px;
}

/* Contact Cards Styling */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.contact-card {
    background: #fff;
    /* border-radius: 12px; */
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* background: linear-gradient(90deg, #2e3790, #426fb6); */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card-title {
    font-size: 22px;
    color: #2e3790;
    font-weight: 700;
    margin: 10px 0px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.contact-card-subtitle {
    font-size: 16px;
    color: #2e3790;
    font-weight: 400;
    margin: -15px 20px -25px 40px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list li i {
    color: #2c378d;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 5px;
    min-width: 20px;
    text-align: center;
}

.contact-info-list li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-list li a:hover {
    color: #2e3790;
}