.general-title-box {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1); 
    border: 2px solid var(--primary-color);                   
    border-radius: 8px;                       
    padding: 8px 16px;                         
    font-size: 14px;                             
    font-weight: 600;                        
    color: var(--primary-color);                          
    text-transform: uppercase;                
    letter-spacing: 1px;                      
    backdrop-filter: blur(10px);                
    transition: all 0.3s ease;                  
}
.branch-location{
  display: none !important;
}




/* Footer Logos - Far Left Position */
.footer-logos {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.footer-logo-img {
    height:75px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
    opacity: 0.85 !important;
    border-radius: 2px !important;
}

.footer-logo-img:hover {
    opacity: 1 !important;
    transform: translateY(-1px) !important;
}

/* Footer Copyright - Vertical Center */
.footer-bottom .row {
    align-items: center !important;
}

.footer-bottom .col-lg-6:last-child {
    display: flex !important;
    align-items: center !important;
    justify-content: end !important;
    min-height: 40px !important;
}

@media (max-width: 991px) {
    .footer-bottom .col-lg-6:last-child {
        justify-content: center !important;
        margin-top: 10px !important;
    }
}

@media (max-width: 768px) {
    .footer-logos {
        margin-bottom: 15px !important;
    }
    
    .footer-logo-img {
        height: 50px !important;
        max-width: 50px !important;
    }
}

@media (max-width: 576px) {
    .footer-logo-img {
        height: 40px !important;
        max-width: 45px !important;
    }
}


/* test*/
/* RSS Reader Styles */

/* Default Style */
.rss-reader-default {
    margin: 2rem 0;
}

.rss-reader-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.rss-feed-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rss-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rss-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.rss-item-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
}

.rss-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rss-item-content {
    flex: 1;
}

.rss-item-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.rss-item-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rss-item-title a:hover {
    color: #3498db;
}

.rss-item-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.rss-item-meta i {
    margin-right: 0.25rem;
}

.rss-item-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rss-item-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.rss-item-link:hover {
    color: #2980b9;
}

/* Cards Style */
.rss-reader-cards {
    margin: 2rem 0;
}

.rss-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.rss-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: fit-content;
}

.rss-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.rss-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.rss-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rss-card:hover .rss-card-image img {
    transform: scale(1.05);
}

.rss-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rss-card-title {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.rss-card-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rss-card-title a:hover {
    color: #3498db;
}

.rss-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.rss-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.rss-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #7f8c8d;
}


/* Minimal Style */
.rss-reader-minimal {
    margin: 2rem 0;
}

.rss-minimal-list {
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.rss-minimal-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e1e8ed;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.rss-minimal-item:last-child {
    border-bottom: none;
}

.rss-minimal-item:hover {
    background-color: #f8f9fa;
}

.rss-minimal-content {
    flex: 1;
}

.rss-minimal-title {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.rss-minimal-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rss-minimal-title a:hover {
    color: #3498db;
}

.rss-minimal-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #7f8c8d;
    flex-wrap: wrap;
}

.rss-minimal-arrow {
    color: #bdc3c7;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.rss-minimal-item:hover .rss-minimal-arrow {
    color: #3498db;
    transform: translateX(3px);
}

.rss-feed-link {
    margin-top: 1rem;
    text-align: center;
}

.rss-feed-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.rss-feed-link a:hover {
    background: #3498db;
    color: white;
}

/* Featured Style */
.rss-reader-featured {
    margin: 2rem 0;
}

.rss-featured-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.rss-featured-main {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.rss-featured-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.rss-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rss-featured-main:hover .rss-featured-image img {
    transform: scale(1.05);
}

.rss-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.rss-featured-content {
    padding: 2rem;
    position: relative;
}

.rss-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f39c12;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rss-featured-title {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.rss-featured-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rss-featured-title a:hover {
    color: #3498db;
}

.rss-featured-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.rss-featured-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.rss-featured-meta i {
    margin-right: 0.5rem;
}

.rss-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3498db;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rss-featured-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.rss-featured-sidebar {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    height: fit-content;
}

.rss-sidebar-title {
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.rss-sidebar-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e1e8ed;
}

.rss-sidebar-item:last-child {
    border-bottom: none;
}

.rss-sidebar-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
}

.rss-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rss-sidebar-content {
    flex: 1;
}

.rss-sidebar-item-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.rss-sidebar-item-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rss-sidebar-item-title a:hover {
    color: #3498db;
}

.rss-sidebar-date {
    font-size: 0.75rem;
    color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rss-item {
        flex-direction: column;
    }
    
    .rss-item-image {
        width: 100%;
        height: 150px;
    }
    
    .rss-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .rss-card-image {
        height: 180px;
    }
    
    .rss-minimal-item {
        padding: 0.75rem 1rem;
    }
    
    .rss-minimal-meta {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .rss-featured-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rss-featured-image {
        height: 200px;
    }
    
    .rss-featured-content {
        padding: 1.5rem;
    }
    
    .rss-featured-title {
        font-size: 1.2rem;
    }
}