/* 
    Inotek-Inspired Inner Page Hero (Breadcrumb) Section 
    Refined for Helios Group of Companies
    - Center-aligned layout
    - Zoom-in animations
    - Brand-consistent colors
*/

.tv-breadcrumb-section {
    --theme-color: #1053f3;
    --theme-color2: #1c276a;
    --theme-color3: #061153;
    --white-color: #ffffff;
    --title-font: "Manrope", sans-serif;
    --body-font: "Noto Sans", sans-serif;

    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--theme-color3);
    background-image: url('../images/helios_inner_hero_bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.tv-breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(6, 17, 83, 0.8) 0%, rgba(6, 17, 83, 0.6) 100%);
    z-index: -1;
}

.tv-breadcrumb-inner {
    padding: 140px 0;
}

@media (max-width: 991px) {
    .tv-breadcrumb-inner {
        padding: 120px 0;
    }
}

@media (max-width: 575px) {
    .tv-breadcrumb-inner {
        padding: 100px 0;
    }
}

.tv-breadcrumb-section .title-outer .title {
    font-size: 60px;
    line-height: 1.1;
    color: var(--white-color);
    font-weight: 800;
    font-family: var(--title-font);
    margin-bottom: 20px;
    animation: heroZoomIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (max-width: 767px) {
    .tv-breadcrumb-section .title-outer .title {
        font-size: 45px;
    }
}

@media (max-width: 575px) {
    .tv-breadcrumb-section .title-outer .title {
        font-size: 36px;
    }
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    list-style: none;
    margin: 0;
    animation: heroZoomIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.page-breadcrumb li {
    font-size: 16px;
    color: var(--white-color);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.page-breadcrumb li a {
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.page-breadcrumb li a:hover {
    opacity: 1;
    color: var(--theme-color);
}

.page-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    opacity: 0.5;
}

.page-breadcrumb li.active {
    opacity: 0.6;
    pointer-events: none;
}

/* Animations */
@keyframes heroZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Decorative Shapes */
.tv-breadcrumb-section .shape {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

.tv-breadcrumb-section .shape-1 {
    top: 10%;
    left: 5%;
    animation: float 6s infinite ease-in-out;
}

.tv-breadcrumb-section .shape-2 {
    bottom: 10%;
    right: 5%;
    animation: float 8s infinite ease-in-out reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ============================================================
   POLLEN EFFECT ANIMATION
   ============================================================ */

/* Pollen container */
.pollen-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Individual pollen particles */
.pollen {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3));
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 83, 243, 0.4);
    opacity: 0.6;
    pointer-events: none;
    animation-timing-function: ease-in-out;
}

/* Pollen animation - floating down with horizontal drift */
@keyframes pollenFloat1 {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh) translateX(40px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes pollenFloat2 {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh) translateX(-50px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes pollenFloat3 {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh) translateX(60px) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes pollenFloat4 {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh) translateX(-30px) rotate(-360deg);
        opacity: 0;
    }
}

/* Staggered animation delays for each pollen particle */
.pollen:nth-child(1) {
    left: 10%;
    animation: pollenFloat1 15s linear infinite;
    animation-delay: 0s;
    width: 3px;
    height: 3px;
}

.pollen:nth-child(2) {
    left: 20%;
    animation: pollenFloat2 18s linear infinite;
    animation-delay: 0.15s;
    width: 4px;
    height: 4px;
}

.pollen:nth-child(3) {
    left: 30%;
    animation: pollenFloat3 20s linear infinite;
    animation-delay: 0.3s;
    width: 3px;
    height: 3px;
}

.pollen:nth-child(4) {
    left: 40%;
    animation: pollenFloat1 17s linear infinite;
    animation-delay: 0.08s;
    width: 3px;
    height: 3px;
}

.pollen:nth-child(5) {
    left: 50%;
    animation: pollenFloat2 19s linear infinite;
    animation-delay: 0.22s;
    width: 4px;
    height: 4px;
}

.pollen:nth-child(6) {
    left: 60%;
    animation: pollenFloat3 21s linear infinite;
    animation-delay: 0.38s;
    width: 3px;
    height: 3px;
}

.pollen:nth-child(7) {
    left: 70%;
    animation: pollenFloat4 16s linear infinite;
    animation-delay: 0.12s;
    width: 4px;
    height: 4px;
}

.pollen:nth-child(8) {
    left: 80%;
    animation: pollenFloat1 22s linear infinite;
    animation-delay: 0.25s;
    width: 3px;
    height: 3px;
}

.pollen:nth-child(9) {
    left: 90%;
    animation: pollenFloat2 18s linear infinite;
    animation-delay: 0.1s;
    width: 4px;
    height: 4px;
}

.pollen:nth-child(10) {
    left: 15%;
    animation: pollenFloat3 20s linear infinite;
    animation-delay: 0.32s;
    width: 3px;
    height: 3px;
}