/*** 
=============================================
    Breadcrumb style1
=============================================
***/
/* MAIN */
.hero-angle {
    position: relative;
    background: linear-gradient(135deg, #062a26, #0f5c4a);
    padding: 120px 0;
    overflow: hidden;
}

/* TEXT */
.hero-text {
    max-width: 600px;
    color: #fff;
}

.hero-text h1 {
    font-size: 60px;
    margin-bottom: 10px;
    position: relative;
}

/* subtle glow */
.hero-text h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #062a26, #0f5c4a);
    border-radius: 2px;
}

/* paragraph */
.hero-text p {
    color: #cfe7df;
    margin: 20px 0 30px;
    line-height: 1.6;
}

/* BREADCRUMB PILL */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    padding: 10px 18px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
}

/* links */
.breadcrumb a {
    color: #cfe7df;
    text-decoration: none;
}

/* active */
.breadcrumb .active {
    background: linear-gradient(135deg, #062a26, #0f5c4a);
    padding: 6px 14px;
    border-radius: 20px;
    color: #fff;
}

/* icon */
.home-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #062a26, #1f8f3a);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.home-icon svg {
    width: 16px;
    height: 16px;
}

/* ANGLED SHAPE */
.angle-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, #1f8f3a, #0f5c4a);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.25;
}

/* SOFT GLOW BLOBS */
.hero-angle::before,
.hero-angle::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-angle::before {
    width: 300px;
    height: 300px;
    background: #1f8f3a;
    top: 20%;
    left: 10%;
}



/* WAVE */
.wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
}

.wave path {
    fill: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 42px;
    }

    .angle-shape {
        display: none;
    }
}