/* ============================================
   BREADCRUMB CSS - Knowledge Wave India
   Colors: #0A210F #14591D #99AA38 #392F5A #F6F8FF
   ============================================ */

.breadcrumb-area {
    position: relative;
    background: linear-gradient(135deg, #0A210F 0%, #14591D 100%);
    padding: 80px 0;
    overflow: hidden;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-content .title {
    font-size: 42px;
    font-weight: 800;
    color: #F6F8FF;
    margin: 0 0 12px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(246, 248, 255, 0.7);
}

.breadcrumb-nav a {
    color: #99AA38;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #F6F8FF;
}

.separator {
    font-size: 12px;
    color: rgba(246, 248, 255, 0.5);
}

/* Shapes */
.breadcrumb-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.breadcrumb-shapes .shape {
    position: absolute;
    opacity: 0.08;
}

.shape-1 {
    top: 20px;
    left: 10%;
    animation: floatShape 5s ease-in-out infinite;
}

.shape-2 {
    top: 40px;
    right: 15%;
    animation: floatShape 6s ease-in-out infinite reverse;
}

.shape-3 {
    bottom: 30px;
    left: 20%;
    animation: floatShape 4s ease-in-out infinite;
}

.shape-4 {
    bottom: 20px;
    right: 10%;
    animation: floatShape 7s ease-in-out infinite;
}

.shape-5 {
    top: 50%;
    left: 50%;
    animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@media (max-width: 767.98px) {
    .breadcrumb-area {
        padding: 60px 0;
    }
    .breadcrumb-content .title {
        font-size: 32px;
    }
}

@media (max-width: 575.98px) {
    .breadcrumb-content .title {
        font-size: 26px;
    }
}