:root {
    --primary-color: #005082;
    --primary-color-low: rgba(0, 80, 130, 0.5);
    --primary-color-dark: #003c66;

    --secondary-color: #adb5bd;
    --secondary-color-low: rgba(173, 181, 189, 0.5);
    --secondary-color-dark: #6c757d;

    --tertiary-color: #e9ecef;
    --tertiary-color-low: rgba(233, 236, 239, 0.5);
    --tertiary-color-dark: #ced4da;

    --bg-color: #f8f9fa;
    --bg-color-low: rgba(248, 249, 250, 0.5);
    --bg-color-dark: #e9ecef;

    --text-dark: #343a40;
    --text-dark-low: #495057;
    --text-dark-dark: #212529;

    --text-light: #f8f9fa;
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;

    --button-color: #005082;
    --button-color-low: rgba(0, 80, 130, 0.5);
    --button-color-dark: #003c66;
}


.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}


.consistBorder {
    position: relative;
}

.consistBorder::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: -5px;
    width: 95%;
    height: 2px;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--text-dark);
    box-sizing: border-box;
    pointer-events: none; 
    z-index: -1;
}


.btn {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    border: 1px solid;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn i {
    font-size: 12px;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--secondary-color-dark);
    border-color: var(--secondary-color-dark);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark-low);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-light {
    background: var(--bg-color);
    color: var(--text-dark);
    border-color: var(--tertiary-color);
}

.btn-light:hover {
    background: var(--tertiary-color);
    color: var(--text-dark);
    border-color: var(--tertiary-color-dark);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-sm i {
    font-size: 10px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-lg i {
    font-size: 14px;
}

.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-group.vertical {
    flex-direction: column;
    gap: 8px;
}

.btn-group.center {
    justify-content: center;
}

@media (max-width: 768px) {
    .btn {
        padding: 12px 18px;
        font-size: 12px;
        justify-content: center;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-group .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .btn {
        font-size: 11px;
        padding: 10px 16px;
    }
    
    .btn-sm {
        padding: 8px 14px;
        font-size: 10px;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 13px;
    }
}


@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.breadcrumb-section {
    height: 38vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    z-index: 1;
}



.breadcrumb-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: 2;
}

.breadcrumb-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.breadcrumb-content {
    text-align: left;
    color: #ffffff;
    flex: 1;
    max-width: 500px;
}

.breadcrumb-animation {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.3));
    border-radius: 2px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.breadcrumb-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.breadcrumb-item a:hover::before {
    opacity: 1;
}

.breadcrumb-item a::after {
    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.5s ease;
}

.breadcrumb-item a:hover::after {
    left: 100%;
}

.breadcrumb-item a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin: 0 4px;
}

.breadcrumb-separator i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.page-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}


.breadcrumb-animation {
    position: relative;
}

.animated-shapes {
    position: relative;
    width: 200px;
    height: 200px;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 40px;
    left: 40px;
    animation: rotate 8s linear infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60px;
    left: 60px;
    animation: rotate 6s linear infinite reverse;
    background: rgba(255, 255, 255, 0.03);
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 80px;
    left: 80px;
    animation: rotate 4s linear infinite;
    background: rgba(255, 255, 255, 0.08);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: float-up 3s ease-in-out infinite;
}

.dot:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.dot:nth-child(2) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.dot:nth-child(3) {
    bottom: 30%;
    left: 40%;
    animation-delay: 2s;
}

.dot:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

@keyframes float-up {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 0.8;
    }
}


@media (prefers-reduced-motion: no-preference) {
    .breadcrumb-content {
        animation: breadcrumbEntrance 1s ease-out;
    }
    
    .page-title {
        animation: titleSlideIn 0.8s ease-out 0.2s both;
    }
    
    .breadcrumb-nav {
        animation: navFadeIn 0.8s ease-out 0.4s both;
    }
    
    .page-description {
        animation: descriptionFadeIn 0.8s ease-out 0.6s both;
    }
    
    @keyframes breadcrumbEntrance {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    @keyframes titleSlideIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes navFadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes descriptionFadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


.breadcrumb-section:hover .shape {
    animation-duration: 3s;
}

.breadcrumb-section:hover .page-title::after {
    width: 80px;
    transition: width 0.3s ease;
}


@media (max-width: 768px) {
    .breadcrumb-section {
        height: 30vh;
        margin-top: 70px;
        
    }
    
    .breadcrumb-section .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .breadcrumb-content {
        text-align: center;
        max-width: 100%;
    }
    
    .breadcrumb-animation {
        display: none;
    }
    
    .page-title {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .page-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
    }
    
    .breadcrumb-nav {
        gap: 8px;
        margin-bottom: 16px;
        justify-content: center;
    }
    
    .breadcrumb-item {
        font-size: 14px;
    }
    
    .page-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-section {
        height: 30vh;
        margin-top: 5rem;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .breadcrumb-nav {
        flex-direction: row;
        gap: 8px;
        display: none;
    }
    
    .breadcrumb-separator {
        display: none;
    }
    
    .page-description {
        font-size: 15px;
    }
}


.breadcrumb-overlay {
    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.1) 100%),
        radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 2;
    pointer-events: none;
}


@media (min-width: 768px) {
    .breadcrumb-content {
        transform: translateZ(0);
        will-change: transform;
    }
}
