﻿/* PAGE INTRO SECTION */
.page-intro {
    background: linear-gradient(135deg, #006838, #0f172a);
    padding: 15px 0;
}

/* BREADCRUMB CONTAINER */
.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    /* BREADCRUMB ITEMS */
    .breadcrumb li {
        color: #ddd;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

        /* ICON */
        .breadcrumb li i {
            margin-right: 6px;
            color: #38bdf8;
        }

        /* LINKS */
        .breadcrumb li a {
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
        }

            .breadcrumb li a:hover {
                color: #f97316; /* orange hover */
            }

    /* ACTIVE ITEM */
    .breadcrumb .active {
        color: #f97316;
        margin-left: 5px;
    }

    /* SEPARATOR */
    .breadcrumb li + li::before {
        content: "›";
        color: #ccc;
        margin: 0 8px;
    }
/* ===== PAGE INTRO BANNER ===== */
.page-intro {
    position: relative;
    background: url('../assets/images/breadcrumb.jpg') center/cover no-repeat;
    padding: 60px 0;
    color: #fff;
}

    /* DARK OVERLAY */
    .page-intro .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
    }

/* CONTENT ABOVE OVERLAY */
.intro-content {
    position: relative;
    z-index: 2;
}

/* PAGE TITLE */
.page-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

    .breadcrumb li {
        color: #ddd;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

        /* ICON */
        .breadcrumb li i {
            margin-right: 6px;
            color: #f97316;
        }

        /* LINKS */
        .breadcrumb li a {
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
        }

            .breadcrumb li a:hover {
                color: #f97316;
            }

    /* ACTIVE */
    .breadcrumb .active {
        color: #f97316;
    }

    /* SEPARATOR */
    .breadcrumb li + li::before {
        content: "›";
        margin: 0 8px;
        color: #ccc;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-title {
        font-size: 24px;
    }
}
/* ===== PARALLAX BANNER ===== */
.page-intro {
    position: relative;
    background: url('../assets/images/breadcrumb.jpg') center/cover no-repeat fixed;
    height: 160px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

    /* OVERLAY */
    .page-intro .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
    }

/* CONTENT */
.intro-content {
    position: relative;
    z-index: 2;
}

/* ===== GLASSMORPHISM BOX ===== */
.glass-box {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 25px;
    border-radius: 12px;
    display: inline-block;
    /* ANIMATION */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}

/* TITLE */
.page-title {
    font-size: 30px;
    margin-bottom: 8px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
}

    .breadcrumb li {
        color: #ddd;
        font-size: 14px;
    }

        .breadcrumb li i {
            margin-right: 6px;
            color: #f97316;
        }

        .breadcrumb li a {
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
        }

            .breadcrumb li a:hover {
                color: #f97316;
            }

    .breadcrumb .active {
        color: #f97316;
    }

    .breadcrumb li + li::before {
        content: "›";
        margin: 0 8px;
        color: #ccc;
    }

/* ===== ANIMATION KEYFRAME ===== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-intro {
        height: 200px;
        background-attachment: scroll; /* fix for mobile */
    }

    .page-title {
        font-size: 22px;
    }
}
/* Apply globally */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Optional: headings more bold */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Breadcrumb & footer fine tuning */
.breadcrumb li,
.contact-info,
.footer {
    font-family: 'Montserrat', sans-serif;
}
