/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

/* Global Font Family */
body, h1, h2,h3,h4,h5,h6,p,span,a,button,input,textarea,select,option,label,div, table, tr, td, th {
    font-family: 'Roboto Condensed', sans-serif !important;
}

.sidebar-toggle {
    margin-right: 15px;
    color: #777;
    border: none;
    background: transparent;
    font-size: 18px;
}

.sidebar-toggle:hover {
    color: #333;
}

.sidebar.collapsed {
    transform: translateX(-100%);
    visibility: hidden;
}

.main-panel.expanded {
    margin-left: 0;
    width: 100%;
}

.sidebar {
    transition: transform 0.3s ease;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 260px;
    background: 
        linear-gradient(135deg, 
            rgba(15, 20, 25, 0.98) 0%, 
            rgba(20, 25, 30, 0.96) 25%, 
            rgba(25, 30, 35, 0.94) 50%, 
            rgba(20, 25, 30, 0.96) 75%, 
            rgba(15, 20, 25, 0.98) 100%),
        radial-gradient(circle at 20% 20%, rgba(240, 146, 31, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 146, 31, 0.05) 0%, transparent 50%);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.04),
        2px 0 40px rgba(0, 0, 0, 0.25),
        4px 0 60px rgba(0, 0, 0, 0.12),
        8px 0 80px rgba(0, 0, 0, 0.06),
        inset -1px 0 0 rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    animation: slideInLeft 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-panel {
    transition: margin-left 0.3s ease, width 0.3s ease;
    min-height: 100vh;
    margin-left: 260px;
    width: calc(100% - 260px);
    background: transparent;
    position: relative;
}

/* Modern Card Styling */
.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-header {
    background: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 24px;
    border-radius: 16px 16px 0 0;
}

.card-body {
    padding: 24px;
    background: rgba(255, 255, 255, 0.4);
}

.navbar-fixed-top {
    display: none; /* Hide the navbar completely */
    position: static; /* Remove fixed positioning */
}

/* News Detail Page Enhanced Styles */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Breadcrumb Navigation */
.breadcrumb-section {
    margin-bottom: 24px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.breadcrumb-item {
    color: #F0921F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #ED5D37;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-item.active {
    color: #333;
}

/* News Hero Section */
/* Modern News Detail Styles */
.news-content-section {
    margin-bottom: 40px;
}

.news-content {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.news-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ED5D37, #F0921F);
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-height: 9.6rem;
    flex: 1;
    padding: 15px;
    padding-top: 15px;
}

.news-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 30px auto;
    font-size: 14px;
    color: #666;
    max-width: 300px;
}

.news-meta i {
    margin-right: 8px;
    color: #ED5D37;
    font-size: 16px;
}

.news-date {
    display: flex;
    align-items: center;
    font-weight: 500;
    background: rgba(237, 93, 55, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(237, 93, 55, 0.2);
}

.news-image {
    margin: 24px auto;
    max-width: 70%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
}

.news-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.news-image:hover img {
    transform: scale(1.02);
}

.news-body {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-top: 24px;
}

.news-body p {
    margin-bottom: 18px;
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
}

.news-body strong {
    color: #2c3e50;
    font-weight: 600;
}

.news-body p:first-child {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 24px;
}

.share-label {
    font-weight: 600;
    color: #666;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.copy-link { background: #6c757d; border: none; cursor: pointer; }

.share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.share-btn:hover::before {
    width: 100%;
    height: 100%;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* News Content */
.news-content-section {
    margin-bottom: 50px;
}

.news-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.news-body h1, .news-body h2, .news-body h3, .news-body h4, .news-body h5, .news-body h6 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.news-body h3 {
    color: #ED5D37;
    border-bottom: 2px solid #ED5D37;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.news-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.news-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.news-body li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.news-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.news-attachments {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.news-attachments h4 {
    margin-bottom: 15px;
    color: #333;
}

.attachment-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ED5D37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.attachment-link:hover {
    color: #D44A2A;
}

/* Comments Section */
.comments-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.comments-title {
    margin-bottom: 30px;
    color: #333;
}

.add-comment-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-color: #ED5D37;
    box-shadow: 0 0 0 0.2rem rgba(237, 93, 55, 0.25);
    outline: none;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ED5D37, #D44A2A);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #D44A2A, #B83A1F);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 93, 55, 0.3);
}

.comments-list {
    /* Space between comments handled by margin-bottom on .comment-item */
}

.comment-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.comment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-date {
    font-size: 12px;
    color: #666;
}

.comment-content {
    color: #444;
    line-height: 1.6;
}

.no-comments {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 0;
}

/* Sidebar */
.news-sidebar {
    padding-left: 30px;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #ED5D37;
}

.related-article-item, .recent-article-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-article-item:hover, .recent-article-item:hover {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    margin: -10px;
}

.related-article-item:last-child, .recent-article-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-article-image, .recent-article-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
}

.related-article-image img, .recent-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-article-content, .recent-article-content {
    flex: 1;
}

.related-article-content h5, .recent-article-content h6 {
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-article-content a, .recent-article-content a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-article-content a:hover, .recent-article-content a:hover {
    color: #ED5D37;
}

.related-article-meta, .recent-article-meta {
    font-size: 12px;
    color: #666;
    display: flex;
    gap: 15px;
}

/* Loading Animation */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    display: none;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ED5D37;
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 93, 55, 0.3);
}

.scroll-to-top:hover {
    background: #D44A2A;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        margin: 10px;
        padding: 15px;
    }

    .news-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .news-meta {
        margin: 16px auto 24px auto;
        max-width: 280px;
    }
    
    .news-date {
        padding: 6px 12px;
        font-size: 13px;
    }

    .news-content {
        padding: 20px;
    }

    .news-image {
        margin: 16px 0;
    }

    .news-body {
        font-size: 15px;
        line-height: 1.6;
        margin-top: 16px;
    }

    .news-body p {
        margin-bottom: 16px;
    }

    .news-body p:first-child {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .news-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }

    .related-article-item, .recent-article-item {
        flex-direction: column;
    }

    .related-article-image, .recent-article-image {
        width: 100%;
        height: 120px;
    }

    .news-share-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .share-btn {
        width: 35px;
        height: 35px;
    }
}

/* Mobile navbar positioning - consolidated and fixed */
@media (max-width: 768px) {
    .navbar-fixed-top {
        display: none !important; /* Hide navbar on mobile as well */
        position: static !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
        z-index: auto !important;
        top: auto !important;
        height: auto !important;
    }
    
    /* Mobile navbar collapse functionality */
    .navbar-collapse {
        background: white;
        border-top: 1px solid #e7e7e7;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .navbar-collapse.collapse {
        display: none !important;
    }
    
    .navbar-collapse.collapse.in {
        display: block !important;
    }
    
    /* Mobile navbar toggle button */
    .navbar-toggle {
        display: block !important;
        margin: 12px 15px;
        padding: 8px 12px;
        background: rgba(255, 122, 24, 0.1);
        border: 1px solid rgba(255, 122, 24, 0.2);
        border-radius: 6px;
    }
    
    .navbar-toggle:hover,
    .navbar-toggle:focus {
        background: rgba(255, 122, 24, 0.2);
        border-color: rgba(255, 122, 24, 0.3);
    }
    
    .navbar-toggle .icon-bar {
        background: #ED5D37;
        height: 2px;
    }
    
    /* Mobile navbar links */
    .navbar-nav {
        margin: 0;
        width: 100%;
    }
    
    .navbar-nav > li {
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navbar-nav > li:last-child {
        border-bottom: none;
    }
    
    .navbar-nav > li > a {
        padding: 15px 20px;
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .navbar-nav > li > a p {
        margin: 0;
        font-size: 14px;
        font-weight: 500;
    }
    
    /* Mobile dropdown menus */
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: #f8f9fa;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }
    
    .navbar-nav .dropdown-menu > li > a {
        padding: 12px 40px;
        color: #666;
        border-bottom: 1px solid #e9ecef;
    }
    
    .navbar-nav .dropdown-menu > li:last-child > a {
        border-bottom: none;
    }
    
    .navbar-nav .dropdown-menu > li > a:hover {
        background-color: rgba(255, 122, 24, 0.1);
        color: #ED5D37;
    }
    
    /* Mobile contact links */
    .navbar-nav .contact-link,
    .navbar-nav .flag-link {
        padding: 15px 20px !important;
        display: flex !important;
        align-items: center !important;
        font-size: 14px !important;
    }
    
    .navbar-nav .contact-link i,
    .navbar-nav .flag-link i {
        margin-right: 10px !important;
        font-size: 16px !important;
    }
    
    /* Mobile navbar brand */
    .navbar-brand {
        display: block !important;
        padding: 15px 20px;
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }
}



/* Modern Content Styling */
.main-panel > .content {
    padding: 32px 24px !important;
    margin-top: 0;
    background: transparent;
    min-height: calc(100vh - 64px);
}

/* Modern Section Styling */
.section {
    margin-bottom: 48px;
    padding: 32px 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 24px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #feb900 0%, #ff6b35 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Modern Button Styling */
.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #feb900 0%, #ff6b35 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(254, 185, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(254, 185, 0, 0.6);
    background: linear-gradient(135deg, #ffc732 0%, #ff7a4d 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #1e293b;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Modern Form Styling */
.form-control {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #feb900;
    box-shadow: 0 0 0 3px rgba(254, 185, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

/* Modern Container Styling */
.container-fluid {
    padding: 0 24px;
}

.row {
    margin: 0 -12px;
}

.col-md-12, .col-md-8, .col-md-4, .col-md-6, .col-lg-12, .col-lg-8, .col-lg-4, .col-lg-6 {
    padding: 0 12px;
    margin-bottom: 24px;
}

/* Modern Table Styling */
.table {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.table thead th {
    background: rgba(255, 255, 255, 0.6);
    border: none;
    padding: 16px;
    font-weight: 600;
    color: #1e293b;
}

.table tbody td {
    padding: 16px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.table tbody tr:hover {
    background: rgba(254, 185, 0, 0.05);
    transform: none;
    box-shadow: none;
}

/* Modern Navigation Tabs */
.nav-tabs {
    border: none;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 4px;
    backdrop-filter: blur(10px);
}

.nav-tabs > li > a {
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    color: #64748b;
    transition: all 0.3s ease;
    margin: 0 2px;
}

.nav-tabs > li > a:hover {
    background: rgba(254, 185, 0, 0.1);
    color: #1e293b;
    transform: none;
    box-shadow: none;
}

.nav-tabs > li.active > a {
    background: linear-gradient(135deg, #feb900 0%, #ff6b35 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(254, 185, 0, 0.4);
}

/* Modern Alert Styling */
.alert {
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    border-left: 4px solid;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
    border-left-color: #22c55e;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    border-left-color: #3b82f6;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    border-left-color: #f59e0b;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border-left-color: #ef4444;
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.4s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Clean Modern Footer - Brand Colors */
.clean-footer {
    background: 
        linear-gradient(135deg, 
            rgba(15, 20, 25, 0.98) 0%, 
            rgba(20, 25, 30, 0.96) 25%, 
            rgba(25, 30, 35, 0.94) 50%, 
            rgba(20, 25, 30, 0.96) 75%, 
            rgba(15, 20, 25, 0.98) 100%),
        radial-gradient(circle at 20% 20%, rgba(240, 146, 31, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 146, 31, 0.05) 0%, transparent 50%);
    color: white;
    position: relative;
    margin-top: 60px;
    border-top: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-main {
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.updatedpj-footer-section {
    display: flex;
    flex-direction: column;
}

.company-section {
    gap: 20px;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.updatedpj-footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
    border-radius: 50%;
    background: 
        linear-gradient(135deg, 
            rgba(240, 146, 31, 0.9) 0%, 
            rgba(240, 146, 31, 0.7) 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    padding: 8px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 4px 15px rgba(240, 146, 31, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(240, 146, 31, 0.3);
}

.updatedpj-footer-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        0 6px 20px rgba(240, 146, 31, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.company-text {
    font-weight: 900;
    font-size: 22px;
    color: white;
    letter-spacing: 1.5px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

.company-subtitle {
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Roboto Condensed', sans-serif;
}

.company-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
    line-height: 1.3;
}

.company-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-family: 'Roboto Condensed', sans-serif;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Roboto Condensed', sans-serif;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
}

/* Old footer link styles removed - using modern design below */

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
}

.contact-icon {
    color: rgba(240, 146, 31, 1);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    text-shadow: 0 2px 4px rgba(240, 146, 31, 0.4);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.contact-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-family: 'Roboto Condensed', sans-serif;
}

.updatedpj-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    /* background: #FFA534; */
    margin-top: 20px;
}

.updatedpj-footer-bottom-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.updatedpj-footer-copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
    font-weight: 400;
}

/* Overview Layout with Facebook Page */
.overview-layout {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0;
    width: 100%;
    padding: 20px 0;
}

.overview-image {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fusion-facebook-page {
    width: 100%;
    max-width: 500px;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #e1e8ed;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fusion-facebook-page:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.fusion-facebook-page iframe {
    width: 100% !important;
    height: 600px !important;
    border: none;
    border-radius: 8px;
}

.fb-page {
    display: block;
    width: 100%;
}

.fb_iframe_widget {
    display: block;
    width: 100%;
}

.company-description-text {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #feb900;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-description-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px 0;
    font-weight: 400;
    text-align: justify;
    letter-spacing: 0.3px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-description-text p:last-child {
    margin-bottom: 0;
}

/* Sub Systems Slider Styling */
.sub-systems-section {
    margin: 60px 0;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.6) 0%, 
        rgba(241, 245, 249, 0.4) 50%, 
        rgba(248, 250, 252, 0.6) 100%);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sub-systems-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    padding: 20px 20px;
}

.sub-systems-section .section-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.sub-systems-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #feb900, #ff6b35);
    border-radius: 1px;
    box-shadow: 0 1px 4px rgba(254, 185, 0, 0.2);
}

.sub-systems-slider-container {
    position: relative;
    max-width: 1200px; /* Limit container width */
    margin: 0 auto;
    overflow: hidden;
    padding: 0 50px;
    width: 100%;
}

/* Sub Systems Slider Wrapper for proper overflow handling */
.sub-systems-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.sub-systems-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 0;
    width: max-content;
    align-items: stretch;
}

.sub-system-card {
    flex: 0 0 auto;
    width: 350px;
    min-width: 300px;
    max-width: 350px;
    height: 220px;
    border-radius: 16px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
}

.sub-system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sub-system-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sub-system-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sub-system-card:hover::before {
    opacity: 0.8;
}

.sub-system-card:hover::after {
    opacity: 1;
}

.sub-system-card .card-content {
    padding: 35px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sub-system-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sub-system-card:hover .card-icon {
    transform: scale(1.08) rotate(3deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.sub-system-card .card-icon i {
    font-size: 24px;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sub-system-card:hover .card-icon i {
    transform: scale(1.05);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.sub-system-card .card-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.1px;
    padding: 0 5px;
}

.sub-system-card:hover .card-title {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #feb900 0%, #ff6b35 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 15px rgba(254, 185, 0, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    opacity: 0.85;
}

.slider-nav:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #feb900 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(254, 185, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.slider-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.slider-nav.prev-btn {
    left: 3px;
}

.slider-nav.next-btn {
    right: 3px;
    z-index: 15;
}

.slider-nav.next-btn:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #feb900 100%);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 
        0 12px 35px rgba(254, 185, 0, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.slider-nav i {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.slider-nav:hover i {
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Slide Indicators */
.slide-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px 0;
}

.slide-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(254, 185, 0, 0.3);
    border: 2px solid rgba(254, 185, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.slide-indicator:hover {
    background: rgba(254, 185, 0, 0.5);
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(254, 185, 0, 0.3);
}

.slide-indicator.active {
    background: linear-gradient(135deg, #feb900, #ff6b35);
    border-color: #feb900;
    transform: scale(1.25);
    box-shadow: 0 4px 12px rgba(254, 185, 0, 0.4);
}

.slide-indicator.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Company Overview Image Styling */
.company-overview-image {
    width: 100%;
    height: 600px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    object-position: center;
    border: 3px solid rgba(254, 185, 0, 0.2);
}

.company-overview-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.company-description-section {
    margin-top: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.company-description-section .company-description-text {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 16px;
    border-left: 5px solid #feb900;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.company-description-section .company-description-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.company-description-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
    
    .footer-container {
        padding: 0 25px;
    }
    
    .footer-main {
        padding: 50px 0 35px;
    }
}

@media (max-width: 768px) {
    .overview-layout {
        justify-content: center;
        margin-left: 0;
    }
    
    .fusion-facebook-page {
        max-width: 100%;
        margin: 0;
    }
    
    .fusion-facebook-page iframe {
        height: 500px !important;
    }
    
    .company-description-text {
        padding: 25px;
    }
    
    .company-description-text p {
        font-size: 15px;
        margin: 0 0 15px 0;
    }
    
    .company-overview-image {
        height: 400px;
        max-height: 400px;
    }
    
    .company-description-section .company-description-text {
        height: auto;
        min-height: 350px;
        padding: 25px;
    }
    
    /* Sub Systems Slider Responsive */
    .sub-systems-section {
        margin: 50px 0;
        padding: 40px 30px;
    }
    
    .sub-systems-section .section-title {
        font-size: 17px;
    }
    
    .sub-systems-section .section-header {
        margin-bottom: 40px;
    }
    
    .sub-systems-slider-container {
        padding: 0 30px;
    }
    
    .sub-systems-slider-wrapper {
        overflow: hidden;
    }
    
    .sub-systems-slider {
        gap: 20px;
        padding: 25px 0;
    }
    
    .sub-system-card {
        flex: 0 0 auto;
        width: 300px;
        min-width: 250px;
        max-width: 300px;
        height: 200px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .slider-nav.prev-btn {
        left: 10px;
    }
    
    .slider-nav.next-btn {
        right: 10px;
    }
    
    .sub-system-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 280px;
        max-width: 320px;
        height: 240px;
    }
    
    .sub-system-card .card-content {
        padding: 40px 30px;
    }
    
    .sub-system-card .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .sub-system-card .card-icon i {
        font-size: 20px;
    }
    
    .sub-system-card .card-title {
        font-size: 14px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 18px;
        border-width: 2px;
    }
    
    .slider-nav.prev-btn {
        left: -30px;
    }
    
    .slider-nav.next-btn {
        right: -30px;
        z-index: 15;
    }
    
    .company-description-section {
        margin-top: 20px;
    }
    
    .company-description-section .company-description-text {
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-main {
        padding: 35px 0 20px;
    }
    
    .company-section {
        text-align: center;
        order: 1;
    }
    
    .links-section {
        order: 2;
    }
    
    .contact-section {
        order: 3;
    }
    
    .company-logo {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .footer-wrapper {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .updatedpj-footer-links {
        gap: 6px;
    }
    
    .updatedpj-footer-link {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .contact-item {
        gap: 10px;
        padding: 5px 0;
    }
    
    .contact-text {
        font-size: 13px;
    }
    
    .contact-icon {
        width: 14px;
        font-size: 12px;
    }
    
    .updatedpj-footer-bottom {
        padding: 20px 0;
        margin-top: 15px;
    }
    
    .updatedpj-footer-bottom-content {
        padding: 0 15px;
    }
    
    .updatedpj-footer-copyright-text {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .overview-layout {
        justify-content: center;
    }
    
    .fusion-facebook-page iframe {
        height: 400px !important;
    }
    
    .company-description-text {
        padding: 20px;
    }
    
    .company-description-text p {
        font-size: 14px;
        line-height: 1.6;
        margin: 0 0 12px 0;
    }
    
    .company-overview-image {
        height: 350px;
        max-height: 350px;
    }
    
    .company-description-section .company-description-text {
        height: auto;
        min-height: 300px;
        padding: 20px;
    }
    
    .company-description-section {
        margin-top: 15px;
    }
    
    /* Sub Systems Slider Mobile Responsive */
    .sub-systems-section {
        margin: 30px 0;
        padding: 20px 15px;
    }
    
    .sub-systems-section .section-title {
        font-size: 16px;
    }
    
    .sub-systems-section .section-header {
        margin-bottom: 25px;
    }
    
    .sub-systems-slider-container {
        padding: 0 15px;
    }
    
    .sub-systems-slider-wrapper {
        overflow: hidden;
    }
    
    .sub-systems-slider {
        gap: 10px;
        padding: 15px 0;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    .sub-system-card {
        flex: 0 0 auto;
        width: 280px;
        min-width: 250px;
        max-width: 300px;
        height: 180px;
    }
    
    /* Adjust indicators for mobile with many slides */
    .slide-indicators {
        gap: 8px;
        margin-top: 25px;
    }
    
    .slide-indicator {
        width: 8px;
        height: 8px;
    }
    
    .sub-system-card .card-content {
        padding: 20px 15px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .sub-system-card .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .sub-system-card .card-icon i {
        font-size: 20px;
    }
    
    .sub-system-card .card-title {
        font-size: 14px;
        line-height: 1.3;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        padding: 0 5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
        border-width: 2px;
    }
    
    .slider-nav.prev-btn {
        left: 5px;
    }
    
    .slider-nav.next-btn {
        right: 5px;
    }
    
    /* Extra small screens (320px and below) */
    @media (max-width: 360px) {
        .sub-systems-slider-container {
            padding: 0 15px;
        }
        
        .sub-system-card {
            flex: 0 0 calc(100% - 10px);
            min-width: 260px;
            height: 180px;
        }
        
        .sub-system-card .card-content {
            padding: 15px 10px;
        }
        
        .sub-system-card .card-icon {
            width: 45px;
            height: 45px;
            margin-bottom: 12px;
        }
        
        .sub-system-card .card-icon i {
            font-size: 18px;
        }
        
        .sub-system-card .card-title {
            font-size: 13px;
            line-height: 1.2;
        }
        
        .slider-nav {
            width: 35px;
            height: 35px;
            font-size: 12px;
        }
        
        .slider-nav.prev-btn {
            left: 2px;
        }
        
        .slider-nav.next-btn {
            right: 2px;
        }
    }
    
    .company-description-section .company-description-text {
        padding: 15px;
    }
    
    .footer-main {
        padding: 30px 0 15px;
    }
    
    .footer-wrapper {
        padding: 0 15px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 10px;
    }
    
    .company-text {
        font-size: 15px;
    }
    
    .company-subtitle {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .updatedpj-footer-link {
        font-size: 12px;
        padding: 5px 0;
    }
    
    .contact-text {
        font-size: 12px;
    }
    
    .updatedpj-footer-bottom {
        padding: 15px 0;
        margin-top: 10px;
    }
    
    .updatedpj-footer-bottom-content {
        padding: 0 10px;
    }
    
    .updatedpj-footer-copyright-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 0 15px;
    }
    
    .footer-wrapper {
        padding: 0 12px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .company-text {
        font-size: 15px;
    }
    
    .company-subtitle {
        font-size: 10px;
    }
    
    .section-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .updatedpj-footer-link {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .contact-text {
        font-size: 11px;
    }
    
    .updatedpj-footer-copyright-text {
        font-size: 11px;
    }
    
    .updatedpj-footer-bottom {
        padding: 15px 0;
    }
}

@media (max-width: 360px) {
    .footer-wrapper {
        padding: 0 10px;
    }
    
    .footer-main {
        padding: 25px 0 12px;
    }
    
    .footer-grid {
        gap: 20px;
    }
    
    .company-text {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 13px;
    }
    
    .updatedpj-footer-link {
        font-size: 10px;
        padding: 5px 8px;
    }
    
    .contact-text {
        font-size: 10px;
    }
    
    .updatedpj-footer-bottom {
        padding: 12px 0;
        margin-top: 8px;
    }
    
    .updatedpj-footer-bottom-content {
        padding: 0 8px;
    }
    
    .updatedpj-footer-copyright-text {
        font-size: 10px;
    }
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(254, 185, 0, 0.6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(254, 185, 0, 0.8);
}

/* Modern Mobile Responsiveness */
@media (max-width: 768px) {
    .main-panel > .content {
        padding: 20px 16px !important;
    }
    
    .container-fluid {
        padding: 0 16px;
    }
    
    .card {
        border-radius: 12px;
        margin-bottom: 16px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .table {
        font-size: 14px;
    }
    
    .table thead th,
    .table tbody td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .main-panel > .content {
        padding: 16px 12px !important;
    }
    
    .container-fluid {
        padding: 0 12px;
    }
    
    .card-body {
        padding: 16px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Don't add extra padding to nested content divs */
.card .content {
    padding-top: 0 !important;
}

/* Modern Minimalistic Background Styles */
body {
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 48, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%, #f8fafc 100%);
    background-attachment: fixed;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    font-family: 'Roboto Condensed', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 119, 48, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(120, 119, 198, 0.05) 0%, transparent 25%);
    pointer-events: none;
    z-index: -1;
}

.wrapper {
    min-height: 100vh;
    overflow-x: hidden;
    background: transparent;
}

.sidebar-wrapper {
    position: relative;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    width: 260px;
    padding-bottom: 20px;
    background: transparent;
    z-index: 2;
}

/* Enhanced Mobile Responsive Fixes - Consolidated */
@media (max-width: 768px) {
    /* Main panel adjustments */
    .main-panel {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .content {
        padding-top: 20px !important; /* Reduced padding since navbar is hidden */
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Container and row adjustments */
    .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .row {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
    
    .col-md-12,
    .col-md-8,
    .col-md-4,
    .col-sm-6,
    .col-sm-12 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    /* Card responsive adjustments */
    .card {
        margin-bottom: 15px !important;
        border-radius: 8px !important;
    }
    
    .card .header {
        padding: 15px 20px !important;
        border-radius: 8px 8px 0 0 !important;
    }
    
    .card .content {
        padding: 15px 20px !important;
    }
    
    /* Hero section mobile adjustments */
    .hero-video-section {
        height: 50vh !important;
        min-height: 300px !important;
        margin-bottom: 20px !important;
        border-radius: 10px !important;
    }
    
    .hero-overlay {
        padding: 20px 15px !important;
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .hero-title {
        font-size: 24px !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
    
    .hero-button {
        padding: 12px 25px !important;
        font-size: 12px !important;
        border-radius: 25px !important;
    }
    
    .hero-stats {
        position: static !important;
        margin-top: 20px !important;
        text-align: center !important;
    }
    
    .stat-number {
        font-size: 36px !important;
    }
    
    .stat-circle {
        width: 70px !important;
        height: 70px !important;
        margin: 0 auto 10px !important;
    }
    
    .stat-value {
        font-size: 16px !important;
    }
    
    .stat-label {
        font-size: 9px !important;
    }
    
    .stat-description {
        text-align: center !important;
        font-size: 11px !important;
        max-width: 100% !important;
        line-height: 1.4 !important;
    }
    
    /* Modern Mobile Sidebar - Orange, rounded, centered positioning */
    .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        transform: translateX(-100%) !important;
        width: 280px !important;
        max-width: 75vw !important;
        height: 100vh !important;
        z-index: 1050 !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        background: linear-gradient(135deg, #F0921F 0%, #D4841F 50%, #C67A1A 100%) !important;
        backdrop-filter: blur(25px) saturate(1.1);
        -webkit-backdrop-filter: blur(25px) saturate(1.1);
        border-radius: 0 20px 20px 0 !important;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 
            0 0 0 1px rgba(255, 255, 255, 0.05),
            0 0 50px rgba(0, 0, 0, 0.5),
            0 0 100px rgba(0, 0, 0, 0.3),
            inset -1px 0 0 rgba(255, 255, 255, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
    }
    
    .sidebar:not(.collapsed) {
        transform: translateX(-100%) !important;
    }
    
    .sidebar.collapsed {
        transform: translateX(-100%) !important;
    }
    
    .sidebar.visible {
        transform: translateX(-100%) !important;
        visibility: visible !important;
    }
    
    .sidebar-wrapper {
        height: 100vh;
        width: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    }
    
    .sidebar-wrapper::-webkit-scrollbar {
        width: 4px;
    }
    
    .sidebar-wrapper::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .sidebar-wrapper::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
    
    .sidebar-wrapper::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    
    /* Modern Floating Sidebar Toggle */
    .sidebar-toggle {
        position: fixed !important;
        top: 20px !important;
        left: 20px !important;
        z-index: 1060 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #B8721A 0%, #D4841F 100%) !important;
        border: none !important;
        color: white !important;
        font-size: 18px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        cursor: pointer !important;
        margin: 0 !important;
        padding: 0 !important;
        touch-action: manipulation !important;
    }
    
    .sidebar-toggle:hover {
        background: linear-gradient(135deg, #D4841F 0%, #F0921F 100%) !important;
        transform: scale(1.1) !important;
        box-shadow: 0 6px 25px rgba(240, 146, 31, 0.4) !important;
    }
    
    .sidebar-toggle:active {
        transform: scale(0.95) !important;
    }
    
    /* Modern Sidebar Overlay */
    .sidebar-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.6) !important;
        z-index: 1045 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        touch-action: none !important;
    }
    
    .sidebar-overlay.visible {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Prevent body scroll when sidebar is open */
    body.sidebar-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Enhanced Mobile Sidebar Content */
    .branded-sidebar .sidebar-wrapper {
        padding-bottom: 0;
    }
    
    .branded-sidebar .logo-section {
        padding: 20px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0;
    }
    
    .branded-sidebar .brand-logo {
        width: 44px;
        height: 44px;
    }
    
    .branded-sidebar .company-name {
        font-size: 16px;
        line-height: 1.2;
    }
    
    .branded-sidebar .company-subtitle {
        font-size: 12px;
    }
    
    .branded-sidebar .branded-nav {
        padding: 20px 16px 0 16px;
        flex: 1;
    }
    
    .branded-sidebar .nav-link {
        padding: 16px 20px;
        margin-bottom: 8px;
        border-radius: 12px;
        min-height: 56px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .branded-sidebar .nav-link:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .branded-sidebar .nav-icon {
        width: 24px;
        height: 24px;
        font-size: 20px;
        margin-right: 16px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .branded-sidebar .nav-text {
        font-size: 16px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
        min-width: 0;
        margin-right: 30px; /* Add right margin to prevent overlap with dropdown arrow */
    }
    
    .branded-sidebar .sidebar-footer {
        position: relative;
        width: 100%;
        margin-top: auto;
        padding: 20px 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Additional mobile optimizations */
    .wrapper {
        overflow-x: hidden;
    }
    
    /* Ensure proper touch targets */
    .carousel-nav,
    .slider-nav {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Enhanced touch targets for sidebar navigation */
    .branded-sidebar .nav-link {
        min-height: 48px;
        min-width: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Improved mobile dropdown touch targets */
    .branded-sidebar .sidebar-dropdown .dropdown-item {
        min-height: 44px;
        padding: 14px 20px 14px 60px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Better spacing for very small screens */
    .branded-sidebar .branded-nav {
        gap: 4px;
    }
    
    /* Ensure sidebar overlay works properly on mobile */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1030;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }
    
    .sidebar-overlay.visible {
        opacity: 1;
        visibility: visible;
    }
    
    /* Enhanced mobile sidebar behavior - Orange, rounded, left positioning */
    .branded-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        transform: translateX(-100%) !important;
        width: 280px !important;
        max-width: 75vw !important;
        height: 100vh !important;
        z-index: 1050 !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border-radius: 0 20px 20px 0 !important;
        background: linear-gradient(135deg, #F0921F 0%, #D4841F 50%, #C67A1A 100%) !important;
    }
    
    .branded-sidebar.show {
        transform: translateX(-100%) !important;
    }
    
    /* Mobile sidebar improvements for better UX */
    .branded-sidebar {
        box-shadow: 
            0 0 0 1px rgba(255, 255, 255, 0.1),
            0 0 30px rgba(0, 0, 0, 0.3),
            0 0 60px rgba(0, 0, 0, 0.2),
            inset -1px 0 0 rgba(255, 255, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    }
    
    /* Better mobile sidebar content spacing */
    .branded-sidebar .sidebar-wrapper {
        padding: 0 !important;
        height: 100vh !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Improved mobile sidebar toggle positioning */
    .sidebar-toggle {
        position: fixed !important;
        top: 20px !important;
        left: 20px !important;
        z-index: 1060 !important;
        background: linear-gradient(135deg, #F0921F 0%, #D4841F 100%) !important;
        border: none !important;
        border-radius: 50% !important;
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: white !important;
        font-size: 18px !important;
        box-shadow: 0 4px 20px rgba(240, 146, 31, 0.4) !important;
        transition: all 0.3s ease !important;
    }
    
    .sidebar-toggle:hover {
        transform: scale(1.1) !important;
        box-shadow: 0 6px 25px rgba(240, 146, 31, 0.6) !important;
    }
    
    /* Additional mobile improvements for very small screens */
    @media (max-width: 480px) {
        .sidebar,
        .branded-sidebar {
            width: 260px !important;
            max-width: 70vw !important;
        }
        
        .sidebar-toggle {
            width: 45px !important;
            height: 45px !important;
            font-size: 16px !important;
        }
        
        .branded-sidebar .logo-section {
            padding: 16px 14px !important;
        }
        
        .branded-sidebar .branded-nav {
            padding: 16px 14px 0 14px !important;
        }
        
        .branded-sidebar .nav-link {
            padding: 14px 16px !important;
            min-height: 50px !important;
            border-radius: 10px !important;
        }
        
        .branded-sidebar .sidebar-footer {
            padding: 16px 14px !important;
        }
    }
    
    /* Improved mobile sidebar animations */
    .branded-sidebar .nav-link {
        transition: all 0.2s ease;
    }
    
    .branded-sidebar .nav-link:active {
        transform: scale(0.98);
        background-color: rgba(255, 255, 255, 0.15);
    }
    
    /* Improve text readability on mobile */
    .news-title,
    .project-overlay h3,
    .stat-label {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Better mobile scrolling */
    .news-carousel,
    .projects-carousel,
    .partners-slider {
        -webkit-overflow-scrolling: touch;
    }
    
    
    /* Enhanced mobile scrolling for news carousel */
    .news-carousel {
        max-height: 350px; /* Slightly smaller on mobile */
        padding: 15px 0;
    }
    
    .news-carousel-container {
        padding: 0 20px; /* Reduce padding on mobile */
    }
    
    /* Mobile responsiveness for video section */
    .instructions-content {
        padding: 15px 0;
    }
    
    /* Mobile video slider adjustments */
    .video-slider-container {
        padding: 0 10px; /* Reduce padding on mobile */
        margin: 0 -5px; /* Compensate for reduced padding */
    }
    
    .video-slider {
        gap: 10px; /* Reduce gap on mobile */
        padding: 5px 0; /* Reduce vertical padding */
    }
    
    .video-slide {
        flex: 0 0 100% !important; /* Full width on mobile */
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .video-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .video-slider-nav.prev-video-btn {
        left: 2px;
    }
    
    .video-slider-nav.next-video-btn {
        right: 2px;
    }
    
    /* Video container mobile improvements */
    .video-container {
        border-radius: 12px;
        overflow: hidden;
    }
    
    .video-wrapper iframe {
        height: 200px !important; /* Fixed height for mobile */
        border-radius: 12px;
    }
    
    /* Video instruction block mobile styling */
    .instruction-block.video-instruction {
        padding: 10px;
        margin: 0;
    }
    
    /* No video placeholder mobile styling */
    .no-video-placeholder {
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border-radius: 12px;
        color: #6c757d;
        font-size: 14px;
        text-align: center;
        padding: 20px;
    }
    
    /* Enhanced mobile video slider touch support */
    .video-slider {
        touch-action: pan-x; /* Allow horizontal panning */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    /* Mobile video slider navigation improvements */
    .video-slider-nav {
        touch-action: manipulation; /* Prevent double-tap zoom */
        -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
    }
    
    /* Video section title mobile styling */
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    /* Video section container mobile padding */
    .instructions-content {
        padding: 10px 0;
    }
    
    /* Swipe gesture support */
    .sidebar {
        touch-action: pan-y;
    }
    
    /* Improved focus states for accessibility */
    .sidebar-toggle:focus,
    .branded-sidebar .nav-link:focus {
        outline: 2px solid rgba(255, 255, 255, 0.5);
        outline-offset: 2px;
    }
    
    /* Performance optimizations */
    .sidebar,
    .sidebar-overlay,
    .sidebar-toggle {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .sidebar,
        .sidebar-overlay,
        .sidebar-toggle,
        .branded-sidebar .nav-link {
            transition: none !important;
            animation: none !important;
        }
    }
}

/* Tablet responsive fixes */
@media (min-width: 769px) and (max-width: 1024px) {
    .sidebar,
    .branded-sidebar {
        width: 260px;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        z-index: 1000;
    }
    
    .main-panel {
        margin-left: 260px;
        width: calc(100% - 260px);
    }
    
    .navbar-fixed-top {
        display: none; /* Hide navbar */
        left: auto;
    }
    
    .sidebar.collapsed,
    .branded-sidebar.collapsed {
        transform: translateX(-100%);
    }
    
    .sidebar:not(.collapsed),
    .branded-sidebar:not(.collapsed) {
        transform: translateX(0);
    }
    
    .sidebar.visible,
    .branded-sidebar.visible {
        transform: translateX(-100%) !important;
        visibility: visible !important;
    }
    
    /* Tablet sidebar toggle */
    .sidebar-toggle-tablet {
        position: fixed !important;
        top: 20px !important;
        left: 20px !important;
        z-index: 1060 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 45px !important;
        height: 45px !important;
        background: linear-gradient(135deg, #ED5D37 0%, #F06B45 100%) !important;
        border: none !important;
        border-radius: 50% !important;
        color: white !important;
        font-size: 16px !important;
        cursor: pointer !important;
        box-shadow: 0 3px 15px rgba(255, 122, 24, 0.3) !important;
        transition: all 0.3s ease !important;
    }
    
    .sidebar-toggle-tablet:hover {
        background: linear-gradient(135deg, #D44A2A 0%, #ED5D37 100%) !important;
        transform: scale(1.05) !important;
        box-shadow: 0 4px 20px rgba(255, 122, 24, 0.4) !important;
    }
    
    /* Hide toggle when sidebar is visible on tablet */
    .sidebar-visible .sidebar-toggle-tablet {
        display: none !important;
    }
    
    /* Tablet overlay */
    .sidebar-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.4) !important;
        z-index: 990 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    .sidebar-overlay.visible {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Enhanced tablet sidebar styling */
    .branded-sidebar .logo-section {
        padding: 18px 16px;
    }
    
    .branded-sidebar .brand-logo {
        width: 42px;
        height: 42px;
    }
    
    .branded-sidebar .company-name {
        font-size: 15px;
    }
    
    .branded-sidebar .company-subtitle {
        font-size: 11px;
    }
    
    .branded-sidebar .branded-nav {
        padding: 18px 16px 0 16px;
    }
    
    .branded-sidebar .nav-link {
        padding: 15px 18px;
        margin-bottom: 7px;
        min-height: 54px;
        border-radius: 11px;
    }
    
    .branded-sidebar .nav-text {
        font-size: 15px;
    }
    
    .branded-sidebar .nav-icon {
        width: 23px;
        height: 23px;
        font-size: 19px;
        margin-right: 15px;
    }
    
    .branded-sidebar .sidebar-footer {
        padding: 18px 16px;
    }
    
    /* Tablet dropdown arrow adjustments */
    .branded-sidebar .nav-item.dropdown .dropdown-arrow {
        right: 16px;
        font-size: 10px;
    }
}

/* Medium tablet responsive fixes */
@media (min-width: 1025px) and (max-width: 1200px) {
    .sidebar,
    .branded-sidebar {
        width: 260px;
    }
    
    .main-panel {
        margin-left: 260px;
        width: calc(100% - 260px);
    }
    
    /* Medium tablet sidebar styling */
    .branded-sidebar .logo-section {
        padding: 20px 18px;
    }
    
    .branded-sidebar .brand-logo {
        width: 44px;
        height: 44px;
    }
    
    .branded-sidebar .company-name {
        font-size: 16px;
    }
    
    .branded-sidebar .company-subtitle {
        font-size: 12px;
    }
    
    .branded-sidebar .branded-nav {
        padding: 20px 18px 0 18px;
    }
    
    .branded-sidebar .nav-link {
        padding: 16px 20px;
        margin-bottom: 8px;
        min-height: 56px;
        border-radius: 12px;
    }
    
    .branded-sidebar .nav-text {
        font-size: 16px;
    }
    
    .branded-sidebar .nav-icon {
        width: 24px;
        height: 24px;
        font-size: 20px;
        margin-right: 16px;
    }
    
    .branded-sidebar .sidebar-footer {
        padding: 20px 18px;
    }
    
    /* Medium tablet dropdown arrow adjustments */
    .branded-sidebar .nav-item.dropdown .dropdown-arrow {
        right: 17px;
        font-size: 11px;
    }
}

/* Continue with existing mobile styles */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 16px;
        padding: 15px 10px;
    }
    
    .navbar-nav > li > a {
        padding: 15px 8px;
        font-size: 12px;
    }
    
    .navbar-nav > li > a p {
        font-size: 11px;
        margin: 0;
    }
    
    .navbar-nav > li > a i {
        font-size: 14px;
    }
    
    .navbar-header {
        display: flex;
        align-items: center;
        width: 100%;
        position: relative;
        z-index: 1040;
        justify-content: flex-start;
    }
    
    .navbar-header .sidebar-toggle {
        order: 1;
        margin-right: 15px;
    }
    
    .navbar-collapse {
        border-top: none;
        box-shadow: none;
    }
    
    .navbar-collapse.collapse {
        display: none !important;
    }
    
    .navbar-collapse.collapse.in {
        display: block !important;
    }
    
    .navbar-nav {
        margin: 0;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    
    .navbar-nav.navbar-left,
    .navbar-nav.navbar-right {
        float: none;
        display: flex;
        flex-direction: row;
    }
    
    .navbar-nav.navbar-left {
        justify-content: flex-start;
    }
    
    .navbar-nav.navbar-right {
        justify-content: flex-end;
    }
    
    .navbar-nav > li {
        display: inline-block;
        float: none;
    }
    
    .navbar-nav > li > a {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 80px;
    }
    
    .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    
    /* Fix content spacing and alignment */
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    
    .col-md-12,
    .col-md-8,
    .col-md-4,
    .col-sm-6,
    .col-sm-12 {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    /* Card adjustments for mobile */
    .card {
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
    .card .header {
        padding: 15px 20px;
        border-radius: 8px 8px 0 0;
    }
    
    .card .content {
        padding: 20px;
    }
    
    /* Section header mobile adjustments */
    .section-header {
        padding: 15px 20px;
        margin-bottom: 20px;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .header-content {
        gap: 12px;
    }
    
    .header-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .header-text .title {
        font-size: 18px;
    }
    
    .header-text .subtitle {
        font-size: 12px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575px) {
    .sidebar {
        width: 100% !important;
    }
    
    .sidebar-wrapper {
        width: 100%;
    }
    
    /* Enhanced small mobile sidebar */
    .branded-sidebar .logo-section {
        padding: 16px 12px;
    }
    
    .branded-sidebar .brand-logo {
        width: 40px;
        height: 40px;
    }
    
    .branded-sidebar .company-name {
        font-size: 15px;
    }
    
    .branded-sidebar .company-subtitle {
        font-size: 11px;
    }
    
    .branded-sidebar .branded-nav {
        padding: 16px 12px 0 12px;
    }
    
    .branded-sidebar .nav-link {
        padding: 14px 16px;
        margin-bottom: 6px;
        min-height: 52px;
        border-radius: 10px;
    }
    
    .branded-sidebar .nav-text {
        font-size: 15px;
    }
    
    .branded-sidebar .nav-icon {
        width: 22px;
        height: 22px;
        font-size: 18px;
        margin-right: 14px;
    }
    
    .sidebar-toggle {
        padding: 8px 10px !important;
        margin: 8px 10px !important;
        font-size: 16px;
        min-height: 40px;
        min-width: 40px;
        z-index: 1040;
        position: relative;
    }
    
    .navbar-fixed-top {
        display: none; /* Hide navbar */
        height: auto;
    }
    
    .content {
        padding-top: 20px !important; /* Reduced padding since navbar is hidden */
    }
    
    .branded-sidebar .sidebar-footer {
        padding: 16px 12px;
    }
}



/* Very small devices (phones, less than 400px) */
@media (max-width: 400px) {
    .branded-sidebar .logo-section {
        padding: 12px 10px;
    }
    
    .branded-sidebar .brand-logo {
        width: 36px;
        height: 36px;
    }
    
    .branded-sidebar .company-name {
        font-size: 14px;
    }
    
    .branded-sidebar .company-subtitle {
        font-size: 10px;
    }
    
    .branded-sidebar .branded-nav {
        padding: 12px 8px 0 8px;
    }
    
    .branded-sidebar .nav-link {
        padding: 10px 12px;
        margin-bottom: 3px;
        min-height: 44px;
        border-radius: 6px;
        flex-direction: row;
        align-items: center;
    }
    
    .branded-sidebar .nav-text {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: calc(100% - 40px);
        margin-right: 25px; /* Add right margin to prevent overlap with dropdown arrow on mobile */
    }
    
    .branded-sidebar .nav-icon {
        width: 18px;
        height: 18px;
        font-size: 14px;
        margin-right: 10px;
        flex-shrink: 0;
    }
    
    .sidebar-toggle {
        font-size: 14px;
        min-height: 36px;
        min-width: 36px;
        padding: 6px 8px !important;
        margin: 6px 8px !important;
    }
    
    .navbar-fixed-top {
        display: none; /* Hide navbar */
        height: auto;
    }
    
    .content {
        padding-top: 20px !important; /* Reduced padding since navbar is hidden */
    }
    
    .branded-sidebar .sidebar-footer {
        padding: 12px 8px;
    }
}

/* Extra small devices (phones, less than 360px) */
@media (max-width: 360px) {
    .branded-sidebar .logo-section {
        padding: 10px 8px;
    }
    
    .branded-sidebar .brand-logo {
        width: 32px;
        height: 32px;
    }
    
    .branded-sidebar .company-name {
        font-size: 13px;
    }
    
    .branded-sidebar .company-subtitle {
        font-size: 9px;
    }
    
    .branded-sidebar .branded-nav {
        padding: 10px 6px 0 6px;
    }
    
    .branded-sidebar .nav-link {
        padding: 8px 10px;
        margin-bottom: 2px;
        min-height: 40px;
        border-radius: 5px;
    }
    
    .branded-sidebar .nav-text {
        font-size: 12px;
        max-width: calc(100% - 35px);
        margin-right: 20px; /* Add right margin to prevent overlap with dropdown arrow on smaller mobile */
    }
    
    .branded-sidebar .nav-icon {
        width: 16px;
        height: 16px;
        font-size: 12px;
        margin-right: 8px;
    }
    
    .sidebar-toggle {
        font-size: 12px;
        min-height: 32px;
        min-width: 32px;
        padding: 4px 6px !important;
        margin: 4px 6px !important;
    }
    
    .navbar-fixed-top {
        display: none; /* Hide navbar */
        height: auto;
    }
    
    .content {
        padding-top: 20px !important; /* Reduced padding since navbar is hidden */
    }
    
    .branded-sidebar .sidebar-footer {
        padding: 10px 6px;
    }
}

/* Ultra small devices (phones, less than 320px) */
@media (max-width: 320px) {
    .branded-sidebar .logo-section {
        padding: 8px 6px;
    }
    
    .branded-sidebar .brand-logo {
        width: 28px;
        height: 28px;
    }
    
    .branded-sidebar .company-name {
        font-size: 12px;
    }
    
    .branded-sidebar .company-subtitle {
        font-size: 8px;
    }
    
    .branded-sidebar .branded-nav {
        padding: 8px 4px 0 4px;
    }
    
    .branded-sidebar .nav-link {
        padding: 6px 8px;
        margin-bottom: 1px;
        min-height: 36px;
        border-radius: 4px;
    }
    
    .branded-sidebar .nav-text {
        font-size: 11px;
        max-width: calc(100% - 30px);
        margin-right: 18px; /* Add right margin to prevent overlap with dropdown arrow on smallest mobile */
    }
    
    .branded-sidebar .nav-icon {
        width: 14px;
        height: 14px;
        font-size: 10px;
        margin-right: 6px;
    }
    
    .sidebar-toggle {
        font-size: 10px;
        min-height: 28px;
        min-width: 28px;
        padding: 3px 4px !important;
        margin: 3px 4px !important;
    }
    
    .navbar-fixed-top {
        display: none; /* Hide navbar */
        height: auto;
    }
    
    .content {
        padding-top: 20px !important; /* Reduced padding since navbar is hidden */
    }
    
    .branded-sidebar .sidebar-footer {
        padding: 8px 4px;
    }
}

/* Additional mobile styles */
@media (max-width: 768px) {
    .navbar-nav .open .dropdown-menu {
        position: absolute;
        float: left;
        width: auto;
        margin-top: 0;
        background-color: #fff;
        border: 1px solid #ccc;
        border: 1px solid rgba(0,0,0,.15);
        box-shadow: 0 6px 12px rgba(0,0,0,.175);
    }
    
    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px;
        padding: 5px 15px;
    }
    
    .separator {
        display: none;
    }
    
    /* Ensure main content doesn't overflow */
    .main-panel {
        margin-left: 0;
        width: 100%;
    }
    
    .content {
        padding: 20px 15px !important;
        margin-top: 0 !important;
    }
    
    /* Ensure first content row has proper spacing */
    .content .row:first-child {
        margin-top: 10px;
    }
    
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Card adjustments for mobile */
    .card {
        margin-bottom: 20px;
    }
    
    .card .header {
        padding: 15px 20px;
    }
    
    .card .content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .navbar-nav > li > a {
        padding: 12px 4px;
        font-size: 10px;
    }
    
    .navbar-nav > li > a p {
        font-size: 9px;
    }
    
    .navbar-nav > li > a i {
        font-size: 11px;
    }
    
    .navbar-brand {
        font-size: 13px;
        padding: 12px 5px;
    }
    
    .sidebar-toggle {
        margin-right: 5px;
        font-size: 13px;
        padding: 8px 10px !important;
        z-index: 1040;
        position: relative;
        background: rgba(255, 122, 24, 0.1);
        border: 1px solid rgba(255, 122, 24, 0.2);
        border-radius: 6px;
    }
    
    .content {
        padding: 15px 8px;
    }
    
    .container-fluid {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    /* Ensure navbar doesn't overlap content */
    .navbar-fixed-top {
        display: none; /* Hide navbar */
        height: auto;
    }
    
    .content {
        padding-top: 20px !important; /* Reduced padding since navbar is hidden */
    }
    
    /* Better mobile navbar layout */
    .navbar-header {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1040;
    }
    
    .navbar-nav {
        flex: 1;
        justify-content: space-around;
    }
    
    .navbar-nav > li > a {
        max-width: 60px;
        text-align: center;
    }
    
    /* Final mobile optimizations */
    .section-separator {
        margin: 20px 0;
        gap: 10px;
    }
    
    .separator-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    /* Ensure all interactive elements are touch-friendly */
    .btn,
    .carousel-nav,
    .slider-nav,
    .sidebar-toggle {
        touch-action: manipulation;
    }
    
    /* Mobile sidebar toggle button improvements */
    .sidebar-toggle {
        display: block !important;
        position: relative;
        z-index: 1040;
        background: rgba(255, 122, 24, 0.1) !important;
        border: 1px solid rgba(255, 122, 24, 0.2) !important;
        border-radius: 6px;
        color: #FF7A18 !important;
        min-height: 44px;
        min-width: 44px;
        padding: 10px 12px !important;
        margin: 8px 10px !important;
        transition: all 0.3s ease;
    }
    
    .sidebar-toggle:hover {
        background: rgba(255, 122, 24, 0.2) !important;
        border-color: rgba(255, 122, 24, 0.3) !important;
        color: #FF7A18 !important;
    }
    
    .sidebar-toggle:focus {
        outline: 2px solid rgba(255, 122, 24, 0.5);
        outline-offset: 2px;
    }
    
    /* Improve mobile performance */
    .hero-video {
        will-change: transform;
    }
    
    .news-card,
    .project-card,
    .stat-card {
        will-change: transform;
    }
}

@media (min-width: 769px) {
    .sidebar-toggle {
        display: block;
        z-index: 1030;
    }
}


/* News Feed Styling */
.news-feed {
    scrollbar-width: thin;
    scrollbar-color: #ddd #f5f5f5;
}

.news-feed::-webkit-scrollbar {
    width: 6px;
}

.news-feed::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.news-feed::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.news-feed::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.news-item {
    transition: all 0.3s ease;
}

.news-item:hover {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 10px;
    margin: 0 -10px 20px -10px;
}

.news-item h5 {
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-item:hover h5 {
    color: #4A90E2 !important;
}

.news-image img {
    transition: transform 0.3s ease;
}

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

/* Enhanced News Carousel Styling */
.news-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 50px;
}

/* Desktop: Allow multiple items per slide */
@media (min-width: 769px) {
    .news-slide {
        flex: 0 0 380px;
        min-width: 380px;
    }
    
    .project-slide {
        flex: 0 0 380px;
        min-width: 380px;
    }
}


.news-carousel {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: thin; /* Firefox - show thin scrollbar */
    scrollbar-color: rgba(254, 185, 0, 0.6) rgba(0, 0, 0, 0.05); /* Firefox scrollbar colors */
    -ms-overflow-style: auto; /* IE and Edge - show scrollbar */
    padding: 10px 0;
    cursor: grab;
    max-height: 400px; /* Limit height to make it scrollable */
    overflow-y: auto; /* Enable vertical scrolling */
}

/* Custom scrollbar for news carousel */
.news-carousel::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.news-carousel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.news-carousel::-webkit-scrollbar-thumb {
    background: rgba(254, 185, 0, 0.6);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.news-carousel::-webkit-scrollbar-thumb:hover {
    background: rgba(254, 185, 0, 0.8);
}

.news-carousel::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0.05);
}

/* Video Section (ТӨСЛИЙН ЯВЦ) Slider Styling */
.instructions-content {
    padding: 20px 0;
}

/* Video Slider Container */
.video-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 50px;
}

/* Video Slider Wrapper for proper overflow handling */
.video-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.video-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox - hide scrollbar */
    -ms-overflow-style: none; /* IE and Edge - hide scrollbar */
    padding: 10px 0;
    cursor: grab;
    width: max-content;
}

.video-slider:active {
    cursor: grabbing;
}

.video-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera - hide scrollbar */
}

.video-slide {
    flex: 0 0 auto;
    width: 600px;
    max-width: 600px;
    min-width: 300px;
}

/* Video Slider Navigation Buttons */
.video-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: black;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(231, 128, 60, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-slider-nav:hover {
    background: linear-gradient(135deg, #F0921F 0%, #e67e22 100%);
    color: white;
    transform: translateY(-50%) scale(1.15);
    /* box-shadow: 0 6px 20px rgba(247, 138, 65, 0.5); */
    border-color: rgba(255, 255, 255, 0.4);
}

.video-slider-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.video-slider-nav:focus {
    outline: 2px solid #F0921F;
    outline-offset: 2px;
}

.video-slider-nav.prev-video-btn {
    left: 10px;
}

.video-slider-nav.next-video-btn {
    right: 10px;
}

.video-slider-nav i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.video-slider-nav:hover i {
    transform: scale(1.1);
}

/* Custom scrollbar for video section */
.instructions-content::-webkit-scrollbar {
    width: 8px;
}

.instructions-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.instructions-content::-webkit-scrollbar-thumb {
    background: rgba(254, 185, 0, 0.6);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.instructions-content::-webkit-scrollbar-thumb:hover {
    background: rgba(254, 185, 0, 0.8);
}

.news-carousel:active {
    cursor: grabbing;
}

.news-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.activities-gallery::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.news-slide {
    flex: 0 0 380px;
    min-width: 380px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: rgba(231, 76, 60, 0.2);
}

.news-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image-container img {
    transform: scale(1.08);
}

.news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #4A90E2;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    z-index: 2;
}

.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-height: 9.6rem;
    flex: 1;
    padding: 15px;
    padding-top: 15px;
}

.news-card:hover .news-title {
    color: #F0921F;
}

.news-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 15px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 15px;
}

.news-meta {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.news-share {
    display: flex;
    gap: 8px;
    align-items: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.carousel-nav:hover {
    background: rgba(231, 76, 60, 1);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav:focus {
    outline: 2px solid #F0921F;
    outline-offset: 2px;
}

.carousel-nav.prev-btn {
    left: 10px;
}

.carousel-nav.next-btn {
    right: 10px;
}

.carousel-nav i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.carousel-nav:hover i {
    transform: scale(1.1);
}

/* Enhanced Mobile Sidebar Toggle - Standalone */
@media (max-width: 768px) {
    /* Floating sidebar toggle button */
    .sidebar-toggle-standalone {
        position: fixed !important;
        top: 20px !important;
        left: 20px !important;
        z-index: 1060 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 50px !important;
        height: 50px !important;
        background: linear-gradient(135deg, #ED5D37 0%, #F06B45 100%) !important;
        border: none !important;
        border-radius: 50% !important;
        color: white !important;
        font-size: 18px !important;
        cursor: pointer !important;
        box-shadow: 0 4px 20px rgba(255, 122, 24, 0.3) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }
    
    .sidebar-toggle-standalone:hover {
        background: linear-gradient(135deg, #D44A2A 0%, #ED5D37 100%) !important;
        transform: scale(1.1) !important;
        box-shadow: 0 6px 25px rgba(255, 122, 24, 0.4) !important;
    }
    
    .sidebar-toggle-standalone:active {
        transform: scale(0.95) !important;
    }
    
    /* Hide toggle when sidebar is visible */
    .sidebar-visible .sidebar-toggle-standalone {
        display: none !important;
    }
    
    /* Enhanced mobile sidebar behavior */
    .branded-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        height: 100vh !important;
        width: 280px !important;
        z-index: 1050 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Mobile sidebar scrollbar styling */
    .branded-sidebar::-webkit-scrollbar {
        width: 4px;
    }
    
    .branded-sidebar::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .branded-sidebar::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
    
    .branded-sidebar::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    
    .branded-sidebar.show {
        transform: translateX(-100%) !important;
    }
    
    /* Enhanced sidebar overlay */
    .sidebar-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.6) !important;
        z-index: 1040 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
        backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
    }
    
    .sidebar-overlay.visible {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Main panel adjustments for mobile */
    .main-panel {
        margin-left: 0 !important;
        width: 100% !important;
        padding-top: 0 !important;
    }
    
    /* Mobile performance optimizations */
    .branded-sidebar * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Mobile touch improvements */
    .branded-sidebar .nav-link {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
        touch-action: manipulation;
    }
    
    /* Mobile dropdown improvements */
    .branded-sidebar .sidebar-dropdown {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    /* Prevent text selection on mobile */
    .branded-sidebar {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Allow text selection in dropdown items */
    .branded-sidebar .dropdown-item {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
}

/* Mobile responsive for enhanced carousel */
@media (max-width: 768px) {
    .news-carousel-container {
        padding: 0 30px !important;
        margin: 0 -10px !important;
        overflow: hidden;
    }
    
    .news-slide {
        flex: 0 0 auto;
        min-width: 300px;
        width: auto;
    }
    
    .news-carousel {
        overflow: visible;
    }
    
    .news-card {
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    .news-image-container {
        height: 160px !important;
    }
    
    .news-content {
        padding: 15px !important;
    }
    
    .news-title {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
        max-height: 3.2rem !important;
    }
    
    .news-description {
        font-size: 0.85rem !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        margin-bottom: 12px !important;
    }
    
    .carousel-nav {
        width: 35px !important;
        height: 35px !important;
        font-size: 12px !important;
    }
    
    .carousel-nav.prev-btn {
        left: 5px !important;
    }
    
    .carousel-nav.next-btn {
        right: 5px !important;
    }
    
    .carousel-nav i {
        font-size: 12px !important;
    }
    
    
    .share-btn {
        width: 24px !important;
        height: 24px !important;
        font-size: 10px !important;
    }
    
    .news-date {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
        border-radius: 15px !important;
    }
    
    .news-tag {
        font-size: 9px !important;
        padding: 3px 8px !important;
    }
    
    /* Projects carousel mobile adjustments */
    .projects-carousel-container {
        padding: 0 30px !important;
        margin: 0 -10px !important;
        overflow: hidden;
    }
    
    .project-slide {
        flex: 0 0 auto;
        min-width: 300px;
        width: auto;
    }
    
    .projects-carousel {
        overflow: visible;
    }
    
    .project-card {
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    .project-image-container {
        height: 160px !important;
    }
    
    .project-overlay {
        padding: 12px !important;
    }
    
    .project-overlay h3 {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }
    
    .project-overlay p {
        font-size: 11px !important;
    }
    
    .projects-carousel-container .carousel-nav {
        width: 35px !important;
        height: 35px !important;
    }
    
    .projects-carousel-container .carousel-nav.prev-btn {
        left: 5px !important;
    }
    
    .projects-carousel-container .carousel-nav.next-btn {
        right: 5px !important;
    }
    
    .projects-carousel-container .carousel-nav i {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .news-carousel-container {
        padding: 0 20px !important;
        margin: 0 -5px !important;
        overflow: hidden;
    }
    
    .news-slide {
        flex: 0 0 auto;
        min-width: 280px;
        width: auto;
    }
    
    .news-carousel {
        overflow: visible;
    }
    
    .news-image-container {
        height: 140px !important;
    }
    
    .news-content {
        padding: 10px !important;
    }
    
    .news-title {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
        line-height: 1.4 !important;
        -webkit-line-clamp: 2 !important;
        max-height: 3.2rem !important;
    }
    
    .news-description {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
        -webkit-line-clamp: 2 !important;
    }
    
    .news-excerpt {
        font-size: 0.8rem !important;
        -webkit-line-clamp: 2 !important;
    }
    
    .carousel-nav {
        width: 30px !important;
        height: 30px !important;
    }
    
    .carousel-nav.prev-btn {
        left: 2px !important;
    }
    
    .carousel-nav.next-btn {
        right: 2px !important;
    }
    
    .carousel-nav i {
        font-size: 10px !important;
    }
    
    
    .share-btn {
        width: 22px !important;
        height: 22px !important;
        font-size: 9px !important;
    }
    
    /* Very small screen projects carousel */
    .projects-carousel-container {
        padding: 0 20px !important;
        margin: 0 -5px !important;
        overflow: hidden;
    }
    
    .project-slide {
        flex: 0 0 auto;
        min-width: 280px;
        width: auto;
    }
    
    .projects-carousel {
        overflow: visible;
    }
    
    .project-image-container {
        height: 140px !important;
    }
    
    .project-overlay {
        padding: 10px !important;
    }
    
    .project-overlay h3 {
        font-size: 12px !important;
        margin-bottom: 4px !important;
    }
    
    .project-overlay p {
        font-size: 10px !important;
    }
    
    .projects-carousel-container .carousel-nav {
        width: 30px !important;
        height: 30px !important;
    }
    
    .projects-carousel-container .carousel-nav.prev-btn {
        left: 2px !important;
    }
    
    .projects-carousel-container .carousel-nav.next-btn {
        right: 2px !important;
    }
    
    .projects-carousel-container .carousel-nav i {
        font-size: 10px !important;
    }
}

/* Application Form Styling */
.application-form-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.application-form-card .content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.application-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.application-form .form-group {
    margin-bottom: 15px;
}

.application-form .form-group:last-of-type {
    margin-bottom: 20px;
}

.application-form .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 12px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.application-form .form-control:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
    outline: none;
}

.application-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

.application-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.application-form .btn-primary {
    background-color: #feb900;
    border-color: transparent;
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.application-form .btn-primary:hover {
    background-color: white;
    border-color: #333;
    color: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.application-form .btn-primary:active {
    transform: translateY(0);
}

.application-form-card .header {
    background: linear-gradient(135deg, #feb900 0%, #feb900 100%);
    color: white;
    border-radius: 8px 8px 0 0;
    padding: 15px 20px;
    /* margin: -20px -20px 15px -20px; */
}

.application-form-card .header .title {
    color: white;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.application-form-card .header .title i {
    font-size: 14px;
}

.application-form-card .header .category {
    color: rgba(255, 255, 255, 0.8);
    margin: 3px 0 0 0;
    font-size: 12px;
}

/* Ensure equal height with news feed */
.row .col-md-4 .card,
.row .col-md-8 .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.row .col-md-4 .card .content,
.row .col-md-8 .card .content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.row .col-md-8 .card .content .news-feed {
    flex: 1;
}

/* Mobile responsive for form */
@media (max-width: 768px) {
    .application-form-card .header {
        padding: 12px 16px;
        margin: -15px -15px 12px -15px;
    }
    
    .application-form-card .header .title {
        font-size: 15px;
    }
    
    .application-form-card .header .title i {
        font-size: 13px;
    }
    
    .application-form-card .header .category {
        font-size: 11px;
        margin: 2px 0 0 0;
    }
    
    .application-form .form-control {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .application-form textarea.form-control {
        min-height: 100px;
    }
    
    .application-form .btn-primary {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .application-form-card .header {
        padding: 10px 14px;
        margin: -15px -15px 10px -15px;
    }
    
    .application-form-card .header .title {
        font-size: 14px;
    }
    
    .application-form-card .header .title i {
        font-size: 12px;
    }
    
    .application-form-card .header .category {
        font-size: 10px;
        margin: 1px 0 0 0;
    }
}

/* Statistics Dashboard Styling */
.statistics-dashboard .header {
    background: linear-gradient(135deg, #F0921F 0%, #F0921F 100%);
    color: white;
    border-radius: 8px 8px 0 0;
    padding: 15px 20px;
    /* margin: -20px -20px 20px -20px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.statistics-dashboard .header .title {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.statistics-dashboard .header .title i {
    font-size: 16px;
}

.badge-success {
    background-color: #28a745;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.stat-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: #4A90E2;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #6c757d;
    font-size: 20px;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 500;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #feb900;
    line-height: 1.2;
}

.revenue-card .stat-value {
    font-size: 18px;
    margin-bottom: 10px;
}

.revenue-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.revenue-item {
    font-size: 12px;
    color: #495057;
    padding: 3px 0;
    border-bottom: 1px solid #f1f3f4;
}

.revenue-item:last-child {
    border-bottom: none;
}

/* Mobile responsive for statistics */
@media (max-width: 768px) {
    .statistics-dashboard .header {
        padding: 12px 16px !important;
        margin: -15px -15px 15px -15px !important;
        flex-direction: column !important;
        gap: 10px !important;
        align-items: flex-start !important;
    }
    
    .statistics-dashboard .header .title {
        font-size: 16px !important;
    }
    
    .statistics-dashboard .header .title i {
        font-size: 14px !important;
    }
    
    .badge-success {
        font-size: 11px !important;
        padding: 4px 8px !important;
    }
    
    .stat-card {
        padding: 12px !important;
        margin-bottom: 12px !important;
        border-radius: 6px !important;
    }
    
    .stat-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
    
    .stat-label {
        font-size: 10px !important;
        margin-bottom: 6px !important;
    }
    
    .stat-value {
        font-size: 18px !important;
        line-height: 1.2 !important;
    }
    
    .revenue-card .stat-value {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }
    
    .revenue-item {
        font-size: 10px !important;
        padding: 2px 0 !important;
    }
    
    /* Grid adjustments for mobile */
    .col-md-3 {
        margin-bottom: 15px !important;
        width: 50% !important;
        float: left !important;
    }
    
    /* Section headers mobile adjustments */
    .section-header {
        padding: 15px 20px !important;
        margin-bottom: 20px !important;
        flex-direction: column !important;
        gap: 15px !important;
        align-items: flex-start !important;
    }
    
    .header-content {
        gap: 12px !important;
    }
    
    .header-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
    
    .header-text .title {
        font-size: 18px !important;
    }
    
    .header-text .subtitle {
        font-size: 12px !important;
    }
    
    .header-actions {
        width: 100% !important;
        justify-content: space-between !important;
    }
    

    .partner-name {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    .slider-nav {
        width: 32px !important;
        height: 32px !important;
        font-size: 12px !important;
    }

    .prev-partners {
        left: 8px !important;
    }

    .next-partners {
        right: 8px !important;
    }
}

@media (max-width: 480px) {
    .statistics-dashboard .header {
        padding: 10px 14px !important;
        margin: -15px -15px 12px -15px !important;
    }
    
    .statistics-dashboard .header .title {
        font-size: 14px !important;
    }
    
    .statistics-dashboard .header .title i {
        font-size: 12px !important;
    }
    
    .badge-success {
        font-size: 9px !important;
        padding: 3px 6px !important;
    }
    
    .stat-card {
        padding: 10px !important;
        margin-bottom: 10px !important;
        border-radius: 5px !important;
    }
    
    .stat-icon {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }
    
    .stat-label {
        font-size: 9px !important;
        margin-bottom: 4px !important;
    }
    
    .stat-value {
        font-size: 16px !important;
        line-height: 1.1 !important;
    }
    
    .revenue-card .stat-value {
        font-size: 12px !important;
        margin-bottom: 6px !important;
    }
    
    .revenue-item {
        font-size: 9px !important;
        padding: 1px 0 !important;
    }
    
    /* Stack cards in single column on very small screens */
    .col-md-3 {
        width: 100% !important;
        margin-bottom: 10px !important;
        float: none !important;
    }
    
    /* Very small screen hero adjustments */
    .hero-video-section {
        height: 40vh !important;
        min-height: 250px !important;
        margin-bottom: 15px !important;
    }

    .hero-overlay {
        padding: 15px 10px !important;
    }

    .hero-title {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .hero-subtitle {
        font-size: 12px !important;
        margin-bottom: 15px !important;
    }

    .hero-button {
        padding: 10px 20px !important;
        font-size: 11px !important;
    }

    .hero-stats {
        margin-top: 15px !important;
    }

    .stat-number {
        font-size: 28px !important;
    }

    .stat-circle {
        width: 60px !important;
        height: 60px !important;
    }

    .stat-value {
        font-size: 14px !important;
    }

    .stat-label {
        font-size: 8px !important;
    }

    .stat-description {
        font-size: 10px !important;
    }
    
    /* Very small screen navbar adjustments */
    .navbar-fixed-top {
        height: 55px !important;
    }
    
    .content {
        padding-top: 20px !important; /* Reduced padding since navbar is hidden */
    }
    
    .navbar-toggle {
        margin: 10px 12px !important;
        padding: 6px 10px !important;
    }
    
    .sidebar-toggle {
        padding: 8px 10px !important;
        margin: 8px 10px !important;
        font-size: 16px !important;
        min-height: 40px !important;
        min-width: 40px !important;
    }
    
    /* Very small screen section headers */
    .section-header {
        padding: 12px 16px !important;
        margin-bottom: 15px !important;
    }
    
    .header-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    
    .header-text .title {
        font-size: 16px !important;
    }
    
    .header-text .subtitle {
        font-size: 11px !important;
    }
    
    .btn-primary {
        padding: 6px 12px !important;
        font-size: 11px !important;
        display: inline-flex !important;
        align-items: center !important;
        vertical-align: middle !important;
        line-height: 1 !important;
    }
    
    .badge-primary,
    .badge-success {
        padding: 4px 8px !important;
        font-size: 10px !important;
        display: inline-flex !important;
        align-items: center !important;
        vertical-align: middle !important;
        line-height: 1 !important;
    }
    
    
    .partner-name {
        font-size: 10px !important;
        line-height: 1.2 !important;
    }
    
    .slider-nav {
        width: 28px !important;
        height: 28px !important;
        font-size: 10px !important;
    }
    
    .prev-partners {
        left: 5px !important;
    }
    
    .next-partners {
        right: 5px !important;
    }
}

/* Print and PDF Screenshot Styles */
@media print, screen and (min-resolution: 300dpi) {
    .sidebar {
        position: fixed !important;
        height: 100vh !important;
        overflow-y: visible !important;
        transform: none !important;
        display: block !important;
    }
    
    .sidebar-wrapper {
        height: 100vh !important;
        overflow-y: visible !important;
    }
    
    .main-panel {
        margin-left: 260px !important;
        width: calc(100% - 260px) !important;
    }
    
    .wrapper {
        height: 100vh !important;
        overflow: visible !important;
    }
    
    .content {
        overflow: visible !important;
    }
}

/* Ensure sidebar is always visible for screenshots */
@media print, screen and (min-resolution: 300dpi) {
    .sidebar.collapsed {
        transform: none !important;
        visibility: visible !important;
    }
    
    .main-panel.expanded {
        margin-left: 260px !important;
        width: calc(100% - 260px) !important;
    }
}


/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ======================================== */

/* Mobile Responsive - Consolidated and Fixed */
@media (max-width: 768px) {
    /* Navbar positioning - Hidden */
    .navbar-fixed-top {
        display: none !important; /* Hide navbar on mobile */
        left: auto !important;
        right: auto !important;
        width: auto !important;
        z-index: auto !important;
        position: static !important;
        top: auto !important;
        height: auto !important;
    }
    
    /* Main panel - Full width */
    .main-panel {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    /* Content spacing - navbar is now hidden */
    .main-panel > .content {
        padding-top: 20px !important; /* Reduced padding since navbar is hidden */
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    /* Duplicate mobile sidebar rules removed - using modern mobile sidebar above */
    
    /* Sidebar toggle button */
    .sidebar-toggle {
        display: block !important;
        z-index: 1040 !important;
        position: relative;
        background: rgba(255, 122, 24, 0.1) !important;
        border: 1px solid rgba(255, 122, 24, 0.2) !important;
        color: #FF7A18 !important;
        min-height: 44px;
        min-width: 44px;
        padding: 10px 12px !important;
        margin: 8px 10px !important;
    }
    
    .sidebar-toggle:hover {
        background: rgba(255, 122, 24, 0.2) !important;
        border-color: rgba(255, 122, 24, 0.3) !important;
        color: #FF7A18 !important;
    }
    
    /* Sidebar overlay */
    .sidebar-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1030 !important;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .sidebar-overlay.visible {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Body scroll prevention */
    body.sidebar-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Ensure footer stays in normal flow even when sidebar is open */
    body.sidebar-open .modern-footer {
        position: relative !important;
        transform: none !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    /* Additional footer positioning fixes */
    .modern-footer,
    footer.modern-footer,
    .modern-footer * {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    
    /* Wrapper overflow */
    .wrapper {
        overflow-x: hidden !important;
    }
    
    /* Navbar header */
    .navbar-header {
        display: flex;
        align-items: center;
        width: 100%;
        position: relative;
        z-index: 1040;
        justify-content: flex-start;
    }
    
    .navbar-header .sidebar-toggle {
        order: 1;
        margin-right: 15px;
    }
}

/* Legal Documents Tab Styling */
.nav-tabs > li > a {
    transition: all 0.3s ease;
}

.nav-tabs > li > a:hover {
    color: #333 !important;
    background-color: #e9ecef !important;
    border-bottom-color: #4A90E2 !important;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

.nav-tabs > li.active > a {
    color: #333 !important;
    background-color: #f8f9fa !important;
    border-bottom: 3px solid #4A90E2 !important;
    font-weight: 600 !important;
}

.nav-tabs > li.active > a:hover {
    background-color: #f8f9fa !important;
    border-bottom-color: #4A90E2 !important;
}

/* Table row hover effects */
.table tbody tr:hover {
    background-color: #f8f9fa !important;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* File link hover effects */
.table tbody tr:hover a {
    color: #357ABD !important;
    text-decoration: underline !important;
}

/* Active tab indicator */
.nav-tabs > li.active > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #4A90E2;
    border-radius: 2px;
}

/* Sidebar scrollbar styling */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(254, 185, 0, 0.5);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(254, 185, 0, 0.8);
}

/* Modern Sidebar Overlay Effect */
.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, 
            rgba(240, 146, 31, 0.03) 0%, 
            transparent 20%, 
            transparent 80%, 
            rgba(0, 0, 0, 0.08) 100%);
    pointer-events: none;
    z-index: 1;
}


/* Desktop Sidebar Toggle - Visible when navbar is hidden */
@media (min-width: 769px) {
    .sidebar-toggle {
        position: fixed !important;
        top: 20px !important;
        left: 20px !important;
        z-index: 1060 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        background: 
            linear-gradient(135deg, #B8721A 0%, #D4841F 100%),
            radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%) !important;
        border: none !important;
        color: white !important;
        font-size: 18px !important;
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.3),
            0 8px 40px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        cursor: pointer !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .sidebar-toggle:hover {
        background: 
            linear-gradient(135deg, #D4841F 0%, #F0921F 100%),
            radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%) !important;
        transform: scale(1.1) !important;
        box-shadow: 
            0 6px 25px rgba(240, 146, 31, 0.3),
            0 12px 50px rgba(240, 146, 31, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.25),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
    }
    
    .sidebar-toggle:active {
        transform: scale(0.95) !important;
    }
}

.sidebar .logo {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 30px;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.05) 0%, 
        rgba(255,255,255,0.02) 100%);
    border-radius: 0 0 20px 20px;
    margin: 0 10px 30px 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sidebar .logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(254, 185, 0, 0.3) 20%, 
        rgba(254, 185, 0, 0.6) 50%, 
        rgba(254, 185, 0, 0.3) 80%, 
        transparent 100%);
}

.sidebar .logo::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(254, 185, 0, 0.8), 
        transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(254, 185, 0, 0.3);
}

.sidebar .logo img {
    max-width: 160px;
    filter: drop-shadow(0 6px 15px rgba(0,0,0,0.4));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
    padding: 8px;
    background: rgba(255,255,255,0.05);
}

.sidebar .logo:hover img {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
    background: rgba(255,255,255,0.1);
}

.sidebar .logo div {
    margin-top: 15px;
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    opacity: 0.9;
}

.sidebar .logo:hover div {
    color: rgba(255,255,255,1);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    opacity: 1;
    transform: translateY(-1px);
}

.sidebar .nav {
    padding: 0 12px;
    margin-top: 80px; /* Push nav items down to center them better */
}

.sidebar .nav li {
    margin-bottom: 6px;
    position: relative;
}

.sidebar .nav li a {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    border-radius: 16px;
    margin: 0 3px;
    padding: 16px 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.sidebar .nav li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(254, 185, 0, 0.15) 50%, 
        transparent 100%);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar .nav li a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #feb900 0%, #f39c12 100%);
    border-radius: 0 4px 4px 0;
    transform: translateY(-50%);
    transition: height 0.3s ease;
    box-shadow: 0 0 8px rgba(254, 185, 0, 0.4);
}

.sidebar .nav li a:hover {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,1);
    transform: translateX(12px) translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(0,0,0,0.25),
        0 0 0 1px rgba(254, 185, 0, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.15);
    border-color: rgba(254, 185, 0, 0.3);
}

.sidebar .nav li a:hover::before {
    left: 100%;
}

.sidebar .nav li a:hover::after {
    height: 60%;
}

.sidebar .nav li.active a {
    background: linear-gradient(135deg, 
        rgba(254, 185, 0, 0.9) 0%, 
        rgba(243, 156, 18, 0.9) 100%);
    color: white;
    box-shadow: 
        0 8px 25px rgba(254, 185, 0, 0.4),
        0 0 0 1px rgba(254, 185, 0, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    border-color: rgba(254, 185, 0, 0.5);
    transform: translateX(8px) translateY(-1px);
}

.sidebar .nav li.active a::after {
    height: 80%;
    background: rgba(255,255,255,0.3);
}

.sidebar .nav li a i {
    font-size: 22px;
    margin-right: 18px;
    color: rgba(255,255,255,0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 22px;
    flex-shrink: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.sidebar .nav li a:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #feb900;
    text-shadow: 0 4px 8px rgba(254, 185, 0, 0.4);
}

.sidebar .nav li.active a i {
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.sidebar .nav li a p {
    color: inherit;
    font-weight: 500;
    margin: 0;
    font-size: 15px;
    transition: all 0.4s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    flex: 1;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.sidebar .nav li a:hover p {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sidebar .nav li.active a p {
    font-weight: 600;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Sidebar Footer */
.sidebar-footer {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    text-align: center;
    padding: 20px 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.03) 0%, 
        rgba(255,255,255,0.01) 100%);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0 5px;
}

.sidebar-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(254, 185, 0, 0.4) 50%, 
        transparent 100%);
}

.sidebar-footer .updatedpj-footer-company-info {
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    line-height: 1.4;
}

.sidebar-footer:hover .updatedpj-footer-company-info {
    color: rgba(255,255,255,1);
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    transform: translateY(-1px);
}

/* Additional Modern Sidebar Enhancements */
.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(254, 185, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 73, 94, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}


@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Staggered animation for nav items */
.sidebar .nav li {
    animation: fadeInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.sidebar .nav li:nth-child(1) { animation-delay: 0.1s; }
.sidebar .nav li:nth-child(2) { animation-delay: 0.2s; }
.sidebar .nav li:nth-child(3) { animation-delay: 0.3s; }
.sidebar .nav li:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Pulse animation for active item */
.sidebar .nav li.active a {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(254, 185, 0, 0.4),
            0 0 0 1px rgba(254, 185, 0, 0.3),
            inset 0 1px 0 rgba(255,255,255,0.2);
    }
    50% {
        box-shadow: 
            0 8px 35px rgba(254, 185, 0, 0.6),
            0 0 0 1px rgba(254, 185, 0, 0.4),
            inset 0 1px 0 rgba(255,255,255,0.3);
    }
}

/* Navbar Navigation Links Hover Effects */
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > li > a:active {
    color: #F0921F !important;
    background-color: rgba(240, 146, 31, 0.1) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-nav > li > a:hover p,
.navbar-nav > li > a:focus p,
.navbar-nav > li > a:active p {
    color: #F0921F !important;
}

/* More specific selectors to override Bootstrap defaults */
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:focus,
.navbar .navbar-nav > li > a:active {
    color: #F0921F !important;
}

.navbar .navbar-nav > li > a:hover p,
.navbar .navbar-nav > li > a:focus p,
.navbar .navbar-nav > li > a:active p {
    color: #F0921F !important;
}

/* Override any Bootstrap link colors */
.navbar-nav li a {
    color: inherit !important;
}

.navbar-nav li a:hover {
    color: #F0921F !important;
}

/* Dropdown Menu Hover Effects */
.navbar-nav .dropdown-toggle:hover,
.navbar-nav .dropdown-toggle:focus,
.navbar-nav .dropdown-toggle:active {
    color: #F0921F !important;
    background-color: rgba(240, 146, 31, 0.1) !important;
    text-decoration: none;
}

.navbar-nav .dropdown-toggle:hover p,
.navbar-nav .dropdown-toggle:focus p,
.navbar-nav .dropdown-toggle:active p {
    color: #F0921F !important;
}

/* Dropdown Menu Items Hover Effects */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:active {
    color: #F0921F !important;
    background-color: rgba(240, 146, 31, 0.1) !important;
    text-decoration: none;
}

/* More specific dropdown selectors */
.navbar .dropdown-toggle:hover,
.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:active {
    color: #F0921F !important;
}

.navbar .dropdown-toggle:hover p,
.navbar .dropdown-toggle:focus p,
.navbar .dropdown-toggle:active p {
    color: #F0921F !important;
}

.navbar .dropdown-menu > li > a:hover,
.navbar .dropdown-menu > li > a:focus,
.navbar .dropdown-menu > li > a:active {
    color: #F0921F !important;
    background-color: rgba(240, 146, 31, 0.1) !important;
}

/* Contact Links Hover Effects */
.navbar .contact-link:hover,
.navbar .flag-link:hover,
.navbar .virtual-tour-link:hover {
    color: #feb900 !important;
    transform: translateY(-1px);
}

/* Sidebar Dropdown Styles */
.sidebar .nav-item.dropdown,
.branded-sidebar .nav-item.dropdown {
    position: relative;
}

.sidebar .nav-item.dropdown .dropdown-toggle,
.branded-sidebar .nav-item.dropdown .dropdown-toggle {
    position: relative;
}

.sidebar .nav-item.dropdown .dropdown-toggle:focus,
.sidebar .nav-item.dropdown .dropdown-toggle:active,
.branded-sidebar .nav-item.dropdown .dropdown-toggle:focus,
.branded-sidebar .nav-item.dropdown .dropdown-toggle:active {
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

/* Ensure dropdown toggle maintains styling when open */
.sidebar .nav-item.dropdown.open .dropdown-toggle,
.branded-sidebar .nav-item.dropdown.open .dropdown-toggle {
    background-color: transparent !important;
    color: inherit !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.sidebar .nav-item.dropdown.open .dropdown-toggle:hover,
.branded-sidebar .nav-item.dropdown.open .dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: inherit !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.sidebar .nav-item.dropdown.open .dropdown-toggle:focus,
.sidebar .nav-item.dropdown.open .dropdown-toggle:active,
.branded-sidebar .nav-item.dropdown.open .dropdown-toggle:focus,
.branded-sidebar .nav-item.dropdown.open .dropdown-toggle:active {
    background-color: transparent !important;
    color: inherit !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Ensure nav-link elements maintain styling when dropdown is open */
.sidebar .nav-item.dropdown.open .nav-link,
.branded-sidebar .nav-item.dropdown.open .nav-link {
    background-color: transparent !important;
    color: inherit !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.sidebar .nav-item.dropdown.open .nav-link:hover,
.branded-sidebar .nav-item.dropdown.open .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: inherit !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.sidebar .nav-item.dropdown .dropdown-arrow,
.branded-sidebar .nav-item.dropdown .dropdown-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.6);
    opacity: 0.9;
    z-index: 10;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sidebar .nav-item.dropdown.open .dropdown-arrow,
.branded-sidebar .nav-item.dropdown.open .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hover effects for dropdown arrow */
.sidebar .nav-item.dropdown:hover .dropdown-arrow,
.branded-sidebar .nav-item.dropdown:hover .dropdown-arrow {
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.sidebar .nav-item.dropdown.open:hover .dropdown-arrow,
.branded-sidebar .nav-item.dropdown.open:hover .dropdown-arrow {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) rotate(180deg) scale(1.1);
}

.sidebar .sidebar-dropdown,
.branded-sidebar .sidebar-dropdown {
    position: static;
    float: none;
    width: 100%;
    margin-top: 4px;
    margin-bottom: 4px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: block;
    z-index: 1000;
}

.sidebar .nav-item.dropdown.open .sidebar-dropdown,
.branded-sidebar .nav-item.dropdown.open .sidebar-dropdown {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
}

/* Ensure dropdown is hidden by default */
.sidebar .nav-item.dropdown:not(.open) .sidebar-dropdown,
.branded-sidebar .nav-item.dropdown:not(.open) .sidebar-dropdown {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
}

/* Debug: Make sure dropdown is visible when open */
.sidebar .nav-item.dropdown.open .sidebar-dropdown,
.branded-sidebar .nav-item.dropdown.open .sidebar-dropdown {
    display: block !important;
    max-height: 300px !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1000 !important;
}

.sidebar .sidebar-dropdown .dropdown-item,
.branded-sidebar .sidebar-dropdown .dropdown-item {
    display: block;
    padding: 12px 20px 12px 60px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    border-bottom: none;
    transition: all 0.3s ease;
    margin: 2px 8px;
    border-radius: 6px;
    position: relative;
}

.sidebar .sidebar-dropdown .dropdown-item:last-child,
.branded-sidebar .sidebar-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.sidebar .sidebar-dropdown .dropdown-item:hover,
.branded-sidebar .sidebar-dropdown .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    padding-left: 65px;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar .sidebar-dropdown .dropdown-item:focus,
.sidebar .sidebar-dropdown .dropdown-item:active,
.branded-sidebar .sidebar-dropdown .dropdown-item:focus,
.branded-sidebar .sidebar-dropdown .dropdown-item:active {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    padding-left: 65px;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

/* Mobile sidebar dropdown adjustments */
@media (max-width: 768px) {
    .sidebar .sidebar-dropdown,
    .branded-sidebar .sidebar-dropdown {
        margin-top: 3px;
        margin-bottom: 3px;
        border-radius: 6px;
        padding: 6px 0;
        max-height: 250px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .sidebar .sidebar-dropdown .dropdown-item,
    .branded-sidebar .sidebar-dropdown .dropdown-item {
        padding: 15px 20px 15px 60px;
        font-size: 15px;
        margin: 2px 6px;
        border-radius: 4px;
        min-height: 44px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
    
    .sidebar .sidebar-dropdown .dropdown-item:hover,
    .branded-sidebar .sidebar-dropdown .dropdown-item:hover {
        padding-left: 65px;
        transform: translateX(3px);
    }
    
    .sidebar .sidebar-dropdown .dropdown-item:focus,
    .sidebar .sidebar-dropdown .dropdown-item:active,
    .branded-sidebar .sidebar-dropdown .dropdown-item:focus,
    .branded-sidebar .sidebar-dropdown .dropdown-item:active {
        padding-left: 65px;
        outline: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        transform: translateX(3px);
        background-color: rgba(255, 255, 255, 0.15);
    }
    
    /* Mobile dropdown arrow improvements */
    .branded-sidebar .nav-item.dropdown .dropdown-arrow {
        right: 16px;
        font-size: 10px;
    }
}

/* Landscape mobile orientation optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .branded-sidebar {
        width: 240px;
    }
    
    .branded-sidebar .logo-section {
        padding: 12px 14px;
    }
    
    .branded-sidebar .brand-logo {
        width: 36px;
        height: 36px;
    }
    
    .branded-sidebar .company-name {
        font-size: 14px;
    }
    
    .branded-sidebar .company-subtitle {
        font-size: 10px;
    }
    
    .branded-sidebar .branded-nav {
        padding: 12px 14px 0 14px;
    }
    
    .branded-sidebar .nav-link {
        padding: 10px 14px;
        margin-bottom: 4px;
        min-height: 44px;
        border-radius: 8px;
    }
    
    .branded-sidebar .nav-text {
        font-size: 14px;
    }
    
    .branded-sidebar .nav-icon {
        width: 20px;
        height: 20px;
        font-size: 16px;
        margin-right: 12px;
    }
    
    .branded-sidebar .sidebar-footer {
        padding: 12px 14px;
    }
    
    /* Landscape dropdown adjustments */
    .branded-sidebar .sidebar-dropdown {
        max-height: 200px;
    }
    
    .branded-sidebar .sidebar-dropdown .dropdown-item {
        padding: 12px 18px 12px 50px;
        font-size: 14px;
        min-height: 40px;
    }
}

.navbar .contact-link:hover i,
.navbar .flag-link:hover i,
.navbar .virtual-tour-link:hover i {
    color: #feb900 !important;
}

.navbar .flag-link:hover span:first-child {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Flag styling */
.flag-link span:first-child {
    transition: transform 0.3s ease;
}

/* Responsive contact info */
@media (max-width: 768px) {
    .navbar .contact-link .visible-lg.visible-md,
    .navbar .flag-link .visible-lg.visible-md {
        display: none !important;
    }
}

/* Footer Social Media Icons */
.footer .social-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
}

.footer .social-links li {
    margin: 0;
}

.footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    font-size: 20px;
}

.footer .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.footer .social-link:hover::before {
    left: 100%;
}

.footer .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.2);
}

.footer .social-link i {
    font-size: 22px;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.footer .social-link:hover i {
    transform: scale(1.1);
}

/* Individual social media colors on hover */
.footer .social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.footer .social-link.youtube:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.footer .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: #dc2743;
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

.footer .social-link.linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

/* Footer layout styling */
.footer .copyright {
    color: rgba(255,255,255,0.8);
    margin: 0;
    padding: 15px 0;
    font-size: 14px;
}

.footer .footer-info {
    color: rgba(255,255,255,0.8);
    margin: 0;
    padding: 15px 0;
    font-size: 14px;
}

/* Footer responsive design */
@media (max-width: 768px) {
    .footer .social-links {
        gap: 20px;
        margin: 15px 0;
    }
    
    .footer .social-link {
        width: 45px;
        height: 45px;
    }
    
    .footer .social-link i {
        font-size: 20px;
    }
    
    .footer .col-md-4 {
        text-align: center !important;
        margin-bottom: 10px;
    }
}

/* Partner Organizations Styles - Matching Image Design */
.partner-organizations {
    margin-top: 30px;
    margin-bottom: 30px;
}

.partner-organizations .header.text-center {
    text-align: center;
}

.partner-organizations .header .title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.partner-organizations .header .badge {
    margin: 0 auto;
    display: inline-block;
}

/* Ensure first content section has proper spacing */
.main-panel > .content .row:first-child {
    margin-top: 20px;
}

/* Projects Grid Styling */
.projects-grid {
    margin-top: 40px;
    padding: 0 20px;
    position: relative;
}

.projects-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 146, 31, 0.3), transparent);
}

.projects-grid .row {
    margin: 0 -15px;
}

.projects-grid .col-md-4,
.projects-grid .col-sm-6 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.projects-grid .project-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.projects-grid .project-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(240, 146, 31, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

.projects-grid .project-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.projects-grid .project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.projects-grid .project-card:hover .project-image {
    transform: scale(1.05);
    filter: brightness(0.8) saturate(1.1);
}

.projects-grid .project-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    letter-spacing: -0.01em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.projects-grid .project-card:hover .project-content h3 {
    color: #f0921f;
    transform: translateY(-2px);
}

.projects-grid .project-content {
    padding: 24px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    border-radius: 0 0 20px 20px;
    position: relative;
}

/* Responsive Design for Projects Grid */
@media (max-width: 768px) {
    .projects-grid {
        padding: 0 10px;
        margin-top: 20px;
    }
    
    .projects-grid .row {
        margin: 0 -10px;
    }
    
    .projects-grid .col-md-4,
    .projects-grid .col-sm-6 {
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .projects-grid .project-card {
        height: 350px;
    }
    
    .projects-grid .project-image-container {
        height: 250px;
    }
    
    .projects-grid .project-content h3 {
        font-size: 16px;
    }
    
    .projects-grid .project-content {
        padding: 15px;
    }
    
    .projects-grid .project-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .projects-grid {
        padding: 0 5px;
    }
    
    .projects-grid .row {
        margin: 0 -5px;
    }
    
    .projects-grid .col-md-4,
    .projects-grid .col-sm-6 {
        padding: 0 5px;
        margin-bottom: 15px;
    }
    
    .projects-grid .project-card {
        height: 300px;
    }
    
    .projects-grid .project-image-container {
        height: 200px;
    }
    
    .projects-grid .project-content h3 {
        font-size: 14px;
    }
    
    .projects-grid .project-content {
        padding: 12px;
    }
    
    .projects-grid .project-content p {
        font-size: 12px;
    }
}

/* Modern Pagination Styling */
.pagination-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 8px 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 12px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(240, 146, 31, 0.1);
    color: #f0921f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 146, 31, 0.2);
}

.pagination-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(240, 146, 31, 0.3);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #f0921f 0%, #e67e22 100%);
    color: white;
    box-shadow: 
        0 4px 12px rgba(240, 146, 31, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pagination-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(240, 146, 31, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 8px;
}

.pagination-dots {
    color: #94a3b8;
    font-weight: 500;
    padding: 0 4px;
    user-select: none;
}

.pagination-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.pagination-btn:hover:not(:disabled) i {
    transform: scale(1.1);
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination-container {
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .pagination-nav {
        padding: 6px 12px;
        gap: 6px;
    }
    
    .pagination-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .pagination-numbers {
        gap: 2px;
        margin: 0 6px;
    }
}

@media (max-width: 576px) {
    .pagination-container {
        margin-top: 30px;
        padding: 0 5px;
    }
    
    .pagination-nav {
        padding: 4px 8px;
        gap: 4px;
    }
    
    .pagination-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .pagination-numbers {
        gap: 1px;
        margin: 0 4px;
    }
    
    .pagination-dots {
        font-size: 12px;
    }
}

/* Compact spacing for news section */
.news-carousel-container {
    margin-top: 5px;
}





/* Reduce spacing in card headers */
.card .header {
    margin-bottom: 15px;
}

.card .header .title {
    margin-bottom: 5px;
}

.card .header .category {
    margin-bottom: 10px;
}

/* Modern Section Headers */
.section-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 25px;
    border-left: 4px solid #F0921F;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.section-header:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F0921F 0%, #e67e22 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 3px 8px rgba(240, 146, 31, 0.3);
}

.header-text .title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.header-text .subtitle {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

.header-badge {
    display: flex;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    height: auto;
}

.badge-primary {
    background: linear-gradient(135deg, #F0921F 0%, #e67e22 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    height: auto;
    line-height: 1;
}

.badge-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    height: auto;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #F0921F 0%, #e67e22 100%);
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: auto;
    line-height: 1;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(240, 146, 31, 0.3);
}

/* Enhanced Section Separator */
.section-separator {
    display: flex;
    align-items: center;
    margin: 35px 0;
    gap: 20px;
}

.separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F0921F, transparent);
    border-radius: 1px;
}

.separator-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F0921F 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 3px 8px rgba(240, 146, 31, 0.3);
}

/* Mobile Responsive for Section Headers */
@media (max-width: 768px) {
    .section-header {
        padding: 15px 20px;
        margin-bottom: 20px;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .header-content {
        gap: 12px;
    }
    
    .header-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .header-text .title {
        font-size: 18px;
    }
    
    .header-text .subtitle {
        font-size: 12px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .section-separator {
        margin: 25px 0;
        gap: 15px;
    }
    
    .separator-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-header {
        padding: 12px 16px;
        margin-bottom: 15px;
    }
    
    .header-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .header-text .title {
        font-size: 16px;
    }
    
    .header-text .subtitle {
        font-size: 11px;
    }
    
    .btn-primary {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .badge-primary,
    .badge-success {
        padding: 4px 8px;
        font-size: 10px;
    }
}

.partner-carousel {
    position: relative;
    padding: 30px 0;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.partner-slider {
    display: flex;
    gap: 25px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 0 30px;
    margin: 0 80px;
}

.partner-card {
    min-width: 300px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: none;
    flex-shrink: 0;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.partner-logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.railway-logo {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.government-logo {
    background: linear-gradient(135deg, #3498db, #2980b9);
    width: 120px;
    height: 70px;
    border-radius: 12px;
    flex-direction: column;
}

.erdem-logo {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border: 2px solid #e5e7eb;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.soyombo-symbol {
    font-size: 28px;
    color: #fbbf24;
    margin-bottom: 5px;
}

.gov-text {
    font-size: 8px;
    color: white;
    text-align: center;
    line-height: 1.2;
    max-width: 100px;
}

.erdem-symbol {
    font-size: 32px;
    color: #fbbf24;
    font-weight: bold;
    margin-bottom: 5px;
}

.erdem-text {
    font-size: 10px;
    color: white;
    text-align: center;
}

.partner-info {
    text-align: center;
}

.partner-name {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin: 0;
    line-height: 1.4;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fbbf24;
    border: none;
    color: #6b7280;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-control:hover {
    background: #f59e0b;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-dots {
    text-align: center;
    margin-top: 25px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fbbf24;
    transform: scale(1.2);
}

.dot:nth-child(5) {
    background: #374151;
}

.dot.special {
    background: #374151 !important;
}

.dot:hover {
    background: #9ca3af;
    transform: scale(1.1);
}


/* Enhanced Footer Social Media Icons */
.footer {
    padding: 30px 0;
    margin-top: 50px;
}

.footer .copyright,
.footer .footer-info {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links li {
    margin: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-decoration: none;
}

.social-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Individual Social Media Colors */
.social-link.facebook {
    background: linear-gradient(135deg, #3b5998, #4c70ba);
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #4c70ba, #5b7bd9);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #f77737);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #f77737, #ff6b6b);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-link.twitter:hover {
    background: linear-gradient(135deg, #0d8bd9, #0a7bc7);
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #00a8ff);
}

.social-link.telegram:hover {
    background: linear-gradient(135deg, #00a8ff, #0099e6);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.youtube:hover {
    background: linear-gradient(135deg, #cc0000, #b30000);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.social-link.linkedin:hover {
    background: linear-gradient(135deg, #005885, #004d7a);
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
        margin-top: 30px;
    }

    .social-links {
        gap: 10px;
        margin: 15px 0;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link i {
        font-size: 16px;
    }

    .footer .col-md-4 {
        text-align: center !important;
        margin-bottom: 15px;
    }

    .footer .copyright,
    .footer .footer-info {
        font-size: 13px;
    }
}


.partners-container {
max-width: 1040px;
margin: 100px auto;
}
.partners-container img {
width: 100%;
height: 70px;
object-fit: contain;
}

.partners-container .single-logo {
background-color: #fff;
box-shadow: 0 4px 5px #cacaca;
border-radius: 8px;
padding: 15px;
border: 0.5px solid #111 !important;
}

.partners-container .slick-slide {
margin: 15px;
}

.slick-dots li.slick-active button:before{
color: #feb900;
}

.slick-dots li button:before{
font-size: 11px;
}

.slick-next:before,
.slick-prev:before {
color: #feb900;
font-size: 24px;
}
.single-logo:hover {
display: block;
transition: all ease 0.3s;
transform: scale(1.1) translateY(-5px);
}

@media only screen and (max-width: 768px) {
/* Adjust the styling for screens smaller than 768px */
.logo-slider img {
    width: 100%;
    max-width: none;
}
}

.single-logo:hover {
display: block;
transition: all ease 0.3s;
transform: scale(1.1) translateY(-5px);
}

/* Hero Video Section Styling - Full Screen Like Image */
.hero-video-section {
    width: 100%;
    height: 85vh;
    min-height: 600px;
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-background {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(1.1) contrast(1.1) saturate(1.05);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0) 30%, 
        rgba(0,0,0,0.1) 70%, 
        rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 100%;
}

.hero-stats {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 30px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    line-height: 1.4;
}

.hero-button {
    background: linear-gradient(135deg, #e74c3c 0%, orange 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 12px;
    /* font-weight: 600; */
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 6px 20px rgba(231, 76, 60, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button:hover {
    background: linear-gradient(135deg, #c0392b 0%, orange 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(231, 76, 60, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-button:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    max-width: 40%;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    color: #feb900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1;
}

.stat-circle {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin: 0 0 0 auto;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
    margin-top: 2px;
}

.stat-description {
    color: white;
    font-size: 14px;
    text-align: right;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    max-width: 300px;
}

/* Mobile Responsive for Hero Section */
@media (max-width: 768px) {
    .hero-video-section {
        height: 60vh;
        min-height: 400px;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .hero-overlay {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-button {
        padding: 12px 25px;
        font-size: 11px;
        border-radius: 25px;
    }

    .hero-stats {
        position: static;
        margin-top: 20px;
        text-align: center;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-circle {
        width: 70px;
        height: 70px;
        margin: 0 auto 10px;
    }

    .stat-value {
        font-size: 16px;
    }

    .stat-label {
        font-size: 9px;
    }

    .stat-description {
        text-align: center;
        font-size: 11px;
        max-width: 100%;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .hero-video-section {
        height: 50vh;
        min-height: 350px;
        margin-bottom: 15px;
    }

    .hero-overlay {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .hero-button {
        padding: 10px 20px;
        font-size: 10px;
    }

    .hero-stats {
        margin-top: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-circle {
        width: 60px;
        height: 60px;
    }

    .stat-value {
        font-size: 14px;
    }

    .stat-label {
        font-size: 8px;
    }

    .stat-description {
        font-size: 10px;
    }
}

/* Activities Carousel Styles */
.activities-section {
    margin: 40px 0;
    padding: 0 20px;
}

/* Modern Projects Section - Multiple Items Per Slide */
.projects-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 50px;
}

.projects-carousel {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 10px 0;
    cursor: grab;
}

.projects-carousel:active {
    cursor: grabbing;
}

.projects-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.project-slide {
    flex: 0 0 380px;
    min-width: 380px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: rgba(240, 146, 31, 0.2);
}

.project-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.project-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image-container img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    z-index: 2;
}

.project-overlay h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.project-overlay p {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.project-card:hover .project-overlay h3 {
    color: #feb900;
}

/* Modern Navigation Buttons for Projects */
.projects-carousel-container .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    box-shadow: 0 4px 15px rgba(240, 146, 31, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.projects-carousel-container .carousel-nav:hover {
    background: rgba(240, 146, 31, 1);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(240, 146, 31, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.projects-carousel-container .carousel-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.projects-carousel-container .carousel-nav:focus {
    outline: 2px solid rgba(240, 146, 31, 0.8);
    outline-offset: 2px;
}

.projects-carousel-container .carousel-nav.prev-btn {
    left: 10px;
}

.projects-carousel-container .carousel-nav.next-btn {
    right: 10px;
}

.projects-carousel-container .carousel-nav i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.projects-carousel-container .carousel-nav:hover i {
    transform: scale(1.1);
}

/* Legacy styles for backward compatibility */
.activities-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Roboto Condensed', sans-serif;
}

.activities-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.activities-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    cursor: grab;
}

.activities-slider:active {
    cursor: grabbing;
}

.activities-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.activity-card {
    flex: 0 0 380px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.activity-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.card-overlay p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-nav.prev-btn {
    left: 10px;
}

.carousel-nav.next-btn {
    right: 10px;
}

.carousel-nav i {
    font-size: 16px;
    color: #333;
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Projects Carousel */
@media (max-width: 768px) {
    .projects-carousel-container {
        padding: 0 30px;
        margin: 0 -10px;
    }
    
    .project-slide {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .project-card {
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .project-image-container {
        height: 160px;
    }
    
    .project-overlay {
        padding: 12px;
    }
    
    .project-overlay h3 {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .project-overlay p {
        font-size: 11px;
    }
    
    .projects-carousel-container .carousel-nav {
        width: 35px;
        height: 35px;
    }
    
    .projects-carousel-container .carousel-nav.prev-btn {
        left: 5px;
    }
    
    .projects-carousel-container .carousel-nav.next-btn {
        right: 5px;
    }
    
    .projects-carousel-container .carousel-nav i {
        font-size: 12px;
    }

    .activities-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .activity-card {
        flex: 0 0 280px;
        height: 180px;
    }

    .card-overlay h3 {
        font-size: 14px;
    }

    .card-overlay p {
        font-size: 11px;
    }

    .carousel-nav {
        width: 32px;
        height: 32px;
    }

    .carousel-nav i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .projects-carousel-container {
        padding: 0 20px;
        margin: 0 -5px;
    }
    
    .project-slide {
        flex: 0 0 240px;
        min-width: 240px;
    }
    
    .project-image-container {
        height: 140px;
    }
    
    .project-overlay {
        padding: 10px;
    }
    
    .project-overlay h3 {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .project-overlay p {
        font-size: 10px;
    }
    
    .projects-carousel-container .carousel-nav {
        width: 30px;
        height: 30px;
    }
    
    .projects-carousel-container .carousel-nav.prev-btn {
        left: 2px;
    }
    
    .projects-carousel-container .carousel-nav.next-btn {
        right: 2px;
    }
    
    .projects-carousel-container .carousel-nav i {
        font-size: 10px;
    }

    .activities-section {
        padding: 0 5px;
    }

    .activity-card {
        flex: 0 0 260px;
        height: 160px;
    }

    .card-overlay h3 {
        font-size: 13px;
    }

    .card-overlay p {
        font-size: 10px;
    }

    .carousel-nav {
        width: 28px;
        height: 28px;
    }

    .carousel-nav.prev-btn {
        left: 2px;
    }

    .carousel-nav.next-btn {
        right: 2px;
    }

    .carousel-nav i {
        font-size: 10px;
    }
}

/* HR Page Styles */
.page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.breadcrumb-nav {
    color: #666;
    font-size: 14px;
}

.breadcrumb-separator {
    margin: 0 10px;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 500;
}

/* Tab Navigation */
.hr-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background: #e0e0e0;
}

.tab-btn.active {
    background: #F0921F;
    color: white;
}

/* Tab Content */
.tab-content {
    min-height: 400px;
    background: transparent;
}

.tab-pane {
    display: none;
    background: transparent;
}

.tab-pane.active {
    display: block;
    background: transparent;
}

/* HR Overview Content */
.hr-overview-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: stretch;
    margin: 40px 0;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure proper grid item behavior */
.hr-overview-content > * {
    min-width: 0; /* Prevent grid items from overflowing */
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.overview-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 15px 20px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-item.active .accordion-header {
    background: #F0921F;
    color: white;
}

.accordion-title {
    font-weight: 500;
    font-size: 14px;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

/* Company History Styling - Horizontal Timeline with Orange Theme */
.company-history-content {
    padding: 20px 0;
    background: transparent;
}

/* Timeline styles are handled by timeline-updated.css */

/* Year Events Grouping Styles */
.year-events {
    margin-top: 20px;
}

.event-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border-left: 4px solid #F0921F;
    border: 1px solid rgba(240, 146, 31, 0.2);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(240, 146, 31, 0.3);
}

.event-item h3 {
    color: #1a202c;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.event-item p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Goals Grid Styling */
.goals-content {
    padding: 20px 0;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.goal-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(240, 146, 31, 0.15);
    border-color: #F0921F;
}

.goal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F0921F 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(240, 146, 31, 0.3);
}

.goal-item h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.goal-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Management Member Cards (Удирдлагын мэдээлэл) */
.management-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
}

@media (max-width: 992px) {
    .management-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 680px) {
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.management-member-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: none;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.management-member-card:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}

.management-member-photo {
    width: 100%;
    aspect-ratio: 5 / 4;
    position: relative;
    background: #e5e7eb;
    overflow: hidden;
    flex-shrink: 0;
}

.management-member-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.management-member-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d1d5db;
    color: #9ca3af;
    font-size: 48px;
}

.management-member-info {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: white;
}

.management-member-name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.management-member-position {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin: 0;
    line-height: 1.3;
}

.management-member-description {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.5;
    margin: 6px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Management Member Detail Page */
.member-detail-content {
    display: flex !important;
    flex-direction: row !important;
    gap: 32px;
    align-items: flex-start;
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 16px;
}

.member-detail-photo {
    flex-shrink: 0 !important;
    width: 240px !important;
    max-width: 240px !important;
}

.member-detail-photo img {
    width: 100% !important;
    height: auto !important;
    max-width: 240px !important;
    border-radius: 12px;
    object-fit: cover;
    object-position: center top;
    display: block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.member-detail-body {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    min-width: 0;
}

.member-detail-body p {
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .member-detail-content {
        flex-direction: column !important;
        padding: 20px;
    }

    .member-detail-photo {
        width: 180px !important;
        max-width: 180px !important;
    }

    .member-detail-photo img {
        max-width: 180px !important;
    }
}

/* Strategy Section Styling */
.strategy-content {
    padding: 20px 0;
}

.strategy-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.strategy-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.strategy-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.strategy-info h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.strategy-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* HR Documents List */
.hr-documents-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.document-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.document-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.document-info {
    flex: 1;
    margin-right: 20px;
}

.document-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.document-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.document-date {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.view-btn {
    background: #F0921F;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #F0921F;
    transform: translateY(-1px);
}

.view-btn i {
    font-size: 14px;
}

/* Positions Table */
.positions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    /* padding-bottom: 15px;
    border-bottom: 2px solid #F0921F; */
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.total-count {
    background: #F0921F;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.positions-table-container {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.positions-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.positions-table th {
    background: #f8f9fa;
    padding: 15px 12px;
    text-align: left;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #F0921F;
    font-size: 12px;
    white-space: nowrap;
}

.positions-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 13px;
    vertical-align: top;
}

.positions-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.positions-table tbody tr:hover {
    background: #e3f2fd;
}

.status-open {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

/* Rules Content */
.rules-content {
    padding: 20px 0;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rule-item {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.rule-item h4 {
    color: #dc3545;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.rule-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Download Content */
.download-content {
    padding: 20px 0;
}

.download-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.download-info h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.download-info p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.download-btn {
    background: #f5f5f5;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #e0e0e0;
}

.download-btn i {
    color: #dc3545;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hr-overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 30px 0;
        padding: 0 15px;
        align-items: stretch;
    }
    
    .company-description-section {
        padding: 15px 0;
    }
    
    .company-description-section .company-description-text {
        padding: 25px;
    }
    
    .hr-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: center;
    }
    
    .positions-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .download-item {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .page-title {
        font-size: 2rem;
    }
}





/* ========================================
   PARTNERS SLIDER MOBILE RESPONSIVENESS
   ======================================== */

/* Base partners slider styles */
.partners-slider-container {
    position: relative;
    padding: 30px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.9) 100%);
    border-radius: 20px;
    margin: 20px 0;
}

.partners-slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 30px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.partners-slider::-webkit-scrollbar {
    display: none;
}

.partner-item {
    flex: 0 0 200px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.06),
        0 3px 8px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 146, 31, 0.02) 0%, rgba(240, 146, 31, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.partner-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(240, 146, 31, 0.2);
}

.partner-item:hover::before {
    opacity: 1;
}

.partner-logo {
    width: 150px;
    height: 100px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 146, 31, 0.05) 0%, rgba(240, 146, 31, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.partner-item:hover .partner-logo {
    transform: scale(1.05);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.partner-item:hover .partner-logo::before {
    opacity: 1;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    background: transparent;
    mix-blend-mode: multiply;
}

/* Enhanced styling for white background PNGs */
.partner-logo img[src*=".png"] {
    background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
    padding: 8px;
    border-radius: 12px;
    mix-blend-mode: normal;
}

.partner-item:hover .partner-logo img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Logo placeholder styling */
.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0921F 0%, #e67e22 100%);
    color: white;
    font-weight: 700;
    font-size: 18px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(240, 146, 31, 0.3);
    transition: all 0.3s ease;
}

.partner-item:hover .logo-placeholder {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(240, 146, 31, 0.4);
}

.partner-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    text-align: center;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #F0921F;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 14px;
}

.slider-nav:hover {
    background: #e0821a;
    transform: translateY(-50%) scale(1.1);
}

.prev-partners {
    left: 15px;
}

.next-partners {
    right: 15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #F0921F;
    transform: scale(1.2);
}

.dot:hover {
    background: #9ca3af;
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .partners-slider-container {
        padding: 20px 15px;
        touch-action: pan-x;
        margin: 15px 0;
    }
    
    .partners-slider {
        gap: 20px;
        padding: 20px 0;
        margin: 0 15px;
        scroll-padding: 0 15px;
    }

    .partner-item {
        flex: 0 0 180px;
        padding: 20px 15px;
        border-radius: 14px;
        min-width: 180px;
    }

    .partner-item:hover {
        transform: translateY(-6px) scale(1.01);
    }

    .partner-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }

    .partner-name {
        font-size: 13px;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .prev-partners {
        left: 10px;
    }

    .next-partners {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .partners-slider-container {
        padding: 15px 10px;
        touch-action: pan-x;
        margin: 10px 0;
    }
    
    .partners-slider {
        gap: 20px;
        margin: 0 10px;
        scroll-padding: 0 10px;
    }

    .partner-item {
        flex: 0 0 150px;
        padding: 18px 12px;
        border-radius: 12px;
        min-width: 150px;
    }

    .partner-item:hover {
        transform: translateY(-4px) scale(1.01);
    }

    .partner-logo {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }

    .partner-name {
        font-size: 12px;
    }

    .slider-nav {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }

    .prev-partners {
        left: 8px;
    }

    .next-partners {
        right: 8px;
    }

    .slider-dots {
        margin-top: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* ========================================
   ENHANCED SIDEBAR RESPONSIVENESS FIXES
   ======================================== */

/* Base sidebar positioning and z-index */
.branded-sidebar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    height: 100vh !important;
    z-index: 1050 !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Desktop (1025px and above) - Always visible */
@media (min-width: 1025px) {
    .branded-sidebar {
        width: 260px !important;
        transform: translateX(-100%) !important;
        position: fixed !important;
        visibility: visible !important;
    }
    
    .branded-sidebar:not(.collapsed) {
        transform: translateX(0) !important;
        visibility: visible !important;
    }
    
    .branded-sidebar.collapsed {
        transform: translateX(-100%) !important;
    }
    
    .main-panel {
        margin-left: 260px !important;
        width: calc(100% - 260px) !important;
    }
    
    .sidebar-toggle-tablet {
        display: none !important;
    }
    
    .sidebar-overlay {
        display: none !important;
    }
}

/* Tablet (769px to 1024px) - Collapsible with toggle */
@media (min-width: 769px) and (max-width: 1024px) {
    .branded-sidebar {
        width: 260px !important;
        transform: translateX(-100%) !important;
    }
    
    .branded-sidebar:not(.collapsed) {
        transform: translateX(0) !important;
    }
    
    .branded-sidebar.visible {
        transform: translateX(-100%) !important;
        visibility: visible !important;
    }
    
    .branded-sidebar.collapsed {
        transform: translateX(-100%) !important;
    }
    
    
    .main-panel {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    .sidebar-toggle-tablet {
        display: flex !important;
        position: fixed !important;
        top: 20px !important;
        left: 20px !important;
        z-index: 1060 !important;
        width: 45px !important;
        height: 45px !important;
        background: linear-gradient(135deg, #ED5D37 0%, #F06B45 100%) !important;
        border: none !important;
        border-radius: 50% !important;
        color: white !important;
        font-size: 16px !important;
        cursor: pointer !important;
        box-shadow: 0 3px 15px rgba(255, 122, 24, 0.3) !important;
        transition: all 0.3s ease !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .sidebar-toggle-tablet:hover {
        background: linear-gradient(135deg, #D44A2A 0%, #ED5D37 100%) !important;
        transform: scale(1.05) !important;
        box-shadow: 0 4px 20px rgba(255, 122, 24, 0.4) !important;
    }
    
    .sidebar-visible .sidebar-toggle-tablet {
        display: none !important;
    }
    
    .sidebar-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.4) !important;
        z-index: 990 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    .sidebar-overlay.visible {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Mobile (768px and below) - Slide-in with overlay */
@media (max-width: 768px) {
    .branded-sidebar {
        width: 280px !important;
        transform: translateX(-100%) !important;
        z-index: 1050 !important;
    }
    
    .branded-sidebar.collapsed {
        transform: translateX(-100%) !important;
    }
    
    .branded-sidebar:not(.collapsed) {
        transform: translateX(-100%) !important;
    }
    
    .branded-sidebar.visible {
        transform: translateX(0) !important;
        visibility: visible !important;
    }
    
    .branded-sidebar.show {
        transform: translateX(-100%) !important;
    }
    
    .main-panel {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    .sidebar-toggle-tablet {
        display: none !important;
    }
    
    .sidebar-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 990 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    .sidebar-overlay.visible {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Mobile sidebar toggle button in navbar */
    .sidebar-toggle {
        display: block !important;
        position: relative !important;
        z-index: 1040 !important;
        background: none !important;
        border: none !important;
        color: #333 !important;
        font-size: 18px !important;
        padding: 8px 12px !important;
        cursor: pointer !important;
    }
    
    .sidebar-toggle:hover {
        color: #FF7A18 !important;
    }
    
    /* Prevent body scroll when sidebar is open on mobile */
    body.sidebar-visible {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Ensure scrolling is restored when sidebar is closed */
    body:not(.sidebar-visible) {
        overflow: auto !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
    }
    
    /* Ensure mobile navbar stays visible when sidebar is open */
    body.sidebar-visible .mobile-navbar {
        display: block !important;
        z-index: 10000 !important;
    }
    
    /* Ensure mobile navbar is always visible on mobile */
    .mobile-navbar {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10000 !important;
    }
}

/* Small mobile (480px and below) - Narrower sidebar */
@media (max-width: 480px) {
    .branded-sidebar {
        width: 260px !important;
    }
    
    .branded-sidebar .logo-section {
        padding: 16px 12px !important;
    }
    
    .branded-sidebar .brand-logo {
        width: 35px !important;
        height: 35px !important;
    }
    
    .branded-sidebar .company-name {
        font-size: 13px !important;
    }
    
    .branded-sidebar .company-subtitle {
        font-size: 10px !important;
    }
    
    .branded-sidebar .branded-nav {
        padding: 16px 12px 0 12px !important;
    }
    
    .branded-sidebar .nav-link {
        padding: 12px 16px !important;
        margin-bottom: 6px !important;
    }
    
    .branded-sidebar .nav-text {
        font-size: 12px !important;
    }
    
    .branded-sidebar .nav-icon {
        width: 16px !important;
        height: 16px !important;
    }
}

/* Extra small mobile (360px and below) - Even more compact */
@media (max-width: 360px) {
    .branded-sidebar {
        width: 240px !important;
    }
    
    .branded-sidebar .logo-section {
        padding: 14px 10px !important;
    }
    
    .branded-sidebar .brand-logo {
        width: 32px !important;
        height: 32px !important;
    }
    
    .branded-sidebar .company-name {
        font-size: 12px !important;
    }
    
    .branded-sidebar .company-subtitle {
        font-size: 9px !important;
    }
    
    .branded-sidebar .branded-nav {
        padding: 14px 10px 0 10px !important;
    }
    
    .branded-sidebar .nav-link {
        padding: 10px 14px !important;
        margin-bottom: 4px !important;
    }
    
    .branded-sidebar .nav-text {
        font-size: 11px !important;
    }
    
    .branded-sidebar .nav-icon {
        width: 14px !important;
        height: 14px !important;
    }
}

/* Smooth transitions for all sidebar states */
.branded-sidebar,
.sidebar-overlay {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Ensure proper stacking context */
.branded-sidebar {
    will-change: transform !important;
}

/* Fix for dropdown menus in mobile sidebar */
@media (max-width: 768px) {
    .branded-sidebar .sidebar-dropdown {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 0 !important;
        background-color: rgba(0, 0, 0, 0.1) !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 8px !important;
        margin: 4px 0 !important;
    }
    
    .branded-sidebar .sidebar-dropdown .dropdown-item {
        padding: 12px 20px 12px 50px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .branded-sidebar .sidebar-dropdown .dropdown-item:last-child {
        border-bottom: none !important;
    }
    
    .branded-sidebar .sidebar-dropdown .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
    }
}

/* ========================================
   MOBILE NAVBAR STYLING
   ======================================== */

/* Mobile navbar - only visible on mobile */
.mobile-navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.92) 25%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(248, 250, 252, 0.92) 75%,
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(24px) saturate(1.2) brightness(1.05);
    -webkit-backdrop-filter: blur(24px) saturate(1.2) brightness(1.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        0 4px 32px rgba(0, 0, 0, 0.06),
        0 2px 16px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(240, 146, 31, 0.1);
    z-index: 9999 !important;
    padding: 0 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.mobile-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(240, 146, 31, 0.05), 
        transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.mobile-navbar:hover::before {
    left: 100%;
}

.mobile-navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 100%;
}

/* Mobile sidebar toggle button */
.mobile-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ED5D37 0%, #F06B45 50%, #F37B5D 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 2px 8px rgba(255, 122, 24, 0.2),
        0 1px 4px rgba(255, 122, 24, 0.1);
    position: relative;
    overflow: hidden;
}

.mobile-sidebar-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar-toggle:hover {
    background: linear-gradient(135deg, #D44A2A 0%, #ED5D37 50%, #F06B45 100%);
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(255, 122, 24, 0.3),
        0 2px 6px rgba(255, 122, 24, 0.2);
}

.mobile-sidebar-toggle:hover::before {
    opacity: 1;
}

.mobile-sidebar-toggle:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 
        0 1px 4px rgba(255, 122, 24, 0.2);
}

/* Hamburger icon styling */
.mobile-sidebar-toggle i {
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s ease;
}

.mobile-sidebar-toggle:hover i {
    transform: scale(1.1);
}

/* Mobile logo container */
.mobile-logo-container {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(248, 250, 252, 0.7) 50%,
        rgba(255, 255, 255, 0.8) 100%);
    border-radius: 16px;
    border: 1px solid rgba(240, 146, 31, 0.15);
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.mobile-logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(240, 146, 31, 0.08), 
        transparent);
    transition: left 0.5s ease;
}

.mobile-logo-container:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.8) 50%,
        rgba(255, 255, 255, 0.9) 100%);
    border-color: rgba(240, 146, 31, 0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mobile-logo-container:hover::before {
    left: 100%;
}

.mobile-logo {
    width: 38px;
    height: 38px;
    margin-right: 12px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px;
}

.mobile-logo-container:hover .mobile-logo {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
}

.mobile-brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    text-align: center;
}

.mobile-company-name {
    font-size: 14px;
    font-weight: 900;
    color: #1a202c;
    line-height: 1.0;
    margin: 0 0 2px 0;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.mobile-logo-container:hover .mobile-company-name {
    color: #2d3748;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.mobile-company-subtitle {
    font-size: 10px;
    font-weight: 700;
    color: #f0921f;
    line-height: 1.0;
    margin: 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(240, 146, 31, 0.2);
}

.mobile-logo-container:hover .mobile-company-subtitle {
    color: #e67e22;
    text-shadow: 0 2px 4px rgba(240, 146, 31, 0.3);
}

/* Mobile navigation actions */
.mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, 
        rgba(240, 146, 31, 0.12) 0%, 
        rgba(240, 146, 31, 0.08) 50%,
        rgba(240, 146, 31, 0.12) 100%);
    border: 1px solid rgba(240, 146, 31, 0.25);
    border-radius: 12px;
    color: #f0921f;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 3px 12px rgba(240, 146, 31, 0.18),
        0 1px 4px rgba(240, 146, 31, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.mobile-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.mobile-contact-btn:hover::before {
    left: 100%;
}

.mobile-contact-btn:hover {
    background: linear-gradient(135deg, 
        rgba(240, 146, 31, 0.18) 0%, 
        rgba(240, 146, 31, 0.12) 50%,
        rgba(240, 146, 31, 0.18) 100%);
    border-color: rgba(240, 146, 31, 0.35);
    color: #e67e22;
    text-decoration: none;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 24px rgba(240, 146, 31, 0.3),
        0 4px 12px rgba(240, 146, 31, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mobile-contact-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 4px 12px rgba(240, 146, 31, 0.2),
        0 2px 6px rgba(240, 146, 31, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Show mobile navbar only on mobile devices */
@media (max-width: 768px) {
    
    .mobile-navbar {
        display: block !important;
        animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999 !important;
    }
    
    /* Enhanced mobile sidebar */
    .sidebar {
        width: 280px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 10000;
    }
    
    .sidebar.visible {
        transform: translateX(0);
    }
    
    /* Mobile sidebar overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .sidebar-overlay.visible {
        opacity: 1;
        visibility: visible;
    }
    
    /* Enhanced mobile navigation items */
    .sidebar .nav-link {
        padding: 16px 20px;
        font-size: 15px;
        border-radius: 8px;
        margin: 4px 12px;
        transition: all 0.3s ease;
    }
    
    .sidebar .nav-link:hover {
        background: rgba(240, 146, 31, 0.1);
        transform: translateX(4px);
    }
    
    .sidebar .nav-link.active {
        background: linear-gradient(135deg, #ED5D37 0%, #F06B45 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(237, 93, 55, 0.3);
    }
    
    /* Mobile navigation icons */
    .sidebar .nav-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
    }
    
    /* Hide the regular navbar on mobile */
    .navbar-fixed-top {
        display: none !important;
    }
    
    /* Adjust main content padding for mobile navbar */
    .main-panel > .content {
        padding-top: 84px !important;
    }
    
    /* Ensure mobile navbar stays on top */
    .mobile-navbar {
        z-index: 9999 !important;
    }
    
    /* Add enhanced scroll effect */
    .mobile-navbar.scrolled {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(248, 250, 252, 0.95) 25%,
            rgba(255, 255, 255, 0.98) 50%,
            rgba(248, 250, 252, 0.95) 75%,
            rgba(255, 255, 255, 0.98) 100%);
        backdrop-filter: blur(28px) saturate(1.3) brightness(1.08);
        -webkit-backdrop-filter: blur(28px) saturate(1.3) brightness(1.08);
        box-shadow: 
            0 6px 32px rgba(0, 0, 0, 0.1),
            0 4px 16px rgba(0, 0, 0, 0.06),
            0 2px 8px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.9),
            inset 0 -1px 0 rgba(240, 146, 31, 0.15);
        border-bottom: 1px solid rgba(240, 146, 31, 0.1);
    }
}

/* Mobile navbar slide down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced animations for mobile navbar elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Add staggered animation delays for navbar elements */
.mobile-navbar-content > * {
    animation: fadeInUp 0.6s ease-out forwards;
}

.mobile-sidebar-toggle {
    animation-delay: 0.1s;
}

.mobile-logo-container {
    animation-delay: 0.2s;
}

.mobile-nav-actions {
    animation-delay: 0.3s;
}

.mobile-nav-actions .mobile-contact-btn:nth-child(1) {
    animation-delay: 0.4s;
}

.mobile-nav-actions .mobile-contact-btn:nth-child(2) {
    animation-delay: 0.5s;
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .mobile-navbar {
        height: 65px;
        padding: 0 12px;
    }
    
    .sidebar {
        width: 260px;
    }
    
    .mobile-sidebar-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 6px;
    }
    
    .mobile-logo-container {
        padding: 8px 12px;
        margin: 0 12px;
        border-radius: 14px;
    }
    
    .mobile-logo {
        width: 34px;
        height: 34px;
        margin-right: 10px;
    }
    
    .mobile-company-name {
        font-size: 13px;
        font-weight: 900;
    }
    
    .mobile-company-subtitle {
        font-size: 9px;
        letter-spacing: 0.6px;
    }
    
    .mobile-contact-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .mobile-nav-actions {
        gap: 6px;
    }
    
    .main-panel > .content {
        padding-top: 80px !important;
    }
}

/* Extra small mobile adjustments */
@media (max-width: 360px) {
    .mobile-navbar {
        height: 56px;
        padding: 0 8px;
    }
    
    .mobile-logo-container {
        min-width: 160px;
        max-width: 200px;
        padding: 8px 12px;
    }
    
    .mobile-company-name {
        font-size: 12px;
    }
    
    .mobile-company-subtitle {
        font-size: 8px;
    }
    
    .mobile-logo {
        width: 28px;
        height: 28px;
        margin-right: 6px;
    }
    
    .mobile-sidebar-toggle {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    
    .main-panel > .content {
        padding-top: 76px !important;
    }
}

/* Accessibility and touch improvements */
.mobile-sidebar-toggle:focus,
.mobile-contact-btn:focus {
    outline: 2px solid rgba(240, 146, 31, 0.6);
    outline-offset: 2px;
}


/* Clickable Project Cards */
.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.project-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.project-card-link:hover .project-card {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.project-card-link:hover .project-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.project-card-link:hover .view-more-btn {
    opacity: 1;
    transform: translateY(0);
}

.view-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 146, 31, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.view-more-btn i {
    font-size: 12px;
}

/* Clickable News Cards */
.news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.news-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-3px);
}

.news-card-link:hover .news-card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-card-link:hover .news-title {
    color: #f0921f;
}

/* Success Message Styling */
.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.alert-success .d-flex {
    align-items: center;
}

.alert-success .fa-check-circle {
    color: #28a745;
    font-size: 18px;
    margin-right: 12px;
}

.alert-success .btn-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #6c757d;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.alert-success .btn-close:hover {
    opacity: 1;
}

/* Enhanced mobile sidebar accessibility */
@media (max-width: 768px) {
    .sidebar {
        /* Ensure sidebar is accessible */
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Improve touch targets */
    .sidebar .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
    }
    
    /* Add focus indicators for keyboard navigation */
    .sidebar .nav-link:focus {
        outline: 2px solid #f0921f;
        outline-offset: -2px;
    }
    
    /* Smooth scrolling for sidebar content */
    .sidebar-wrapper {
        scroll-behavior: smooth;
    }
}

.mobile-sidebar-toggle:focus-visible,
.mobile-contact-btn:focus-visible {
    outline: 2px solid #f0921f;
    outline-offset: 2px;
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
    .mobile-sidebar-toggle,
    .mobile-contact-btn {
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Add haptic feedback simulation */
    .mobile-sidebar-toggle:active,
    .mobile-contact-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .mobile-navbar {
        background: linear-gradient(135deg, 
            rgba(26, 32, 44, 0.95) 0%, 
            rgba(45, 55, 72, 0.92) 25%,
            rgba(26, 32, 44, 0.95) 50%,
            rgba(45, 55, 72, 0.92) 75%,
            rgba(26, 32, 44, 0.95) 100%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-logo-container {
        background: linear-gradient(135deg, 
            rgba(45, 55, 72, 0.8) 0%, 
            rgba(26, 32, 44, 0.7) 50%,
            rgba(45, 55, 72, 0.8) 100%);
        border: 1px solid rgba(240, 146, 31, 0.2);
    }
    
    .mobile-company-name {
        color: #f7fafc;
    }
    
    .mobile-company-subtitle {
        color: #f0921f;
    }
}

/* Hide mobile navbar on tablet and desktop */
@media (min-width: 769px) {
    .mobile-navbar {
        display: none !important;
    }
    
    .navbar-fixed-top {
        display: block !important;
    }
    
    .main-panel > .content {
        padding-top: 20px !important;
    }
}

/* ===========================================
   NEWS PAGE STYLES
   =========================================== */

/* Featured News Section - Improved Layout */
.featured-news-section {
    margin-bottom: 3rem;
    padding: 0 1rem;
    position: relative;
}

.featured-news-section::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 146, 31, 0.3), transparent);
}

/* More specific selectors to ensure styles are applied */
.content .featured-news-container {
    min-height: 350px !important;
    max-height: 450px !important;
    gap: 1.5rem !important;
    display: grid !important;
    grid-template-columns: 1.5fr 1fr !important;
    align-items: stretch !important;
}

.content .featured-news-content {
    padding: 1.5rem !important;
    justify-content: flex-start !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.content .featured-news-title {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-top: 0 !important;
    margin-bottom: 0.75rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    text-align: left !important;
    color: #ffffff !important;
}

.content .featured-news-excerpt {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.5 !important;
    color: #666 !important;
}

.content .featured-news-meta {
    margin-bottom: 0.5rem !important;
}

.featured-news-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    min-height: 350px !important;
    max-height: 450px !important;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.featured-news-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.featured-news-link:hover .featured-news-image img {
    transform: scale(1.05);
    filter: blur(3px);
}

.featured-news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 0 12px 12px 0;
    gap: 1.5rem;
}


.featured-news-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

/* Featured news date - overlaid on image */
.featured-news-image .news-date {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #ED5D37 0%, #F06B45 50%, #D44A2A 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 122, 24, 0.3);
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    z-index: 10 !important;
}

/* Regular news cards date - overlaid on image */
.news-card-image .news-date {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #ED5D37 0%, #F06B45 50%, #D44A2A 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 122, 24, 0.3);
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    z-index: 10 !important;
}

/* Override any parent hover effects that might hide the featured news date */
.featured-news-container:hover .featured-news-image .news-date,
.featured-news-content:hover .featured-news-image .news-date,
.featured-news-meta:hover .featured-news-image .news-date,
.featured-news-container .featured-news-image .news-date,
.featured-news-content .featured-news-image .news-date,
.featured-news-meta .featured-news-image .news-date {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

/* Force featured news date to always be visible */
.featured-news-section .featured-news-image .news-date {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    position: absolute !important;
    z-index: 999 !important;
}

/* Override any parent hover effects that might hide the news cards date */
.news-card:hover .news-card-image .news-date,
.news-card-content:hover .news-card-image .news-date,
.news-card-meta:hover .news-card-image .news-date,
.news-card .news-card-image .news-date,
.news-card-content .news-card-image .news-date,
.news-card-meta .news-card-image .news-date {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

/* Force news cards date to always be visible */
.news-grid .news-card-image .news-date {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    position: absolute !important;
    z-index: 999 !important;
}

.news-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-share span {
    color: #666;
    font-size: 0.9rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.share-btn i {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    width: 14px;
    height: 14px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.share-btn.facebook {
    background: #1877f2;
}

.share-btn.x-twitter {
    background: #000000;
}

.share-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.share-btn.facebook:hover {
    background: #166fe5;
}

.share-btn.x-twitter:hover {
    background: #333333;
}

.featured-news-title {
    font-size: 2.0rem !important;
    font-weight: 600 !important;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: left;
}

.featured-news-excerpt {
    color: #666;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.85rem !important;
}

.read-more-btn {
    background: #f59e0b;
    color: #fff;
    padding: 1.0rem 1.5rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 1.1rem;
}

.read-more-btn:hover {
    background: #f59e0b;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* News Grid Section */
.news-grid-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    padding: 0 20px;
}

/* Category Filters */
.category-filters {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.filter-btn {
    padding: 0.5rem 2rem;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #666;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.filter-btn:hover {
    border-color: #ED5D37;
    color: #FF7A18;
    background: rgba(255, 122, 24, 0.05);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #ED5D37 0%, #F06B45 50%, #D44A2A 100%);
    border-color: #ED5D37;
    color: white;
    box-shadow: 0 2px 8px rgba(255, 122, 24, 0.3);
}

.filter-btn.active:hover {
    background: linear-gradient(135deg, #D44A2A 0%, #ED5D37 50%, #F06B45 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 122, 24, 0.4);
}

/* Filter Animation */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 70px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.view-btn.active,
.view-btn:hover {
    background: #F0921F;
    color: #fff;
    border-color: #F0921F;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.category-tag {
    background: #007bff;
    color: #fff;
    padding: 0.50rem 1.5rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.news-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    gap: 0;
}

.news-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0.75rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-height: 9.6rem;
    flex: 1;
    padding: 15px;
    padding-top: 15px;
}

.news-excerpt {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.9rem;
    flex: 1;
}

.read-more-link {
    color: #dc3545;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #c82333;
    text-decoration: none;
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
}

/* News Page Responsive Design - Improved */
@media (max-width: 768px) {
    /* Hide the entire featured news section on mobile */
    .featured-news-section {
        display: none !important;
    }
    
    .featured-news-container {
        display: flex !important;
        flex-direction: column !important;
        min-height: auto !important;
        max-height: none !important;
        gap: 0 !important;
        grid-template-columns: 1fr !important;
        padding: 0 !important;
    }

    .featured-news-content {
        padding: 1rem !important;
        border-radius: 0 0 12px 12px !important;
        gap: 1rem !important;
        width: 100% !important;
        flex-shrink: 0 !important;
        min-height: 200px !important;
    }

    .featured-news-overlay .featured-news-title {
        font-size: 1.4rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.3 !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 0 8px rgba(255, 255, 255, 0.3) !important;
        letter-spacing: 0.3px !important;
    }

    .read-more-overlay {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        margin-top: 1.2rem !important;
        font-weight: 800 !important;
        border-radius: 30px !important;
        box-shadow: 0 4px 15px rgba(237, 93, 55, 0.6) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    }
    
    .featured-news-overlay {
        padding: 20px !important;
        transform: translateY(100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        min-height: 45% !important;
    }

    .featured-news-link:hover .featured-news-overlay {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .featured-news-link:hover .featured-news-image img {
        filter: blur(3px) !important;
    }

    .facebook-page-container {
        height: 250px !important;
        margin-top: 0 !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    /* Improve mobile news card styling */
    .news-card {
        margin-bottom: 1rem;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }
    
    .news-card-image {
        height: 180px;
        border-radius: 0;
    }
    
    .news-card-content {
        padding: 1rem;
    }
    
    .news-title {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    /* Mobile overrides for existing news card elements */
    .news-category {
        bottom: 0.5rem !important;
        left: 0.5rem !important;
    }
    
    .category-tag {
        padding: 0.25rem 0.75rem !important;
        font-size: 0.75rem !important;
        border-radius: 12px !important;
    }
    
    /* Improve section header and filters for mobile */
    .section-header {
        padding: 1rem 10px;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .category-filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 20px;
        background: #f5f5f5;
        border: 1px solid #ddd;
        color: #666;
        transition: all 0.2s ease;
    }
    
    .filter-btn.active {
        background: #F0921F;
        color: white;
        border-color: #F0921F;
    }

    /* Ensure proper spacing and visibility on mobile */
    .featured-news-section {
        padding: 0 0.5rem !important;
        margin-bottom: 2rem !important;
    }

    /* Additional mobile optimizations */
    .featured-news-link {
        display: block !important;
        width: 100% !important;
    }

    .featured-news-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Ensure Facebook content is properly contained */
    .facebook-page-container .fb-page {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Extra small mobile screens (phones in portrait) */
@media (max-width: 480px) {
    /* Hide the entire featured news section on small mobile screens too */
    .featured-news-section {
        display: none !important;
    }
    
    /* Enhanced mobile news card styling for small screens */
    .news-grid {
        gap: 1rem;
        padding: 0 5px;
    }
    
    .news-card {
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }
    
    .news-card-image {
        height: 160px;
    }
    
    .news-card-content {
        padding: 0.75rem;
    }
    
    .news-title {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    /* Small mobile overrides for existing news card elements */
    .news-category {
        bottom: 0.25rem !important;
        left: 0.25rem !important;
    }
    
    .category-tag {
        padding: 0.2rem 0.5rem !important;
        font-size: 0.7rem !important;
        border-radius: 10px !important;
    }
    
    /* Improve section header for small mobile */
    .section-header {
        padding: 0.75rem 5px;
        margin-bottom: 0.75rem;
    }
    
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .category-filters {
        gap: 0.25rem;
    }
    
    .filter-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    .featured-news-content {
        padding: 0.75rem !important;
        min-height: 180px !important;
    }

    .featured-news-overlay .featured-news-title {
        font-size: 1.1rem !important;
    }

    .facebook-page-container {
        height: 200px !important;
    }

    .featured-news-section {
        padding: 0 0.25rem !important;
    }
}

/* Tablet responsive design */
@media (max-width: 1024px) and (min-width: 769px) {
    .featured-news-container {
        grid-template-columns: 1.3fr 1fr !important;
        gap: 1rem !important;
        min-height: 300px !important;
        max-height: 400px !important;
    }

    .featured-news-title {
        font-size: 1.6rem !important;
    }

    .facebook-page-container {
        height: 350px;
    }
}

    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }


/* Ensure footer stays at bottom of content, not screen */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* Language Switcher Styles */
.sidebar-language-switcher {
    position: relative;
    margin: 16px 20px 20px 20px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.sidebar-language-switcher:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.language-switcher-label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.language-switcher-label i {
    margin-right: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.language-form {
    margin: 0;
}

.language-select-container {
    position: relative;
    width: 100%;
}

.sidebar-language-select {
    width: 100%;
    padding: 8px 12px;
    padding-right: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    height: 36px;
    line-height: 20px;
}

.sidebar-language-select:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.sidebar-language-select:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.sidebar-language-select option {
    background: #2c3e50;
    color: white;
    padding: 6px;
}

.language-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.language-select-container:hover .language-arrow {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.05);
}

/* Mobile responsive language switcher */
@media (max-width: 768px) {
    .sidebar-language-switcher {
        margin: 12px 16px 16px 16px;
        padding: 10px 12px;
    }
    
    .language-switcher-label {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .sidebar-language-select {
        padding: 6px 10px;
        padding-right: 28px;
        font-size: 12px;
        height: 32px;
    }
    
    .language-arrow {
        right: 8px;
        font-size: 9px;
    }
}

/* Desktop language switcher positioning - place it above footer */
@media (min-width: 769px) {
    .sidebar-language-switcher {
        position: absolute;
        bottom: 100px;
        left: 20px;
        right: 20px;
        margin: 0;
        width: calc(100% - 40px);
    }
}

/* Ensure language switcher is visible and properly positioned */
.branded-sidebar .sidebar-language-switcher {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Language switcher animation */
.sidebar-language-switcher {
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Page Styles */
.contact-info-section {
    margin: 40px 0;
    padding: 0 20px;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #feb900 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-details {
    color: #5a6c7d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2a5298;
    text-decoration: underline;
}

/* Map Section Styles */
.map-section {
    margin: 40px 0;
    padding: 0 20px;
}

.map-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-header {
    background: #f8f9fa;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.map-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info-section {
        margin: 20px 0;
        padding: 0 10px;
    }
    
    .contact-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .contact-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .contact-details {
        font-size: 13px;
    }
    
    .map-section {
        margin: 20px 0;
        padding: 0 10px;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .map-header {
        padding: 15px 20px;
    }
    
    .map-header h3 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .contact-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .contact-details {
        font-size: 12px;
    }
    
    .map-wrapper {
        height: 250px;
    }
}

/* Modern Footer Styles */
.updatedpj-footer {
    position: relative;
    background: 
    linear-gradient(180deg, #f68442 0%, #e25d2d 100%);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    color: white;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 -4px 20px rgba(0, 0, 0, 0.25),
        0 -2px 8px rgba(0, 0, 0, 0.1);
}

/* Updated Footer Layout for Three Columns */
.updatedpj-footer-content .row {
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.updatedpj-footer-content .col-lg-3 {
    flex: 0 0 auto;
    max-width: none;
    text-align: center;
}

.updatedpj-footer-content .col-lg-5 {
    flex: 0 0 auto;
    max-width: none;
    text-align: center;
}

.updatedpj-footer-content .col-lg-4 {
    flex: 0 0 auto;
    max-width: none;
    text-align: center;
}

.updatedpj-footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.updatedpj-footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    backdrop-filter: none;
}

.updatedpj-footer-content {
    position: relative;
    z-index: 2;
    padding: 20px 0 12px;
}

/* Footer Logo Section Styling */
.updatedpj-footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 20px;
}

.updatedpj-footer-logo-container {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.updatedpj-footer-logo {
    width: 200px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
    border-radius: 12px;
    background: 
        linear-gradient(135deg, 
            rgba(240, 146, 31, 0.1) 0%, 
            rgba(240, 146, 31, 0.05) 100%);
    padding: 20px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(240, 146, 31, 0.1);
}

.updatedpj-footer-logo:hover {
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 3px 12px rgba(240, 146, 31, 0.2);
}

.updatedpj-footer-section {
    margin-bottom: 10px;
}

.updatedpj-footer-company-title {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.updatedpj-footer-company-details {
    color: #e8e8e8;
    line-height: 1.6;
}

.updatedpj-footer-address-block {
    margin-bottom: 10px;
}

.updatedpj-footer-address-title {
    font-size: 14px;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.updatedpj-footer-address-text {
    font-size: 14px;
    color: white;
    margin: 0;
    line-height: 1.5;
}

.contact-info {
    margin-top: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.contact-label {
    font-weight: 600;
    color: #FFD700;
    margin-right: 8px;
    min-width: 120px;
    font-size: 14px;
}

.contact-value {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #FFD700;
    text-decoration: none;
}

.updatedpj-footer-links-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.updatedpj-footer-links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #F0921F 0%, #e67e22 100%);
    border-radius: 2px;
}

.updatedpj-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.updatedpj-footer-links-list li {
    margin: 0;
}

.updatedpj-footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    position: relative;
}

.updatedpj-footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F0921F 0%, #e67e22 100%);
    transition: width 0.3s ease;
}

.updatedpj-footer-link:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateX(5px);
}

.updatedpj-footer-link:hover::before {
    width: 20px;
}

.location-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.updatedpj-footer-copyright-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 0 auto 12px;
}

.updatedpj-footer-copyright-text {
    color: white;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.updatedpj-footer-copyright-text strong {
    color: #FFD700;
    font-weight: 600;
}

/* Responsive Design for Footer */
@media (max-width: 992px) {
    .updatedpj-footer-content {
        padding: 18px 0 10px;
    }
    
    .updatedpj-footer-content .row {
        gap: 25px;
    }
    
    .updatedpj-footer-content .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .updatedpj-footer-content .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 12px;
    }
    
    .updatedpj-footer-content .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .updatedpj-footer-logo-section {
        align-items: center;
    }
    
    .updatedpj-footer-company-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .updatedpj-footer-content {
        padding: 15px 0 8px;
    }
    
    .updatedpj-footer-content .row {
        gap: 20px;
    }
    
    .updatedpj-footer-section {
        margin-bottom: 10px;
    }
    
    .updatedpj-footer-logo-section {
        margin-bottom: 15px;
    }
    
    .updatedpj-footer-company-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .updatedpj-footer-address-title {
        font-size: 13px;
    }
    
    .updatedpj-footer-address-text {
        font-size: 12px;
    }
    
    .contact-label {
        min-width: 80px;
        font-size: 12px;
    }
    
    .contact-value {
        font-size: 12px;
    }
    
    .updatedpj-footer-links-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .updatedpj-footer-links-title::after {
        width: 30px;
        height: 2px;
    }
    
    .updatedpj-footer-link {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .updatedpj-footer-link:hover {
        transform: translateX(5px);
    }
    
    .updatedpj-footer-copyright-text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .updatedpj-footer-content {
        padding: 12px 0 6px;
    }
    
    .updatedpj-footer-company-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .updatedpj-footer-address-block {
        margin-bottom: 10px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 4px;
    }
    
    .contact-label {
        min-width: auto;
        margin-bottom: 2px;
    }
}

/* Additional improvements for better positioning */
.updatedpj-footer-content .container {
    max-width: 1200px;
}

.updatedpj-footer-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.updatedpj-footer-company-info {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.updatedpj-footer-links {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Better spacing for desktop */
@media (min-width: 993px) {
    .updatedpj-footer-content {
        padding: 25px 0 15px;
    }
    
    .updatedpj-footer-section {
        margin-bottom: 0;
    }
    
    .updatedpj-footer-company-title {
        margin-bottom: 12px;
    }
    
    .updatedpj-footer-links-title {
        margin-bottom: 12px;
        font-size: 13px;
    }
    
    .updatedpj-footer-links-title::after {
        width: 25px;
        height: 2px;
    }
    
    .updatedpj-footer-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .updatedpj-footer-link:hover {
        transform: translateX(3px);
    }
    
    .updatedpj-footer-links-list {
        gap: 6px;
    }
}

/* Instructions Section Styles */
.instructions-section {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.instructions-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
}

.header-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(135deg, #F0921F 0%, #e67e22 100%);
    margin: 0 20px;
}

.header-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.instructions-content {
    padding: 40px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.instruction-block {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.instruction-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.video-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    text-align: center;
    color: white;
}

.video-instruction:nth-child(2) .video-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.step-label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 16px 16px;
}

.links-footer {
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    border-top: 2px solid #dee2e6;
}

.footer-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #6c757d 50%, transparent 100%);
    margin: 0 auto 20px;
    width: 200px;
}

.footer-title {
    margin: 0 0 30px 0;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-item {
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.1);
}

.logo-shield {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.blue-shield {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.gold-shield {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.white-shield {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.logo-shield:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .instructions-header {
        padding: 20px 15px;
    }
    
    .header-title {
        font-size: 24px;
    }
    
    .instructions-content {
        padding: 20px 15px;
    }
    
    .video-header {
        padding: 15px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .video-wrapper {
        padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio */
    }
    
    .links-footer {
        padding: 20px 15px;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .partner-logos {
        gap: 15px;
    }
    
    .logo-shield {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 20px;
    }
    
    .instructions-content {
        padding: 15px 10px;
    }
    
    .video-header {
        padding: 12px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .step-title {
        font-size: 14px;
    }
    
    .video-wrapper {
        padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio */
    }
    
    .footer-title {
        font-size: 18px;
    }
    
    .partner-logos {
        gap: 10px;
    }
    
    .logo-shield {
        width: 40px;
        height: 40px;
        font-size: 10px;
    }
}

/* Simplified News Detail Page Styles */
.news-content-section {
    margin-bottom: 50px;
    background: transparent;
    padding: 0;
}

.news-content {
    background: transparent;
    padding: 0;
    max-width: 100%;
    width: 100%;
    border: none;
    box-shadow: none;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-height: 9.6rem;
    flex: 1;
    padding: 15px;
    padding-top: 15px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

.news-meta i {
    margin-right: 8px;
    color: #ED5D37;
}

.news-image {
    margin: 30px 0;
    border-radius: 4px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.news-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.news-body strong {
    color: #333;
    font-weight: 600;
}

/* Removed sidebar styles - content now takes full width */

/* Mobile Responsive */
@media (max-width: 768px) {
    .news-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .news-body {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Override styles for clean, non-layered appearance */
.news-content-section {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.news-content {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.news-body {
    font-size: 17px !important;
    line-height: 1.7 !important;
    color: #2c3e50 !important;
    margin-top: 0 !important;
}

.news-body p {
    margin-bottom: 24px !important;
    text-align: left !important;
}

.news-body strong {
    color: #2c3e50 !important;
    font-weight: 700 !important;
}

/* Modernized News Detail Page Styles - New Classes */
.modernized-news-header {
    text-align: left;
    margin-bottom: 40px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
}

.modernized-news-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
    margin: 0 0 20px 0;
    text-align: left;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    letter-spacing: -0.02em;
}

.modernized-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
    flex-wrap: wrap;
}

.modernized-news-meta i {
    margin-right: 10px;
    color: #ED5D37;
    font-size: 16px;
}

.modernized-news-date {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    background: transparent;
    padding: 0;
    border-radius: 0;
    color: #64748b;
    border: none;
    box-shadow: none;
    transition: none;
}

/* Mobile Responsive for Modernized News */
@media (max-width: 768px) {
    .modernized-news-header {
        padding: 0;
        margin-bottom: 30px;
    }
    
    .modernized-news-title {
        font-size: 1.8rem;
        line-height: 1.3;
        text-align: left;
        margin-bottom: 20px;
        letter-spacing: -0.01em;
    }
    
    .modernized-news-meta {
        flex-direction: column;
        gap: 15px;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .modernized-news-date {
        padding: 0;
        font-size: 14px;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .modernized-news-header {
        padding: 0;
        margin-bottom: 25px;
    }
    
    .modernized-news-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .modernized-news-date {
        padding: 0;
        font-size: 13px;
    }
}

/* Enhanced News Content Styling */
.news-content-section .news-content {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
}

.news-content-section .news-image {
    margin: 30px auto;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    display: block;
}

/* Responsive image sizing */
@media (min-width: 1200px) {
    .news-content-section .news-image {
        max-width: 80%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .news-content-section .news-image {
        max-width: 85%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .news-content-section .news-image {
        max-width: 90%;
    }
}

@media (max-width: 767px) {
    .news-content-section .news-image {
        max-width: 100%;
        margin: 20px 0;
    }
}

.news-content-section .news-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: none;
}

.news-content-section .news-image:hover img {
    transform: none;
}

/* Share buttons styling */
.news-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    padding: 0;
}

.share-label {
    font-size: 14px;
    color: #666;
    margin-right: 12px;
    font-weight: 500;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: white;
}

.share-btn.facebook:hover {
    background: linear-gradient(135deg, #166fe5, #1976d2);
}

.share-btn.x-twitter {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.share-btn.x-twitter:hover {
    background: linear-gradient(135deg, #333333, #555555);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.share-btn.linkedin:hover {
    background: linear-gradient(135deg, #005885, #004066);
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #1ea952);
    color: white;
}

.share-btn.whatsapp:hover {
    background: linear-gradient(135deg, #1ea952, #17a085);
}

.share-btn i {
    font-size: 16px;
    font-weight: 600;
}

/* Responsive share buttons */
@media (max-width: 768px) {
    .news-share {
        gap: 8px;
        margin-top: 0;
        padding: 0;
        justify-content: flex-start;
    }
    
    .share-btn {
        width: 36px;
        height: 36px;
    }
    
    .share-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .news-share {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .share-btn {
        width: 32px;
        height: 32px;
    }
    
    .share-btn i {
        font-size: 12px;
    }
}

.news-content-section .news-body {
    margin-top: 30px;
    line-height: 1.8;
    font-size: 16px;
    color: #374151;
}

/* Job Position Details Page Styling */
.job-position-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    margin-bottom: 20px;
}

.job-description-section {
    padding-right: 30px;
}

.job-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
    border-bottom: 3px solid #ED5D37;
    padding-bottom: 15px;
}

.job-section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    border-left: 4px solid #ED5D37;
    padding-left: 15px;
}

.job-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

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

.requirements-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.requirements-list li::before {
    content: "•";
    color: #ED5D37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.job-application-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #ED5D37;
    margin-top: 30px;
}

.application-text {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    line-height: 1.6;
}

.application-link {
    color: #ED5D37;
    font-weight: 700;
    text-decoration: none;
    background: #ED5D37;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 5px;
}

.application-link:hover {
    background: #D44A2A;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 93, 55, 0.3);
}

/* Right Column Job Details */
.job-details-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.job-details-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.job-details-separator {
    height: 3px;
    background: linear-gradient(90deg, #ED5D37, #F0921F);
    margin-bottom: 25px;
    border-radius: 2px;
}

.job-detail-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.job-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-label {
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-нээлттэй {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-хаалттай {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 992px) {
    .job-description-section {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .job-details-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .job-position-details-container {
        padding: 15px;
        margin-top: 10px;
    }
    
    .job-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .job-content {
        font-size: 1rem;
    }
    
    .requirements-list li {
        font-size: 1rem;
    }
    
    .job-details-section {
        padding: 20px;
    }
    
    .job-details-title {
        font-size: 1.4rem;
    }
    
    .detail-label {
        font-size: 0.9rem;
    }
    
    .detail-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .job-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .job-content {
        font-size: 0.95rem;
    }
    
    .requirements-list li {
        font-size: 0.95rem;
    }
    
    .job-section {
        margin-bottom: 25px;
    }
    
    .application-text {
        font-size: 1.1rem;
    }
    
    .application-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .job-details-title {
        font-size: 1.3rem;
    }
    
    .detail-label {
        font-size: 0.85rem;
    }
    
    .detail-value {
        font-size: 1rem;
    }
}

/* Clickable Position Links Styling */
.position-row {
    transition: all 0.3s ease;
    cursor: pointer;
}

.position-row:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.position-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    position: relative;
}

.position-link:hover {
    color: #ED5D37;
    text-decoration: none;
    background-color: rgba(237, 93, 55, 0.1);
    transform: translateX(3px);
}

.position-link::after {
    content: "→";
    opacity: 0;
    transition: all 0.3s ease;
    margin-left: 5px;
    color: #ED5D37;
    font-weight: bold;
}

.position-link:hover::after {
    opacity: 1;
    transform: translateX(3px);
}

/* Enhanced table styling for positions */
.positions-table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.positions-table thead th {
    background: linear-gradient(135deg, #ED5D37, #F0921F);
    color: white;
    font-weight: 600;
    padding: 15px 12px;
    text-align: left;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.positions-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.positions-table tbody tr:last-child {
    border-bottom: none;
}

.positions-table tbody td {
    padding: 15px 12px;
    vertical-align: middle;
    border: none;
}

.positions-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.positions-table tbody tr:hover {
    background-color: #fff3e0;
}

/* Status badges enhancement */
.status-open {
    background: #d4edda;
    color: #155724;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #c3e6cb;
}

.status-closed {
    background: #f8d7da;
    color: #721c24;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #f5c6cb;
}

/* Mobile responsiveness for position links */
@media (max-width: 768px) {
    .position-link {
        font-size: 0.9rem;
        padding: 3px 6px;
    }
    
    .positions-table thead th {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .positions-table tbody td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
}

.news-content-section .news-body p {
    margin-bottom: 20px;
    text-align: left;
}

.news-content-section .news-body strong {
    color: #1f2937;
    font-weight: 700;
}

/* Mobile adjustments for news content */
@media (max-width: 768px) {
    .news-content-section .news-content {
        padding: 0;
        margin-top: 0;
        border-radius: 0;
    }
    
    .news-content-section .news-image {
        margin: 20px 0;
        border-radius: 0;
    }
    
    .news-content-section .news-body {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.7;
    }
    
    .news-content-section .news-body p {
        margin-bottom: 16px;
    }
}

/* Social Media Icons Styling */
.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background-color: #FFD700;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.social-icon i {
    font-size: 16px;
}

/* Language Switcher Styling */
.language-switcher-item {
    margin: 10px 0;
    padding: 0 15px;
}

.language-switcher {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    position: relative;
    z-index: 10;
}

.language-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    min-height: 56px;
    margin-bottom: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.language-current {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-current i {
    font-size: 16px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.language-toggle:hover .language-current i {
    transform: rotate(15deg);
    opacity: 1;
}

.current-lang {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.language-toggle.active .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: fixed;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    min-width: 200px;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.language-option:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.language-option:first-child {
    border-radius: 12px 12px 0 0;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(2px);
}

.language-option.active {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border-left: 3px solid #FFD700;
}

.language-option.active:hover {
    background: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.flag {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.lang-text {
    font-size: 14px;
    font-weight: 500;
    flex: 1;
}

/* Mobile responsive for language switcher */
@media (max-width: 768px) {
    .language-toggle {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 48px;
        border-radius: 10px;
    }
    
    .language-option {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .lang-text {
        font-size: 13px;
    }
    
    .flag {
        font-size: 16px;
        width: 20px;
    }
}

/* Page Transition Animations */
body {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

body.loaded {
    opacity: 1;
}

/* Page Load Animation */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ED5D37 0%, #F06B45 50%, #D44A2A 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.page-transition.fade-out {
    opacity: 0;
    transform: scale(1.1);
}

.page-transition-content {
    text-align: center;
    color: white;
}

.page-transition-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

.page-transition-text {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

.page-transition-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth transitions for all links */
a {
    transition: all 0.3s ease;
}

/* Content fade-in animation */
.content-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sidebar transition enhancement */
.sidebar {
    transition: transform 0.3s ease-in-out;
}

/* Main panel transition */
.main-panel {
    transition: all 0.3s ease-in-out;
}

/* Toggle Switch Language Switcher Styles */
.language-switcher-item {
    margin: 10px 0;
    padding: 0 15px;
}

.language-toggle-switch {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
    z-index: 10;
}

.toggle-container {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4px;
    margin: 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.toggle-container:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.toggle-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.7); /* Semi-transparent white for unselected */
    min-height: 32px;
}

.toggle-option.active {
    color: white; /* White text for selected */
    font-weight: 700;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.toggle-slider.slider-right {
    transform: translateX(100%);
}

.toggle-slider.slider-left {
    transform: translateX(0%);
}

.lang-text {
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
}

/* Hover effects */
.toggle-option:hover {
    color: rgba(255, 255, 255, 0.9);
}

.toggle-option.active:hover {
    color: white;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .toggle-container {
        padding: 3px;
        margin: 6px 0;
    }
    
    .toggle-option {
        padding: 6px 12px;
        font-size: 12px;
        min-height: 28px;
    }
    
    .toggle-slider {
        height: 28px;
        top: 3px;
    }
}

/* Open Position Form Pagination Styles */
.openposition-form-pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px 0;
}

.openposition-form-pagination-info {
    color: #666;
    font-size: 14px;
}

.openposition-form-pagination-nav {
    display: flex;
    justify-content: center;
}

.openposition-form-pagination {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.openposition-form-page-item {
    display: inline-block;
}

.openposition-form-page-link {
    display: block;
    padding: 8px 12px;
    color: #F0921F;
    text-decoration: none;
    border: 1px solid #F0921F;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.openposition-form-page-link:hover {
    color: white;
    background-color: #F0921F;
    border-color: #F0921F;
}

.openposition-form-page-item.active .openposition-form-page-link {
    background-color: #F0921F;
    border-color: #F0921F;
    color: white;
}

.openposition-form-page-item.active .openposition-form-page-link:hover {
    background-color: #F0921F;
    border-color: #F0921F;
}

@media (max-width: 768px) {
    .openposition-form-pagination-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .openposition-form-pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .openposition-form-page-link {
        padding: 6px 10px;
        font-size: 14px;
    }
}

/* Activities Image Hover Overlay */
.project-image-link {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 8px;
}

.project-image-link .project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.project-image-link:hover .project-image-overlay {
    opacity: 1;
}

.project-image-link:hover .project-image {
    transform: scale(1.05);
}

.overlay-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .overlay-text {
        font-size: 16px;
    }
}

/* Company Information Section Styles */
.company-info-section {
    margin-top: 30px;
    background: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.company-info-layout {
    display: flex;
    gap: 0;
    min-height: 530px;
}

/* Left Sidebar */
.company-sidebar {
    flex: 0 0 350px;
    background: #f8f9fa;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Facebook Widget */
.facebook-widget {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.facebook-widget-header {
    background: #1877f2;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.facebook-widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
}

.facebook-widget-title i {
    font-size: 18px;
}

.facebook-follow-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.facebook-follow-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.facebook-iframe-container {
    position: relative;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e8ed;
}

.facebook-iframe-container iframe {
    display: block;
    width: 100%;
    border: none;
    background: #fff;
}

/* Video Widget */
.video-widget {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.play-button i {
    font-size: 20px;
    color: #2c3e50;
    margin-left: 3px;
}

.video-logos {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo-left {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.small-logo {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.logo-right {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 6px 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.bridge-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #2c3e50;
}

.bridge-logo i {
    font-size: 14px;
    color: #f0932b;
}

.video-description {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

/* Right Content */
.company-main-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.title-accent {
    width: 4px;
    height: 40px;
    background: linear-gradient(90deg, #ED5D37, #F0921F);
    border-radius: 2px;
    margin-right: 20px;
}

.content-title {
    font-size: 23px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 1px;
}

.content-body {
    flex: 1;
    display: flex;
    align-items: center;
}

.description-text {
    width: 100%;
}

.description-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 25px;
    text-align: left;
}

.description-text p:last-child {
    margin-bottom: 0;
}

.company-profile-header {
    position: relative;
    background: #fff;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.company-profile-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
}

.company-logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.company-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 3px solid #fff;
}

.company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.company-followers {
    margin-bottom: 15px;
}

.followers-count {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

.follow-button {
    background: #1877f2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.follow-button:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.company-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.company-content-section {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #fff;
}

.company-facebook-section {
    flex: 0 0 380px;
}

.facebook-embed-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid #e1e8ed;
    transition: all 0.3s ease;
}

.facebook-embed-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.facebook-header {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.facebook-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

.facebook-logo i {
    font-size: 24px;
    color: #fff;
}

.facebook-follow-btn {
    display: flex;
    align-items: center;
}

.facebook-follow-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.facebook-follow-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.facebook-iframe-wrapper {
    position: relative;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e8ed;
}

.facebook-iframe-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
    background: #fff;
}

.facebook-footer {
    background: #f8f9fa;
    padding: 20px;
    border-top: 1px solid #e1e8ed;
}

.facebook-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #65676b;
    font-size: 14px;
    font-weight: 500;
}

.stat-item i {
    color: #1877f2;
    font-size: 16px;
}

.stat-item span {
    color: #1c1e21;
    font-weight: 600;
}

.company-description {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.description-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
    text-align: center;
}

.description-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-info-layout {
        flex-direction: column;
        min-height: auto;
    }
    
    .company-sidebar {
        flex: none;
        width: 100%;
        padding: 15px;
    }
    
    .company-main-content {
        padding: 30px 20px;
    }
    
    .content-title {
        font-size: 28px;
    }
    
    .title-accent {
        height: 30px;
        margin-right: 15px;
    }
    
    .description-text p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .facebook-iframe-container iframe {
        height: 400px;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .company-name-banner {
        font-size: 16px;
    }
    
    .follow-page-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .company-sidebar {
        padding: 10px;
    }
    
    .company-main-content {
        padding: 20px 15px;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    .title-accent {
        height: 25px;
        margin-right: 12px;
    }
    
    .description-text p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .facebook-widget-header {
        padding: 12px 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .facebook-iframe-container iframe {
        height: 350px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .company-name-banner {
        font-size: 14px;
    }
    
    .follow-page-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 16px;
    }
}

/* Featured News Clickable Image Styles */
.featured-news-link {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.featured-news-link:hover {
    transform: scale(1.02);
    text-decoration: none;
    color: inherit;
}

/* Remove orange overlay - cleaner hover effect */

/* Remove click indicator - not needed with hover effect */

.featured-news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.95) 100%);
    color: white;
    padding: 30px;
    transform: translateY(100%);
    transition: all 0.4s ease;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-height: 50%;
}

.featured-news-link:hover .featured-news-overlay {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.overlay-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-news-overlay .featured-news-title {
    color: #ffffff !important;
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
    font-weight: 800;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.3);
    display: block;
    letter-spacing: 0.5px;
}

.overlay-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.overlay-category {
    display: inline-block;
    background: linear-gradient(135deg, #ED5D37, #F0921F);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.overlay-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

.overlay-date i {
    color: #F0921F;
}

.read-more-overlay {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ED5D37 0%, #F0921F 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 35px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(237, 93, 55, 0.6), 0 0 15px rgba(255, 255, 255, 0.2);
    width: fit-content;
    margin-top: 1.2rem;
    border: 3px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.read-more-overlay:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 93, 55, 0.5);
    background: linear-gradient(135deg, #F0921F 0%, #ED5D37 100%);
}

.read-more-overlay i {
    transition: transform 0.3s ease;
}

.read-more-overlay:hover i {
    transform: translateX(3px);
}

/* Facebook Page Container - Improved */
.facebook-page-container {
    width: 100%;
    max-width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
}

.facebook-page-container iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
}

/* Facebook Page Plugin centering */
.facebook-page-container .fb-page {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    display: block !important;
    text-align: center !important;
}

.facebook-page-container .fb-page > span {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    display: block !important;
}

.facebook-page-container .fb-page iframe {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    display: block !important;
}

/* Ensure the container doesn't overflow its parent */
.featured-news-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Debug: Show container even if iframe fails */
.facebook-page-container::before {
    content: "Facebook Page Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 14px;
    z-index: 1;
    display: none;
}

.facebook-page-container iframe:not([src=""]) + ::before {
    display: none;
}

/* Facebook Fallback Content */
.facebook-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
    padding: 40px 20px;
    width: 100%;
    max-width: 100%;
}

.fallback-content {
    max-width: 300px;
}

.fallback-icon {
    font-size: 4rem;
    color: #1877f2;
    margin-bottom: 20px;
}

.fallback-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.fallback-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5;
}

.fallback-content .btn {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fallback-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive Facebook iframe */
@media (max-width: 768px) {
    .facebook-page-container {
        height: 500px;
        min-height: 500px;
    }
    
    .facebook-page-container .fb-page {
        max-width: 100% !important;
    }
    
    .facebook-page-container .fb-page iframe {
        max-width: 100% !important;
    }
    
    .facebook-fallback {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .facebook-page-container {
        height: 450px;
        min-height: 450px;
        border-radius: 8px;
    }
    
    .facebook-page-container .fb-page {
        max-width: 100% !important;
    }
    
    .facebook-page-container .fb-page iframe {
        max-width: 100% !important;
    }
    
    .facebook-fallback {
        min-height: 450px;
        padding: 30px 15px;
    }
    
    .fallback-icon {
        font-size: 3rem;
    }
    
    .fallback-content h3 {
        font-size: 1.3rem;
    }
}

/* Clickable Sub-System Cards Styles */
.clickable-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.clickable-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.clickable-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.clickable-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.clickable-card:hover .card-title {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.clickable-card:active {
    transform: translateY(-2px) scale(0.98);
}

/* Download icon removed - no longer showing on hover */

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Transparency Updated Page Styles */
.transparency_updated_container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    align-items: flex-start;
}

/* Left Sidebar Navigation */
.sidebar-updated-transparency {
    width: 280px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Back Button Styles */
.sidebar-back-button-updated-container {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.sidebar-back-button-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #1e40af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f3f4f6;
}

.sidebar-back-button-updated:hover {
    background: #e5e7eb;
    color: #1e3a8a;
    transform: translateX(-3px);
}

.sidebar-back-button-updated i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sidebar-back-button-updated:hover i {
    transform: translateX(-3px);
}

.sidebar-updated-title {
    color: #1e40af;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

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

.sidebar-updated-nav .sidebar-updated-nav-item {
    margin-bottom: 8px;
    position: relative;
}

.sidebar-updated-nav .sidebar-updated-nav-link {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    transform: translateX(0);
}

.sidebar-updated-nav .sidebar-updated-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #F0921F;
    border-radius: 6px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.sidebar-updated-nav .sidebar-updated-nav-link:hover {
    background: #f3f4f6;
    color: #1e40af;
    transform: translateX(4px);
}

.sidebar-updated-nav .sidebar-updated-nav-item.active .sidebar-updated-nav-link {
    background: #F0921F;
    color: #ffffff;
    font-weight: 600;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(240, 146, 31, 0.35),
                0 2px 4px rgba(240, 146, 31, 0.2);
    position: relative;
}

.sidebar-updated-nav .sidebar-updated-nav-item.active .sidebar-updated-nav-link::before {
    width: 4px;
    background: #d17a1a;
    border-radius: 6px 0 0 6px;
}

.sidebar-updated-nav .sidebar-updated-nav-item.active .sidebar-updated-nav-link::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Subcategory Indicator Arrow */
.sidebar-nav-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.sidebar-updated-nav-item.has-subcategories .sidebar-updated-nav-link:hover .sidebar-nav-arrow {
    color: #1e40af;
    transform: translateY(-50%) translateX(3px);
}

.sidebar-updated-nav-item.has-subcategories .sidebar-updated-nav-link {
    padding-right: 35px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.2);
    }
}

/* Main Content Area */
.transparency_updated_content {
    flex: 1;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

/* Content Section Transitions */
.content-section {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.content-section.hidden {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeInContent 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sidebar title animation */
.sidebar-updated-title {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth transition for sidebar nav items */
.sidebar-updated-nav-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-updated-nav-item:not(.active) {
    animation: fadeOutNav 0.2s ease-out;
}

.sidebar-updated-nav-item.active {
    animation: highlightNav 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes highlightNav {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeOutNav {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

/* Category Header Bar */
.transparency_updated_category_header {
    background: #1e3a8a;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transparency_updated_category_item {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

/* Table Section */
.transparency_updated_table_section {
    padding: 0;
}

/* Rules Header Section */
.transparency_rules_header {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.transparency_rules_header_title {
    color: #1e40af;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
    text-align: center;
}

.transparency_rules_list {
    margin: 0;
    padding-left: 25px;
    color: #374151;
    line-height: 2;
    font-size: 14px;
}

.transparency_rules_list li {
    margin-bottom: 8px;
    padding-left: 8px;
}

.transparency_rules_list li::marker {
    color: #1e40af;
    font-weight: 600;
}

.transparency_updated_table_header_bar {
    background: #bfdbfe;
    padding: 15px 20px;
    border-bottom: 2px solid #93c5fd;
}

.transparency_updated_table_title {
    color: #1e40af;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.transparency_updated_table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.transparency_updated_table thead {
    background: #f9fafb;
}

.transparency_updated_table th {
    padding: 12px 20px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
    font-size: 14px;
}

.transparency_updated_table th.transparency_updated_col_number {
    width: 80px;
}

.transparency_updated_table th.transparency_updated_col_document {
    width: auto;
}

.transparency_updated_table td {
    padding: 12px 20px;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
}

.transparency_updated_table td a {
    color: #1e40af;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.transparency_updated_table td a:hover {
    color: #1e3a8a;
    text-decoration: underline;
    transform: translateX(2px);
}

.transparency_updated_table tbody tr:hover {
    background: #f9fafb;
}

.transparency_updated_table tbody tr:last-child td {
    border-bottom: none;
}

/* Contact Information Section */
.transparency_updated_contact_section {
    padding: 25px 20px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.transparency_updated_contact_title {
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.transparency_updated_contact_details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transparency_updated_contact_row {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.transparency_updated_contact_label {
    font-weight: 600;
    color: #374151;
    min-width: 120px;
}

.transparency_updated_contact_value {
    color: #6b7280;
}

/* Pagination Styles */
.transparency_updated_pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px 20px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 15px;
}

.transparency_updated_pagination_info {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.transparency_updated_pagination_controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.transparency_updated_page_btn {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #374151;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.transparency_updated_page_btn:hover:not(:disabled) {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #1e40af;
}

.transparency_updated_page_btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f9fafb;
}

.transparency_updated_page_btn.active {
    background: #F0921F;
    color: #ffffff;
    border-color: #F0921F;
    box-shadow: 0 1px 3px rgba(240, 146, 31, 0.3);
}

.transparency_updated_page_numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.transparency_updated_page_ellipsis {
    padding: 8px 4px;
    color: #6b7280;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .transparency_updated_container {
        flex-direction: column;
    }

    .sidebar-updated-transparency {
        width: 100%;
    }

    .transparency_updated_category_header {
        padding: 15px;
    }

    .transparency_updated_category_item {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .transparency_updated_table {
        font-size: 12px;
    }

    .transparency_updated_table th,
    .transparency_updated_table td {
        padding: 10px 12px;
    }

    .transparency_updated_contact_row {
        flex-direction: column;
        gap: 5px;
    }

    .transparency_updated_contact_label {
        min-width: auto;
    }

    .transparency_updated_pagination {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .transparency_updated_pagination_controls {
        justify-content: center;
        flex-wrap: wrap;
    }
}
