/* Custom Stylings for a Distinguished Look */
.breadcumb-wrapper {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
}


.outline-title {
    position: absolute;
    top: 20%;
    left: 5%;
    font-family: 'Unbounded', sans-serif;
    font-size: 12vw;
    line-height: 1;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
}

.hero-content-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 40px;
    margin-top: -60px;
    transform: translateY(60px);
}

.glass-sidebar {
    position: sticky;
    top: 120px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.page-main-text {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    line-height: 2.1;
    color: #333;
}

.page-main-text h2,
.page-main-text h3 {
    font-family: 'Unbounded', sans-serif;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #111;
}

.btn-circle-share {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    color: #111;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-circle-share:hover {
    background: var(--theme-color, #1a1a1a);
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    border-color: var(--theme-color, #1a1a1a);
}

.creative-marquee {
    background: #111;
    padding: 60px 0;
    transform: rotate(-1deg) scale(1.05);
    margin: 100px 0;
}

.marquee-text-large {
    font-family: 'Unbounded', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px #333;
    text-transform: uppercase;
    margin-right: 50px;
}

.marquee-text-large span {
    color: #fff;
    -webkit-text-stroke: 0;
}

@media (max-width: 991px) {
    .hero-content-box {
        padding: 30px;
        margin-top: 0;
        transform: none;
    }

    .outline-title {
        font-size: 20vw;
    }
}