﻿:root {
    --primary-blue: #0B69A3;
    --primary-black: #000;
    --accent-red: #A62633;
    --accent-green: #84B850;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--primary-blue) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: #333 !important;
    font-weight: 700;
    margin: 0 0.5rem;
}

    .nav-link:hover {
        color: var(--primary-blue) !important;
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    margin-top: 0;
    width: 100%;
    left: 0;
    padding: 2rem 0;   
}
    .dropdown-menu li {
        width: 100%;
    }

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.6rem 1.5rem;
    color: #333;
    box-sizing: border-box;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease;
   
}

    .dropdown-item:hover {
        background-color: rgba(62, 107, 162, 0.1);
        color: var(--primary-blue);
      
    }

.dropdown-divider {
    margin: 0.5rem 0;
}

.mega-dropdown {
    position: static;
}

    .mega-dropdown .dropdown-menu {
        border-top: 3px solid var(--primary-blue);
    }

.dropdown-column {
    padding: 0 2rem;
}

    .dropdown-column h6 {
        color: var(--primary-blue);
        font-weight: 700;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        text-transform: uppercase;
    }

    .dropdown-column .dropdown-item {
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }

.vertical-divider {
    border-left: 1px solid #e0e0e0;
    height: 100%;
}

.btn-primary {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
}

    .btn-primary:hover {
        background-color: #a82d35;
        border-color: #a82d35;
    }

.hero-section {
    /* background: linear-gradient(135deg, var(--primary-black) 0%, #2d5278 100%);*/
    background-color: var(--primary-black);
    color: white;
    padding: 5rem 0;
    margin-top: 76px;
}

    .hero-section h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .hero-section p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }

.feature-card {
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
    background: white;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.icon-blue {
    background-color: rgba(62, 107, 162, 0.1);
    color: var(--primary-blue);
}

.icon-red {
    background-color: rgba(200, 55, 64, 0.1);
    color: var(--accent-red);
}

.icon-green {
    background-color: rgba(176, 205, 83, 0.1);
    color: var(--accent-green);
}

.section-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title-white {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.solutions-bg {
    background-color: var(--primary-blue);
    color: white;
}

.cta-section {
    background-color: var(--accent-green);
    color: white;
    padding: 4rem 0;
}

    .cta-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

.btn-outline-light {
    border-width: 2px;
    padding: 0.6rem 2rem;
    font-weight: 600;
}

footer {
    background-color: var(--primary-black);
    color: white;
    padding: 3rem 0 1.5rem;
}

    footer a {
        color: white;
        text-decoration: none;
    }

        footer a:hover {
            color: var(--accent-green);
        }

.btn-outline-danger-red {
    --bs-btn-color: var(--accent-red);
    --bs-btn-border-color: var(--accent-red);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--accent-red);
    --bs-btn-hover-border-color: var(--accent-red);
    --bs-btn-focus-shadow-rgb: 220, 53, 69;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--accent-red);
    --bs-btn-active-border-color: var(--accent-red);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--accent-red);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--accent-red);
    --bs-gradient: none;
}


/* Article Header */
.article-header {
    background-color: var(--primary-black);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 76px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.article-category {
    background-color: var(--accent-green);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

    .article-meta i {
        margin-right: 0.5rem;
    }

/* Featured Image */
.featured-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 3rem;
}

/* Article Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

    .article-content h2 {
        color: var(--primary-black);
        font-weight: 700;
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }

    .article-content h3 {
        color: var(--primary-black);
        font-weight: 700;
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }

    .article-content p {
        margin-bottom: 1.5rem;
    }

    .article-content ul, .article-content ol {
        margin-bottom: 1.5rem;
        padding-left: 2rem;
    }

    .article-content li {
        margin-bottom: 0.75rem;
    }

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-green);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

    .highlight-box h4 {
        color: var(--primary-black);
        font-weight: 700;
        margin-bottom: 1rem;
    }

.stats-box {
    background: linear-gradient(135deg, var(--accent-red) 0%, #a82d35 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

    .stats-box .stat-number {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .stats-box .stat-label {
        font-size: 1.1rem;
        opacity: 0.95;
    }

.quote-box {
    background-color: var(--primary-black);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.2rem;
    position: relative;
}

    .quote-box::before {
        content: '"';
        font-size: 4rem;
        position: absolute;
        top: -10px;
        left: 20px;
        color: var(--accent-green);
        font-family: Georgia, serif;
    }

.quote-author {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    color: var(--accent-green);
}

/* Author Box */
.author-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.author-info p {
    margin-bottom: 0;
    color: #666;
}

/* Share Buttons */
.share-section {
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    padding: 1.5rem 0;
    margin: 3rem 0;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

    .share-btn:hover {
        transform: translateY(-3px);
    }

    .share-btn.facebook {
        background-color: #3b5998;
    }

    .share-btn.twitter {
        background-color: #1da1f2;
    }

    .share-btn.linkedin {
        background-color: #0077b5;
    }

    .share-btn.email {
        background-color: #666;
    }

/* Related Articles */
.related-articles {
    margin-top: 4rem;
}

.related-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .related-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

    .related-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.related-card-body {
    padding: 1.5rem;
}

    .related-card-body h5 {
        color: var(--primary-black);
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

    .related-card-body p {
        color: #666;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .related-card-body a {
        color: var(--accent-red);
        text-decoration: none;
        font-weight: 600;
    }

/* Sidebar */
.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

    .sidebar-widget h5 {
        font-weight: 700;
        color: var(--primary-black);
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--accent-green);
    }

.sidebar-link {
    display: block;
    padding: 0.75rem 0;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

    .sidebar-link:hover {
        color: var(--accent-red);
    }

.tag {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background-color 0.3s ease;
}

    .tag:hover {
        background-color: var(--primary-black);
        color: white;
    }

/*Profile*/
.profile-image {
    transition: filter 0.3s ease;
}

    .profile-image:hover {
        filter: grayscale(85%) contrast(110%) brightness(90%) sepia(5%);
    }

    /*Social media */
.social-nav-item {
    display: flex;
    align-items: center;
    height: 100%; 
    padding-left: 1.5rem;  
    gap: 1rem; 
    padding-top:0.75rem;
}

.social-link {
    color: #333; 
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

    .social-link:hover {
        color: var(--accent-red);
        transform: translateY(-2px); 
    }

/* Footer Social media */
.footer-social-wrapper {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

footer .social-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.5rem; 
    margin: 0 1rem; 
    transition: all 0.3s ease;
    text-decoration: none;
}

    footer .social-link:hover {
        color: var(--accent-green) !important; 
        transform: translateY(-3px);
    }