/* 
    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);
    }
}
