 .about-section {
        position: relative;
        color: #fff;
        padding: 150px 0;
        background: url('image/img/bg2.png') center/cover no-repeat;
        overflow: hidden;
    }

    .about-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 0;
    }

    .about-section .container {
        position: relative;
        z-index: 1;
    }

    .about-title {
        font-size: 42px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 20px;
        opacity: 2;
        transform: translateY(20px);
        animation: fadeUp 1s ease forwards;
    }

    .about-description {
        font-size: 18px;
        color: #ddd;
        line-height: 1.7;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 1.5s ease forwards;
    }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 100px 0;
            margin-top:48%;
        }

        .about-title {
            font-size: 30px;
        }

        .about-description {
            font-size: 16px;
        }
    }


    /* for breadcrumb
.breadcrumb-section {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.breadcrumb-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    color: #fff;
}

.breadcrumb a {
    color: #fff;
    text-decoration: underline;
}
.breadcrumb a.no-underline {
    text-decoration: none !important;
} */


/* ===== BREADCRUMB BASE STYLE ===== */
.breadcrumb-section {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 100px 0 40px; 
    overflow: hidden;
    padding-top:127px;
}

.breadcrumb-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    color: #fff;
    justify-content: center;
}

.breadcrumb a {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb a.no-underline {
    text-decoration: none !important;
}

/* ===== MOBILE FIX (max 576px) ===== */
@media (max-width: 576px) {
    .breadcrumb-section {
        padding-top: 160px; /* Push content below mobile header only on small devices */
        padding-bottom: 40px;
    }

    .page-title {
        font-size: 22px;
    }

    .breadcrumb {
        font-size: 14px;
        flex-wrap: wrap;
    }
}
